slub: Fix possible format string bug.
The "name" is determined at runtime and is parsed as format string. Acked-by: David Rientjes <rientjes@google.com> Signed-off-by: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp> Signed-off-by: Pekka Enberg <penberg@kernel.org>
This commit is contained in:
Родитель
c65c1877bd
Коммит
26e4f20575
|
@ -5169,7 +5169,7 @@ static int sysfs_slab_add(struct kmem_cache *s)
|
|||
}
|
||||
|
||||
s->kobj.kset = slab_kset;
|
||||
err = kobject_init_and_add(&s->kobj, &slab_ktype, NULL, name);
|
||||
err = kobject_init_and_add(&s->kobj, &slab_ktype, NULL, "%s", name);
|
||||
if (err) {
|
||||
kobject_put(&s->kobj);
|
||||
return err;
|
||||
|
|
Загрузка…
Ссылка в новой задаче