OSDN Git Service

powerpc/audit: Fix syscall_get_arch()
authorChristophe Leroy <christophe.leroy@csgroup.eu>
Fri, 14 Jan 2022 11:26:25 +0000 (11:26 +0000)
committerMichael Ellerman <mpe@ellerman.id.au>
Sat, 15 Jan 2022 01:21:26 +0000 (12:21 +1100)
commit252745240ba0ae774d2f80c5e185ed59fbc4fb41
treef0a4a8c2419b64b37b018925ff0fc8ef20170f07
parent3f5f766d5f7f95a69a630da3544a1a0cee1cdddf
powerpc/audit: Fix syscall_get_arch()

Commit 770cec16cdc9 ("powerpc/audit: Simplify syscall_get_arch()")
and commit 898a1ef06ad4 ("powerpc/audit: Avoid unneccessary #ifdef
in syscall_get_arguments()")
replaced test_tsk_thread_flag(task, TIF_32BIT)) by is_32bit_task().

But is_32bit_task() applies on current task while be want the test
done on task 'task'

So add a new macro is_tsk_32bit_task() to check any task.

Fixes: 770cec16cdc9 ("powerpc/audit: Simplify syscall_get_arch()")
Fixes: 898a1ef06ad4 ("powerpc/audit: Avoid unneccessary #ifdef in syscall_get_arguments()")
Cc: stable@vger.kernel.org
Reported-by: Dmitry V. Levin <ldv@altlinux.org>
Signed-off-by: Christophe Leroy <christophe.leroy@csgroup.eu>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Link: https://lore.kernel.org/r/c55cddb8f65713bf5859ed675d75a50cb37d5995.1642159570.git.christophe.leroy@csgroup.eu
arch/powerpc/include/asm/syscall.h
arch/powerpc/include/asm/thread_info.h