]> git.baikalelectronics.ru Git - kernel.git/commit
arm64: restore get_current() optimisation
authorMark Rutland <mark.rutland@arm.com>
Tue, 3 Jan 2017 18:27:01 +0000 (18:27 +0000)
committerCatalin Marinas <catalin.marinas@arm.com>
Wed, 4 Jan 2017 16:26:18 +0000 (16:26 +0000)
commit7195fd49507718a5eef5f1c406c51d4a8f847306
treec4fa86a746481b12cb6a23dfb407fb0638cead59
parent194f9f1d86b84a0484a02aa0f258501a5b668791
arm64: restore get_current() optimisation

Commit 809e3ff5eeab2b87 ("arm64: split thread_info from task stack")
inverted the relationship between get_current() and
current_thread_info(), with sp_el0 now holding the current task_struct
rather than the current thead_info. The new implementation of
get_current() prevents the compiler from being able to optimize repeated
calls to either, resulting in a noticeable penalty in some
microbenchmarks.

This patch restores the previous optimisation by implementing
get_current() in the same way as our old current_thread_info(), using a
non-volatile asm statement.

Acked-by: Will Deacon <will.deacon@arm.com>
Signed-off-by: Mark Rutland <mark.rutland@arm.com>
Reported-by: Davidlohr Bueso <dbueso@suse.de>
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
arch/arm64/include/asm/current.h