Re: Examine route.c! -- two bugs fixed -- patch attached!

Dr. Werner Fink (werner@suse.de)
Thu, 4 Dec 1997 23:49:53 +0100


>
> whereas the inline function is (net/route.h) still is:
>
> extern __inline__ void ip_rt_put(struct rtable * rt)
> #ifndef MODULE
> {
> if (rt)
> atomic_dec(&rt->rt_refcnt);
> }
> #else
> ;
> #endif

Let's try only

extern void ip_rt_put(struct rtable * rt);

and maybe without CONFIG_SYN_COOKIES.

Werner