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 branch 'smp-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip

Pull smp fixlet from Thomas Gleixner:
"A trivial build warning fix for newer compilers"

* 'smp-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
cpu/hotplug: Move inline keyword at the beginning of declaration

+4 -4
+4 -4
kernel/cpu.c
··· 80 80 STATIC_LOCKDEP_MAP_INIT("cpuhp_state-down", &cpuhp_state_down_map); 81 81 82 82 83 - static void inline cpuhp_lock_acquire(bool bringup) 83 + static inline void cpuhp_lock_acquire(bool bringup) 84 84 { 85 85 lock_map_acquire(bringup ? &cpuhp_state_up_map : &cpuhp_state_down_map); 86 86 } 87 87 88 - static void inline cpuhp_lock_release(bool bringup) 88 + static inline void cpuhp_lock_release(bool bringup) 89 89 { 90 90 lock_map_release(bringup ? &cpuhp_state_up_map : &cpuhp_state_down_map); 91 91 } 92 92 #else 93 93 94 - static void inline cpuhp_lock_acquire(bool bringup) { } 95 - static void inline cpuhp_lock_release(bool bringup) { } 94 + static inline void cpuhp_lock_acquire(bool bringup) { } 95 + static inline void cpuhp_lock_release(bool bringup) { } 96 96 97 97 #endif 98 98