[net-2.6.24][NETNS][patch 1/3] fix export symbols

2007-09-12 Thread dlezcano
From: Daniel Lezcano [EMAIL PROTECTED]

Add the appropriate EXPORT_SYMBOLS for proc_net_create,
proc_net_fops_create and proc_net_remove to fix errors when
compiling allmodconfig

Signed-off-by: Mark Nelson [EMAIL PROTECTED]
Acked-by: Benjamin Thery [EMAIL PROTECTED]
---
 fs/proc/proc_net.c |4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

Index: net-2.6.24/fs/proc/proc_net.c
===
--- net-2.6.24.orig/fs/proc/proc_net.c
+++ net-2.6.24/fs/proc/proc_net.c
@@ -31,6 +31,7 @@
 {
return create_proc_info_entry(name,mode, net-proc_net, get_info);
 }
+EXPORT_SYMBOL_GPL(proc_net_create);
 
 struct proc_dir_entry *proc_net_fops_create(struct net *net,
const char *name, mode_t mode, const struct file_operations *fops)
@@ -42,12 +43,13 @@
res-proc_fops = fops;
return res;
 }
+EXPORT_SYMBOL_GPL(proc_net_fops_create);
 
 void proc_net_remove(struct net *net, const char *name)
 {
remove_proc_entry(name, net-proc_net);
 }
-
+EXPORT_SYMBOL_GPL(proc_net_remove);
 
 static struct proc_dir_entry *proc_net_shadow;
 

-- 
-
To unsubscribe from this list: send the line unsubscribe netdev in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [net-2.6.24][NETNS][patch 1/3] fix export symbols

2007-09-12 Thread David Miller
From: [EMAIL PROTECTED]
Date: Wed, 12 Sep 2007 14:38:12 +0200

 From: Daniel Lezcano [EMAIL PROTECTED]
 
 Add the appropriate EXPORT_SYMBOLS for proc_net_create,
 proc_net_fops_create and proc_net_remove to fix errors when
 compiling allmodconfig
 
 Signed-off-by: Mark Nelson [EMAIL PROTECTED]
 Acked-by: Benjamin Thery [EMAIL PROTECTED]

Applied to net-2.6.24, thanks.

Why aren't you signing off on these patches?  Please
do so in the future.

Because From:  usually means you are the patch author, and I can't
tell who wrote these patches, you or these other people listed in the
signoff area.
-
To unsubscribe from this list: send the line unsubscribe netdev in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [net-2.6.24][NETNS][patch 1/3] fix export symbols

2007-09-12 Thread Daniel Lezcano

David Miller wrote:

From: [EMAIL PROTECTED]
Date: Wed, 12 Sep 2007 14:38:12 +0200


From: Daniel Lezcano [EMAIL PROTECTED]

Add the appropriate EXPORT_SYMBOLS for proc_net_create,
proc_net_fops_create and proc_net_remove to fix errors when
compiling allmodconfig

Signed-off-by: Mark Nelson [EMAIL PROTECTED]
Acked-by: Benjamin Thery [EMAIL PROTECTED]


Applied to net-2.6.24, thanks.

Why aren't you signing off on these patches?  Please
do so in the future.

Because From:  usually means you are the patch author, and I can't
tell who wrote these patches, you or these other people listed in the
signoff area.



Sorry for that, I will take care of that next time. Thanks.
-
To unsubscribe from this list: send the line unsubscribe netdev in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html