Message ID | 20200217084828.9092-2-tobin@kernel.org (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | slabinfo: parse all NUMA attributes | expand |
On Mon, 17 Feb 2020, Tobin C. Harding wrote: > Replace the tabs with spaces, correctly aligning all option description > strings. Acked-by: Christoph Lameter <cl@linux.com>
diff --git a/tools/vm/slabinfo.c b/tools/vm/slabinfo.c index 68092d15e12b..29f8ecb59cf6 100644 --- a/tools/vm/slabinfo.c +++ b/tools/vm/slabinfo.c @@ -125,7 +125,7 @@ static void usage(void) "-n|--numa Show NUMA information\n" "-N|--lines=K Show the first K slabs\n" "-o|--ops Show kmem_cache_ops\n" - "-P|--partial Sort by number of partial slabs\n" + "-P|--partial Sort by number of partial slabs\n" "-r|--report Detailed report on single slabs\n" "-s|--shrink Shrink slabs\n" "-S|--Size Sort by size\n"
We have some rouge tabs within the output string of `slabinfo -h` causing the description output of the `--partial` option to be incorrectly aligned when printed. Replace the tabs with spaces, correctly aligning all option description strings. Signed-off-by: Tobin C. Harding <tobin@kernel.org> --- tools/vm/slabinfo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)