[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20130610131230.486f43fc@nehalam.linuxnetplumber.net>
Date: Mon, 10 Jun 2013 13:12:30 -0700
From: Stephen Hemminger <stephen@...workplumber.org>
To: davem@...emloft.net
Cc: netdev@...r.kernel.org,
Stephen Hemminger <stephen@...workplumber.org>
Subject: [PATCH net v2 02/03] vxlan: handle skb_clone failure
skb_clone can fail if out of memory. Just skip the fanout.
Signed-off-by: Stephen Hemminger <stephen@...workplumber.org>
---
The multi-destination was added in 3.10, does not need to goto stable
--- a/drivers/net/vxlan.c 2013-06-06 08:29:07.890429399 -0700
+++ b/drivers/net/vxlan.c 2013-06-06 09:38:52.723669153 -0700
@@ -1198,9 +1198,11 @@ static netdev_tx_t vxlan_xmit(struct sk_
struct sk_buff *skb1;
skb1 = skb_clone(skb, GFP_ATOMIC);
- rc1 = vxlan_xmit_one(skb1, dev, rdst, did_rsc);
- if (rc == NETDEV_TX_OK)
- rc = rc1;
+ if (skb1) {
+ rc1 = vxlan_xmit_one(skb1, dev, rdst, did_rsc);
+ if (rc == NETDEV_TX_OK)
+ rc = rc1;
+ }
}
rc1 = vxlan_xmit_one(skb, dev, rdst0, did_rsc);
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists