Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

Merge branch 'slab/urgent' of git://git.kernel.org/pub/scm/linux/kernel/git/penberg/linux

Pull SLAB fix from Pekka Enberg:
"A regression fix for overly eager slab cache name checks"

* 'slab/urgent' of git://git.kernel.org/pub/scm/linux/kernel/git/penberg/linux:
slab_common: Do not check for duplicate slab names

+2
+2
mm/slab_common.c
··· 56 56 continue; 57 57 } 58 58 59 + #if !defined(CONFIG_SLUB) || !defined(CONFIG_SLUB_DEBUG_ON) 59 60 /* 60 61 * For simplicity, we won't check this in the list of memcg 61 62 * caches. We have control over memcg naming, and if there ··· 70 69 s = NULL; 71 70 return -EINVAL; 72 71 } 72 + #endif 73 73 } 74 74 75 75 WARN_ON(strchr(name, ' ')); /* It confuses parsers */