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 'locking-urgent-2020-08-15' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip

Pull locking fixlets from Ingo Molnar:
"A documentation fix and a 'fallthrough' macro update"

* tag 'locking-urgent-2020-08-15' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
futex: Convert to use the preferred 'fallthrough' macro
Documentation/locking/locktypes: Fix a typo

+2 -2
+2 -2
kernel/futex.c
··· 3744 3744 switch (cmd) { 3745 3745 case FUTEX_WAIT: 3746 3746 val3 = FUTEX_BITSET_MATCH_ANY; 3747 - /* fall through */ 3747 + fallthrough; 3748 3748 case FUTEX_WAIT_BITSET: 3749 3749 return futex_wait(uaddr, flags, val, timeout, val3); 3750 3750 case FUTEX_WAKE: 3751 3751 val3 = FUTEX_BITSET_MATCH_ANY; 3752 - /* fall through */ 3752 + fallthrough; 3753 3753 case FUTEX_WAKE_BITSET: 3754 3754 return futex_wake(uaddr, flags, val, val3); 3755 3755 case FUTEX_REQUEUE: