diff options
Diffstat (limited to 'block.c')
-rw-r--r-- | block.c | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -1153,9 +1153,8 @@ void bdrv_info_stats(Monitor *mon) bs->rd_bytes, bs->wr_bytes, bs->rd_ops, bs->wr_ops); if (bdrv_get_info(bs, &bdi) == 0) - monitor_printf(mon, " high=%" PRId64 - " bytes_free=%" PRId64, - bdi.highest_alloc, bdi.num_free_bytes); + monitor_printf(mon, " high=%" PRId64, + bdi.highest_alloc); monitor_printf(mon, "\n"); } } |