diff options
| author | Linus Torvalds <torvalds@linux-foundation.org> | 2025-10-02 03:47:16 +0300 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2025-10-02 03:47:16 +0300 |
| commit | d2b2fea3503e5e12b2e28784152937e48bcca6ff (patch) | |
| tree | 05c4ccd2be2c4eb34676d7c0389bc45a2c1ab379 /include/asm-generic/vmlinux.lds.h | |
| parent | 42cbaeec987b9fb91045060f2e7ce3152458ead9 (diff) | |
| parent | edcc8a38b5ac1a3dbd05e113a38a25b937ebefe5 (diff) | |
| download | linux-d2b2fea3503e5e12b2e28784152937e48bcca6ff.tar.xz | |
Merge tag 'asm-generic-6.18' of git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic
Pull asm-generic updates from Arnd Bergmann:
"Two small patches for the asm-generic header files: Varad Gautam
improves the MMIO tracing to be faster when the tracepoints are built
into the kernel but disabled, while Qi Xi updates the DO_ONCE logic so
that clearing the WARN_ONCE() flags does not change the other DO_ONCE
users"
* tag 'asm-generic-6.18' of git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic:
once: fix race by moving DO_ONCE to separate section
asm-generic/io.h: Skip trace helpers if rwmmio events are disabled
Diffstat (limited to 'include/asm-generic/vmlinux.lds.h')
| -rw-r--r-- | include/asm-generic/vmlinux.lds.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/asm-generic/vmlinux.lds.h b/include/asm-generic/vmlinux.lds.h index a65a87366c48..0e35c526b281 100644 --- a/include/asm-generic/vmlinux.lds.h +++ b/include/asm-generic/vmlinux.lds.h @@ -361,6 +361,7 @@ defined(CONFIG_AUTOFDO_CLANG) || defined(CONFIG_PROPELLER_CLANG) __start_once = .; \ *(.data..once) \ __end_once = .; \ + *(.data..do_once) \ STRUCT_ALIGN(); \ *(__tracepoints) \ /* implement dynamic printk debug */ \ |
