[PATCH] merge dst_discard in & out into one, this decrements the vmlinux image by 21 bytes under i386 arch.

2007-05-28 Thread rae l
On 5/28/07, Jan Engelhardt <[EMAIL PROTECTED]> wrote: Uhm, just replace every invocation of dst_discard_in/_out() directly by dst_discard ... don't add macros for that. so that, the trival patch changed to this: because the definition of dst_discard_in and dst_discard_out are the same, so they

Re: [PATCH] merge dst_discard in & out into one, this decrements the vmlinux image by 21 bytes under i386 arch.

2007-05-28 Thread Jan Engelhardt
On May 28 2007 10:41, rae l wrote: > > diff --git a/net/core/dst.c b/net/core/dst.c > index 764bccb..daa0439 100644 > --- a/net/core/dst.c > +++ b/net/core/dst.c > @@ -111,17 +111,14 @@ out: > spin_unlock(&dst_lock); > } > > -static int dst_discard_in(struct sk_buff *skb) > +static int dst_di

[PATCH] merge dst_discard in & out into one, this decrements the vmlinux image by 21 bytes under i386 arch.

2007-05-27 Thread rae l
From: Denis Cheng thus the definition of dst_discard_in and dst_discard_out is the same, we can define a dst_discard function and map the _in and _out to it, this can reduce space in vmlinux. Signed-off-by: Denis Cheng <[EMAIL PROTECTED]> --- diff --git a/net/core/dst.c b/net/core/dst.c index 7