Commit 9ebe720e authored by Thomas Weißschuh's avatar Thomas Weißschuh Committed by Vlastimil Babka
Browse files

mm: slub: make kobj_type structure constant



Since commit ee6d3dd4 ("driver core: make kobj_type constant.")
the driver core allows the usage of const struct kobj_type.

Take advantage of this to constify the structure definition to prevent
modification at runtime.

Signed-off-by: default avatarThomas Weißschuh <linux@weissschuh.net>
Acked-by: default avatarHyeonggon Yoo <42.hyeyoo@gmail.com>
Signed-off-by: default avatarVlastimil Babka <vbabka@suse.cz>
parent e9d198f2
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -6059,7 +6059,7 @@ static const struct sysfs_ops slab_sysfs_ops = {
	.store = slab_attr_store,
};

static struct kobj_type slab_ktype = {
static const struct kobj_type slab_ktype = {
	.sysfs_ops = &slab_sysfs_ops,
	.release = kmem_cache_release,
};