]> Git Repo - linux.git/commit
x86/fpu: Turn WARN_ON() in context switch into WARN_ON_FPU()
authorAndi Kleen <[email protected]>
Sat, 23 Sep 2017 13:00:06 +0000 (15:00 +0200)
committerIngo Molnar <[email protected]>
Sun, 24 Sep 2017 11:04:35 +0000 (13:04 +0200)
commit03eaec81ac09814817e9f0307d572ffe8365f980
treefa929a49abb4d2b11c4d1b44201977c9f6dd0c1e
parent4f8cef59bad29344aca0e2e6b0ad18dadd078fd0
x86/fpu: Turn WARN_ON() in context switch into WARN_ON_FPU()

copy_xregs_to_kernel checks if the alternatives have been already
patched.

This WARN_ON() is always executed in every context switch.

All the other checks in fpu internal.h are WARN_ON_FPU(), but
this one is plain WARN_ON(). I assume it was forgotten to switch it.

So switch it to WARN_ON_FPU() too to avoid some unnecessary code
in the context switch, and a potentially expensive cache line miss for the
global variable.

Signed-off-by: Andi Kleen <[email protected]>
Cc: Andrew Morton <[email protected]>
Cc: Andy Lutomirski <[email protected]>
Cc: Borislav Petkov <[email protected]>
Cc: Dave Hansen <[email protected]>
Cc: Eric Biggers <[email protected]>
Cc: Fenghua Yu <[email protected]>
Cc: Linus Torvalds <[email protected]>
Cc: Oleg Nesterov <[email protected]>
Cc: Peter Zijlstra <[email protected]>
Cc: Rik van Riel <[email protected]>
Cc: Thomas Gleixner <[email protected]>
Cc: Yu-cheng Yu <[email protected]>
Link: http://lkml.kernel.org/r/[email protected]
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Ingo Molnar <[email protected]>
arch/x86/include/asm/fpu/internal.h
This page took 0.05693 seconds and 4 git commands to generate.