Skip to content

Commit

Permalink
kset: convert /sys/module to use kset_create
Browse files Browse the repository at this point in the history
Dynamically create the kset instead of declaring it statically.  We also
rename module_subsys to module_kset to catch all users of the variable.

Cc: Kay Sievers <kay.sievers@vrfy.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
gregkh committed Jan 25, 2008
1 parent 081248d commit 7405c1e
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 25 deletions.
4 changes: 3 additions & 1 deletion include/linux/module.h
Original file line number Diff line number Diff line change
Expand Up @@ -574,7 +574,9 @@ struct device_driver;
#ifdef CONFIG_SYSFS
struct module;

extern struct kset module_subsys;
extern struct kset *module_kset;
extern struct kobj_type module_ktype;
extern int module_sysfs_initialized;

int mod_sysfs_init(struct module *mod);
int mod_sysfs_setup(struct module *mod,
Expand Down
7 changes: 3 additions & 4 deletions kernel/module.c
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,6 @@
#include <asm/cacheflush.h>
#include <linux/license.h>

extern int module_sysfs_initialized;

#if 0
#define DEBUGP printk
#else
Expand Down Expand Up @@ -1223,7 +1221,8 @@ int mod_sysfs_init(struct module *mod)
err = kobject_set_name(&mod->mkobj.kobj, "%s", mod->name);
if (err)
goto out;
mod->mkobj.kobj.kset = &module_subsys;
mod->mkobj.kobj.kset = module_kset;
mod->mkobj.kobj.ktype = &module_ktype;
mod->mkobj.mod = mod;

kobject_init(&mod->mkobj.kobj);
Expand Down Expand Up @@ -2539,7 +2538,7 @@ void module_add_driver(struct module *mod, struct device_driver *drv)
struct kobject *mkobj;

/* Lookup built-in module entry in /sys/modules */
mkobj = kset_find_obj(&module_subsys, drv->mod_name);
mkobj = kset_find_obj(module_kset, drv->mod_name);
if (mkobj) {
mk = container_of(mkobj, struct module_kobject, kobj);
/* remember our module structure */
Expand Down
29 changes: 9 additions & 20 deletions kernel/params.c
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,6 @@
#define DEBUGP(fmt, a...)
#endif

static struct kobj_type module_ktype;

static inline char dash2underscore(char c)
{
if (c == '-')
Expand Down Expand Up @@ -562,7 +560,7 @@ static void __init kernel_param_sysfs_setup(const char *name,
BUG_ON(!mk);

mk->mod = THIS_MODULE;
mk->kobj.kset = &module_subsys;
mk->kobj.kset = module_kset;
mk->kobj.ktype = &module_ktype;
kobject_set_name(&mk->kobj, name);
kobject_init(&mk->kobj);
Expand Down Expand Up @@ -695,7 +693,7 @@ static struct kset_uevent_ops module_uevent_ops = {
.filter = uevent_filter,
};

decl_subsys(module, &module_uevent_ops);
struct kset *module_kset;
int module_sysfs_initialized;

static void module_release(struct kobject *kobj)
Expand All @@ -707,7 +705,7 @@ static void module_release(struct kobject *kobj)
*/
}

static struct kobj_type module_ktype = {
struct kobj_type module_ktype = {
.sysfs_ops = &module_sysfs_ops,
.release = module_release,
};
Expand All @@ -717,13 +715,11 @@ static struct kobj_type module_ktype = {
*/
static int __init param_sysfs_init(void)
{
int ret;

ret = subsystem_register(&module_subsys);
if (ret < 0) {
printk(KERN_WARNING "%s (%d): subsystem_register error: %d\n",
__FILE__, __LINE__, ret);
return ret;
module_kset = kset_create_and_add("module", &module_uevent_ops, NULL);
if (!module_kset) {
printk(KERN_WARNING "%s (%d): error creating kset\n",
__FILE__, __LINE__);
return -ENOMEM;
}
module_sysfs_initialized = 1;

Expand All @@ -733,14 +729,7 @@ static int __init param_sysfs_init(void)
}
subsys_initcall(param_sysfs_init);

#else
#if 0
static struct sysfs_ops module_sysfs_ops = {
.show = NULL,
.store = NULL,
};
#endif
#endif
#endif /* CONFIG_SYSFS */

EXPORT_SYMBOL(param_set_byte);
EXPORT_SYMBOL(param_get_byte);
Expand Down

0 comments on commit 7405c1e

Please sign in to comment.