From 62e49d98381a70902a73a539bbe286ca1f814405 Mon Sep 17 00:00:00 2001 From: Matthew Dillon Date: Mon, 10 Dec 2012 14:35:39 -0800 Subject: [PATCH] kernel - Fix debug output label * Fix "rflags" to "eflags" in i386 kprintf() for smp_invltlb() debugging. Reported-by: swildner --- sys/platform/pc32/i386/mp_machdep.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/platform/pc32/i386/mp_machdep.c b/sys/platform/pc32/i386/mp_machdep.c index ac89595f88..04eccdb50a 100644 --- a/sys/platform/pc32/i386/mp_machdep.c +++ b/sys/platform/pc32/i386/mp_machdep.c @@ -794,7 +794,7 @@ again: if (++count == 400000000) { print_backtrace(-1); kprintf("smp_invltlb: endless loop %08lx %08lx, " - "rflags %016lx retry", + "eflags %016lx retry", (long)md->gd_invltlb_ret, (long)smp_invltlb_req, (long)read_eflags()); -- 2.41.0