From: Daniel Wagner Date: Fri, 31 Jan 2020 06:14:17 +0000 (-0800) Subject: tools/vm/slabinfo: fix sanity checks enabling X-Git-Tag: v5.6-rc1~100^2~60 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e25974aa72a0303a20e9b6a3f3cb32e1873889a8;p=thirdparty%2Flinux.git tools/vm/slabinfo: fix sanity checks enabling The sysfs file name for enabling sanity checking is called 'sanity_checks' and not 'sanity'. The name of the file has never changed since the introduction of the slub allocator. Obviously, most people turn the checks on via the command line option and not during runtime using slabinfo. Link: http://lkml.kernel.org/r/20200116131642.642-1-dwagner@suse.de Signed-off-by: Daniel Wagner Reviewed-by: Andrew Morton Cc: "Tobin C. Harding" Cc: Christoph Lameter Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/tools/vm/slabinfo.c b/tools/vm/slabinfo.c index 68092d15e12b5..9b68658b6bb85 100644 --- a/tools/vm/slabinfo.c +++ b/tools/vm/slabinfo.c @@ -720,11 +720,11 @@ static void slab_debug(struct slabinfo *s) return; if (sanity && !s->sanity_checks) { - set_obj(s, "sanity", 1); + set_obj(s, "sanity_checks", 1); } if (!sanity && s->sanity_checks) { if (slab_empty(s)) - set_obj(s, "sanity", 0); + set_obj(s, "sanity_checks", 0); else fprintf(stderr, "%s not empty cannot disable sanity checks\n", s->name); }