Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=ff4b950277b6534caab2b2b956dba6ce29757551
Commit:     ff4b950277b6534caab2b2b956dba6ce29757551
Parent:     a781cf94e6dcc09bf13e548298185d916d9ff3c8
Author:     Denis V. Lunev <[EMAIL PROTECTED]>
AuthorDate: Tue Jan 22 22:05:33 2008 -0800
Committer:  David S. Miller <[EMAIL PROTECTED]>
CommitDate: Wed Jan 23 03:11:42 2008 -0800

    [NETNS]: Re-export init_net via EXPORT_SYMBOL.
    
    init_net is used added as a parameter to a lot of old API calls, f.e.
    ip_dev_find. These calls were exported as EXPORT_SYMBOL. So, export init_net
    as EXPORT_SYMBOL to keep networking API consistent.
    
    Signed-off-by: Denis V. Lunev <[EMAIL PROTECTED]>
    Signed-off-by: David S. Miller <[EMAIL PROTECTED]>
---
 net/core/net_namespace.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/net/core/net_namespace.c b/net/core/net_namespace.c
index 383252b..ec936ae 100644
--- a/net/core/net_namespace.c
+++ b/net/core/net_namespace.c
@@ -18,7 +18,7 @@ static DEFINE_MUTEX(net_mutex);
 LIST_HEAD(net_namespace_list);
 
 struct net init_net;
-EXPORT_SYMBOL_GPL(init_net);
+EXPORT_SYMBOL(init_net);
 
 /*
  * setup_net runs the initializers for the network namespace object.
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to