summaryrefslogtreecommitdiff
path: root/arch/arm/kernel/entry-common.S
diff options
context:
space:
mode:
authorAl Viro <viro@zeniv.linux.org.uk>2012-08-02 07:49:43 (GMT)
committerAl Viro <viro@zeniv.linux.org.uk>2012-10-01 02:21:37 (GMT)
commitbfd170d56505bf21cb636b0f1f169eaa815bdfe4 (patch)
tree9a783a04a5b8e013af113704c3d4b51a6db77cd2 /arch/arm/kernel/entry-common.S
parent583d632fb3f6d7e9d133a7260829dd7565f8cc99 (diff)
downloadlinux-fsl-qoriq-bfd170d56505bf21cb636b0f1f169eaa815bdfe4.tar.xz
arm: optimized current_pt_regs()
... no need to read current_thread_info()->task only to feed it to task_thread_page() immediately afterwards. Moreover, not using current_thread_info() at all ends up with better assembler - we need a location very close to the top of kernel stack page and it's actually better to do or with 0x1fff, followed be subtracting a small constant than and with ~0x1fff, followed by adding a large one. Both & and | would be a couple of insns (mvn lsr/mvn lsl for |, a pair of bic for &), but the following addition would cost a pair of add while the subtraction ends up as a single sub. Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'arch/arm/kernel/entry-common.S')
0 files changed, 0 insertions, 0 deletions