Skip to content

Commit

Permalink
kobject: convert debugfs to use kobject_create
Browse files Browse the repository at this point in the history
We don't need a kset here, a simple kobject will do just fine, so
dynamically create the kobject and use it.

Cc: Kay Sievers <kay.sievers@vrfy.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Greg Kroah-Hartman committed Jan 25, 2008
1 parent 69d8e13 commit 191e186
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions fs/debugfs/inode.c
Original file line number Diff line number Diff line change
Expand Up @@ -426,28 +426,27 @@ struct dentry *debugfs_rename(struct dentry *old_dir, struct dentry *old_dentry,
}
EXPORT_SYMBOL_GPL(debugfs_rename);

static decl_subsys(debug, NULL);
static struct kobject *debug_kobj;

static int __init debugfs_init(void)
{
int retval;

debug_subsys.kobj.kset = &kernel_subsys;
retval = subsystem_register(&debug_subsys);
if (retval)
return retval;
debug_kobj = kobject_create_and_add("debug", &kernel_subsys.kobj);
if (!debug_kobj)
return -EINVAL;

retval = register_filesystem(&debug_fs_type);
if (retval)
subsystem_unregister(&debug_subsys);
kobject_unregister(debug_kobj);
return retval;
}

static void __exit debugfs_exit(void)
{
simple_release_fs(&debugfs_mount, &debugfs_mount_count);
unregister_filesystem(&debug_fs_type);
subsystem_unregister(&debug_subsys);
kobject_unregister(debug_kobj);
}

core_initcall(debugfs_init);
Expand Down

0 comments on commit 191e186

Please sign in to comment.