cmd: blkcache: remove indentation from output of 'show'
Signed-off-by: Eric Nelson <eric@nelint.com>
This commit is contained in:
parent
158c9c78a5
commit
7e8721467d
|
|
@ -16,11 +16,11 @@ static int blkc_show(cmd_tbl_t *cmdtp, int flag,
|
||||||
struct block_cache_stats stats;
|
struct block_cache_stats stats;
|
||||||
blkcache_stats(&stats);
|
blkcache_stats(&stats);
|
||||||
|
|
||||||
printf(" hits: %u\n"
|
printf("hits: %u\n"
|
||||||
" misses: %u\n"
|
"misses: %u\n"
|
||||||
" entries: %u\n"
|
"entries: %u\n"
|
||||||
" max blocks/entry: %u\n"
|
"max blocks/entry: %u\n"
|
||||||
" max cache entries: %u\n",
|
"max cache entries: %u\n",
|
||||||
stats.hits, stats.misses, stats.entries,
|
stats.hits, stats.misses, stats.entries,
|
||||||
stats.max_blocks_per_entry, stats.max_entries);
|
stats.max_blocks_per_entry, stats.max_entries);
|
||||||
return 0;
|
return 0;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue