WARNING - OLD ARCHIVES

This is an archived copy of the Xen.org mailing list, which we have preserved to ensure that existing links to archives are not broken. The live archive, which contains the latest emails, can be found at http://lists.xen.org/
   
 
 
Xen 
 
Home Products Support Community News
 
   
 

xen-changelog

[Xen-changelog] Turn off grant table debugging output

To: xen-changelog@xxxxxxxxxxxxxxxxxxx
Subject: [Xen-changelog] Turn off grant table debugging output
From: BitKeeper Bot <riel@xxxxxxxxxxx>
Date: Tue, 12 Apr 2005 10:57:13 +0000
Delivery-date: Wed, 13 Apr 2005 23:03:19 +0000
Envelope-to: www-data@xxxxxxxxxxxxxxxxxxx
List-help: <mailto:xen-changelog-request@lists.xensource.com?subject=help>
List-id: BK change log <xen-changelog.lists.xensource.com>
List-post: <mailto:xen-changelog@lists.xensource.com>
List-subscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-changelog>, <mailto:xen-changelog-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-changelog>, <mailto:xen-changelog-request@lists.xensource.com?subject=unsubscribe>
Reply-to: Xen Development List <xen-devel@xxxxxxxxxxxxxxxxxxx>
Sender: xen-changelog-bounces@xxxxxxxxxxxxxxxxxxx
ChangeSet 1.1291, 2005/04/12 11:57:13+01:00, mafetter@xxxxxxxxxxxxxxxx

        Turn off grant table debugging output



 grant_table.c |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)


diff -Nru a/xen/common/grant_table.c b/xen/common/grant_table.c
--- a/xen/common/grant_table.c  2005-04-13 19:03:31 -04:00
+++ b/xen/common/grant_table.c  2005-04-13 19:03:31 -04:00
@@ -388,7 +388,7 @@
         handle = get_maptrack_handle(ld->grant_table);
     }
 
-#ifdef GRANT_DEBUG_VERBOSE
+#if GRANT_DEBUG_VERBOSE
     DPRINTK("Mapping grant ref (%hu) for domain (%hu) with flags (%x)\n",
             ref, dom, dev_hst_ro_flags);
 #endif
@@ -499,7 +499,7 @@
         (void)__put_user(GNTST_bad_domain, &uop->status);
         return GNTST_bad_domain;
     }
-#ifdef GRANT_DEBUG_VERBOSE
+#if GRANT_DEBUG_VERBOSE
     DPRINTK("Unmapping grant ref (%hu) for domain (%hu) with handle (%hu)\n",
             ref, dom, handle);
 #endif
@@ -703,7 +703,7 @@
     return 0;
 }
 
-#ifdef GRANT_DEBUG
+#if GRANT_DEBUG
 static int
 gnttab_dump_table(gnttab_dump_table_t *uop)
 {
@@ -821,7 +821,7 @@
     case GNTTABOP_setup_table:
         rc = gnttab_setup_table((gnttab_setup_table_t *)uop, count);
         break;
-#ifdef GRANT_DEBUG
+#if GRANT_DEBUG
     case GNTTABOP_dump_table:
         rc = gnttab_dump_table((gnttab_dump_table_t *)uop);
         break;
@@ -860,7 +860,7 @@
 
     lgt = ld->grant_table;
 
-#ifdef GRANT_DEBUG_VERBOSE
+#if GRANT_DEBUG_VERBOSE
     if ( ld->id != 0 )
     {
         DPRINTK("Foreign unref rd(%d) ld(%d) frm(%x) flgs(%x).\n",

_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog

<Prev in Thread] Current Thread [Next in Thread>
  • [Xen-changelog] Turn off grant table debugging output, BitKeeper Bot <=