]> git.baikalelectronics.ru Git - kernel.git/commit
MIPS: Avoid BUG warning in arch_check_elf
authorJames Cowgill <James.Cowgill@imgtec.com>
Tue, 11 Apr 2017 12:51:07 +0000 (13:51 +0100)
committerRalf Baechle <ralf@linux-mips.org>
Wed, 12 Apr 2017 13:22:13 +0000 (15:22 +0200)
commit63739afa7b73aab5a63e062763d0553102d1fad5
tree4bdca9017be938ce43ffa7cb34305ce719468949
parent355cf0c6293dc863d41e89309c36f73ad66d9c80
MIPS: Avoid BUG warning in arch_check_elf

arch_check_elf contains a usage of current_cpu_data that will call
smp_processor_id() with preemption enabled and therefore triggers a
"BUG: using smp_processor_id() in preemptible" warning when an fpxx
executable is loaded.

As a follow-up to commit 3c872bedfa15 ("MIPS: Avoid a BUG warning during
prctl(PR_SET_FP_MODE, ...)"), apply the same fix to arch_check_elf by
using raw_current_cpu_data instead. The rationale quoted from the previous
commit:

"It is assumed throughout the kernel that if any CPU has an FPU, then
all CPUs would have an FPU as well, so it is safe to perform the check
with preemption enabled - change the code to use raw_ variant of the
check to avoid the warning."

Fixes: c91ff9b9aa67 ("MIPS: kernel: elf: Improve the overall ABI and FPU mode checks")
Signed-off-by: James Cowgill <James.Cowgill@imgtec.com>
CC: <stable@vger.kernel.org> # 4.0+
Cc: linux-mips@linux-mips.org
Patchwork: https://patchwork.linux-mips.org/patch/15951/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
arch/mips/kernel/elf.c