1b2441318SGreg Kroah-Hartman# SPDX-License-Identifier: GPL-2.0 21da177e4SLinus Torvalds# 31da177e4SLinus Torvalds# Makefile for some libs needed in the kernel. 41da177e4SLinus Torvalds# 51da177e4SLinus Torvalds 6*15d5761aSMasahiro Yamadaccflags-remove-$(CONFIG_FUNCTION_TRACER) += $(CC_FLAGS_FTRACE) 72464a609SIngo Molnar 85c9a8750SDmitry Vyukov# These files are disabled because they produce lots of non-interesting and/or 95c9a8750SDmitry Vyukov# flaky coverage that is not a function of syscall inputs. For example, 105c9a8750SDmitry Vyukov# rbtree can be global and individual rotations don't correlate with inputs. 115c9a8750SDmitry VyukovKCOV_INSTRUMENT_string.o := n 125c9a8750SDmitry VyukovKCOV_INSTRUMENT_rbtree.o := n 135c9a8750SDmitry VyukovKCOV_INSTRUMENT_list_debug.o := n 145c9a8750SDmitry VyukovKCOV_INSTRUMENT_debugobjects.o := n 155c9a8750SDmitry VyukovKCOV_INSTRUMENT_dynamic_debug.o := n 1643e76af8SDmitry VyukovKCOV_INSTRUMENT_fault-inject.o := n 175c9a8750SDmitry Vyukov 18b51ce374SGary Hook# Early boot use of cmdline, don't instrument it 19b51ce374SGary Hookifdef CONFIG_AMD_MEM_ENCRYPT 20b51ce374SGary HookKASAN_SANITIZE_string.o := n 21b51ce374SGary Hook 22893ab004SMasahiro YamadaCFLAGS_string.o := -fno-stack-protector 23b51ce374SGary Hookendif 24b51ce374SGary Hook 25dfd402a4SMarco Elver# Used by KCSAN while enabled, avoid recursion. 26dfd402a4SMarco ElverKCSAN_SANITIZE_random32.o := n 27dfd402a4SMarco Elver 287a5c5d57SAlexey Dobriyanlib-y := ctype.o string.o vsprintf.o cmdline.o \ 29f8d5d0ccSMatthew Wilcox rbtree.o radix-tree.o timerqueue.o xarray.o \ 305fb8ef25SArd Biesheuvel idr.o extable.o sha1.o irq_regs.o argv_split.o \ 31d18d12d0SRichard Cochran flex_proportions.o ratelimit.o show_mem.o \ 3218dd0bf2SLinus Torvalds is_single_threaded.o plist.o decompress.o kobject_uevent.o \ 33f2ae6794SSebastian Andrzej Siewior earlycpio.o seq_buf.o siphash.o dec_and_lock.o \ 3493048c09SAlexander Shishkin nmi_backtrace.o nodemask.o win_minmax.o memcat_p.o 359a19fea4Smochel@digitalimplant.org 36e36df28fSDave Younglib-$(CONFIG_PRINTK) += dump_stack.o 3774588d8bSHaavard Skinnemoenlib-$(CONFIG_MMU) += ioremap.o 38ccb46000SAndrew Mortonlib-$(CONFIG_SMP) += cpumask.o 39ccb46000SAndrew Morton 404af679cdSPeter Zijlstralib-y += kobject.o klist.o 412f4f12e5SLinus Torvaldsobj-y += lockref.o 421da177e4SLinus Torvalds 432c64e9cbSAndy Shevchenkoobj-y += bcd.o sort.o parser.o debug_locks.o random32.o \ 4464d1d77aSAndy Shevchenko bust_spinlocks.o kasprintf.o bitmap.o scatterlist.o \ 452c64e9cbSAndy Shevchenko list_sort.o uuid.o iov_iter.o clz_ctz.o \ 46840620a1SYury Norov bsearch.o find_bit.o llist.o memweight.o kfifo.o \ 472c64e9cbSAndy Shevchenko percpu-refcount.o rhashtable.o \ 48ba20ba2eSKent Overstreet once.o refcount.o usercopy.o errseq.o bucket_locks.o \ 49ba20ba2eSKent Overstreet generic-radix-tree.o 50d6b28e09SGeert Uytterhoevenobj-$(CONFIG_STRING_SELFTEST) += test_string.o 5116c7fa05SAndy Shevchenkoobj-y += string_helpers.o 5216c7fa05SAndy Shevchenkoobj-$(CONFIG_TEST_STRING_HELPERS) += test-string_helpers.o 5364d1d77aSAndy Shevchenkoobj-y += hexdump.o 5460b2e8f4SAndy Shevchenkoobj-$(CONFIG_TEST_HEXDUMP) += test_hexdump.o 5533ee3b2eSAlexey Dobriyanobj-y += kstrtox.o 56dceeb3e7SYury Norovobj-$(CONFIG_FIND_BIT_BENCHMARK) += find_bit_benchmark.o 5764a8946bSAlexei Starovoitovobj-$(CONFIG_TEST_BPF) += test_bpf.o 580a8adf58SKees Cookobj-$(CONFIG_TEST_FIRMWARE) += test_firmware.o 59c348c163SJesse Brandeburgobj-$(CONFIG_TEST_BITOPS) += test_bitops.o 60c348c163SJesse BrandeburgCFLAGS_test_bitops.o += -Werror 619308f2f9SLuis R. Rodriguezobj-$(CONFIG_TEST_SYSCTL) += test_sysctl.o 622c956a60SJason A. Donenfeldobj-$(CONFIG_TEST_HASH) += test_hash.o test_siphash.o 638ab8ba38SMatthew Wilcoxobj-$(CONFIG_TEST_IDA) += test_ida.o 643f15801cSAndrey Ryabininobj-$(CONFIG_TEST_KASAN) += test_kasan.o 6569ca372cSAndrey KonovalovCFLAGS_test_kasan.o += -fno-builtin 660bb95f80SKees CookCFLAGS_test_kasan.o += $(call cc-disable-warning, vla) 67854686f4SJinbum Parkobj-$(CONFIG_TEST_UBSAN) += test_ubsan.o 680bb95f80SKees CookCFLAGS_test_ubsan.o += $(call cc-disable-warning, vla) 69854686f4SJinbum ParkUBSAN_SANITIZE_test_ubsan.o := y 703f15801cSAndrey Ryabininobj-$(CONFIG_TEST_KSTRTOX) += test-kstrtox.o 71e327fd7cSGeert Uytterhoevenobj-$(CONFIG_TEST_LIST_SORT) += test_list_sort.o 726e24628dSIan Rogersobj-$(CONFIG_TEST_MIN_HEAP) += test_min_heap.o 733f15801cSAndrey Ryabininobj-$(CONFIG_TEST_LKM) += test_module.o 743f21a6b7SUladzislau Rezki (Sony)obj-$(CONFIG_TEST_VMALLOC) += test_vmalloc.o 75455a35a6SRasmus Villemoesobj-$(CONFIG_TEST_OVERFLOW) += test_overflow.o 769d6dbe1bSGeert Uytterhoevenobj-$(CONFIG_TEST_RHASHTABLE) += test_rhashtable.o 77c5adae95SKostenzer Felixobj-$(CONFIG_TEST_SORT) += test_sort.o 783f15801cSAndrey Ryabininobj-$(CONFIG_TEST_USER_COPY) += test_user_copy.o 792bf9e0abSIngo Molnarobj-$(CONFIG_TEST_STATIC_KEYS) += test_static_keys.o 802bf9e0abSIngo Molnarobj-$(CONFIG_TEST_STATIC_KEYS) += test_static_key_base.o 81707cc728SRasmus Villemoesobj-$(CONFIG_TEST_PRINTF) += test_printf.o 825fd003f5SDavid Decotignyobj-$(CONFIG_TEST_BITMAP) += test_bitmap.o 830b0600c8STobin C. Hardingobj-$(CONFIG_TEST_STRSCPY) += test_strscpy.o 840e2dc70eSJohannes Bergobj-$(CONFIG_TEST_BITFIELD) += test_bitfield.o 85cfaff0e5SAndy Shevchenkoobj-$(CONFIG_TEST_UUID) += test_uuid.o 86ad3d6c72SMatthew Wilcoxobj-$(CONFIG_TEST_XARRAY) += test_xarray.o 8744091d29SJiri Pirkoobj-$(CONFIG_TEST_PARMAN) += test_parman.o 88d9c6a72dSLuis R. Rodriguezobj-$(CONFIG_TEST_KMOD) += test_kmod.o 89e4dace36SFlorian Fainelliobj-$(CONFIG_TEST_DEBUG_VIRTUAL) += test_debug_virtual.o 90ce76d938SAlexander Shishkinobj-$(CONFIG_TEST_MEMCAT_P) += test_memcat_p.o 910a020d41SJiri Pirkoobj-$(CONFIG_TEST_OBJAGG) += test_objagg.o 929cf016e6SKees CookCFLAGS_test_stackinit.o += $(call cc-disable-warning, switch-unreachable) 9350ceaa95SKees Cookobj-$(CONFIG_TEST_STACKINIT) += test_stackinit.o 94509e56b3SMahesh Bandewarobj-$(CONFIG_TEST_BLACKHOLE_DEV) += test_blackhole_dev.o 955015a300SAlexander Potapenkoobj-$(CONFIG_TEST_MEMINIT) += test_meminit.o 9630428ef5SKonstantin Khlebnikovobj-$(CONFIG_TEST_LOCKUP) += test_lockup.o 97b2ef9f5aSRalph Campbellobj-$(CONFIG_TEST_HMM) += test_hmm.o 981da177e4SLinus Torvalds 99a2818ee4SJoe Lawrenceobj-$(CONFIG_TEST_LIVEPATCH) += livepatch/ 100a2818ee4SJoe Lawrence 10184bc809eSBrendan Higginsobj-$(CONFIG_KUNIT) += kunit/ 10284bc809eSBrendan Higgins 1031da177e4SLinus Torvaldsifeq ($(CONFIG_DEBUG_KOBJECT),y) 1041da177e4SLinus TorvaldsCFLAGS_kobject.o += -DDEBUG 1051da177e4SLinus TorvaldsCFLAGS_kobject_uevent.o += -DDEBUG 1061da177e4SLinus Torvaldsendif 1071da177e4SLinus Torvalds 10850ab9a69SRasmus Villemoesobj-$(CONFIG_DEBUG_INFO_REDUCED) += debug_info.o 10950ab9a69SRasmus VillemoesCFLAGS_debug_info.o += $(call cc-option, -femit-struct-debug-detailed=any) 11050ab9a69SRasmus Villemoes 111dc51f257SArd Biesheuvelobj-y += math/ crypto/ 1122c64e9cbSAndy Shevchenko 1135ea81769SAl Viroobj-$(CONFIG_GENERIC_IOMAP) += iomap.o 11466eab4dfSMichael S. Tsirkinobj-$(CONFIG_GENERIC_PCI_IOMAP) += pci_iomap.o 115928923c7SGeert Uytterhoevenobj-$(CONFIG_HAS_IOMEM) += iomap_copy.o devres.o 116928923c7SGeert Uytterhoevenobj-$(CONFIG_CHECK_SIGNATURE) += check_signature.o 117cae2ed9aSIngo Molnarobj-$(CONFIG_DEBUG_LOCKING_API_SELFTESTS) += locking-selftest.o 118d61931d8SBorislav Petkov 119f361c863SJohn Garrylib-y += logic_pio.o 120031e3601SZhichang Yuan 121702a28b1SRandy Dunlapobj-$(CONFIG_GENERIC_HWEIGHT) += hweight.o 122d61931d8SBorislav Petkov 1235db53f3eSJoern Engelobj-$(CONFIG_BTREE) += btree.o 124a88cc108SChris Wilsonobj-$(CONFIG_INTERVAL_TREE) += interval_tree.o 1253cb98950SDavid Howellsobj-$(CONFIG_ASSOCIATIVE_ARRAY) += assoc_array.o 12639c715b7SIngo Molnarobj-$(CONFIG_DEBUG_PREEMPT) += smp_processor_id.o 127199a9afcSDave Jonesobj-$(CONFIG_DEBUG_LIST) += list_debug.o 1283ac7fe5aSThomas Gleixnerobj-$(CONFIG_DEBUG_OBJECTS) += debugobjects.o 1291da177e4SLinus Torvalds 130a5cfc1ecSAkinobu Mitaobj-$(CONFIG_BITREVERSE) += bitrev.o 131d2218d4eSMatti Vaittinenobj-$(CONFIG_LINEAR_RANGES) += linear_ranges.o 132554aae35SVladimir Olteanobj-$(CONFIG_PACKING) += packing.o 1331da177e4SLinus Torvaldsobj-$(CONFIG_CRC_CCITT) += crc-ccitt.o 1347657ec1fSEvgeniy Polyakovobj-$(CONFIG_CRC16) += crc16.o 135f11f594eSMartin K. Petersenobj-$(CONFIG_CRC_T10DIF)+= crc-t10dif.o 1363e7cbae7SIvo van Doornobj-$(CONFIG_CRC_ITU_T) += crc-itu-t.o 1371da177e4SLinus Torvaldsobj-$(CONFIG_CRC32) += crc32.o 138feba04fdSColy Liobj-$(CONFIG_CRC64) += crc64.o 1395fb7f874SGeert Uytterhoevenobj-$(CONFIG_CRC32_SELFTEST) += crc32test.o 1400cbaa448SJeremy Kerrobj-$(CONFIG_CRC4) += crc4.o 141ad241528SJan Nikitenkoobj-$(CONFIG_CRC7) += crc7.o 1421da177e4SLinus Torvaldsobj-$(CONFIG_LIBCRC32C) += libcrc32c.o 1437150962dSArend van Sprielobj-$(CONFIG_CRC8) += crc8.o 1445d240522SNick Terrellobj-$(CONFIG_XXHASH) += xxhash.o 145f14f75b8SJes Sorensenobj-$(CONFIG_GENERIC_ALLOCATOR) += genalloc.o 1461da177e4SLinus Torvalds 1472da572c9SDan Streetmanobj-$(CONFIG_842_COMPRESS) += 842/ 1482da572c9SDan Streetmanobj-$(CONFIG_842_DECOMPRESS) += 842/ 1491da177e4SLinus Torvaldsobj-$(CONFIG_ZLIB_INFLATE) += zlib_inflate/ 1501da177e4SLinus Torvaldsobj-$(CONFIG_ZLIB_DEFLATE) += zlib_deflate/ 151aa5b395bSMikhail Zaslonkoobj-$(CONFIG_ZLIB_DFLTCC) += zlib_dfltcc/ 1521da177e4SLinus Torvaldsobj-$(CONFIG_REED_SOLOMON) += reed_solomon/ 153437aa565SIvan Djelicobj-$(CONFIG_BCH) += bch.o 15464c70b1cSRichard Purdieobj-$(CONFIG_LZO_COMPRESS) += lzo/ 15564c70b1cSRichard Purdieobj-$(CONFIG_LZO_DECOMPRESS) += lzo/ 156c72ac7a1SChanho Minobj-$(CONFIG_LZ4_COMPRESS) += lz4/ 157c72ac7a1SChanho Minobj-$(CONFIG_LZ4HC_COMPRESS) += lz4/ 158e76e1fdfSKyungsik Leeobj-$(CONFIG_LZ4_DECOMPRESS) += lz4/ 15973f3d1b4SNick Terrellobj-$(CONFIG_ZSTD_COMPRESS) += zstd/ 16073f3d1b4SNick Terrellobj-$(CONFIG_ZSTD_DECOMPRESS) += zstd/ 16124fa0402SLasse Collinobj-$(CONFIG_XZ_DEC) += xz/ 162f5e70d0fSDavid Woodhouseobj-$(CONFIG_RAID6_PQ) += raid6/ 1631da177e4SLinus Torvalds 164889c92d2SH. Peter Anvinlib-$(CONFIG_DECOMPRESS_GZIP) += decompress_inflate.o 165889c92d2SH. Peter Anvinlib-$(CONFIG_DECOMPRESS_BZIP2) += decompress_bunzip2.o 166889c92d2SH. Peter Anvinlib-$(CONFIG_DECOMPRESS_LZMA) += decompress_unlzma.o 1673ebe1243SLasse Collinlib-$(CONFIG_DECOMPRESS_XZ) += decompress_unxz.o 168cacb246fSAlbin Tonnerrelib-$(CONFIG_DECOMPRESS_LZO) += decompress_unlzo.o 169e76e1fdfSKyungsik Leelib-$(CONFIG_DECOMPRESS_LZ4) += decompress_unlz4.o 170c8531ab3SH. Peter Anvin 17165df877aSDavid S. Millerobj-$(CONFIG_TEXTSEARCH) += textsearch.o 172df3fb93aSThomas Grafobj-$(CONFIG_TEXTSEARCH_KMP) += ts_kmp.o 1738082e4edSPablo Neira Ayusoobj-$(CONFIG_TEXTSEARCH_BM) += ts_bm.o 1746408f79cSThomas Grafobj-$(CONFIG_TEXTSEARCH_FSM) += ts_fsm.o 1753cbc5640SRavikiran G Thirumalaiobj-$(CONFIG_SMP) += percpu_counter.o 176e65e1fc2SAl Viroobj-$(CONFIG_AUDIT_GENERIC) += audit.o 1774b588411SAKASHI Takahiroobj-$(CONFIG_AUDIT_COMPAT_GENERIC) += compat_audit.o 1782de4ff7bSThomas Graf 1790d3fdb15SChristoph Hellwigobj-$(CONFIG_IOMMU_HELPER) += iommu-helper.o 1806ff1cb35SAkinobu Mitaobj-$(CONFIG_FAULT_INJECTION) += fault-inject.o 1818d438288SAkinobu Mitaobj-$(CONFIG_NOTIFIER_ERROR_INJECTION) += notifier-error-inject.o 182048b9c35SAkinobu Mitaobj-$(CONFIG_PM_NOTIFIER_ERROR_INJECT) += pm-notifier-error-inject.o 18302fff96aSNikolay Aleksandrovobj-$(CONFIG_NETDEV_NOTIFIER_ERROR_INJECT) += netdev-notifier-error-inject.o 1849579f5bdSAkinobu Mitaobj-$(CONFIG_MEMORY_NOTIFIER_ERROR_INJECT) += memory-notifier-error-inject.o 185d526e85fSBenjamin Herrenschmidtobj-$(CONFIG_OF_RECONFIG_NOTIFIER_ERROR_INJECT) += \ 186d526e85fSBenjamin Herrenschmidt of-reconfig-notifier-error-inject.o 187540adea3SMasami Hiramatsuobj-$(CONFIG_FUNCTION_ERROR_INJECTION) += error-inject.o 1886c654b5fSJohn W. Linville 1897664c5a1SJeremy Fitzhardingelib-$(CONFIG_GENERIC_BUG) += bug.o 1907664c5a1SJeremy Fitzhardinge 191bbc69863SRoland McGrathobj-$(CONFIG_HAVE_ARCH_TRACEHOOK) += syscall.o 192bbc69863SRoland McGrath 193ceabef7dSOrson Zhaiobj-$(CONFIG_DYNAMIC_DEBUG_CORE) += dynamic_debug.o 19457f5677eSRasmus Villemoesobj-$(CONFIG_SYMBOLIC_ERRNAME) += errname.o 195346e15beSJason Baron 196e9cc8bddSGeert Uytterhoevenobj-$(CONFIG_NLATTR) += nlattr.o 1971da177e4SLinus Torvalds 198b411b363SPhilipp Reisnerobj-$(CONFIG_LRU_CACHE) += lru_cache.o 199b411b363SPhilipp Reisner 20026a28fa4SArnd Bergmannobj-$(CONFIG_GENERIC_CSUM) += checksum.o 20126a28fa4SArnd Bergmann 20209d4e0edSPaul Mackerrasobj-$(CONFIG_GENERIC_ATOMIC64) += atomic64.o 20309d4e0edSPaul Mackerras 20486a89380SLuca Barbieriobj-$(CONFIG_ATOMIC64_SELFTEST) += atomic64_test.o 20586a89380SLuca Barbieri 206c39649c3SBen Hutchingsobj-$(CONFIG_CPU_RMAP) += cpu_rmap.o 207c39649c3SBen Hutchings 20875957ba3STom Herbertobj-$(CONFIG_DQL) += dynamic_queue_limits.o 20975957ba3STom Herbert 210b0125085SGeorge Spelvinobj-$(CONFIG_GLOB) += glob.o 211ba95b045SGeert Uytterhoevenobj-$(CONFIG_GLOB_SELFTEST) += globtest.o 212b0125085SGeorge Spelvin 213d9c46b18SDmitry Kasatkinobj-$(CONFIG_MPILIB) += mpi/ 2144f75da36STal Gilboaobj-$(CONFIG_DIMLIB) += dim/ 2155e8898e9SDmitry Kasatkinobj-$(CONFIG_SIGNATURE) += digsig.o 216d9c46b18SDmitry Kasatkin 217f5948701SChris Metcalflib-$(CONFIG_CLZ_TAB) += clz_tab.o 218c6df4b17SDavid Miller 2192922585bSDavid S. Millerobj-$(CONFIG_GENERIC_STRNCPY_FROM_USER) += strncpy_from_user.o 220a08c5356SLinus Torvaldsobj-$(CONFIG_GENERIC_STRNLEN_USER) += strnlen_user.o 2212922585bSDavid S. Miller 2224cd5773aSAndy Shevchenkoobj-$(CONFIG_GENERIC_NET_UTILS) += net_utils.o 2234cd5773aSAndy Shevchenko 224f8bcbe62SRobert Jarzmikobj-$(CONFIG_SG_SPLIT) += sg_split.o 2259b1d6c89SMing Linobj-$(CONFIG_SG_POOL) += sg_pool.o 22633dd7075SDan Williamsobj-$(CONFIG_MEMREGION) += memregion.o 2274ccf4beaSWolfram Sangobj-$(CONFIG_STMP_DEVICE) += stmp_device.o 228511cbce2SChristoph Hellwigobj-$(CONFIG_IRQ_POLL) += irq_poll.o 2294ccf4beaSWolfram Sang 2307b65942fSAlexander Potapenko# stackdepot.c should not be instrumented or call instrumented functions. 2317b65942fSAlexander Potapenko# Prevent the compiler from calling builtins like memcmp() or bcmp() from this 2327b65942fSAlexander Potapenko# file. 2337b65942fSAlexander PotapenkoCFLAGS_stackdepot.o += -fno-builtin 234cd11016eSAlexander Potapenkoobj-$(CONFIG_STACKDEPOT) += stackdepot.o 235cd11016eSAlexander PotapenkoKASAN_SANITIZE_stackdepot.o := n 23665deb8afSAlexander PotapenkoKCOV_INSTRUMENT_stackdepot.o := n 237cd11016eSAlexander Potapenko 238adaf5687SMark Salterlibfdt_files = fdt.o fdt_ro.o fdt_wip.o fdt_rw.o fdt_sw.o fdt_strerror.o \ 239c273a2bdSAKASHI Takahiro fdt_empty_tree.o fdt_addresses.o 240ab253839SDavid Daney$(foreach file, $(libfdt_files), \ 24113d3bc71SMasahiro Yamada $(eval CFLAGS_$(file) = -I $(srctree)/scripts/dtc/libfdt)) 242ab253839SDavid Daneylib-$(CONFIG_LIBFDT) += $(libfdt_files) 243ab253839SDavid Daney 24426445f98SMasami Hiramatsulib-$(CONFIG_BOOT_CONFIG) += bootconfig.o 24576db5a27SMasami Hiramatsu 246910a742dSMichel Lespinasseobj-$(CONFIG_RBTREE_TEST) += rbtree_test.o 247fff3fd8aSMichel Lespinasseobj-$(CONFIG_INTERVAL_TREE_TEST) += interval_tree_test.o 248fff3fd8aSMichel Lespinasse 249623fd807SGreg Thelenobj-$(CONFIG_PERCPU_TEST) += percpu_test.o 250623fd807SGreg Thelen 25142d5ec27SDavid Howellsobj-$(CONFIG_ASN1) += asn1_decoder.o 25242d5ec27SDavid Howells 253ee89bd6bSGeert Uytterhoevenobj-$(CONFIG_FONT_SUPPORT) += fonts/ 254ee89bd6bSGeert Uytterhoeven 2555f2fb52fSMasahiro Yamadahostprogs := gen_crc32table 2565f2fb52fSMasahiro Yamadahostprogs += gen_crc64table 2571da177e4SLinus Torvaldsclean-files := crc32table.h 258feba04fdSColy Liclean-files += crc64table.h 2591da177e4SLinus Torvalds 2601da177e4SLinus Torvalds$(obj)/crc32.o: $(obj)/crc32table.h 2611da177e4SLinus Torvalds 2621da177e4SLinus Torvaldsquiet_cmd_crc32 = GEN $@ 2631da177e4SLinus Torvalds cmd_crc32 = $< > $@ 2641da177e4SLinus Torvalds 2651da177e4SLinus Torvalds$(obj)/crc32table.h: $(obj)/gen_crc32table 2661da177e4SLinus Torvalds $(call cmd,crc32) 267a77ad6eaSDavid Howells 268feba04fdSColy Li$(obj)/crc64.o: $(obj)/crc64table.h 269feba04fdSColy Li 270feba04fdSColy Liquiet_cmd_crc64 = GEN $@ 271feba04fdSColy Li cmd_crc64 = $< > $@ 272feba04fdSColy Li 273feba04fdSColy Li$(obj)/crc64table.h: $(obj)/gen_crc64table 274feba04fdSColy Li $(call cmd,crc64) 275feba04fdSColy Li 276a77ad6eaSDavid Howells# 277a77ad6eaSDavid Howells# Build a fast OID lookip registry from include/linux/oid_registry.h 278a77ad6eaSDavid Howells# 279a77ad6eaSDavid Howellsobj-$(CONFIG_OID_REGISTRY) += oid_registry.o 280a77ad6eaSDavid Howells 281527897ccSTim Gardner$(obj)/oid_registry.o: $(obj)/oid_registry_data.c 282a77ad6eaSDavid Howells 283a77ad6eaSDavid Howells$(obj)/oid_registry_data.c: $(srctree)/include/linux/oid_registry.h \ 284a77ad6eaSDavid Howells $(src)/build_OID_registry 285a77ad6eaSDavid Howells $(call cmd,build_OID_registry) 286a77ad6eaSDavid Howells 287a77ad6eaSDavid Howellsquiet_cmd_build_OID_registry = GEN $@ 288a77ad6eaSDavid Howells cmd_build_OID_registry = perl $(srctree)/$(src)/build_OID_registry $< $@ 289a77ad6eaSDavid Howells 290a77ad6eaSDavid Howellsclean-files += oid_registry_data.c 2910635eb8aSMatthew Garrett 2920635eb8aSMatthew Garrettobj-$(CONFIG_UCS2_STRING) += ucs2_string.o 2930887a7ebSKees Cookifneq ($(CONFIG_UBSAN_TRAP),y) 294c6d30853SAndrey Ryabininobj-$(CONFIG_UBSAN) += ubsan.o 2950887a7ebSKees Cookendif 296c6d30853SAndrey Ryabinin 297c6d30853SAndrey RyabininUBSAN_SANITIZE_ubsan.o := n 298af700eaeSArnd BergmannKASAN_SANITIZE_ubsan.o := n 299d47715f5SMarco ElverKCSAN_SANITIZE_ubsan.o := n 300893ab004SMasahiro YamadaCFLAGS_ubsan.o := -fno-stack-protector $(DISABLE_STACKLEAK_PLUGIN) 30188459642SOmar Sandoval 30288459642SOmar Sandovalobj-$(CONFIG_SBITMAP) += sbitmap.o 30344091d29SJiri Pirko 30444091d29SJiri Pirkoobj-$(CONFIG_PARMAN) += parman.o 305b35cd988SPalmer Dabbelt 306b35cd988SPalmer Dabbelt# GCC library routines 307e3d59805SMatt Redfearnobj-$(CONFIG_GENERIC_LIB_ASHLDI3) += ashldi3.o 308e3d59805SMatt Redfearnobj-$(CONFIG_GENERIC_LIB_ASHRDI3) += ashrdi3.o 309e3d59805SMatt Redfearnobj-$(CONFIG_GENERIC_LIB_LSHRDI3) += lshrdi3.o 310e3d59805SMatt Redfearnobj-$(CONFIG_GENERIC_LIB_MULDI3) += muldi3.o 311e3d59805SMatt Redfearnobj-$(CONFIG_GENERIC_LIB_CMPDI2) += cmpdi2.o 312e3d59805SMatt Redfearnobj-$(CONFIG_GENERIC_LIB_UCMPDI2) += ucmpdi2.o 3130a020d41SJiri Pirkoobj-$(CONFIG_OBJAGG) += objagg.o 314ea2dd7c0SDavid Gow 315ea2dd7c0SDavid Gow# KUnit tests 316ea2dd7c0SDavid Gowobj-$(CONFIG_LIST_KUNIT_TEST) += list-test.o 31733d599f0SMatti Vaittinenobj-$(CONFIG_LINEAR_RANGES_TEST) += test_linear_ranges.o 318