diff options
author | Ingo Molnar <mingo@kernel.org> | 2019-08-20 21:38:05 +0200 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2019-08-20 21:38:05 +0200 |
commit | 51c359c2fd0a1d485c24d27687dfa67fc71a7864 (patch) | |
tree | 75a222cb784f004e579e40a88c16343b377274e4 /arch/x86/math-emu/errors.c | |
parent | cfb104ca8a26affb28d81720a4ed49c30b2a3b01 (diff) | |
parent | d1abaeb3be7b5fa6d7a1fbbd2e14e3310005c4c1 (diff) |
Merge tag 'v5.3-rc5' into perf/core, to pick up fixes
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'arch/x86/math-emu/errors.c')
-rw-r--r-- | arch/x86/math-emu/errors.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/arch/x86/math-emu/errors.c b/arch/x86/math-emu/errors.c index 6b468517ab71..73dc66d887f3 100644 --- a/arch/x86/math-emu/errors.c +++ b/arch/x86/math-emu/errors.c @@ -178,13 +178,15 @@ void FPU_printall(void) for (i = 0; i < 8; i++) { FPU_REG *r = &st(i); u_char tagi = FPU_gettagi(i); + switch (tagi) { case TAG_Empty: continue; - break; case TAG_Zero: case TAG_Special: + /* Update tagi for the printk below */ tagi = FPU_Special(r); + /* fall through */ case TAG_Valid: printk("st(%d) %c .%04lx %04lx %04lx %04lx e%+-6d ", i, getsign(r) ? '-' : '+', @@ -198,7 +200,6 @@ void FPU_printall(void) printk("Whoops! Error in errors.c: tag%d is %d ", i, tagi); continue; - break; } printk("%s\n", tag_desc[(int)(unsigned)tagi]); } |