[RFC PATCH] ipv4: compilation error fix with CONFIG_PROC_FSdisabled

From: Ram Pai
Date: Mon Mar 10 2008 - 14:10:31 EST


Fixes compilation errors while compiling the kernel with CONFIG_PROC_FS
disabled.


Signed-off-by: Ram Pai <linuxram@xxxxxxxxxx>
---
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);
}


--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/