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 locking fixes from Thomas Gleixner:
"Two smallish fixes:

- use the proper asm constraint in the Super-H atomic_fetch_ops

- a trivial typo fix in the Kconfig help text"

* 'locking-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
locking/hung_task: Fix typo in CONFIG_DETECT_HUNG_TASK help text
locking/atomic, arch/sh: Fix ATOMIC_FETCH_OP()

+2 -2
+1 -1
arch/sh/include/asm/atomic-llsc.h
··· 60 60 " movco.l %0, @%3 \n" \ 61 61 " bf 1b \n" \ 62 62 " synco \n" \ 63 - : "=&z" (temp), "=&z" (res) \ 63 + : "=&z" (temp), "=&r" (res) \ 64 64 : "r" (i), "r" (&v->counter) \ 65 65 : "t"); \ 66 66 \
+1 -1
lib/Kconfig.debug
··· 821 821 help 822 822 Say Y here to enable the kernel to detect "hung tasks", 823 823 which are bugs that cause the task to be stuck in 824 - uninterruptible "D" state indefinitiley. 824 + uninterruptible "D" state indefinitely. 825 825 826 826 When a hung task is detected, the kernel will print the 827 827 current stack trace (which you should report), but the