Subject: fix fib_proc compilation error From: Daniel Lezcano Fix fib_proc_[init|exit] definition when CONFIG_PROCFS=no Signed-off-by: Daniel Lezcano --- include/net/ip_fib.h | 10 ++++++++++ 1 file changed, 10 insertions(+) Index: net-2.6.25-fix/include/net/ip_fib.h =================================================================== --- net-2.6.25-fix.orig/include/net/ip_fib.h +++ net-2.6.25-fix/include/net/ip_fib.h @@ -264,6 +264,16 @@ static inline void fib_res_put(struct fi #ifdef CONFIG_PROC_FS extern int __net_init fib_proc_init(struct net *net); extern void __net_exit fib_proc_exit(struct net *net); +#else +static inline int fib_proc_init(struct net *net) +{ + return 0; +} + +static inline void fib_proc_exit(struct net *net) +{ + return ; +} #endif #endif /* _NET_FIB_H */