[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1205172664.15345.96.camel@ram.us.ibm.com>
Date: Mon, 10 Mar 2008 11:11:03 -0700
From: Ram Pai <linuxram@...ibm.com>
To: linux-kernel@...r.kernel.org
Cc: akpm@...ux-foundation.org, davem@...emloft.net
Subject: [RFC PATCH] ipv4: compilation error fix with CONFIG_PROC_FS
disabled
Fixes compilation errors while compiling the kernel with CONFIG_PROC_FS
disabled.
Signed-off-by: Ram Pai <linuxram@...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);
}
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists