]> git.baikalelectronics.ru Git - kernel.git/commit
powerpc/tm: Abort syscalls in active transactions
authorSam bobroff <sam.bobroff@au1.ibm.com>
Fri, 10 Apr 2015 04:16:47 +0000 (14:16 +1000)
committerMichael Ellerman <mpe@ellerman.id.au>
Sat, 11 Apr 2015 10:49:19 +0000 (20:49 +1000)
commit428a6d3ff0b9f8d826d49df61cd2780005f43e71
tree1260122ddfe4ae26ad224367097e2ca38fc8c6be
parentb04bbbaef502019df1861fdfb1385bc3b0433902
powerpc/tm: Abort syscalls in active transactions

This patch changes the syscall handler to doom (tabort) active
transactions when a syscall is made and return immediately without
performing the syscall.

Currently, the system call instruction automatically suspends an
active transaction which causes side effects to persist when an active
transaction fails.

This does change the kernel's behaviour, but in a way that was
documented as unsupported. It doesn't reduce functionality because
syscalls will still be performed after tsuspend. It also provides a
consistent interface and makes the behaviour of user code
substantially the same across powerpc and platforms that do not
support suspended transactions (e.g. x86 and s390).

Performance measurements using
http://ozlabs.org/~anton/junkcode/null_syscall.c
indicate the cost of a system call increases by about 0.5%.

Signed-off-by: Sam Bobroff <sam.bobroff@au1.ibm.com>
Acked-By: Michael Neuling <mikey@neuling.org>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Documentation/powerpc/transactional_memory.txt
arch/powerpc/include/uapi/asm/tm.h
arch/powerpc/kernel/entry_64.S