From 0d00bf589f0f8976b5bccbb5bd03a497762b5545 Mon Sep 17 00:00:00 2001 From: Sergey Senozhatsky Date: Thu, 5 Nov 2015 18:45:25 -0800 Subject: tools/vm/slabinfo: fix alternate opts names Fix mismatches between usage() output and real opts[] options. Add missing alternative opt names, e.g., '-S' had no '--Size' opts[] entry, etc. Signed-off-by: Sergey Senozhatsky Cc: Christoph Lameter Cc: Pekka Enberg Cc: David Rientjes Cc: Joonsoo Kim Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- tools/vm/slabinfo.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'tools/vm') diff --git a/tools/vm/slabinfo.c b/tools/vm/slabinfo.c index 2e154f13c60e..de4974df4255 100644 --- a/tools/vm/slabinfo.c +++ b/tools/vm/slabinfo.c @@ -1294,12 +1294,14 @@ struct option opts[] = { { "first-alias", no_argument, NULL, 'f' }, { "help", no_argument, NULL, 'h' }, { "inverted", no_argument, NULL, 'i'}, + { "slabs", no_argument, NULL, 'l' }, { "numa", no_argument, NULL, 'n' }, { "ops", no_argument, NULL, 'o' }, - { "report", no_argument, NULL, 'r' }, { "shrink", no_argument, NULL, 's' }, - { "slabs", no_argument, NULL, 'l' }, - { "track", no_argument, NULL, 't'}, + { "report", no_argument, NULL, 'r' }, + { "Size", no_argument, NULL, 'S'}, + { "tracking", no_argument, NULL, 't'}, + { "Totals", no_argument, NULL, 'T'}, { "validate", no_argument, NULL, 'v' }, { "zero", no_argument, NULL, 'z' }, { "1ref", no_argument, NULL, '1'}, -- cgit v1.2.3-59-g8ed1b