From mboxrd@z Thu Jan 1 00:00:00 1970 From: Arun Sharma Subject: [PATCH][4/5] Remove debug printks. Date: Sun, 10 Jul 2005 12:03:24 -0700 Message-ID: <20050710190324.GA12727@intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Content-Disposition: inline List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xensource.com Errors-To: xen-devel-bounces@lists.xensource.com To: Ian Pratt , Keir Fraser Cc: xen-devel@lists.xensource.com List-Id: xen-devel@lists.xenproject.org Remove debug printks. Sometimes they generate too much output on serial console. Signed-off-by: Arun Sharma diff -r 2ae37d882cf5 -r 14097f22fe2e xen/arch/x86/vmx.c --- a/xen/arch/x86/vmx.c Fri Jul 8 00:18:10 2005 +++ b/xen/arch/x86/vmx.c Fri Jul 8 00:56:53 2005 @@ -1455,12 +1484,9 @@ if (idtv_info_field & 0x800) { /* valid error code */ unsigned long error_code; - printk("VMX exit %x: %x/%lx\n", - exit_reason, idtv_info_field, error_code); __vmread(VM_EXIT_INTR_ERROR_CODE, &error_code); __vmwrite(VM_ENTRY_EXCEPTION_ERROR_CODE, error_code); - } else - printk("VMX exit %x: %x\n", exit_reason, idtv_info_field); + } } VMX_DBG_LOG(DBG_LEVEL_1, "idtv_info_field=%x", idtv_info_field); }