The patch titled
kernel/params.c: compile fail when CONFIG_SYSFS not set
has been added to the -mm tree. Its filename is
fix-gregkh-driver-sys-modules-holders.patch
*** Remember to use Documentation/SubmitChecklist when testing your code ***
See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find
out what to do about this
------------------------------------------------------
Subject: kernel/params.c: compile fail when CONFIG_SYSFS not set
From: Grant Coady <[EMAIL PROTECTED]>
kernel/profile.c:247: warning: 'profile_flip_buffers' defined but not used
kernel/profile.c:270: warning: 'profile_discard_flip_buffers' defined but not
used
kernel/profile.c:337: warning: 'profile_cpu_callback' defined but not used
kernel/params.c:700: error: `module_uevent_ops' undeclared here (not in a
function)
kernel/params.c:700: error: initializer element is not constant
kernel/params.c:700: error: (near initialization for
`module_subsys.kset.uevent_ops')
kernel/params.c:700: error: initializer element is not constant
kernel/params.c:700: error: (near initialization for `module_subsys.kset')
make[1]: *** [kernel/params.o] Error 1
make: *** [kernel] Error 2
Signed-off-by: Grant Coady <[EMAIL PROTECTED]>
Cc: Greg KH <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---
kernel/params.c | 4 ++++
1 files changed, 4 insertions(+)
diff -puN kernel/params.c~fix-gregkh-driver-sys-modules-holders kernel/params.c
--- a/kernel/params.c~fix-gregkh-driver-sys-modules-holders
+++ a/kernel/params.c
@@ -691,6 +691,10 @@ static struct sysfs_ops module_sysfs_ops
.show = NULL,
.store = NULL,
};
+
+static struct kset_uevent_ops module_uevent_ops = {
+ .filter = NULL,
+};
#endif
static struct kobj_type module_ktype = {
_
Patches currently in -mm which might be from [EMAIL PROTECTED] are
fix-gregkh-driver-sys-modules-holders.patch
git-block-dupe-definitions.patch
-
To unsubscribe from this list: send the line "unsubscribe mm-commits" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html