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 615d5761aSMasahiro 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 17e24f4de8SAndrey KonovalovKCOV_INSTRUMENT_find_bit.o := n 185c9a8750SDmitry Vyukov 1933d0f96fSArvind Sankar# string.o implements standard library functions like memset/memcpy etc. 2033d0f96fSArvind Sankar# Use -ffreestanding to ensure that the compiler does not try to "optimize" 2133d0f96fSArvind Sankar# them into calls to themselves. 2233d0f96fSArvind SankarCFLAGS_string.o := -ffreestanding 2333d0f96fSArvind Sankar 24b51ce374SGary Hook# Early boot use of cmdline, don't instrument it 25b51ce374SGary Hookifdef CONFIG_AMD_MEM_ENCRYPT 26b51ce374SGary HookKASAN_SANITIZE_string.o := n 27b51ce374SGary Hook 2833d0f96fSArvind SankarCFLAGS_string.o += -fno-stack-protector 29b51ce374SGary Hookendif 30b51ce374SGary Hook 317a5c5d57SAlexey Dobriyanlib-y := ctype.o string.o vsprintf.o cmdline.o \ 32f8d5d0ccSMatthew Wilcox rbtree.o radix-tree.o timerqueue.o xarray.o \ 3354a611b6SLiam R. Howlett maple_tree.o idr.o extable.o irq_regs.o argv_split.o \ 34e9aae170SKefeng Wang flex_proportions.o ratelimit.o \ 3518dd0bf2SLinus Torvalds is_single_threaded.o plist.o decompress.o kobject_uevent.o \ 36f2ae6794SSebastian Andrzej Siewior earlycpio.o seq_buf.o siphash.o dec_and_lock.o \ 3736d4b36bSYury Norov nmi_backtrace.o win_minmax.o memcat_p.o \ 3893c8332cSXavier buildid.o objpool.o union_find.o 399a19fea4S[email protected] 40e36df28fSDave Younglib-$(CONFIG_PRINTK) += dump_stack.o 412248ccd8SSander Vanheulelib-$(CONFIG_SMP) += cpumask.o 42ccb46000SAndrew Morton 434af679cdSPeter Zijlstralib-y += kobject.o klist.o 442f4f12e5SLinus Torvaldsobj-y += lockref.o 451da177e4SLinus Torvalds 462c64e9cbSAndy Shevchenkoobj-y += bcd.o sort.o parser.o debug_locks.o random32.o \ 4764d1d77aSAndy Shevchenko bust_spinlocks.o kasprintf.o bitmap.o scatterlist.o \ 482c64e9cbSAndy Shevchenko list_sort.o uuid.o iov_iter.o clz_ctz.o \ 49de9e82c3SNeilBrown bsearch.o find_bit.o llist.o lwq.o memweight.o kfifo.o \ 50a116e1cdSHannes Reinecke percpu-refcount.o rhashtable.o base64.o \ 51ee1ee6dbSThomas Gleixner once.o refcount.o rcuref.o usercopy.o errseq.o bucket_locks.o \ 52aae06fc1SYury Norov generic-radix-tree.o bitmap-str.o 5329d85688SKees Cookobj-$(CONFIG_STRING_KUNIT_TEST) += string_kunit.o 5416c7fa05SAndy Shevchenkoobj-y += string_helpers.o 55fb57550fSKees Cookobj-$(CONFIG_STRING_HELPERS_KUNIT_TEST) += string_helpers_kunit.o 5664d1d77aSAndy Shevchenkoobj-y += hexdump.o 5760b2e8f4SAndy Shevchenkoobj-$(CONFIG_TEST_HEXDUMP) += test_hexdump.o 5833ee3b2eSAlexey Dobriyanobj-y += kstrtox.o 59dceeb3e7SYury Norovobj-$(CONFIG_FIND_BIT_BENCHMARK) += find_bit_benchmark.o 6064a8946bSAlexei Starovoitovobj-$(CONFIG_TEST_BPF) += test_bpf.o 61d5528cc1SGeert Uytterhoeventest_dhry-objs := dhry_1.o dhry_2.o dhry_run.o 62d5528cc1SGeert Uytterhoevenobj-$(CONFIG_TEST_DHRY) += test_dhry.o 630a8adf58SKees Cookobj-$(CONFIG_TEST_FIRMWARE) += test_firmware.o 64c348c163SJesse Brandeburgobj-$(CONFIG_TEST_BITOPS) += test_bitops.o 65c348c163SJesse BrandeburgCFLAGS_test_bitops.o += -Werror 66d3c0ca49SSander Vanheuleobj-$(CONFIG_CPUMASK_KUNIT_TEST) += cpumask_kunit.o 679308f2f9SLuis R. Rodriguezobj-$(CONFIG_TEST_SYSCTL) += test_sysctl.o 682d71340fSDavid Howellsobj-$(CONFIG_TEST_IOV_ITER) += kunit_iov_iter.o 690acc968fSIsabella Bassoobj-$(CONFIG_HASH_KUNIT_TEST) += test_hash.o 708ab8ba38SMatthew Wilcoxobj-$(CONFIG_TEST_IDA) += test_ida.o 71854686f4SJinbum Parkobj-$(CONFIG_TEST_UBSAN) += test_ubsan.o 720bb95f80SKees CookCFLAGS_test_ubsan.o += $(call cc-disable-warning, vla) 7330edbdf9SKees CookCFLAGS_test_ubsan.o += $(call cc-disable-warning, unused-but-set-variable) 74854686f4SJinbum ParkUBSAN_SANITIZE_test_ubsan.o := y 753f15801cSAndrey Ryabininobj-$(CONFIG_TEST_KSTRTOX) += test-kstrtox.o 76e327fd7cSGeert Uytterhoevenobj-$(CONFIG_TEST_LIST_SORT) += test_list_sort.o 776e24628dSIan Rogersobj-$(CONFIG_TEST_MIN_HEAP) += test_min_heap.o 783f15801cSAndrey Ryabininobj-$(CONFIG_TEST_LKM) += test_module.o 793f21a6b7SUladzislau Rezki (Sony)obj-$(CONFIG_TEST_VMALLOC) += test_vmalloc.o 809d6dbe1bSGeert Uytterhoevenobj-$(CONFIG_TEST_RHASHTABLE) += test_rhashtable.o 81c5adae95SKostenzer Felixobj-$(CONFIG_TEST_SORT) += test_sort.o 822bf9e0abSIngo Molnarobj-$(CONFIG_TEST_STATIC_KEYS) += test_static_keys.o 832bf9e0abSIngo Molnarobj-$(CONFIG_TEST_STATIC_KEYS) += test_static_key_base.o 84683263a5SJim Cromieobj-$(CONFIG_TEST_DYNAMIC_DEBUG) += test_dynamic_debug.o 85707cc728SRasmus Villemoesobj-$(CONFIG_TEST_PRINTF) += test_printf.o 8650f530e1SRichard Fitzgeraldobj-$(CONFIG_TEST_SCANF) += test_scanf.o 872356d198SYury Norov 885fd003f5SDavid Decotignyobj-$(CONFIG_TEST_BITMAP) += test_bitmap.o 892356d198SYury Norovifeq ($(CONFIG_CC_IS_CLANG)$(CONFIG_KASAN),yy) 902356d198SYury Norov# FIXME: Clang breaks test_bitmap_const_eval when KASAN and GCOV are enabled 912356d198SYury NorovGCOV_PROFILE_test_bitmap.o := n 922356d198SYury Norovendif 932356d198SYury Norov 94cfaff0e5SAndy Shevchenkoobj-$(CONFIG_TEST_UUID) += test_uuid.o 95ad3d6c72SMatthew Wilcoxobj-$(CONFIG_TEST_XARRAY) += test_xarray.o 96120b1162SLiam Howlettobj-$(CONFIG_TEST_MAPLE_TREE) += test_maple_tree.o 9744091d29SJiri Pirkoobj-$(CONFIG_TEST_PARMAN) += test_parman.o 98d9c6a72dSLuis R. Rodriguezobj-$(CONFIG_TEST_KMOD) += test_kmod.o 99e4dace36SFlorian Fainelliobj-$(CONFIG_TEST_DEBUG_VIRTUAL) += test_debug_virtual.o 100ce76d938SAlexander Shishkinobj-$(CONFIG_TEST_MEMCAT_P) += test_memcat_p.o 1010a020d41SJiri Pirkoobj-$(CONFIG_TEST_OBJAGG) += test_objagg.o 102509e56b3SMahesh Bandewarobj-$(CONFIG_TEST_BLACKHOLE_DEV) += test_blackhole_dev.o 1035015a300SAlexander Potapenkoobj-$(CONFIG_TEST_MEMINIT) += test_meminit.o 10430428ef5SKonstantin Khlebnikovobj-$(CONFIG_TEST_LOCKUP) += test_lockup.o 105b2ef9f5aSRalph Campbellobj-$(CONFIG_TEST_HMM) += test_hmm.o 106e320d301SMatthew Wilcox (Oracle)obj-$(CONFIG_TEST_FREE_PAGES) += test_free_pages.o 107b9e94a7bSTiezhu Yangobj-$(CONFIG_KPROBES_SANITY_TEST) += test_kprobes.o 108914a7b50SEric Dumazetobj-$(CONFIG_TEST_REF_TRACKER) += test_ref_tracker.o 109f4616fabSMasami HiramatsuCFLAGS_test_fprobe.o += $(CC_FLAGS_FTRACE) 110f4616fabSMasami Hiramatsuobj-$(CONFIG_FPROBE_SANITY_TEST) += test_fprobe.o 11192f90d3bSwuqiang.mattobj-$(CONFIG_TEST_OBJPOOL) += test_objpool.o 11292f90d3bSwuqiang.matt 1134185b3b9SPetteri Aimonenobj-$(CONFIG_TEST_FPU) += test_fpu.o 1149613736dSSamuel Hollandtest_fpu-y := test_fpu_glue.o test_fpu_impl.o 115790a4a3dSSamuel HollandCFLAGS_test_fpu_impl.o += $(CC_FLAGS_FPU) 116790a4a3dSSamuel HollandCFLAGS_REMOVE_test_fpu_impl.o += $(CC_FLAGS_NO_FPU) 1174185b3b9SPetteri Aimonen 11832ff6831SDavid Gow# Some KUnit files (hooks.o) need to be built-in even when KUnit is a module, 11932ff6831SDavid Gow# so we can't just use obj-$(CONFIG_KUNIT). 12032ff6831SDavid Gowifdef CONFIG_KUNIT 12132ff6831SDavid Gowobj-y += kunit/ 1227170b7edSDavid Gowendif 12384bc809eSBrendan Higgins 1241da177e4SLinus Torvaldsifeq ($(CONFIG_DEBUG_KOBJECT),y) 1251da177e4SLinus TorvaldsCFLAGS_kobject.o += -DDEBUG 1261da177e4SLinus TorvaldsCFLAGS_kobject_uevent.o += -DDEBUG 1271da177e4SLinus Torvaldsendif 1281da177e4SLinus Torvalds 12950ab9a69SRasmus Villemoesobj-$(CONFIG_DEBUG_INFO_REDUCED) += debug_info.o 13050ab9a69SRasmus VillemoesCFLAGS_debug_info.o += $(call cc-option, -femit-struct-debug-detailed=any) 13150ab9a69SRasmus Villemoes 132dc51f257SArd Biesheuvelobj-y += math/ crypto/ 1332c64e9cbSAndy Shevchenko 1345ea81769SAl Viroobj-$(CONFIG_GENERIC_IOMAP) += iomap.o 135928923c7SGeert Uytterhoevenobj-$(CONFIG_HAS_IOMEM) += iomap_copy.o devres.o 136928923c7SGeert Uytterhoevenobj-$(CONFIG_CHECK_SIGNATURE) += check_signature.o 137cae2ed9aSIngo Molnarobj-$(CONFIG_DEBUG_LOCKING_API_SELFTESTS) += locking-selftest.o 138d61931d8SBorislav Petkov 139f361c863SJohn Garrylib-y += logic_pio.o 140031e3601SZhichang Yuan 141ca2e3342SJohannes Berglib-$(CONFIG_INDIRECT_IOMEM) += logic_iomem.o 142ca2e3342SJohannes Berg 143d593d64fSPrasad Sodagudiobj-$(CONFIG_TRACE_MMIO_ACCESS) += trace_readwrite.o 144d593d64fSPrasad Sodagudi 145702a28b1SRandy Dunlapobj-$(CONFIG_GENERIC_HWEIGHT) += hweight.o 146d61931d8SBorislav Petkov 1475db53f3eSJoern Engelobj-$(CONFIG_BTREE) += btree.o 148a88cc108SChris Wilsonobj-$(CONFIG_INTERVAL_TREE) += interval_tree.o 1493cb98950SDavid Howellsobj-$(CONFIG_ASSOCIATIVE_ARRAY) += assoc_array.o 15039c715b7SIngo Molnarobj-$(CONFIG_DEBUG_PREEMPT) += smp_processor_id.o 151aebc7b0dSMarco Elverobj-$(CONFIG_LIST_HARDENED) += list_debug.o 1523ac7fe5aSThomas Gleixnerobj-$(CONFIG_DEBUG_OBJECTS) += debugobjects.o 1531da177e4SLinus Torvalds 154a5cfc1ecSAkinobu Mitaobj-$(CONFIG_BITREVERSE) += bitrev.o 155d2218d4eSMatti Vaittinenobj-$(CONFIG_LINEAR_RANGES) += linear_ranges.o 156554aae35SVladimir Olteanobj-$(CONFIG_PACKING) += packing.o 157*e9502ea6SJacob Kellerobj-$(CONFIG_PACKING_KUNIT_TEST) += packing_test.o 1581da177e4SLinus Torvaldsobj-$(CONFIG_CRC_CCITT) += crc-ccitt.o 1597657ec1fSEvgeniy Polyakovobj-$(CONFIG_CRC16) += crc16.o 160f11f594eSMartin K. Petersenobj-$(CONFIG_CRC_T10DIF)+= crc-t10dif.o 1613e7cbae7SIvo van Doornobj-$(CONFIG_CRC_ITU_T) += crc-itu-t.o 1621da177e4SLinus Torvaldsobj-$(CONFIG_CRC32) += crc32.o 163feba04fdSColy Liobj-$(CONFIG_CRC64) += crc64.o 1645fb7f874SGeert Uytterhoevenobj-$(CONFIG_CRC32_SELFTEST) += crc32test.o 1650cbaa448SJeremy Kerrobj-$(CONFIG_CRC4) += crc4.o 166ad241528SJan Nikitenkoobj-$(CONFIG_CRC7) += crc7.o 1671da177e4SLinus Torvaldsobj-$(CONFIG_LIBCRC32C) += libcrc32c.o 1687150962dSArend van Sprielobj-$(CONFIG_CRC8) += crc8.o 169f3813f4bSKeith Buschobj-$(CONFIG_CRC64_ROCKSOFT) += crc64-rocksoft.o 1705d240522SNick Terrellobj-$(CONFIG_XXHASH) += xxhash.o 171f14f75b8SJes Sorensenobj-$(CONFIG_GENERIC_ALLOCATOR) += genalloc.o 1721da177e4SLinus Torvalds 1732da572c9SDan Streetmanobj-$(CONFIG_842_COMPRESS) += 842/ 1742da572c9SDan Streetmanobj-$(CONFIG_842_DECOMPRESS) += 842/ 1751da177e4SLinus Torvaldsobj-$(CONFIG_ZLIB_INFLATE) += zlib_inflate/ 1761da177e4SLinus Torvaldsobj-$(CONFIG_ZLIB_DEFLATE) += zlib_deflate/ 177aa5b395bSMikhail Zaslonkoobj-$(CONFIG_ZLIB_DFLTCC) += zlib_dfltcc/ 1781da177e4SLinus Torvaldsobj-$(CONFIG_REED_SOLOMON) += reed_solomon/ 179437aa565SIvan Djelicobj-$(CONFIG_BCH) += bch.o 18064c70b1cSRichard Purdieobj-$(CONFIG_LZO_COMPRESS) += lzo/ 18164c70b1cSRichard Purdieobj-$(CONFIG_LZO_DECOMPRESS) += lzo/ 182c72ac7a1SChanho Minobj-$(CONFIG_LZ4_COMPRESS) += lz4/ 183c72ac7a1SChanho Minobj-$(CONFIG_LZ4HC_COMPRESS) += lz4/ 184e76e1fdfSKyungsik Leeobj-$(CONFIG_LZ4_DECOMPRESS) += lz4/ 18573f3d1b4SNick Terrellobj-$(CONFIG_ZSTD_COMPRESS) += zstd/ 18673f3d1b4SNick Terrellobj-$(CONFIG_ZSTD_DECOMPRESS) += zstd/ 18724fa0402SLasse Collinobj-$(CONFIG_XZ_DEC) += xz/ 188f5e70d0fSDavid Woodhouseobj-$(CONFIG_RAID6_PQ) += raid6/ 1891da177e4SLinus Torvalds 190889c92d2SH. Peter Anvinlib-$(CONFIG_DECOMPRESS_GZIP) += decompress_inflate.o 191889c92d2SH. Peter Anvinlib-$(CONFIG_DECOMPRESS_BZIP2) += decompress_bunzip2.o 192889c92d2SH. Peter Anvinlib-$(CONFIG_DECOMPRESS_LZMA) += decompress_unlzma.o 1933ebe1243SLasse Collinlib-$(CONFIG_DECOMPRESS_XZ) += decompress_unxz.o 194cacb246fSAlbin Tonnerrelib-$(CONFIG_DECOMPRESS_LZO) += decompress_unlzo.o 195e76e1fdfSKyungsik Leelib-$(CONFIG_DECOMPRESS_LZ4) += decompress_unlz4.o 1964963bb2bSNick Terrelllib-$(CONFIG_DECOMPRESS_ZSTD) += decompress_unzstd.o 197c8531ab3SH. Peter Anvin 19865df877aSDavid S. Millerobj-$(CONFIG_TEXTSEARCH) += textsearch.o 199df3fb93aSThomas Grafobj-$(CONFIG_TEXTSEARCH_KMP) += ts_kmp.o 2008082e4edSPablo Neira Ayusoobj-$(CONFIG_TEXTSEARCH_BM) += ts_bm.o 2016408f79cSThomas Grafobj-$(CONFIG_TEXTSEARCH_FSM) += ts_fsm.o 2023cbc5640SRavikiran G Thirumalaiobj-$(CONFIG_SMP) += percpu_counter.o 203e65e1fc2SAl Viroobj-$(CONFIG_AUDIT_GENERIC) += audit.o 2044b588411SAKASHI Takahiroobj-$(CONFIG_AUDIT_COMPAT_GENERIC) += compat_audit.o 2052de4ff7bSThomas Graf 2060d3fdb15SChristoph Hellwigobj-$(CONFIG_IOMMU_HELPER) += iommu-helper.o 2076ff1cb35SAkinobu Mitaobj-$(CONFIG_FAULT_INJECTION) += fault-inject.o 2082c739cedSAlbert van der Lindeobj-$(CONFIG_FAULT_INJECTION_USERCOPY) += fault-inject-usercopy.o 2098d438288SAkinobu Mitaobj-$(CONFIG_NOTIFIER_ERROR_INJECTION) += notifier-error-inject.o 210048b9c35SAkinobu Mitaobj-$(CONFIG_PM_NOTIFIER_ERROR_INJECT) += pm-notifier-error-inject.o 21102fff96aSNikolay Aleksandrovobj-$(CONFIG_NETDEV_NOTIFIER_ERROR_INJECT) += netdev-notifier-error-inject.o 2129579f5bdSAkinobu Mitaobj-$(CONFIG_MEMORY_NOTIFIER_ERROR_INJECT) += memory-notifier-error-inject.o 213d526e85fSBenjamin Herrenschmidtobj-$(CONFIG_OF_RECONFIG_NOTIFIER_ERROR_INJECT) += \ 214d526e85fSBenjamin Herrenschmidt of-reconfig-notifier-error-inject.o 215540adea3SMasami Hiramatsuobj-$(CONFIG_FUNCTION_ERROR_INJECTION) += error-inject.o 2166c654b5fSJohn W. Linville 217916cc516SSuren Baghdasaryanobj-$(CONFIG_CODE_TAGGING) += codetag.o 21822d407b1SSuren Baghdasaryanobj-$(CONFIG_MEM_ALLOC_PROFILING) += alloc_tag.o 21922d407b1SSuren Baghdasaryan 2207664c5a1SJeremy Fitzhardingelib-$(CONFIG_GENERIC_BUG) += bug.o 2217664c5a1SJeremy Fitzhardinge 222bbc69863SRoland McGrathobj-$(CONFIG_HAVE_ARCH_TRACEHOOK) += syscall.o 223a88d970cSPaul E. McKenneyobj-$(CONFIG_ARCH_NEED_CMPXCHG_1_EMU) += cmpxchg-emu.o 224bbc69863SRoland McGrath 225ceabef7dSOrson Zhaiobj-$(CONFIG_DYNAMIC_DEBUG_CORE) += dynamic_debug.o 2267ce93729SJason Baron#ensure exported functions have prototypes 2277ce93729SJason BaronCFLAGS_dynamic_debug.o := -DDYNAMIC_DEBUG_MODULE 2287ce93729SJason Baron 22957f5677eSRasmus Villemoesobj-$(CONFIG_SYMBOLIC_ERRNAME) += errname.o 230346e15beSJason Baron 231e9cc8bddSGeert Uytterhoevenobj-$(CONFIG_NLATTR) += nlattr.o 2321da177e4SLinus Torvalds 233b411b363SPhilipp Reisnerobj-$(CONFIG_LRU_CACHE) += lru_cache.o 234b411b363SPhilipp Reisner 23526a28fa4SArnd Bergmannobj-$(CONFIG_GENERIC_CSUM) += checksum.o 23626a28fa4SArnd Bergmann 23709d4e0edSPaul Mackerrasobj-$(CONFIG_GENERIC_ATOMIC64) += atomic64.o 23809d4e0edSPaul Mackerras 23986a89380SLuca Barbieriobj-$(CONFIG_ATOMIC64_SELFTEST) += atomic64_test.o 24086a89380SLuca Barbieri 241c39649c3SBen Hutchingsobj-$(CONFIG_CPU_RMAP) += cpu_rmap.o 242c39649c3SBen Hutchings 2438c8d2d96SKent Overstreetobj-$(CONFIG_CLOSURES) += closure.o 2448c8d2d96SKent Overstreet 24575957ba3STom Herbertobj-$(CONFIG_DQL) += dynamic_queue_limits.o 24675957ba3STom Herbert 247b0125085SGeorge Spelvinobj-$(CONFIG_GLOB) += glob.o 248ba95b045SGeert Uytterhoevenobj-$(CONFIG_GLOB_SELFTEST) += globtest.o 249b0125085SGeorge Spelvin 2504f75da36STal Gilboaobj-$(CONFIG_DIMLIB) += dim/ 2515e8898e9SDmitry Kasatkinobj-$(CONFIG_SIGNATURE) += digsig.o 252d9c46b18SDmitry Kasatkin 253f5948701SChris Metcalflib-$(CONFIG_CLZ_TAB) += clz_tab.o 254c6df4b17SDavid Miller 2552922585bSDavid S. Millerobj-$(CONFIG_GENERIC_STRNCPY_FROM_USER) += strncpy_from_user.o 256a08c5356SLinus Torvaldsobj-$(CONFIG_GENERIC_STRNLEN_USER) += strnlen_user.o 2572922585bSDavid S. Miller 2584cd5773aSAndy Shevchenkoobj-$(CONFIG_GENERIC_NET_UTILS) += net_utils.o 2594cd5773aSAndy Shevchenko 260f8bcbe62SRobert Jarzmikobj-$(CONFIG_SG_SPLIT) += sg_split.o 2619b1d6c89SMing Linobj-$(CONFIG_SG_POOL) += sg_pool.o 26233dd7075SDan Williamsobj-$(CONFIG_MEMREGION) += memregion.o 2634ccf4beaSWolfram Sangobj-$(CONFIG_STMP_DEVICE) += stmp_device.o 264511cbce2SChristoph Hellwigobj-$(CONFIG_IRQ_POLL) += irq_poll.o 2654ccf4beaSWolfram Sang 266cd705ea8SMichael Walleobj-$(CONFIG_POLYNOMIAL) += polynomial.o 267cd705ea8SMichael Walle 2687b65942fSAlexander Potapenko# stackdepot.c should not be instrumented or call instrumented functions. 2697b65942fSAlexander Potapenko# Prevent the compiler from calling builtins like memcmp() or bcmp() from this 2707b65942fSAlexander Potapenko# file. 2717b65942fSAlexander PotapenkoCFLAGS_stackdepot.o += -fno-builtin 272cd11016eSAlexander Potapenkoobj-$(CONFIG_STACKDEPOT) += stackdepot.o 273cd11016eSAlexander PotapenkoKASAN_SANITIZE_stackdepot.o := n 27479dbd006SAlexander Potapenko# In particular, instrumenting stackdepot.c with KMSAN will result in infinite 27579dbd006SAlexander Potapenko# recursion. 27679dbd006SAlexander PotapenkoKMSAN_SANITIZE_stackdepot.o := n 27765deb8afSAlexander PotapenkoKCOV_INSTRUMENT_stackdepot.o := n 278cd11016eSAlexander Potapenko 2794e66934eSEric Dumazetobj-$(CONFIG_REF_TRACKER) += ref_tracker.o 2804e66934eSEric Dumazet 281adaf5687SMark Salterlibfdt_files = fdt.o fdt_ro.o fdt_wip.o fdt_rw.o fdt_sw.o fdt_strerror.o \ 282c273a2bdSAKASHI Takahiro fdt_empty_tree.o fdt_addresses.o 283ab253839SDavid Daney$(foreach file, $(libfdt_files), \ 28413d3bc71SMasahiro Yamada $(eval CFLAGS_$(file) = -I $(srctree)/scripts/dtc/libfdt)) 285ab253839SDavid Daneylib-$(CONFIG_LIBFDT) += $(libfdt_files) 286ab253839SDavid Daney 2876014a236SMasami Hiramatsuobj-$(CONFIG_BOOT_CONFIG) += bootconfig.o 288a2a9d67aSMasami Hiramatsuobj-$(CONFIG_BOOT_CONFIG_EMBED) += bootconfig-data.o 289a2a9d67aSMasami Hiramatsu 290a2a9d67aSMasami Hiramatsu$(obj)/bootconfig-data.o: $(obj)/default.bconf 291a2a9d67aSMasami Hiramatsu 292a2a9d67aSMasami Hiramatsutargets += default.bconf 293a2a9d67aSMasami Hiramatsufilechk_defbconf = cat $(or $(real-prereqs), /dev/null) 294a2a9d67aSMasami Hiramatsu$(obj)/default.bconf: $(CONFIG_BOOT_CONFIG_EMBED_FILE) FORCE 295a2a9d67aSMasami Hiramatsu $(call filechk,defbconf) 29676db5a27SMasami Hiramatsu 297910a742dSMichel Lespinasseobj-$(CONFIG_RBTREE_TEST) += rbtree_test.o 298fff3fd8aSMichel Lespinasseobj-$(CONFIG_INTERVAL_TREE_TEST) += interval_tree_test.o 299fff3fd8aSMichel Lespinasse 300623fd807SGreg Thelenobj-$(CONFIG_PERCPU_TEST) += percpu_test.o 301623fd807SGreg Thelen 30242d5ec27SDavid Howellsobj-$(CONFIG_ASN1) += asn1_decoder.o 303b0706762SJames Bottomleyobj-$(CONFIG_ASN1_ENCODER) += asn1_encoder.o 30442d5ec27SDavid Howells 305ee89bd6bSGeert Uytterhoevenobj-$(CONFIG_FONT_SUPPORT) += fonts/ 306ee89bd6bSGeert Uytterhoeven 3075f2fb52fSMasahiro Yamadahostprogs := gen_crc32table 3085f2fb52fSMasahiro Yamadahostprogs += gen_crc64table 3091da177e4SLinus Torvaldsclean-files := crc32table.h 310feba04fdSColy Liclean-files += crc64table.h 3111da177e4SLinus Torvalds 3121da177e4SLinus Torvalds$(obj)/crc32.o: $(obj)/crc32table.h 3131da177e4SLinus Torvalds 3141da177e4SLinus Torvaldsquiet_cmd_crc32 = GEN $@ 3151da177e4SLinus Torvalds cmd_crc32 = $< > $@ 3161da177e4SLinus Torvalds 3171da177e4SLinus Torvalds$(obj)/crc32table.h: $(obj)/gen_crc32table 3181da177e4SLinus Torvalds $(call cmd,crc32) 319a77ad6eaSDavid Howells 320feba04fdSColy Li$(obj)/crc64.o: $(obj)/crc64table.h 321feba04fdSColy Li 322feba04fdSColy Liquiet_cmd_crc64 = GEN $@ 323feba04fdSColy Li cmd_crc64 = $< > $@ 324feba04fdSColy Li 325feba04fdSColy Li$(obj)/crc64table.h: $(obj)/gen_crc64table 326feba04fdSColy Li $(call cmd,crc64) 327feba04fdSColy Li 328a77ad6eaSDavid Howells# 329a77ad6eaSDavid Howells# Build a fast OID lookip registry from include/linux/oid_registry.h 330a77ad6eaSDavid Howells# 331a77ad6eaSDavid Howellsobj-$(CONFIG_OID_REGISTRY) += oid_registry.o 332a77ad6eaSDavid Howells 333527897ccSTim Gardner$(obj)/oid_registry.o: $(obj)/oid_registry_data.c 334a77ad6eaSDavid Howells 335a77ad6eaSDavid Howells$(obj)/oid_registry_data.c: $(srctree)/include/linux/oid_registry.h \ 336a77ad6eaSDavid Howells $(src)/build_OID_registry 337a77ad6eaSDavid Howells $(call cmd,build_OID_registry) 338a77ad6eaSDavid Howells 339a77ad6eaSDavid Howellsquiet_cmd_build_OID_registry = GEN $@ 340b1992c37SMasahiro Yamada cmd_build_OID_registry = perl $(src)/build_OID_registry $< $@ 341a77ad6eaSDavid Howells 342a77ad6eaSDavid Howellsclean-files += oid_registry_data.c 3430635eb8aSMatthew Garrett 3440635eb8aSMatthew Garrettobj-$(CONFIG_UCS2_STRING) += ucs2_string.o 345c6d30853SAndrey Ryabininobj-$(CONFIG_UBSAN) += ubsan.o 346c6d30853SAndrey Ryabinin 347c6d30853SAndrey RyabininUBSAN_SANITIZE_ubsan.o := n 348af700eaeSArnd BergmannKASAN_SANITIZE_ubsan.o := n 349d47715f5SMarco ElverKCSAN_SANITIZE_ubsan.o := n 350893ab004SMasahiro YamadaCFLAGS_ubsan.o := -fno-stack-protector $(DISABLE_STACKLEAK_PLUGIN) 35188459642SOmar Sandoval 35288459642SOmar Sandovalobj-$(CONFIG_SBITMAP) += sbitmap.o 35344091d29SJiri Pirko 35444091d29SJiri Pirkoobj-$(CONFIG_PARMAN) += parman.o 355b35cd988SPalmer Dabbelt 356f7b3ea8cSMing Leiobj-y += group_cpus.o 357f7b3ea8cSMing Lei 358b35cd988SPalmer Dabbelt# GCC library routines 359e3d59805SMatt Redfearnobj-$(CONFIG_GENERIC_LIB_ASHLDI3) += ashldi3.o 360e3d59805SMatt Redfearnobj-$(CONFIG_GENERIC_LIB_ASHRDI3) += ashrdi3.o 361e3d59805SMatt Redfearnobj-$(CONFIG_GENERIC_LIB_LSHRDI3) += lshrdi3.o 362e3d59805SMatt Redfearnobj-$(CONFIG_GENERIC_LIB_MULDI3) += muldi3.o 363e3d59805SMatt Redfearnobj-$(CONFIG_GENERIC_LIB_CMPDI2) += cmpdi2.o 364e3d59805SMatt Redfearnobj-$(CONFIG_GENERIC_LIB_UCMPDI2) += ucmpdi2.o 3650a020d41SJiri Pirkoobj-$(CONFIG_OBJAGG) += objagg.o 366ea2dd7c0SDavid Gow 367b8265621SJacob Keller# pldmfw library 368b8265621SJacob Kellerobj-$(CONFIG_PLDMFW) += pldmfw/ 369b8265621SJacob Keller 370ea2dd7c0SDavid Gow# KUnit tests 371a8cf9033SArnd BergmannCFLAGS_bitfield_kunit.o := $(DISABLE_STRUCTLEAK_PLUGIN) 372d2585f51SVitor Massaru Ihaobj-$(CONFIG_BITFIELD_KUNIT) += bitfield_kunit.o 373688eb819SNoah Goldsteinobj-$(CONFIG_CHECKSUM_KUNIT) += checksum_kunit.o 374ea2dd7c0SDavid Gowobj-$(CONFIG_LIST_KUNIT_TEST) += list-test.o 375789538c6SRae Moarobj-$(CONFIG_HASHTABLE_KUNIT_TEST) += hashtable_test.o 37633d599f0SMatti Vaittinenobj-$(CONFIG_LINEAR_RANGES_TEST) += test_linear_ranges.o 3776d511020SRikard Falkebornobj-$(CONFIG_BITS_TEST) += test_bits.o 3787546861aSAndy Shevchenkoobj-$(CONFIG_CMDLINE_KUNIT_TEST) += cmdline_kunit.o 3791f9f78b1SOliver Glittaobj-$(CONFIG_SLUB_KUNIT_TEST) += slub_kunit.o 380bb95ebbeSKees Cookobj-$(CONFIG_MEMCPY_KUNIT_TEST) += memcpy_kunit.o 381addbeea6SBart Van Asscheobj-$(CONFIG_IS_SIGNED_TYPE_KUNIT_TEST) += is_signed_type_kunit.o 3824b21d25bSKees CookCFLAGS_overflow_kunit.o = $(call cc-disable-warning, tautological-constant-out-of-range-compare) 383617f55e2SKees Cookobj-$(CONFIG_OVERFLOW_KUNIT_TEST) += overflow_kunit.o 38402788ebcSKees CookCFLAGS_stackinit_kunit.o += $(call cc-disable-warning, switch-unreachable) 38502788ebcSKees Cookobj-$(CONFIG_STACKINIT_KUNIT_TEST) += stackinit_kunit.o 3869124a264SKees CookCFLAGS_fortify_kunit.o += $(call cc-disable-warning, unsequenced) 387fa4a3f86SKees CookCFLAGS_fortify_kunit.o += $(call cc-disable-warning, stringop-overread) 388fa4a3f86SKees CookCFLAGS_fortify_kunit.o += $(call cc-disable-warning, stringop-truncation) 3895abf6987SAnders RoxellCFLAGS_fortify_kunit.o += $(DISABLE_STRUCTLEAK_PLUGIN) 390875bfd52SKees Cookobj-$(CONFIG_FORTIFY_KUNIT_TEST) += fortify_kunit.o 391fb3d88abSKees Cookobj-$(CONFIG_SIPHASH_KUNIT_TEST) += siphash_kunit.o 392cf6219eeSKees Cookobj-$(CONFIG_USERCOPY_KUNIT_TEST) += usercopy_kunit.o 393527701edSPalmer Dabbelt 394527701edSPalmer Dabbeltobj-$(CONFIG_GENERIC_LIB_DEVMEM_IS_ALLOWED) += devmem_is_allowed.o 395be58f710SKees Cook 396a103f466SDave Jiangobj-$(CONFIG_FIRMWARE_TABLE) += fw_table.o 397a103f466SDave Jiang 3984e9903b0SMasahiro Yamadasubdir-$(CONFIG_FORTIFY_SOURCE) += test_fortify 399