]> xenbits.xensource.com Git - people/vhanquez/xen-unstable.git/commitdiff
credit2: Quieten some debug messages
authorKeir Fraser <keir@xen.org>
Fri, 24 Dec 2010 08:25:54 +0000 (08:25 +0000)
committerKeir Fraser <keir@xen.org>
Fri, 24 Dec 2010 08:25:54 +0000 (08:25 +0000)
Signed-off-by: George Dunlap <george.dunlap@eu.citrix.com>
xen/common/sched_credit2.c

index 1e8cc392a3753fffc0415ea527349d3e3a1774d2..822bd93818dc983ce0cd490c8dddca7828794e2a 100644 (file)
@@ -538,7 +538,7 @@ void update_max_weight(struct csched_runqueue_data *rqd, int new_weight, int old
     if ( new_weight > rqd->max_weight )
     {
         rqd->max_weight = new_weight;
-        printk("%s: Runqueue id %d max weight %d\n", __func__, rqd->id, rqd->max_weight);
+        d2printk("%s: Runqueue id %d max weight %d\n", __func__, rqd->id, rqd->max_weight);
     }
     else if ( old_weight == rqd->max_weight )
     {
@@ -554,7 +554,7 @@ void update_max_weight(struct csched_runqueue_data *rqd, int new_weight, int old
         }
 
         rqd->max_weight = max_weight;
-        printk("%s: Runqueue %d max weight %d\n", __func__, rqd->id, rqd->max_weight);
+        d2printk("%s: Runqueue %d max weight %d\n", __func__, rqd->id, rqd->max_weight);
     }
 }