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

Pull licking update from Thomas Gleixner:
"Mark the switch cases which fall through to the next case with the
proper comment so the fallthrough compiler checks can be enabled"

* 'locking-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
futex: Mark expected switch fall-throughs

+2
+2
kernel/futex.c
··· 3523 3523 switch (cmd) { 3524 3524 case FUTEX_WAIT: 3525 3525 val3 = FUTEX_BITSET_MATCH_ANY; 3526 + /* fall through */ 3526 3527 case FUTEX_WAIT_BITSET: 3527 3528 return futex_wait(uaddr, flags, val, timeout, val3); 3528 3529 case FUTEX_WAKE: 3529 3530 val3 = FUTEX_BITSET_MATCH_ANY; 3531 + /* fall through */ 3530 3532 case FUTEX_WAKE_BITSET: 3531 3533 return futex_wake(uaddr, flags, val, val3); 3532 3534 case FUTEX_REQUEUE: