DPDK patches and discussions
 help / color / mirror / Atom feed
From: Honnappa Nagarahalli <Honnappa.Nagarahalli@arm.com>
To: "thomas@monjalon.net" <thomas@monjalon.net>,
	"byron.marohn@intel.com" <byron.marohn@intel.com>,
	"pablo.de.lara.guarch@intel.com" <pablo.de.lara.guarch@intel.com>
Cc: "stable@dpdk.org" <stable@dpdk.org>,
	Hari Kumar Vemula <hari.kumarx.vemula@intel.com>,
	"dev@dpdk.org" <dev@dpdk.org>,
	"reshma.pattan@intel.com" <reshma.pattan@intel.com>,
	"jananeex.m.parthasarathy@intel.com"
	<jananeex.m.parthasarathy@intel.com>,
	"maxime.coquelin@redhat.com" <maxime.coquelin@redhat.com>,
	nd <nd@arm.com>, nd <nd@arm.com>
Subject: Re: [dpdk-dev] [dpdk-stable] [PATCH v3] lib/efd: fix to free tail	queue entry after use
Date: Mon, 14 Jan 2019 22:39:28 +0000	[thread overview]
Message-ID: <AM6PR08MB367292555D442ECC5140534A98800@AM6PR08MB3672.eurprd08.prod.outlook.com> (raw)
In-Reply-To: <2704785.Ctf98vYVr8@xps>

> 
> Any review please?
> 
> 11/01/2019 12:49, Hari Kumar Vemula:
> > In rte_efd_create() allocated memory for tail queue entry but not
> > freed.
> > Added freeing the tail queue entry.
> >
> > Fixes: 56b6ef874f80 ("efd: new Elastic Flow Distributor library")
> > Cc: stable@dpdk.org
> >
> > Signed-off-by: Hari Kumar Vemula <hari.kumarx.vemula@intel.com>
> > Acked-by: Reshma Pattan <reshma.pattan@intel.com>
> >
> > ---
> > v3: Replaced TAILQ_FOREACH_SAFE with TAILQ_FOREACH
> > v2: Updated commit message.
> > ---
> >  lib/librte_efd/rte_efd.c | 15 +++++++++++++++
> >  1 file changed, 15 insertions(+)
> >
> > diff --git a/lib/librte_efd/rte_efd.c b/lib/librte_efd/rte_efd.c index
> > e6e5cfda2..8b8330e0b 100644
> > --- a/lib/librte_efd/rte_efd.c
> > +++ b/lib/librte_efd/rte_efd.c
> > @@ -740,17 +740,32 @@ void
> >  rte_efd_free(struct rte_efd_table *table)  {
> >  	uint8_t socket_id;
> > +	struct rte_efd_list *efd_list;
> > +	struct rte_tailq_entry *te, *temp;
> >
> >  	if (table == NULL)
> >  		return;
> >
> > +	efd_list = RTE_TAILQ_CAST(rte_efd_tailq.head, rte_efd_list);
> > +
Minor comment. May be better to move this after the 'for' loop below.

> >  	for (socket_id = 0; socket_id < RTE_MAX_NUMA_NODES; socket_id++)
> >  		rte_free(table->chunks[socket_id]);
> > +	rte_rwlock_write_lock(RTE_EAL_TAILQ_RWLOCK);
> >
> > +	TAILQ_FOREACH_SAFE(te, efd_list, next, temp) {
> > +		if (te->data == (void *) table) {
> > +			TAILQ_REMOVE(efd_list, te, next);
> > +			rte_free(te);
> > +			te = NULL;
> > +		}
> > +	}
> > +
> > +	rte_rwlock_write_unlock(RTE_EAL_TAILQ_RWLOCK);
> >  	rte_ring_free(table->free_slots);
> >  	rte_free(table->offline_chunks);
> >  	rte_free(table->keys);
> >  	rte_free(table);
> > +
Minor comment, extra space
> >  }
> >
> >  /**
> >
Some minor comments. Looks good otherwise.

Reviewed-by: Honnappa Nagarahalli <Honnappa.nagarahalli@arm.com>
> 
> 
> 
> 

  reply	other threads:[~2019-01-14 22:39 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-11-13 11:45 [dpdk-dev] [PATCH] lib: fix to free trail " Hari Kumar Vemula
2018-11-13 16:43 ` Pattan, Reshma
2018-11-14 11:17 ` [dpdk-dev] [PATCH v2] lib/efd: fix to free tail " Hari Kumar Vemula
2018-11-18 14:57   ` Thomas Monjalon
2018-11-23 13:30   ` Maxime Coquelin
2018-11-23 14:39     ` Maxime Coquelin
2019-01-11 11:49 ` [dpdk-dev] [PATCH v3] " Hari Kumar Vemula
2019-01-14 22:30   ` [dpdk-dev] [dpdk-stable] " Thomas Monjalon
2019-01-14 22:39     ` Honnappa Nagarahalli [this message]
2019-01-17 13:36 ` [dpdk-dev] [PATCH v4] " Hari Kumar Vemula
2019-01-17 16:41   ` De Lara Guarch, Pablo
2019-01-18  7:40 ` [dpdk-dev] [PATCH v5] " Hari Kumar Vemula
2019-01-18 18:21   ` Thomas Monjalon

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=AM6PR08MB367292555D442ECC5140534A98800@AM6PR08MB3672.eurprd08.prod.outlook.com \
    --to=honnappa.nagarahalli@arm.com \
    --cc=byron.marohn@intel.com \
    --cc=dev@dpdk.org \
    --cc=hari.kumarx.vemula@intel.com \
    --cc=jananeex.m.parthasarathy@intel.com \
    --cc=maxime.coquelin@redhat.com \
    --cc=nd@arm.com \
    --cc=pablo.de.lara.guarch@intel.com \
    --cc=reshma.pattan@intel.com \
    --cc=stable@dpdk.org \
    --cc=thomas@monjalon.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).