From: Greg Kroah-Hartman Date: Mon, 29 Oct 2007 19:13:17 +0000 (+0100) Subject: kobject: convert securityfs to use kobject_create X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=69d8e1389551b107b1a8ec70c280cb7a56096666;p=linux-beck.git kobject: convert securityfs to use kobject_create 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 Acked-by: Chris Wright Signed-off-by: Greg Kroah-Hartman --- diff --git a/security/inode.c b/security/inode.c index 9e42f5f705b2..dfc5978d4298 100644 --- a/security/inode.c +++ b/security/inode.c @@ -315,20 +315,19 @@ void securityfs_remove(struct dentry *dentry) } EXPORT_SYMBOL_GPL(securityfs_remove); -static decl_subsys(security, NULL); +static struct kobject *security_kobj; static int __init securityfs_init(void) { int retval; - security_subsys.kobj.kset = &kernel_subsys; - retval = subsystem_register(&security_subsys); - if (retval) - return retval; + security_kobj = kobject_create_and_add("security", &kernel_subsys.kobj); + if (!security_kobj) + return -EINVAL; retval = register_filesystem(&fs_type); if (retval) - subsystem_unregister(&security_subsys); + kobject_unregister(security_kobj); return retval; }