Commit 4307c14f3c77bc0cb0facfc9c67c7872505aaedf

Authored by Gu Zheng
Committed by Linus Torvalds
1 parent 0aa9a13d80

slab: fix the alias count (via sysfs) of slab cache

We mark some slab caches (e.g.  kmem_cache_node) as unmergeable by
setting refcount to -1, and their alias should be 0, not refcount-1, so
correct it here.

Signed-off-by: Gu Zheng <guz.fnst@cn.fujitsu.com>
Acked-by: David Rientjes <rientjes@google.com>
Cc: Christoph Lameter <cl@linux.com>
Cc: Pekka Enberg <penberg@kernel.org>
Cc: Joonsoo Kim <iamjoonsoo.kim@lge.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

... ... @@ -4466,7 +4466,7 @@
4466 4466  
4467 4467 static ssize_t aliases_show(struct kmem_cache *s, char *buf)
4468 4468 {
4469   - return sprintf(buf, "%d\n", s->refcount - 1);
  4469 + return sprintf(buf, "%d\n", s->refcount < 0 ? 0 : s->refcount - 1);
4470 4470 }
4471 4471 SLAB_ATTR_RO(aliases);
4472 4472