diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2024-09-17 12:40:34 +0200 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2024-09-17 12:40:34 +0200 |
commit | 5ba202a7c986fc58dd2fd1571c99667ab2699995 (patch) | |
tree | 60d439deeb2276bd70786dfd38e31ddd97e40b92 /kernel/module | |
parent | a940d9a43e623d1ba1e5c499aa843516656c0ae4 (diff) | |
parent | ae94b263f5f69c180347e795fbefa051b65aacc3 (diff) | |
download | linux-5ba202a7c986fc58dd2fd1571c99667ab2699995.tar.gz linux-5ba202a7c986fc58dd2fd1571c99667ab2699995.tar.bz2 linux-5ba202a7c986fc58dd2fd1571c99667ab2699995.zip |
Merge tag 'x86-build-2024-09-17' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
Pull x86 build updates from Thomas Gleixner:
"Updates for KCOV instrumentation on x86:
- Prevent spurious KCOV coverage in common_interrupt()
- Fixup the KCOV Makefile directive which got stale due to a source
file rename
- Exclude stack unwinding from KCOV as it creates large amounts of
uninteresting coverage
- Provide a self test to validate that KCOV coverage of the interrupt
handling code starts not before preempt count got updated"
* tag 'x86-build-2024-09-17' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
x86: Ignore stack unwinding in KCOV
module: Fix KCOV-ignored file name
kcov: Add interrupt handling self test
x86/entry: Remove unwanted instrumentation in common_interrupt()
Diffstat (limited to 'kernel/module')
-rw-r--r-- | kernel/module/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/module/Makefile b/kernel/module/Makefile index a10b2b9a6fdf..50ffcc413b54 100644 --- a/kernel/module/Makefile +++ b/kernel/module/Makefile @@ -5,7 +5,7 @@ # These are called from save_stack_trace() on slub debug path, # and produce insane amounts of uninteresting coverage. -KCOV_INSTRUMENT_module.o := n +KCOV_INSTRUMENT_main.o := n obj-y += main.o obj-y += strict_rwx.o |