The patch titled Subject: tools/vm/slabinfo: fix alternate opts names has been removed from the -mm tree. Its filename was tools-vm-slabinfo-fix-alternate-opts-names.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ From: Sergey Senozhatsky <sergey.senozhatsky@xxxxxxxxx> 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 <sergey.senozhatsky@xxxxxxxxx> Cc: Christoph Lameter <cl@xxxxxxxxx> Cc: Pekka Enberg <penberg@xxxxxxxxxx> Cc: David Rientjes <rientjes@xxxxxxxxxx> Cc: Joonsoo Kim <iamjoonsoo.kim@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- tools/vm/slabinfo.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff -puN tools/vm/slabinfo.c~tools-vm-slabinfo-fix-alternate-opts-names tools/vm/slabinfo.c --- a/tools/vm/slabinfo.c~tools-vm-slabinfo-fix-alternate-opts-names +++ a/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'}, _ Patches currently in -mm which might be from sergey.senozhatsky@xxxxxxxxx are zram-keep-the-exact-overcommited-value-in-mem_used_max.patch mm-zsmalloc-constify-struct-zs_pool-name.patch zsmalloc-use-preempth-for-in_interrupt.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html