Remove unuseful and noisy seg-fixup warning message.
authorkfraser@localhost.localdomain <kfraser@localhost.localdomain>
Thu, 15 Feb 2007 10:34:21 +0000 (10:34 +0000)
committerkfraser@localhost.localdomain <kfraser@localhost.localdomain>
Thu, 15 Feb 2007 10:34:21 +0000 (10:34 +0000)
Signed-off-by: Keir Fraser <keir@xensource.com>
xen/arch/x86/x86_32/seg_fixup.c

index 7225717742ef03c431b1656ec152abaecafdc4c2..17c2557d481ace4c2c972fbb5754df868014c1ab 100644 (file)
@@ -278,10 +278,7 @@ int gpf_emulate_4gb(struct cpu_user_regs *regs)
 
     /* WARNING: We only work for ring-3 segments. */
     if ( unlikely(vm86_mode(regs)) || unlikely(!ring_3(regs)) )
-    {
-        dprintk(XENLOG_DEBUG, "Taken fault at bad CS %04x\n", regs->cs);
         goto fail;
-    }
 
     if ( !linearise_address((u16)regs->cs, regs->eip, (unsigned long *)&eip) )
     {