From: Jason Wessel Date: Tue, 20 Dec 2005 22:41:02 +0000 (+0100) Subject: [PATCH] kernel/params.c: fix sysfs access with CONFIG_MODULES=n X-Git-Tag: v2.6.14.5~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=eec59235580a82f31ec66e066666332b804b0714;p=thirdparty%2Fkernel%2Fstable.git [PATCH] kernel/params.c: fix sysfs access with CONFIG_MODULES=n All the work was done to setup the file and maintain the file handles but the access functions were zeroed out due to the #ifdef. Removing the #ifdef allows full access to all the parameters when CONFIG_MODULES=n. akpm: put it back again, but use CONFIG_SYSFS instead. This patch has already been included in Linus' tree. Signed-off-by: Jason Wessel Signed-off-by: Andrew Morton Signed-off-by: Adrian Bunk Signed-off-by: Greg Kroah-Hartman --- diff --git a/kernel/params.c b/kernel/params.c index 1a8614bac5d5c..fe8f1e9880f82 100644 --- a/kernel/params.c +++ b/kernel/params.c @@ -618,7 +618,7 @@ static void __init param_sysfs_builtin(void) /* module-related sysfs stuff */ -#ifdef CONFIG_MODULES +#ifdef CONFIG_SYSFS #define to_module_attr(n) container_of(n, struct module_attribute, attr); #define to_module_kobject(n) container_of(n, struct module_kobject, kobj);