From 27c3ed7e96c984349e8c645f0e8164581c988dc8 Mon Sep 17 00:00:00 2001 From: Tomoki Shirasawa Date: Sun, 21 Feb 2016 15:17:42 +0900 Subject: [PATCH] remove debug print --- arch/x86/kernel/cpu.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/arch/x86/kernel/cpu.c b/arch/x86/kernel/cpu.c index 058b3e90..d8528c97 100644 --- a/arch/x86/kernel/cpu.c +++ b/arch/x86/kernel/cpu.c @@ -893,7 +893,6 @@ void debug_handler(struct x86_user_context *regs) struct siginfo info; set_cputime(interrupt_from_user(regs)? 1: 2); -kprintf("debug_handler rip=%lx\n", regs->gpr.rip); #ifdef DEBUG_PRINT_CPU kprintf("debug exception (err: %lx, %lx:%lx)\n", regs->gpr.error, regs->gpr.cs, regs->gpr.rip); @@ -921,7 +920,6 @@ void int3_handler(struct x86_user_context *regs) struct siginfo info; set_cputime(interrupt_from_user(regs)? 1: 2); -kprintf("int3_handler rip=%lx\n", regs->gpr.rip); #ifdef DEBUG_PRINT_CPU kprintf("int3 exception (err: %lx, %lx:%lx)\n", regs->gpr.error, regs->gpr.cs, regs->gpr.rip);