diff options
author | Andrew Morton <akpm@linux-foundation.org> | 2010-05-21 18:05:21 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2010-06-04 16:27:52 -0400 |
commit | c842128607a50a670df5f9c75261db2e21db3c45 (patch) | |
tree | 2d955bfa8bc3a365b72d9d6c171cb7c36e027133 /lib/kobject_uevent.c | |
parent | ad8456361fa19068cf49b50a4f98e41b73c08e76 (diff) |
lib/kobject_uevent.c: fix CONIG_NET=n warning
lib/kobject_uevent.c:87: warning: 'kobj_bcast_filter' defined but not used
Repairs "hotplug: netns aware uevent_helper"
Cc: Eric W. Biederman <ebiederm@xmission.com>
Cc: David S. Miller <davem@davemloft.net>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'lib/kobject_uevent.c')
-rw-r--r-- | lib/kobject_uevent.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/kobject_uevent.c b/lib/kobject_uevent.c index 59c15511d58a..e2eb989d3223 100644 --- a/lib/kobject_uevent.c +++ b/lib/kobject_uevent.c | |||
@@ -83,6 +83,7 @@ out: | |||
83 | return ret; | 83 | return ret; |
84 | } | 84 | } |
85 | 85 | ||
86 | #ifdef CONFIG_NET | ||
86 | static int kobj_bcast_filter(struct sock *dsk, struct sk_buff *skb, void *data) | 87 | static int kobj_bcast_filter(struct sock *dsk, struct sk_buff *skb, void *data) |
87 | { | 88 | { |
88 | struct kobject *kobj = data; | 89 | struct kobject *kobj = data; |
@@ -98,6 +99,7 @@ static int kobj_bcast_filter(struct sock *dsk, struct sk_buff *skb, void *data) | |||
98 | 99 | ||
99 | return 0; | 100 | return 0; |
100 | } | 101 | } |
102 | #endif | ||
101 | 103 | ||
102 | static int kobj_usermode_filter(struct kobject *kobj) | 104 | static int kobj_usermode_filter(struct kobject *kobj) |
103 | { | 105 | { |