patches for DPDK stable branches
 help / color / mirror / Atom feed
From: Matan Azrad <matan@mellanox.com>
To: Yuanhan Liu <yliu@fridaylinux.org>
Cc: Konstantin Ananyev <konstantin.ananyev@intel.com>,
	Thomas Monjalon <thomas@monjalon.net>,
	dpdk stable <stable@dpdk.org>
Subject: Re: [dpdk-stable] patch 'ethdev: fix port id allocation' has been queued to LTS release 17.11.1
Date: Sun, 11 Feb 2018 07:15:25 +0000	[thread overview]
Message-ID: <AM4PR0501MB26574FE12FB2D95F49C2F72BD2F00@AM4PR0501MB2657.eurprd05.prod.outlook.com> (raw)
In-Reply-To: <20180211065400.GK23970@yliu-mob>



From: Yuanhan Liu, Sent: Sunday, February 11, 2018 8:54 AM
> On Sun, Feb 11, 2018 at 06:40:27AM +0000, Matan Azrad wrote:
> > Ho Yuanhan
> >
> > From: Yuanhan Liu. Sent: Sunday, February 11, 2018 4:47 AM
> > > On Thu, Feb 01, 2018 at 05:47:54PM +0800, Yuanhan Liu wrote:
> > > > Hi,
> > > >
> > > > FYI, your patch has been queued to LTS release 17.11.1
> > > >
> > > > Note it hasn't been pushed to
> > >
> https://emea01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fdp
> > > d
> > > k.org%2Fbrowse%2Fdpdk-
> > >
> stable&data=02%7C01%7Cmatan%40mellanox.com%7C1d21efdca33143ad70f
> > >
> 808d570f9b78f%7Ca652971c7d2e4d9ba6a4d149256f461b%7C0%7C0%7C63653
> > >
> 9140229336610&sdata=2Pgtg0sgIoqPmYRPirEjMi2dmJKVKyFljRZHGLIcz5M%3
> > > D&reserved=0 yet.
> > > > It will be pushed if I get no objections before 02/03/18. So
> > > > please shout if anyone has objections.
> > >
> > > It introduced an crash at port allocation.
> > > And I have now reverted it. Please do a backport if necessary.
> > >
> >
> > Please read the commit log and let me know if it necessary for this version -
> some secondary scenarios may fail without this patch.
> > Please send me the crash details, maybe it exposes new bugs in the stable
> branch.
> 
> I didn't dig, the error happened at tring to access
> rte_eth_dev_data[0].name.
> 
> 	if (rte_eth_dev_data[i].name[0] == '\0') {
> 
> What I observed is "rte_eth_dev_data" is NULL, looks like it haven't been
> initiated yet.
>

Yes, you right.
18.02 following patch (ethdev: add port ownership) took care of it.
So, I can backport it easily... will do it soon. 

 
> 	--yliu
> >
> >
> > > Thanks.
> > >
> > > 	--yliu
> > > >
> > > > ---
> > > > >From 67abe74f3c09e6f166902c9fc5f4d7f65f7b3007 Mon Sep 17
> 00:00:00
> > > > >2001
> > > > From: Matan Azrad <matan@mellanox.com>
> > > > Date: Mon, 22 Jan 2018 16:38:18 +0000
> > > > Subject: [PATCH] ethdev: fix port id allocation
> > > >
> > > > [ upstream commit 8ee892a2385c50427c03db5cef1789babceb5999 ]
> > > >
> > > > rte_eth_dev_find_free_port() found a free port by state checking.
> > > > The state field are in local process memory, so other DPDK
> > > > processes may get the same port ID because their local states may be
> different.
> > > >
> > > > Replace the state checking by the ethdev port name checking, so,
> > > > if the name is an empty string the port ID will be detected as unused.
> > > >
> > > > Fixes: d948f596fee2 ("ethdev: fix port data mismatched in multiple
> > > > process model")
> > > >
> > > > Suggested-by: Konstantin Ananyev <konstantin.ananyev@intel.com>
> > > > Signed-off-by: Matan Azrad <matan@mellanox.com>
> > > > Acked-by: Thomas Monjalon <thomas@monjalon.net>
> > > > Acked-by: Konstantin Ananyev <konstantin.ananyev@intel.com>
> > > > ---
> > > >  lib/librte_ether/rte_ethdev.c | 6 +++++-
> > > >  1 file changed, 5 insertions(+), 1 deletion(-)
> > > >
> > > > diff --git a/lib/librte_ether/rte_ethdev.c
> > > > b/lib/librte_ether/rte_ethdev.c index 9dcb0d2..8ea85cd 100644
> > > > --- a/lib/librte_ether/rte_ethdev.c
> > > > +++ b/lib/librte_ether/rte_ethdev.c
> > > > @@ -192,8 +192,12 @@ rte_eth_dev_find_free_port(void)
> > > >  	unsigned i;
> > > >
> > > >  	for (i = 0; i < RTE_MAX_ETHPORTS; i++) {
> > > > -		if (rte_eth_devices[i].state == RTE_ETH_DEV_UNUSED)
> > > > +		/* Using shared name field to find a free port. */
> > > > +		if (rte_eth_dev_data[i].name[0] == '\0') {
> > > > +			RTE_ASSERT(rte_eth_devices[i].state ==
> > > > +				   RTE_ETH_DEV_UNUSED);
> > > >  			return i;
> > > > +		}
> > > >  	}
> > > >  	return RTE_MAX_ETHPORTS;
> > > >  }
> > > > --
> > > > 2.7.4

  reply	other threads:[~2018-02-11  7:15 UTC|newest]

Thread overview: 49+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-02-01  9:47 [dpdk-stable] patch 'event/sw: fix debug logging config option' " Yuanhan Liu
2018-02-01  9:47 ` [dpdk-stable] patch 'service: fix possible mem leak on initialize' " Yuanhan Liu
2018-02-01  9:47 ` [dpdk-stable] patch 'cmdline: fix dynamic tokens parsing' " Yuanhan Liu
2018-02-01  9:47 ` [dpdk-stable] patch 'cmdline: avoid garbage in unused fields of parsed result' " Yuanhan Liu
2018-02-01  9:47 ` [dpdk-stable] patch 'keepalive: fix state alignment' " Yuanhan Liu
2018-02-01  9:47 ` [dpdk-stable] patch 'log: fix memory leak in regexp level set' " Yuanhan Liu
2018-02-01  9:47 ` [dpdk-stable] patch 'eal/arm64: remove the braces in memory barrier macros' " Yuanhan Liu
2018-02-01  9:47 ` [dpdk-stable] patch 'mbuf: fix NULL freeing when debug enabled' " Yuanhan Liu
2018-02-01  9:47 ` [dpdk-stable] patch 'crypto/qat: fix out-of-bounds access' " Yuanhan Liu
2018-02-01  9:47 ` [dpdk-stable] patch 'crypto/qat: fix parameter type' " Yuanhan Liu
2018-02-01  9:47 ` [dpdk-stable] patch 'cryptodev: fix session pointer cast' " Yuanhan Liu
2018-02-01  9:47 ` [dpdk-stable] patch 'crypto/qat: fix null auth algo overwrite' " Yuanhan Liu
2018-02-01  9:47 ` [dpdk-stable] patch 'net/mlx5: fix return value of start operation' " Yuanhan Liu
2018-02-01  9:47 ` [dpdk-stable] patch 'net/enic: fix crash due to static max number of queues' " Yuanhan Liu
2018-02-01  9:47 ` [dpdk-stable] patch 'net/e1000: fix null pointer check' " Yuanhan Liu
2018-02-01  9:47 ` [dpdk-stable] patch 'net/i40e: fix memory leak' " Yuanhan Liu
2018-02-01  9:47 ` [dpdk-stable] patch 'net/mlx5: fix missing RSS capability' " Yuanhan Liu
2018-02-01  9:47 ` [dpdk-stable] patch 'net/mlx5: fix flow item validation' " Yuanhan Liu
2018-02-01  9:47 ` [dpdk-stable] patch 'net/mlx5: fix memory region cache lookup' " Yuanhan Liu
2018-02-01  9:47 ` [dpdk-stable] patch 'net/mlx5: fix memory region cache last index' " Yuanhan Liu
2018-02-01  9:47 ` [dpdk-stable] patch 'net/mlx5: fix memory region boundary checks' " Yuanhan Liu
2018-02-01  9:47 ` [dpdk-stable] patch 'net/ena: do not set Tx L4 offloads in Rx path' " Yuanhan Liu
2018-02-01  9:47 ` [dpdk-stable] patch 'net/virtio-user: fix crash as features change' " Yuanhan Liu
2018-02-01  9:47 ` [dpdk-stable] patch 'net/virtio: fix Rx and Tx handler selection for ARM32' " Yuanhan Liu
2018-02-01  9:47 ` [dpdk-stable] patch 'net/virtio: fix queue flushing with vector Rx enabled' " Yuanhan Liu
2018-02-01  9:47 ` [dpdk-stable] patch 'net/virtio: fix memory leak when reinitializing device' " Yuanhan Liu
2018-02-01  9:47 ` [dpdk-stable] patch 'net/i40e: fix VF Rx interrupt enabling' " Yuanhan Liu
2018-02-01  9:47 ` [dpdk-stable] patch 'net/ixgbe: " Yuanhan Liu
2018-02-01  9:47 ` [dpdk-stable] patch 'net/e1000: " Yuanhan Liu
2018-02-01  9:47 ` [dpdk-stable] patch 'net/bnxt: fix size of Tx ring in HW' " Yuanhan Liu
2018-02-01  9:47 ` [dpdk-stable] patch 'net/bnxt: fix number of pools for RSS' " Yuanhan Liu
2018-02-01  9:47 ` [dpdk-stable] patch 'net/qede: check tunnel L3 header' " Yuanhan Liu
2018-02-01  9:47 ` [dpdk-stable] patch 'net/qede: fix tunnel header size in Tx BD configuration' " Yuanhan Liu
2018-02-01  9:47 ` [dpdk-stable] patch 'net/qede: fix MTU set and max Rx length' " Yuanhan Liu
2018-02-01  9:47 ` [dpdk-stable] patch 'eal/ppc: remove the braces in memory barrier macros' " Yuanhan Liu
2018-02-01  9:47 ` [dpdk-stable] patch 'crypto/dpaa2_sec: fix enum conversion for GCM' " Yuanhan Liu
2018-02-01  9:47 ` [dpdk-stable] patch 'mk: support renamed Makefile in external project' " Yuanhan Liu
2018-02-01  9:47 ` [dpdk-stable] patch 'crypto/scheduler: fix strncpy' " Yuanhan Liu
2018-02-01  9:47 ` [dpdk-stable] patch 'ethdev: fix port data reset timing' " Yuanhan Liu
2018-02-01  9:47 ` [dpdk-stable] patch 'ethdev: fix port id allocation' " Yuanhan Liu
2018-02-11  2:46   ` Yuanhan Liu
2018-02-11  6:40     ` Matan Azrad
2018-02-11  6:54       ` Yuanhan Liu
2018-02-11  7:15         ` Matan Azrad [this message]
2018-02-01  9:47 ` [dpdk-stable] patch 'app/testpmd: fix port validation' " Yuanhan Liu
2018-02-01  9:47 ` [dpdk-stable] patch 'net/ixgbe: fix reset error handling' " Yuanhan Liu
2018-02-01  9:47 ` [dpdk-stable] patch 'examples/bond: fix vdev name' " Yuanhan Liu
2018-02-01  9:47 ` [dpdk-stable] patch 'crypto/qat: fix allocation check and leak' " Yuanhan Liu
2018-02-01  9:47 ` [dpdk-stable] patch 'examples/bond: check mbuf allocation' " Yuanhan Liu

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=AM4PR0501MB26574FE12FB2D95F49C2F72BD2F00@AM4PR0501MB2657.eurprd05.prod.outlook.com \
    --to=matan@mellanox.com \
    --cc=konstantin.ananyev@intel.com \
    --cc=stable@dpdk.org \
    --cc=thomas@monjalon.net \
    --cc=yliu@fridaylinux.org \
    /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).