diff options
author | Greg Kroah-Hartman <gregkh@suse.de> | 2007-10-29 15:13:17 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2008-01-24 23:40:14 -0500 |
commit | bd35b93d8049ab47b5bfaf6b10ba39badf21d1c3 (patch) | |
tree | bac82e14d960b2c7011b7f660a93f07e922f8a97 /fs/configfs | |
parent | e5e38a86c0bbe8475543f10f0a48393a45df5182 (diff) |
kset: convert kernel_subsys to use kset_create
Dynamically create the kset instead of declaring it statically. We also
rename kernel_subsys to kernel_kset to catch all users of this symbol
with a build error instead of an easy-to-ignore build warning.
Cc: Kay Sievers <kay.sievers@vrfy.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'fs/configfs')
-rw-r--r-- | fs/configfs/mount.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/configfs/mount.c b/fs/configfs/mount.c index 13300466464b..c4ee7f05de8b 100644 --- a/fs/configfs/mount.c +++ b/fs/configfs/mount.c | |||
@@ -140,7 +140,7 @@ static int __init configfs_init(void) | |||
140 | if (!configfs_dir_cachep) | 140 | if (!configfs_dir_cachep) |
141 | goto out; | 141 | goto out; |
142 | 142 | ||
143 | config_kobj = kobject_create_and_add("config", &kernel_subsys.kobj); | 143 | config_kobj = kobject_create_and_add("config", &kernel_kset->kobj); |
144 | if (!config_kobj) { | 144 | if (!config_kobj) { |
145 | kmem_cache_destroy(configfs_dir_cachep); | 145 | kmem_cache_destroy(configfs_dir_cachep); |
146 | configfs_dir_cachep = NULL; | 146 | configfs_dir_cachep = NULL; |