Drivers: clean up direct setting of the name of a kset
A kset should not have its name set directly, so dynamically set the name at runtime. This is needed to remove the static array in the kobject structure which will be changed in a future patch. Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
@@ -222,7 +222,6 @@ static struct kobj_type gfs2_ktype = {
|
||||
};
|
||||
|
||||
static struct kset gfs2_kset = {
|
||||
.kobj = {.name = "gfs2"},
|
||||
.ktype = &gfs2_ktype,
|
||||
};
|
||||
|
||||
@@ -553,6 +552,7 @@ int gfs2_sys_init(void)
|
||||
{
|
||||
gfs2_sys_margs = NULL;
|
||||
spin_lock_init(&gfs2_sys_margs_lock);
|
||||
kobject_set_name(&gfs2_kset.kobj, "gfs2");
|
||||
kobj_set_kset_s(&gfs2_kset, fs_subsys);
|
||||
return kset_register(&gfs2_kset);
|
||||
}
|
||||
|
Reference in New Issue
Block a user