From mboxrd@z Thu Jan 1 00:00:00 1970 From: Yuanhan Liu Subject: Re: [dpdk-stable] [PATCH] pcap: fix memory leak in jumbo frames Date: Tue, 20 Sep 2016 19:57:02 +0800 Message-ID: <20160920115702.GM10323@yliu-dev.sh.intel.com> References: <1474367963-83879-1-git-send-email-dror.birkman@lightcyber.com> <20160920105829.GU23158@yliu-dev.sh.intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: Nicolas Pernas Maradei , ferruh.yigit@intel.com, dev@dpdk.org, stable@dpdk.org To: Dror Birkman Return-path: Content-Disposition: inline In-Reply-To: List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On Tue, Sep 20, 2016 at 02:16:48PM +0300, Dror Birkman wrote: > Cool! > Adding fixline: You might want to send a v2: the following diff is malformed. > > If rte_pktmbuf_alloc() fails on any segment that is not the initial > segment, previously allocated mbufs are not freed. > > Fixes: 6db141c91e1f ("pcap: support jumbo frames") And put a line "Cc: " just before your Signed-off-by. --yliu > > Signed-off-by: Dror Birkman > --- > drivers/net/pcap/rte_eth_pcap.c | 4 +++- > 1 file changed, 3 insertions(+), 1 deletion(-) > > diff --git a/drivers/net/pcap/rte_eth_pcap.c b/drivers/net/pcap/rte_eth_ > pcap.c > index b7a3b03..db19a66 100644 > --- a/drivers/net/pcap/rte_eth_pcap.c > +++ b/drivers/net/pcap/rte_eth_pcap.c > @@ -229,8 +229,10 @@ eth_pcap_rx(void *queue, > if (unlikely(eth_pcap_rx_jumbo(pcap_q->mb_pool, > mbuf, > packet, > - header.caplen) == -1)) > + header.caplen) == -1)) { > + rte_pktmbuf_free(mbuf); > break; > + } > } > > mbuf->pkt_len = (uint16_t)header.caplen; > -- > 2.3.0 > > > > On Tue, Sep 20, 2016 at 1:58 PM, Yuanhan Liu > wrote: > > > On Tue, Sep 20, 2016 at 01:39:23PM +0300, Dror Birkman wrote: > > > If rte_pktmbuf_alloc() fails on any segment that is not the initial > > > segment, previously allocated mbufs are not freed. > > > > You should put a "fixline" here. > > > > Besides that, I think it's a good candidate for stable branch. Thus, > > stable@dpdk.org cc'ed. > > > > --yliu > >