From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: From: Kamal Mostafa To: linux-kernel@vger.kernel.org, stable@vger.kernel.org, kernel-team@lists.ubuntu.com Cc: Ansis Atteka , "David S. Miller" , Kamal Mostafa Subject: [PATCH 3.8 05/91] vxlan: fix ip_select_ident skb parameter Date: Thu, 7 Nov 2013 18:14:20 -0800 Message-Id: <1383876946-2396-6-git-send-email-kamal@canonical.com> In-Reply-To: <1383876946-2396-1-git-send-email-kamal@canonical.com> References: <1383876946-2396-1-git-send-email-kamal@canonical.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: 3.8.13.13 -stable review patch. If anyone has any objections, please let me know. ------------------ From: Kamal Mostafa [3.8-stable only] Fix a call to ip_select_ident() that I missed in commit 1a3365ee55bc5b7e9a752e3a535fd983714d8db2, which is the 3.8 backport of commit 703133de331a7a7df47f31fb9de51dc6f68a9de8 upstream. Cc: Ansis Atteka Cc: David S. Miller Signed-off-by: Kamal Mostafa --- drivers/net/vxlan.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/vxlan.c b/drivers/net/vxlan.c index 9b2cc0c..cb6f529 100644 --- a/drivers/net/vxlan.c +++ b/drivers/net/vxlan.c @@ -977,7 +977,7 @@ static netdev_tx_t vxlan_xmit(struct sk_buff *skb, struct net_device *dev) /* See iptunnel_xmit() */ if (skb->ip_summed != CHECKSUM_PARTIAL) skb->ip_summed = CHECKSUM_NONE; - ip_select_ident(iph, &rt->dst, NULL); + ip_select_ident(skb, &rt->dst, NULL); err = ip_local_out(skb); if (likely(net_xmit_eval(err) == 0)) { -- 1.8.1.2