ia64/xen-unstable
changeset 5718:c270d9ffdcef
Remove debug printks.
Sometimes they generate too much output on serial console.
Signed-off-by: Arun Sharma <arun.sharma@intel.com>
Sometimes they generate too much output on serial console.
Signed-off-by: Arun Sharma <arun.sharma@intel.com>
author | kaf24@firebug.cl.cam.ac.uk |
---|---|
date | Mon Jul 11 08:59:58 2005 +0000 (2005-07-11) |
parents | d4607c4c9478 |
children | afe05231fe25 |
files | xen/arch/x86/vmx.c |
line diff
1.1 --- a/xen/arch/x86/vmx.c Mon Jul 11 08:59:41 2005 +0000 1.2 +++ b/xen/arch/x86/vmx.c Mon Jul 11 08:59:58 2005 +0000 1.3 @@ -1445,12 +1445,9 @@ asmlinkage void vmx_vmexit_handler(struc 1.4 1.5 if (idtv_info_field & 0x800) { /* valid error code */ 1.6 unsigned long error_code; 1.7 - printk("VMX exit %x: %x/%lx\n", 1.8 - exit_reason, idtv_info_field, error_code); 1.9 __vmread(VM_EXIT_INTR_ERROR_CODE, &error_code); 1.10 __vmwrite(VM_ENTRY_EXCEPTION_ERROR_CODE, error_code); 1.11 - } else 1.12 - printk("VMX exit %x: %x\n", exit_reason, idtv_info_field); 1.13 + } 1.14 } 1.15 VMX_DBG_LOG(DBG_LEVEL_1, "idtv_info_field=%x", idtv_info_field); 1.16 }