Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit aee52cae authored by Vladimir Davydov's avatar Vladimir Davydov Committed by Linus Torvalds
Browse files

slub: remove kmemcg id from create_unique_id



This function is never called for memcg caches, because they are
unmergeable, so remove the dead code.

Signed-off-by: default avatarVladimir Davydov <vdavydov@parallels.com>
Cc: Michal Hocko <mhocko@suse.cz>
Cc: Johannes Weiner <hannes@cmpxchg.org>
Cc: Christoph Lameter <cl@linux.com>
Reviewed-by: default avatarPekka Enberg <penberg@kernel.org>
Cc: David Rientjes <rientjes@google.com>
Cc: Joonsoo Kim <iamjoonsoo.kim@lge.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 9ef0a0ff
Loading
Loading
Loading
Loading
+0 −6
Original line number Diff line number Diff line
@@ -5128,12 +5128,6 @@ static char *create_unique_id(struct kmem_cache *s)
		*p++ = '-';
	p += sprintf(p, "%07d", s->size);

#ifdef CONFIG_MEMCG_KMEM
	if (!is_root_cache(s))
		p += sprintf(p, "-%08d",
				memcg_cache_id(s->memcg_params->memcg));
#endif

	BUG_ON(p > name + ID_STR_LENGTH - 1);
	return name;
}