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.

Merge tag 'modules-6.13-rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/modules/linux

Pull modules fix from Petr Pavlu:
"A single fix is present to correct the module vermagic for PREEMPT_RT"

* tag 'modules-6.13-rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/modules/linux:
preempt: Move PREEMPT_RT before PREEMPT in vermagic.

+3 -3
+3 -3
include/linux/vermagic.h
··· 15 15 #else 16 16 #define MODULE_VERMAGIC_SMP "" 17 17 #endif 18 - #ifdef CONFIG_PREEMPT_BUILD 19 - #define MODULE_VERMAGIC_PREEMPT "preempt " 20 - #elif defined(CONFIG_PREEMPT_RT) 18 + #ifdef CONFIG_PREEMPT_RT 21 19 #define MODULE_VERMAGIC_PREEMPT "preempt_rt " 20 + #elif defined(CONFIG_PREEMPT_BUILD) 21 + #define MODULE_VERMAGIC_PREEMPT "preempt " 22 22 #else 23 23 #define MODULE_VERMAGIC_PREEMPT "" 24 24 #endif