aboutsummaryrefslogtreecommitdiffstats
path: root/xen/common/sched_credit2.c
diff options
context:
space:
mode:
authorKeir Fraser <keir@xen.org>2010-12-24 08:25:54 +0000
committerKeir Fraser <keir@xen.org>2010-12-24 08:25:54 +0000
commit71ac759b144fc0344f08f6c1c335ee53c5516ce6 (patch)
tree102c19f93762773a5290c9e1a0e22bdbb781fc22 /xen/common/sched_credit2.c
parent223965ab11fb667cf46478f42f23f9601e19fb1f (diff)
downloadxen-71ac759b144fc0344f08f6c1c335ee53c5516ce6.tar.gz
xen-71ac759b144fc0344f08f6c1c335ee53c5516ce6.tar.bz2
xen-71ac759b144fc0344f08f6c1c335ee53c5516ce6.zip
credit2: Quieten some debug messages
Signed-off-by: George Dunlap <george.dunlap@eu.citrix.com>
Diffstat (limited to 'xen/common/sched_credit2.c')
-rw-r--r--xen/common/sched_credit2.c4
1 files changed, 2 insertions, 2 deletions
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);
}
}