lkml.org 
[lkml]   [2008]   [Mar]   [10]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
Subject[RFC PATCH] ipv4: compilation error fix with CONFIG_PROC_FS disabled
From
Date
Fixes compilation errors while compiling the kernel with CONFIG_PROC_FS
disabled.


Signed-off-by: Ram Pai <linuxram@us.ibm.com>
---
net/ipv4/fib_frontend.c | 7 +++++++
1 file changed, 7 insertions(+)

Index: linux-2.6.24/net/ipv4/fib_frontend.c
===================================================================
--- linux-2.6.24.orig/net/ipv4/fib_frontend.c
+++ linux-2.6.24/net/ipv4/fib_frontend.c
@@ -1029,14 +1029,19 @@ static int __net_init fib_net_init(struc
error = nl_fib_lookup_init(net);
if (error < 0)
goto out_nlfl;
+#ifdef CONFIG_PROC_FS
error = fib_proc_init(net);
if (error < 0)
goto out_proc;
+#endif /* CONFIG_PROC_FS */
out:
return error;

+#ifdef CONFIG_PROC_FS
out_proc:
nl_fib_lookup_exit(net);
+#endif /* CONFIG_PROC_FS */
+
out_nlfl:
ip_fib_net_exit(net);
goto out;
@@ -1044,7 +1049,9 @@ out_nlfl:

static void __net_exit fib_net_exit(struct net *net)
{
+#ifdef CONFIG_PROC_FS
fib_proc_exit(net);
+#endif /* CONFIG_PROC_FS */
nl_fib_lookup_exit(net);
ip_fib_net_exit(net);
}



\
 
 \ /
  Last update: 2008-03-10 19:13    [W:0.691 / U:0.064 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site