From: Keir Fraser Date: Fri, 24 Dec 2010 08:25:54 +0000 (+0000) Subject: credit2: Quieten some debug messages X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~11038 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=71ac759b144fc0344f08f6c1c335ee53c5516ce6;p=xen.git credit2: Quieten some debug messages Signed-off-by: George Dunlap --- diff --git a/xen/common/sched_credit2.c b/xen/common/sched_credit2.c index 1e8cc392a3..822bd93818 100644 --- a/xen/common/sched_credit2.c +++ b/xen/common/sched_credit2.c @@ -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); } }