From: Jason Wessel 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. Signed-off-by: Jason Wessel Cc: Greg KH Signed-off-by: Andrew Morton --- kernel/params.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN kernel/params.c~fix-sysfs-access-to-module-parameters-with-config_modules=n kernel/params.c --- devel/kernel/params.c~fix-sysfs-access-to-module-parameters-with-config_modules=n 2005-11-14 23:20:34.000000000 -0800 +++ devel-akpm/kernel/params.c 2005-11-14 23:20:51.000000000 -0800 @@ -619,7 +619,7 @@ static void __init param_sysfs_builtin(v /* 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); _