Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

module: Fix KCOV-ignored file name

module.c was renamed to main.c, but the Makefile directive was copy-pasted
verbatim with the old file name. Fix up the file name.

Fixes: cfc1d277891e ("module: Move all into module/")
Signed-off-by: Dmitry Vyukov <dvyukov@google.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Reviewed-by: Alexander Potapenko <glider@google.com>
Reviewed-by: Marco Elver <elver@google.com>
Reviewed-by: Andrey Konovalov <andreyknvl@gmail.com>
Cc: stable@vger.kernel.org
Link: https://lore.kernel.org/all/bc0cf790b4839c5e38e2fafc64271f620568a39e.1718092070.git.dvyukov@google.com

authored by

Dmitry Vyukov and committed by
Thomas Gleixner
f34d086f 6cd0dd93

+1 -1
+1 -1
kernel/module/Makefile
··· 5 5 6 6 # These are called from save_stack_trace() on slub debug path, 7 7 # and produce insane amounts of uninteresting coverage. 8 - KCOV_INSTRUMENT_module.o := n 8 + KCOV_INSTRUMENT_main.o := n 9 9 10 10 obj-y += main.o 11 11 obj-y += strict_rwx.o