* [PATCH] remove unnecessary variable in xfrm_output_resume()
@ 2008-08-12 6:12 Jean-Christophe Dubois
2008-08-13 1:16 ` Herbert Xu
2008-08-13 9:38 ` David Miller
0 siblings, 2 replies; 6+ messages in thread
From: Jean-Christophe Dubois @ 2008-08-12 6:12 UTC (permalink / raw)
To: linux-crypto
Small fix removing an unnecessary intermediate variable.
Signed-off-by: Jean-Christophe DUBOIS <jcd@tribudubois.net>
---
diff -Naur linux-2.6.26.2.org/net/xfrm/xfrm_output.c linux-2.6.26.2/net/xfrm/xfrm_output.c
--- linux-2.6.26.2.org/net/xfrm/xfrm_output.c 2008-08-12 00:37:29.000000000 +0200
+++ linux-2.6.26.2/net/xfrm/xfrm_output.c 2008-08-12 00:40:40.000000000 +0200
@@ -112,16 +112,13 @@
int xfrm_output_resume(struct sk_buff *skb, int err)
{
while (likely((err = xfrm_output_one(skb, err)) == 0)) {
- struct xfrm_state *x;
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] remove unnecessary variable in xfrm_output_resume()
2008-08-12 6:12 [PATCH] remove unnecessary variable in xfrm_output_resume() Jean-Christophe Dubois
@ 2008-08-13 1:16 ` Herbert Xu
2008-08-13 5:50 ` Jean-Christophe Dubois
2008-08-13 9:38 ` David Miller
1 sibling, 1 reply; 6+ messages in thread
From: Herbert Xu @ 2008-08-13 1:16 UTC (permalink / raw)
To: Jean-Christophe Dubois; +Cc: linux-crypto
Jean-Christophe Dubois <jcd@tribudubois.net> wrote:
> Small fix removing an unnecessary intermediate variable.
>
> Signed-off-by: Jean-Christophe DUBOIS <jcd@tribudubois.net>
Please send this to davem@davemloft.net and cc netdev@vger.kernel.org.
Thanks,
--
Visit Openswan at http://www.openswan.org/
Email: Herbert Xu ~{PmV>HI~} <herbert@gondor.apana.org.au>
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] remove unnecessary variable in xfrm_output_resume()
2008-08-13 1:16 ` Herbert Xu
@ 2008-08-13 5:50 ` Jean-Christophe Dubois
2008-08-13 5:53 ` David Miller
0 siblings, 1 reply; 6+ messages in thread
From: Jean-Christophe Dubois @ 2008-08-13 5:50 UTC (permalink / raw)
To: Herbert Xu; +Cc: linux-crypto
Le Wednesday 13 August 2008 03:16:04 Herbert Xu, vous avez écrit :
> Jean-Christophe Dubois <jcd@tribudubois.net> wrote:
> > Small fix removing an unnecessary intermediate variable.
> >
> > Signed-off-by: Jean-Christophe DUBOIS <jcd@tribudubois.net>
>
> Please send this to davem@davemloft.net and cc netdev@vger.kernel.org.
Done
Thanks
>
> Thanks,
--
To unsubscribe from this list: send the line "unsubscribe linux-crypto" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] remove unnecessary variable in xfrm_output_resume()
2008-08-13 5:50 ` Jean-Christophe Dubois
@ 2008-08-13 5:53 ` David Miller
0 siblings, 0 replies; 6+ messages in thread
From: David Miller @ 2008-08-13 5:53 UTC (permalink / raw)
To: jcd; +Cc: herbert, linux-crypto
From: Jean-Christophe Dubois <jcd@tribudubois.net>
Date: Wed, 13 Aug 2008 07:50:16 +0200
> Le Wednesday 13 August 2008 03:16:04 Herbert Xu, vous avez écrit :
> > Jean-Christophe Dubois <jcd@tribudubois.net> wrote:
> > > Small fix removing an unnecessary intermediate variable.
> > >
> > > Signed-off-by: Jean-Christophe DUBOIS <jcd@tribudubois.net>
> >
> > Please send this to davem@davemloft.net and cc netdev@vger.kernel.org.
>
> Done
Ugh, I didn't see Herbert tell you this sorry :-)
I do really already have a copy of this in my backlog.
--
To unsubscribe from this list: send the line "unsubscribe linux-crypto" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] remove unnecessary variable in xfrm_output_resume()
2008-08-12 6:12 [PATCH] remove unnecessary variable in xfrm_output_resume() Jean-Christophe Dubois
2008-08-13 1:16 ` Herbert Xu
@ 2008-08-13 9:38 ` David Miller
2008-08-13 18:50 ` Jean-Christophe Dubois
1 sibling, 1 reply; 6+ messages in thread
From: David Miller @ 2008-08-13 9:38 UTC (permalink / raw)
To: jcd; +Cc: linux-crypto, netdev
From: Jean-Christophe Dubois <jcd@tribudubois.net>
Date: Tue, 12 Aug 2008 08:12:24 +0200
> Small fix removing an unnecessary intermediate variable.
>
> Signed-off-by: Jean-Christophe DUBOIS <jcd@tribudubois.net>
Your patch is whitespace mangled by your email client, the tab
characters have been corrupted into spaces, therefore your patch
will not apply.
Please fix this up and resubmit.
Thanks.
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] remove unnecessary variable in xfrm_output_resume()
2008-08-13 9:38 ` David Miller
@ 2008-08-13 18:50 ` Jean-Christophe Dubois
0 siblings, 0 replies; 6+ messages in thread
From: Jean-Christophe Dubois @ 2008-08-13 18:50 UTC (permalink / raw)
To: David Miller; +Cc: linux-crypto, netdev
Le Wednesday 13 August 2008 11:38:14 David Miller, vous avez écrit :
> From: Jean-Christophe Dubois <jcd@tribudubois.net>
> Date: Tue, 12 Aug 2008 08:12:24 +0200
>
> > Small fix removing an unnecessary intermediate variable.
> >
> > Signed-off-by: Jean-Christophe DUBOIS <jcd@tribudubois.net>
>
> Your patch is whitespace mangled by your email client, the tab
> characters have been corrupted into spaces, therefore your patch
> will not apply.
>
> Please fix this up and resubmit.
Sorry, I'll resubmit.
JC
>
> Thanks.
> --
> To unsubscribe from this list: send the line "unsubscribe netdev" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2008-08-13 18:50 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-08-12 6:12 [PATCH] remove unnecessary variable in xfrm_output_resume() Jean-Christophe Dubois
2008-08-13 1:16 ` Herbert Xu
2008-08-13 5:50 ` Jean-Christophe Dubois
2008-08-13 5:53 ` David Miller
2008-08-13 9:38 ` David Miller
2008-08-13 18:50 ` Jean-Christophe Dubois
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox