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 175c9a8750SDmitry Vyukov 1833d0f96fSArvind Sankar# string.o implements standard library functions like memset/memcpy etc. 1933d0f96fSArvind Sankar# Use -ffreestanding to ensure that the compiler does not try to "optimize" 2033d0f96fSArvind Sankar# them into calls to themselves. 2133d0f96fSArvind SankarCFLAGS_string.o := -ffreestanding 2233d0f96fSArvind Sankar 23b51ce374SGary Hook# Early boot use of cmdline, don't instrument it 24b51ce374SGary Hookifdef CONFIG_AMD_MEM_ENCRYPT 25b51ce374SGary HookKASAN_SANITIZE_string.o := n 26b51ce374SGary Hook 2733d0f96fSArvind SankarCFLAGS_string.o += -fno-stack-protector 28b51ce374SGary Hookendif 29b51ce374SGary Hook 307a5c5d57SAlexey Dobriyanlib-y := ctype.o string.o vsprintf.o cmdline.o \ 31f8d5d0ccSMatthew Wilcox rbtree.o radix-tree.o timerqueue.o xarray.o \ 325fb8ef25SArd Biesheuvel idr.o extable.o sha1.o irq_regs.o argv_split.o \ 33d18d12d0SRichard Cochran flex_proportions.o ratelimit.o show_mem.o \ 3418dd0bf2SLinus Torvalds is_single_threaded.o plist.o decompress.o kobject_uevent.o \ 35f2ae6794SSebastian Andrzej Siewior earlycpio.o seq_buf.o siphash.o dec_and_lock.o \ 36bd7525daSJiri Olsa nmi_backtrace.o nodemask.o win_minmax.o memcat_p.o \ 37bd7525daSJiri Olsa buildid.o 389a19fea4Smochel@digitalimplant.org 39e36df28fSDave Younglib-$(CONFIG_PRINTK) += dump_stack.o 40ccb46000SAndrew Mortonlib-$(CONFIG_SMP) += cpumask.o 41ccb46000SAndrew Morton 424af679cdSPeter Zijlstralib-y += kobject.o klist.o 432f4f12e5SLinus Torvaldsobj-y += lockref.o 441da177e4SLinus Torvalds 452c64e9cbSAndy Shevchenkoobj-y += bcd.o sort.o parser.o debug_locks.o random32.o \ 4664d1d77aSAndy Shevchenko bust_spinlocks.o kasprintf.o bitmap.o scatterlist.o \ 472c64e9cbSAndy Shevchenko list_sort.o uuid.o iov_iter.o clz_ctz.o \ 48840620a1SYury Norov bsearch.o find_bit.o llist.o memweight.o kfifo.o \ 492c64e9cbSAndy Shevchenko percpu-refcount.o rhashtable.o \ 50ba20ba2eSKent Overstreet once.o refcount.o usercopy.o errseq.o bucket_locks.o \ 51ba20ba2eSKent Overstreet generic-radix-tree.o 52d6b28e09SGeert Uytterhoevenobj-$(CONFIG_STRING_SELFTEST) += test_string.o 5316c7fa05SAndy Shevchenkoobj-y += string_helpers.o 5416c7fa05SAndy Shevchenkoobj-$(CONFIG_TEST_STRING_HELPERS) += test-string_helpers.o 5564d1d77aSAndy Shevchenkoobj-y += hexdump.o 5660b2e8f4SAndy Shevchenkoobj-$(CONFIG_TEST_HEXDUMP) += test_hexdump.o 5733ee3b2eSAlexey Dobriyanobj-y += kstrtox.o 58dceeb3e7SYury Norovobj-$(CONFIG_FIND_BIT_BENCHMARK) += find_bit_benchmark.o 5964a8946bSAlexei Starovoitovobj-$(CONFIG_TEST_BPF) += test_bpf.o 600a8adf58SKees Cookobj-$(CONFIG_TEST_FIRMWARE) += test_firmware.o 61c348c163SJesse Brandeburgobj-$(CONFIG_TEST_BITOPS) += test_bitops.o 62c348c163SJesse BrandeburgCFLAGS_test_bitops.o += -Werror 639308f2f9SLuis R. Rodriguezobj-$(CONFIG_TEST_SYSCTL) += test_sysctl.o 642c956a60SJason A. Donenfeldobj-$(CONFIG_TEST_HASH) += test_hash.o test_siphash.o 658ab8ba38SMatthew Wilcoxobj-$(CONFIG_TEST_IDA) += test_ida.o 6673228c7eSPatricia Alfonsoobj-$(CONFIG_KASAN_KUNIT_TEST) += test_kasan.o 6769ca372cSAndrey KonovalovCFLAGS_test_kasan.o += -fno-builtin 680bb95f80SKees CookCFLAGS_test_kasan.o += $(call cc-disable-warning, vla) 695d92bdffSAndrey Konovalovobj-$(CONFIG_KASAN_MODULE_TEST) += test_kasan_module.o 7073228c7eSPatricia AlfonsoCFLAGS_test_kasan_module.o += -fno-builtin 71854686f4SJinbum Parkobj-$(CONFIG_TEST_UBSAN) += test_ubsan.o 720bb95f80SKees CookCFLAGS_test_ubsan.o += $(call cc-disable-warning, vla) 73854686f4SJinbum ParkUBSAN_SANITIZE_test_ubsan.o := y 743f15801cSAndrey Ryabininobj-$(CONFIG_TEST_KSTRTOX) += test-kstrtox.o 75e327fd7cSGeert Uytterhoevenobj-$(CONFIG_TEST_LIST_SORT) += test_list_sort.o 766e24628dSIan Rogersobj-$(CONFIG_TEST_MIN_HEAP) += test_min_heap.o 773f15801cSAndrey Ryabininobj-$(CONFIG_TEST_LKM) += test_module.o 783f21a6b7SUladzislau Rezki (Sony)obj-$(CONFIG_TEST_VMALLOC) += test_vmalloc.o 79455a35a6SRasmus Villemoesobj-$(CONFIG_TEST_OVERFLOW) += test_overflow.o 809d6dbe1bSGeert Uytterhoevenobj-$(CONFIG_TEST_RHASHTABLE) += test_rhashtable.o 81c5adae95SKostenzer Felixobj-$(CONFIG_TEST_SORT) += test_sort.o 823f15801cSAndrey Ryabininobj-$(CONFIG_TEST_USER_COPY) += test_user_copy.o 832bf9e0abSIngo Molnarobj-$(CONFIG_TEST_STATIC_KEYS) += test_static_keys.o 842bf9e0abSIngo Molnarobj-$(CONFIG_TEST_STATIC_KEYS) += test_static_key_base.o 85707cc728SRasmus Villemoesobj-$(CONFIG_TEST_PRINTF) += test_printf.o 8650f530e1SRichard Fitzgeraldobj-$(CONFIG_TEST_SCANF) += test_scanf.o 875fd003f5SDavid Decotignyobj-$(CONFIG_TEST_BITMAP) += test_bitmap.o 880b0600c8STobin C. Hardingobj-$(CONFIG_TEST_STRSCPY) += test_strscpy.o 89cfaff0e5SAndy Shevchenkoobj-$(CONFIG_TEST_UUID) += test_uuid.o 90ad3d6c72SMatthew Wilcoxobj-$(CONFIG_TEST_XARRAY) += test_xarray.o 9144091d29SJiri Pirkoobj-$(CONFIG_TEST_PARMAN) += test_parman.o 92d9c6a72dSLuis R. Rodriguezobj-$(CONFIG_TEST_KMOD) += test_kmod.o 93e4dace36SFlorian Fainelliobj-$(CONFIG_TEST_DEBUG_VIRTUAL) += test_debug_virtual.o 94ce76d938SAlexander Shishkinobj-$(CONFIG_TEST_MEMCAT_P) += test_memcat_p.o 950a020d41SJiri Pirkoobj-$(CONFIG_TEST_OBJAGG) += test_objagg.o 969cf016e6SKees CookCFLAGS_test_stackinit.o += $(call cc-disable-warning, switch-unreachable) 9750ceaa95SKees Cookobj-$(CONFIG_TEST_STACKINIT) += test_stackinit.o 98509e56b3SMahesh Bandewarobj-$(CONFIG_TEST_BLACKHOLE_DEV) += test_blackhole_dev.o 995015a300SAlexander Potapenkoobj-$(CONFIG_TEST_MEMINIT) += test_meminit.o 10030428ef5SKonstantin Khlebnikovobj-$(CONFIG_TEST_LOCKUP) += test_lockup.o 101b2ef9f5aSRalph Campbellobj-$(CONFIG_TEST_HMM) += test_hmm.o 102e320d301SMatthew Wilcox (Oracle)obj-$(CONFIG_TEST_FREE_PAGES) += test_free_pages.o 1031da177e4SLinus Torvalds 1044185b3b9SPetteri Aimonen# 1054185b3b9SPetteri Aimonen# CFLAGS for compiling floating point code inside the kernel. x86/Makefile turns 1064185b3b9SPetteri Aimonen# off the generation of FPU/SSE* instructions for kernel proper but FPU_FLAGS 1074185b3b9SPetteri Aimonen# get appended last to CFLAGS and thus override those previous compiler options. 1084185b3b9SPetteri Aimonen# 10984edc2efSArnd BergmannFPU_CFLAGS := -msse -msse2 1104185b3b9SPetteri Aimonenifdef CONFIG_CC_IS_GCC 1114185b3b9SPetteri Aimonen# Stack alignment mismatch, proceed with caution. 1124185b3b9SPetteri Aimonen# GCC < 7.1 cannot compile code using `double` and -mpreferred-stack-boundary=3 1134185b3b9SPetteri Aimonen# (8B stack alignment). 1144185b3b9SPetteri Aimonen# See https://gcc.gnu.org/bugzilla/show_bug.cgi?id=53383 1154185b3b9SPetteri Aimonen# 1164185b3b9SPetteri Aimonen# The "-msse" in the first argument is there so that the 1174185b3b9SPetteri Aimonen# -mpreferred-stack-boundary=3 build error: 1184185b3b9SPetteri Aimonen# 1194185b3b9SPetteri Aimonen# -mpreferred-stack-boundary=3 is not between 4 and 12 1204185b3b9SPetteri Aimonen# 1214185b3b9SPetteri Aimonen# can be triggered. Otherwise gcc doesn't complain. 12284edc2efSArnd BergmannFPU_CFLAGS += -mhard-float 1234185b3b9SPetteri AimonenFPU_CFLAGS += $(call cc-option,-msse -mpreferred-stack-boundary=3,-mpreferred-stack-boundary=4) 1244185b3b9SPetteri Aimonenendif 1254185b3b9SPetteri Aimonen 1264185b3b9SPetteri Aimonenobj-$(CONFIG_TEST_FPU) += test_fpu.o 1274185b3b9SPetteri AimonenCFLAGS_test_fpu.o += $(FPU_CFLAGS) 1284185b3b9SPetteri Aimonen 129a2818ee4SJoe Lawrenceobj-$(CONFIG_TEST_LIVEPATCH) += livepatch/ 130a2818ee4SJoe Lawrence 13184bc809eSBrendan Higginsobj-$(CONFIG_KUNIT) += kunit/ 13284bc809eSBrendan Higgins 1331da177e4SLinus Torvaldsifeq ($(CONFIG_DEBUG_KOBJECT),y) 1341da177e4SLinus TorvaldsCFLAGS_kobject.o += -DDEBUG 1351da177e4SLinus TorvaldsCFLAGS_kobject_uevent.o += -DDEBUG 1361da177e4SLinus Torvaldsendif 1371da177e4SLinus Torvalds 13850ab9a69SRasmus Villemoesobj-$(CONFIG_DEBUG_INFO_REDUCED) += debug_info.o 13950ab9a69SRasmus VillemoesCFLAGS_debug_info.o += $(call cc-option, -femit-struct-debug-detailed=any) 14050ab9a69SRasmus Villemoes 141dc51f257SArd Biesheuvelobj-y += math/ crypto/ 1422c64e9cbSAndy Shevchenko 1435ea81769SAl Viroobj-$(CONFIG_GENERIC_IOMAP) += iomap.o 14466eab4dfSMichael S. Tsirkinobj-$(CONFIG_GENERIC_PCI_IOMAP) += pci_iomap.o 145928923c7SGeert Uytterhoevenobj-$(CONFIG_HAS_IOMEM) += iomap_copy.o devres.o 146928923c7SGeert Uytterhoevenobj-$(CONFIG_CHECK_SIGNATURE) += check_signature.o 147cae2ed9aSIngo Molnarobj-$(CONFIG_DEBUG_LOCKING_API_SELFTESTS) += locking-selftest.o 148d61931d8SBorislav Petkov 149f361c863SJohn Garrylib-y += logic_pio.o 150031e3601SZhichang Yuan 151ca2e3342SJohannes Berglib-$(CONFIG_INDIRECT_IOMEM) += logic_iomem.o 152ca2e3342SJohannes Berg 153702a28b1SRandy Dunlapobj-$(CONFIG_GENERIC_HWEIGHT) += hweight.o 154d61931d8SBorislav Petkov 1555db53f3eSJoern Engelobj-$(CONFIG_BTREE) += btree.o 156a88cc108SChris Wilsonobj-$(CONFIG_INTERVAL_TREE) += interval_tree.o 1573cb98950SDavid Howellsobj-$(CONFIG_ASSOCIATIVE_ARRAY) += assoc_array.o 15839c715b7SIngo Molnarobj-$(CONFIG_DEBUG_PREEMPT) += smp_processor_id.o 159199a9afcSDave Jonesobj-$(CONFIG_DEBUG_LIST) += list_debug.o 1603ac7fe5aSThomas Gleixnerobj-$(CONFIG_DEBUG_OBJECTS) += debugobjects.o 1611da177e4SLinus Torvalds 162a5cfc1ecSAkinobu Mitaobj-$(CONFIG_BITREVERSE) += bitrev.o 163d2218d4eSMatti Vaittinenobj-$(CONFIG_LINEAR_RANGES) += linear_ranges.o 164554aae35SVladimir Olteanobj-$(CONFIG_PACKING) += packing.o 1651da177e4SLinus Torvaldsobj-$(CONFIG_CRC_CCITT) += crc-ccitt.o 1667657ec1fSEvgeniy Polyakovobj-$(CONFIG_CRC16) += crc16.o 167f11f594eSMartin K. Petersenobj-$(CONFIG_CRC_T10DIF)+= crc-t10dif.o 1683e7cbae7SIvo van Doornobj-$(CONFIG_CRC_ITU_T) += crc-itu-t.o 1691da177e4SLinus Torvaldsobj-$(CONFIG_CRC32) += crc32.o 170feba04fdSColy Liobj-$(CONFIG_CRC64) += crc64.o 1715fb7f874SGeert Uytterhoevenobj-$(CONFIG_CRC32_SELFTEST) += crc32test.o 1720cbaa448SJeremy Kerrobj-$(CONFIG_CRC4) += crc4.o 173ad241528SJan Nikitenkoobj-$(CONFIG_CRC7) += crc7.o 1741da177e4SLinus Torvaldsobj-$(CONFIG_LIBCRC32C) += libcrc32c.o 1757150962dSArend van Sprielobj-$(CONFIG_CRC8) += crc8.o 1765d240522SNick Terrellobj-$(CONFIG_XXHASH) += xxhash.o 177f14f75b8SJes Sorensenobj-$(CONFIG_GENERIC_ALLOCATOR) += genalloc.o 1781da177e4SLinus Torvalds 1792da572c9SDan Streetmanobj-$(CONFIG_842_COMPRESS) += 842/ 1802da572c9SDan Streetmanobj-$(CONFIG_842_DECOMPRESS) += 842/ 1811da177e4SLinus Torvaldsobj-$(CONFIG_ZLIB_INFLATE) += zlib_inflate/ 1821da177e4SLinus Torvaldsobj-$(CONFIG_ZLIB_DEFLATE) += zlib_deflate/ 183aa5b395bSMikhail Zaslonkoobj-$(CONFIG_ZLIB_DFLTCC) += zlib_dfltcc/ 1841da177e4SLinus Torvaldsobj-$(CONFIG_REED_SOLOMON) += reed_solomon/ 185437aa565SIvan Djelicobj-$(CONFIG_BCH) += bch.o 18664c70b1cSRichard Purdieobj-$(CONFIG_LZO_COMPRESS) += lzo/ 18764c70b1cSRichard Purdieobj-$(CONFIG_LZO_DECOMPRESS) += lzo/ 188c72ac7a1SChanho Minobj-$(CONFIG_LZ4_COMPRESS) += lz4/ 189c72ac7a1SChanho Minobj-$(CONFIG_LZ4HC_COMPRESS) += lz4/ 190e76e1fdfSKyungsik Leeobj-$(CONFIG_LZ4_DECOMPRESS) += lz4/ 19173f3d1b4SNick Terrellobj-$(CONFIG_ZSTD_COMPRESS) += zstd/ 19273f3d1b4SNick Terrellobj-$(CONFIG_ZSTD_DECOMPRESS) += zstd/ 19324fa0402SLasse Collinobj-$(CONFIG_XZ_DEC) += xz/ 194f5e70d0fSDavid Woodhouseobj-$(CONFIG_RAID6_PQ) += raid6/ 1951da177e4SLinus Torvalds 196889c92d2SH. Peter Anvinlib-$(CONFIG_DECOMPRESS_GZIP) += decompress_inflate.o 197889c92d2SH. Peter Anvinlib-$(CONFIG_DECOMPRESS_BZIP2) += decompress_bunzip2.o 198889c92d2SH. Peter Anvinlib-$(CONFIG_DECOMPRESS_LZMA) += decompress_unlzma.o 1993ebe1243SLasse Collinlib-$(CONFIG_DECOMPRESS_XZ) += decompress_unxz.o 200cacb246fSAlbin Tonnerrelib-$(CONFIG_DECOMPRESS_LZO) += decompress_unlzo.o 201e76e1fdfSKyungsik Leelib-$(CONFIG_DECOMPRESS_LZ4) += decompress_unlz4.o 2024963bb2bSNick Terrelllib-$(CONFIG_DECOMPRESS_ZSTD) += decompress_unzstd.o 203c8531ab3SH. Peter Anvin 20465df877aSDavid S. Millerobj-$(CONFIG_TEXTSEARCH) += textsearch.o 205df3fb93aSThomas Grafobj-$(CONFIG_TEXTSEARCH_KMP) += ts_kmp.o 2068082e4edSPablo Neira Ayusoobj-$(CONFIG_TEXTSEARCH_BM) += ts_bm.o 2076408f79cSThomas Grafobj-$(CONFIG_TEXTSEARCH_FSM) += ts_fsm.o 2083cbc5640SRavikiran G Thirumalaiobj-$(CONFIG_SMP) += percpu_counter.o 209e65e1fc2SAl Viroobj-$(CONFIG_AUDIT_GENERIC) += audit.o 2104b588411SAKASHI Takahiroobj-$(CONFIG_AUDIT_COMPAT_GENERIC) += compat_audit.o 2112de4ff7bSThomas Graf 2120d3fdb15SChristoph Hellwigobj-$(CONFIG_IOMMU_HELPER) += iommu-helper.o 2136ff1cb35SAkinobu Mitaobj-$(CONFIG_FAULT_INJECTION) += fault-inject.o 2142c739cedSAlbert van der Lindeobj-$(CONFIG_FAULT_INJECTION_USERCOPY) += fault-inject-usercopy.o 2158d438288SAkinobu Mitaobj-$(CONFIG_NOTIFIER_ERROR_INJECTION) += notifier-error-inject.o 216048b9c35SAkinobu Mitaobj-$(CONFIG_PM_NOTIFIER_ERROR_INJECT) += pm-notifier-error-inject.o 21702fff96aSNikolay Aleksandrovobj-$(CONFIG_NETDEV_NOTIFIER_ERROR_INJECT) += netdev-notifier-error-inject.o 2189579f5bdSAkinobu Mitaobj-$(CONFIG_MEMORY_NOTIFIER_ERROR_INJECT) += memory-notifier-error-inject.o 219d526e85fSBenjamin Herrenschmidtobj-$(CONFIG_OF_RECONFIG_NOTIFIER_ERROR_INJECT) += \ 220d526e85fSBenjamin Herrenschmidt of-reconfig-notifier-error-inject.o 221540adea3SMasami Hiramatsuobj-$(CONFIG_FUNCTION_ERROR_INJECTION) += error-inject.o 2226c654b5fSJohn W. Linville 2237664c5a1SJeremy Fitzhardingelib-$(CONFIG_GENERIC_BUG) += bug.o 2247664c5a1SJeremy Fitzhardinge 225bbc69863SRoland McGrathobj-$(CONFIG_HAVE_ARCH_TRACEHOOK) += syscall.o 226bbc69863SRoland McGrath 227ceabef7dSOrson Zhaiobj-$(CONFIG_DYNAMIC_DEBUG_CORE) += dynamic_debug.o 22857f5677eSRasmus Villemoesobj-$(CONFIG_SYMBOLIC_ERRNAME) += errname.o 229346e15beSJason Baron 230e9cc8bddSGeert Uytterhoevenobj-$(CONFIG_NLATTR) += nlattr.o 2311da177e4SLinus Torvalds 232b411b363SPhilipp Reisnerobj-$(CONFIG_LRU_CACHE) += lru_cache.o 233b411b363SPhilipp Reisner 23426a28fa4SArnd Bergmannobj-$(CONFIG_GENERIC_CSUM) += checksum.o 23526a28fa4SArnd Bergmann 23609d4e0edSPaul Mackerrasobj-$(CONFIG_GENERIC_ATOMIC64) += atomic64.o 23709d4e0edSPaul Mackerras 23886a89380SLuca Barbieriobj-$(CONFIG_ATOMIC64_SELFTEST) += atomic64_test.o 23986a89380SLuca Barbieri 240c39649c3SBen Hutchingsobj-$(CONFIG_CPU_RMAP) += cpu_rmap.o 241c39649c3SBen Hutchings 24275957ba3STom Herbertobj-$(CONFIG_DQL) += dynamic_queue_limits.o 24375957ba3STom Herbert 244b0125085SGeorge Spelvinobj-$(CONFIG_GLOB) += glob.o 245ba95b045SGeert Uytterhoevenobj-$(CONFIG_GLOB_SELFTEST) += globtest.o 246b0125085SGeorge Spelvin 247d9c46b18SDmitry Kasatkinobj-$(CONFIG_MPILIB) += mpi/ 2484f75da36STal Gilboaobj-$(CONFIG_DIMLIB) += dim/ 2495e8898e9SDmitry Kasatkinobj-$(CONFIG_SIGNATURE) += digsig.o 250d9c46b18SDmitry Kasatkin 251f5948701SChris Metcalflib-$(CONFIG_CLZ_TAB) += clz_tab.o 252c6df4b17SDavid Miller 2532922585bSDavid S. Millerobj-$(CONFIG_GENERIC_STRNCPY_FROM_USER) += strncpy_from_user.o 254a08c5356SLinus Torvaldsobj-$(CONFIG_GENERIC_STRNLEN_USER) += strnlen_user.o 2552922585bSDavid S. Miller 2564cd5773aSAndy Shevchenkoobj-$(CONFIG_GENERIC_NET_UTILS) += net_utils.o 2574cd5773aSAndy Shevchenko 258f8bcbe62SRobert Jarzmikobj-$(CONFIG_SG_SPLIT) += sg_split.o 2599b1d6c89SMing Linobj-$(CONFIG_SG_POOL) += sg_pool.o 26033dd7075SDan Williamsobj-$(CONFIG_MEMREGION) += memregion.o 2614ccf4beaSWolfram Sangobj-$(CONFIG_STMP_DEVICE) += stmp_device.o 262511cbce2SChristoph Hellwigobj-$(CONFIG_IRQ_POLL) += irq_poll.o 2634ccf4beaSWolfram Sang 2647b65942fSAlexander Potapenko# stackdepot.c should not be instrumented or call instrumented functions. 2657b65942fSAlexander Potapenko# Prevent the compiler from calling builtins like memcmp() or bcmp() from this 2667b65942fSAlexander Potapenko# file. 2677b65942fSAlexander PotapenkoCFLAGS_stackdepot.o += -fno-builtin 268cd11016eSAlexander Potapenkoobj-$(CONFIG_STACKDEPOT) += stackdepot.o 269cd11016eSAlexander PotapenkoKASAN_SANITIZE_stackdepot.o := n 27065deb8afSAlexander PotapenkoKCOV_INSTRUMENT_stackdepot.o := n 271cd11016eSAlexander Potapenko 272adaf5687SMark Salterlibfdt_files = fdt.o fdt_ro.o fdt_wip.o fdt_rw.o fdt_sw.o fdt_strerror.o \ 273c273a2bdSAKASHI Takahiro fdt_empty_tree.o fdt_addresses.o 274ab253839SDavid Daney$(foreach file, $(libfdt_files), \ 27513d3bc71SMasahiro Yamada $(eval CFLAGS_$(file) = -I $(srctree)/scripts/dtc/libfdt)) 276ab253839SDavid Daneylib-$(CONFIG_LIBFDT) += $(libfdt_files) 277ab253839SDavid Daney 27826445f98SMasami Hiramatsulib-$(CONFIG_BOOT_CONFIG) += bootconfig.o 27976db5a27SMasami Hiramatsu 280910a742dSMichel Lespinasseobj-$(CONFIG_RBTREE_TEST) += rbtree_test.o 281fff3fd8aSMichel Lespinasseobj-$(CONFIG_INTERVAL_TREE_TEST) += interval_tree_test.o 282fff3fd8aSMichel Lespinasse 283623fd807SGreg Thelenobj-$(CONFIG_PERCPU_TEST) += percpu_test.o 284623fd807SGreg Thelen 28542d5ec27SDavid Howellsobj-$(CONFIG_ASN1) += asn1_decoder.o 286b0706762SJames Bottomleyobj-$(CONFIG_ASN1_ENCODER) += asn1_encoder.o 28742d5ec27SDavid Howells 288ee89bd6bSGeert Uytterhoevenobj-$(CONFIG_FONT_SUPPORT) += fonts/ 289ee89bd6bSGeert Uytterhoeven 2905f2fb52fSMasahiro Yamadahostprogs := gen_crc32table 2915f2fb52fSMasahiro Yamadahostprogs += gen_crc64table 2921da177e4SLinus Torvaldsclean-files := crc32table.h 293feba04fdSColy Liclean-files += crc64table.h 2941da177e4SLinus Torvalds 2951da177e4SLinus Torvalds$(obj)/crc32.o: $(obj)/crc32table.h 2961da177e4SLinus Torvalds 2971da177e4SLinus Torvaldsquiet_cmd_crc32 = GEN $@ 2981da177e4SLinus Torvalds cmd_crc32 = $< > $@ 2991da177e4SLinus Torvalds 3001da177e4SLinus Torvalds$(obj)/crc32table.h: $(obj)/gen_crc32table 3011da177e4SLinus Torvalds $(call cmd,crc32) 302a77ad6eaSDavid Howells 303feba04fdSColy Li$(obj)/crc64.o: $(obj)/crc64table.h 304feba04fdSColy Li 305feba04fdSColy Liquiet_cmd_crc64 = GEN $@ 306feba04fdSColy Li cmd_crc64 = $< > $@ 307feba04fdSColy Li 308feba04fdSColy Li$(obj)/crc64table.h: $(obj)/gen_crc64table 309feba04fdSColy Li $(call cmd,crc64) 310feba04fdSColy Li 311a77ad6eaSDavid Howells# 312a77ad6eaSDavid Howells# Build a fast OID lookip registry from include/linux/oid_registry.h 313a77ad6eaSDavid Howells# 314a77ad6eaSDavid Howellsobj-$(CONFIG_OID_REGISTRY) += oid_registry.o 315a77ad6eaSDavid Howells 316527897ccSTim Gardner$(obj)/oid_registry.o: $(obj)/oid_registry_data.c 317a77ad6eaSDavid Howells 318a77ad6eaSDavid Howells$(obj)/oid_registry_data.c: $(srctree)/include/linux/oid_registry.h \ 319a77ad6eaSDavid Howells $(src)/build_OID_registry 320a77ad6eaSDavid Howells $(call cmd,build_OID_registry) 321a77ad6eaSDavid Howells 322a77ad6eaSDavid Howellsquiet_cmd_build_OID_registry = GEN $@ 323a77ad6eaSDavid Howells cmd_build_OID_registry = perl $(srctree)/$(src)/build_OID_registry $< $@ 324a77ad6eaSDavid Howells 325a77ad6eaSDavid Howellsclean-files += oid_registry_data.c 3260635eb8aSMatthew Garrett 3270635eb8aSMatthew Garrettobj-$(CONFIG_UCS2_STRING) += ucs2_string.o 3280887a7ebSKees Cookifneq ($(CONFIG_UBSAN_TRAP),y) 329c6d30853SAndrey Ryabininobj-$(CONFIG_UBSAN) += ubsan.o 3300887a7ebSKees Cookendif 331c6d30853SAndrey Ryabinin 332c6d30853SAndrey RyabininUBSAN_SANITIZE_ubsan.o := n 333af700eaeSArnd BergmannKASAN_SANITIZE_ubsan.o := n 334d47715f5SMarco ElverKCSAN_SANITIZE_ubsan.o := n 335893ab004SMasahiro YamadaCFLAGS_ubsan.o := -fno-stack-protector $(DISABLE_STACKLEAK_PLUGIN) 33688459642SOmar Sandoval 33788459642SOmar Sandovalobj-$(CONFIG_SBITMAP) += sbitmap.o 33844091d29SJiri Pirko 33944091d29SJiri Pirkoobj-$(CONFIG_PARMAN) += parman.o 340b35cd988SPalmer Dabbelt 341b35cd988SPalmer Dabbelt# GCC library routines 342e3d59805SMatt Redfearnobj-$(CONFIG_GENERIC_LIB_ASHLDI3) += ashldi3.o 343e3d59805SMatt Redfearnobj-$(CONFIG_GENERIC_LIB_ASHRDI3) += ashrdi3.o 344e3d59805SMatt Redfearnobj-$(CONFIG_GENERIC_LIB_LSHRDI3) += lshrdi3.o 345e3d59805SMatt Redfearnobj-$(CONFIG_GENERIC_LIB_MULDI3) += muldi3.o 346e3d59805SMatt Redfearnobj-$(CONFIG_GENERIC_LIB_CMPDI2) += cmpdi2.o 347e3d59805SMatt Redfearnobj-$(CONFIG_GENERIC_LIB_UCMPDI2) += ucmpdi2.o 3480a020d41SJiri Pirkoobj-$(CONFIG_OBJAGG) += objagg.o 349ea2dd7c0SDavid Gow 350b8265621SJacob Keller# pldmfw library 351b8265621SJacob Kellerobj-$(CONFIG_PLDMFW) += pldmfw/ 352b8265621SJacob Keller 353ea2dd7c0SDavid Gow# KUnit tests 3541b6d6393SZhen LeiCFLAGS_bitfield_kunit.o := $(call cc-option,-Wframe-larger-than=10240) 355d2585f51SVitor Massaru Ihaobj-$(CONFIG_BITFIELD_KUNIT) += bitfield_kunit.o 356ea2dd7c0SDavid Gowobj-$(CONFIG_LIST_KUNIT_TEST) += list-test.o 35733d599f0SMatti Vaittinenobj-$(CONFIG_LINEAR_RANGES_TEST) += test_linear_ranges.o 3586d511020SRikard Falkebornobj-$(CONFIG_BITS_TEST) += test_bits.o 3597546861aSAndy Shevchenkoobj-$(CONFIG_CMDLINE_KUNIT_TEST) += cmdline_kunit.o 3601f9f78b1SOliver Glittaobj-$(CONFIG_SLUB_KUNIT_TEST) += slub_kunit.o 361*bb95ebbeSKees Cookobj-$(CONFIG_MEMCPY_KUNIT_TEST) += memcpy_kunit.o 362527701edSPalmer Dabbelt 363527701edSPalmer Dabbeltobj-$(CONFIG_GENERIC_LIB_DEVMEM_IS_ALLOWED) += devmem_is_allowed.o 364be58f710SKees Cook 365be58f710SKees Cook# FORTIFY_SOURCE compile-time behavior tests 366be58f710SKees CookTEST_FORTIFY_SRCS = $(wildcard $(srctree)/$(src)/test_fortify/*-*.c) 367be58f710SKees CookTEST_FORTIFY_LOGS = $(patsubst $(srctree)/$(src)/%.c, %.log, $(TEST_FORTIFY_SRCS)) 368be58f710SKees CookTEST_FORTIFY_LOG = test_fortify.log 369be58f710SKees Cook 370be58f710SKees Cookquiet_cmd_test_fortify = TEST $@ 371be58f710SKees Cook cmd_test_fortify = $(CONFIG_SHELL) $(srctree)/scripts/test_fortify.sh \ 372be58f710SKees Cook $< $@ "$(NM)" $(CC) $(c_flags) \ 373be58f710SKees Cook $(call cc-disable-warning,fortify-source) 374be58f710SKees Cook 375be58f710SKees Cooktargets += $(TEST_FORTIFY_LOGS) 376be58f710SKees Cookclean-files += $(TEST_FORTIFY_LOGS) 377be58f710SKees Cookclean-files += $(addsuffix .o, $(TEST_FORTIFY_LOGS)) 378be58f710SKees Cook$(obj)/test_fortify/%.log: $(src)/test_fortify/%.c \ 379be58f710SKees Cook $(src)/test_fortify/test_fortify.h \ 380be58f710SKees Cook $(srctree)/include/linux/fortify-string.h \ 381be58f710SKees Cook $(srctree)/scripts/test_fortify.sh \ 382be58f710SKees Cook FORCE 383be58f710SKees Cook $(call if_changed,test_fortify) 384be58f710SKees Cook 385be58f710SKees Cookquiet_cmd_gen_fortify_log = GEN $@ 386be58f710SKees Cook cmd_gen_fortify_log = cat </dev/null $(filter-out FORCE,$^) 2>/dev/null > $@ || true 387be58f710SKees Cook 388be58f710SKees Cooktargets += $(TEST_FORTIFY_LOG) 389be58f710SKees Cookclean-files += $(TEST_FORTIFY_LOG) 390be58f710SKees Cook$(obj)/$(TEST_FORTIFY_LOG): $(addprefix $(obj)/, $(TEST_FORTIFY_LOGS)) FORCE 391be58f710SKees Cook $(call if_changed,gen_fortify_log) 392be58f710SKees Cook 393be58f710SKees Cook# Fake dependency to trigger the fortify tests. 394be58f710SKees Cookifeq ($(CONFIG_FORTIFY_SOURCE),y) 395be58f710SKees Cook$(obj)/string.o: $(obj)/$(TEST_FORTIFY_LOG) 396be58f710SKees Cookendif 397