Re: Linux v2.5.48

Adrian Bunk (bunk@fs.tum.de)
Wed, 27 Nov 2002 00:15:08 +0100


On Sun, Nov 17, 2002 at 08:41:05PM -0800, Linus Torvalds wrote:

>...
> Summary of changes from v2.5.47 to v2.5.48
> ============================================
>...
> Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>:
> o [IPSEC]: More fixes and corrections
>...

The following part of this patch looks bogus:

<-- snip -->

--- 1.6/net/key/af_key.c Fri Nov 8 00:34:37 2002
+++ 1.7/net/key/af_key.c Mon Nov 11 01:03:55 2002
...
@@ -2179,7 +2223,7 @@
if (skb)
kfree_skb(skb);

- return err;
+ return err ? : len;
}

static int pfkey_recvmsg(struct kiocb *kiocb,

<-- snip -->

Is the following correct to fix it?

--- linux/net/key/af_key.c.old 2002-11-27 00:12:28.000000000 +0100
+++ linux/net/key/af_key.c 2002-11-27 00:12:40.000000000 +0100
@@ -2242,7 +2242,7 @@
if (skb)
kfree_skb(skb);

- return err ? : len;
+ return err ? err : len;
}

static int pfkey_recvmsg(struct kiocb *kiocb,

cu
Adrian

-- 

"Is there not promise of rain?" Ling Tan asked suddenly out of the darkness. There had been need of rain for many days. "Only a promise," Lao Er said. Pearl S. Buck - Dragon Seed

- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/