[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH 6 of 6] xen: sched_sedf: remove an unused stat in SEDF
Namely, `short_cont' which is not updated anywhere in the code. Signed-off-by: Dario Faggioli <dario.faggioli@xxxxxxxxxx> diff --git a/xen/common/sched_sedf.c b/xen/common/sched_sedf.c --- a/xen/common/sched_sedf.c +++ b/xen/common/sched_sedf.c @@ -128,7 +128,6 @@ struct sedf_vcpu_info { int block_tot; int short_block_tot; int long_block_tot; - int short_cont; int pen_extra_blocks; int pen_extra_slices; } stats; @@ -1224,12 +1223,11 @@ static void sedf_dump_domain(struct vcpu printk(" pen=%"PRIu64"%%", (EDOM_INFO(d)->stats.penalty_time_tot * 100) / EDOM_INFO(d)->stats.block_time_tot); if ( EDOM_INFO(d)->stats.block_tot != 0 ) - printk("\n blks=%u sh=%u (%u%%) (shc=%u (%u%%) shex=%i "\ - "shexsl=%i) l=%u (%u%%) avg: b=%"PRIu64" p=%"PRIu64"", + printk("\n blks=%u sh=%u (%u%%) shex=%i (shexsl=%i) "\ + "l=%u (%u%%) avg: b=%"PRIu64" p=%"PRIu64"", EDOM_INFO(d)->stats.block_tot, EDOM_INFO(d)->stats.short_block_tot, (EDOM_INFO(d)->stats.short_block_tot * 100) - / EDOM_INFO(d)->stats.block_tot, EDOM_INFO(d)->stats.short_cont, - (EDOM_INFO(d)->stats.short_cont * 100) / EDOM_INFO(d)->stats.block_tot, + / EDOM_INFO(d)->stats.block_tot, EDOM_INFO(d)->stats.pen_extra_blocks, EDOM_INFO(d)->stats.pen_extra_slices, EDOM_INFO(d)->stats.long_block_tot, _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx http://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |