The patch titled pppoe: missing result check in __pppoe_xmit() has been the -mm tree. Its filename is pppoe-missing-result-check-in-__pppoe_xmit.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: pppoe: missing result check in __pppoe_xmit() From: Florin Malita <fmalita@xxxxxxxxx> skb_clone() may fail, we should check the result. Coverity CID: 1215. Signed-off-by: Florin Malita <fmalita@xxxxxxxxx> Cc: "David S. Miller" <davem@xxxxxxxxxxxxx> Cc: <mostrows@xxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/net/pppoe.c | 3 +++ 1 file changed, 3 insertions(+) diff -puN drivers/net/pppoe.c~pppoe-missing-result-check-in-__pppoe_xmit drivers/net/pppoe.c --- devel/drivers/net/pppoe.c~pppoe-missing-result-check-in-__pppoe_xmit 2006-06-01 20:31:50.000000000 -0700 +++ devel-akpm/drivers/net/pppoe.c 2006-06-01 20:31:50.000000000 -0700 @@ -861,6 +861,9 @@ static int __pppoe_xmit(struct sock *sk, * give dev_queue_xmit something it can free. */ skb2 = skb_clone(skb, GFP_ATOMIC); + + if (skb2 == NULL) + goto abort; } ph = (struct pppoe_hdr *) skb_push(skb2, sizeof(struct pppoe_hdr)); _ Patches currently in -mm which might be from fmalita@xxxxxxxxx are git-mtd.patch git-netdev-all.patch git-pcmcia.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html