[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20161109171018.69d08ff9@griffin>
Date: Wed, 9 Nov 2016 17:10:18 +0100
From: Jiri Benc <jbenc@...hat.com>
To: Pravin B Shelar <pshelar@....org>
Cc: netdev@...r.kernel.org
Subject: Re: [PATCH net-next v2 2/7] vxlan: simplify exception handling
On Sat, 5 Nov 2016 11:45:52 -0700, Pravin B Shelar wrote:
> @@ -2058,7 +2059,7 @@ static void vxlan_xmit_one(struct sk_buff *skb, struct net_device *dev,
> err = vxlan_build_skb(skb, &rt->dst, sizeof(struct iphdr),
> vni, md, flags, udp_sum);
> if (err < 0)
> - goto xmit_tx_error;
> + goto tx_error;
Seems you're leaking rt here?
> @@ -2117,11 +2118,9 @@ static void vxlan_xmit_one(struct sk_buff *skb, struct net_device *dev,
> skb_scrub_packet(skb, xnet);
> err = vxlan_build_skb(skb, ndst, sizeof(struct ipv6hdr),
> vni, md, flags, udp_sum);
> - if (err < 0) {
> - dst_release(ndst);
> - dev->stats.tx_errors++;
> - return;
> - }
> + if (err < 0)
> + goto tx_error;
And ndst here?
Jiri
Powered by blists - more mailing lists