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 'core_urgent_for_v6.19_rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip

Pull core entry fix from Borislav Petkov:

- Make sure clang inlines trivial local_irq_* helpers

* tag 'core_urgent_for_v6.19_rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
entry: Always inline local_irq_{enable,disable}_exit_to_user()

+2 -2
+2 -2
include/linux/irq-entry-common.h
··· 110 110 static inline void local_irq_enable_exit_to_user(unsigned long ti_work); 111 111 112 112 #ifndef local_irq_enable_exit_to_user 113 - static inline void local_irq_enable_exit_to_user(unsigned long ti_work) 113 + static __always_inline void local_irq_enable_exit_to_user(unsigned long ti_work) 114 114 { 115 115 local_irq_enable(); 116 116 } ··· 125 125 static inline void local_irq_disable_exit_to_user(void); 126 126 127 127 #ifndef local_irq_disable_exit_to_user 128 - static inline void local_irq_disable_exit_to_user(void) 128 + static __always_inline void local_irq_disable_exit_to_user(void) 129 129 { 130 130 local_irq_disable(); 131 131 }