From: Chaoyong He <chaoyong.he@corigine.com>
To: "humin (Q)" <humin29@huawei.com>, "dev@dpdk.org" <dev@dpdk.org>
Cc: oss-drivers <oss-drivers@corigine.com>,
Niklas Soderlund <niklas.soderlund@corigine.com>,
Zerun Fu <zerun.fu@nephogine.com>,
"stable@dpdk.org" <stable@dpdk.org>,
Nole Zhang <peng.zhang@nephogine.com>,
Long Wu <Long.Wu@nephogine.com>
Subject: RE: [PATCH] net/bonding: fix bond startup failure when NUMA is -1
Date: Fri, 16 Jun 2023 06:08:44 +0000 [thread overview]
Message-ID: <PH0PR13MB556856B226E43190B7A758A79E58A@PH0PR13MB5568.namprd13.prod.outlook.com> (raw)
In-Reply-To: <ae68a11a-249e-44fe-1310-3c3d5da2337a@huawei.com>
> 在 2023/6/16 11:20, Chaoyong He 写道:
> > From: Zerun Fu <zerun.fu@corigine.com>
> >
> > After the mainline Linux kernel commit
> > "fe205d984e7730f4d21f6f8ebc60f0698404ac31" (ACPI: Remove side
> effect
> > of partly creating a node in acpi_map_pxm_to_online_node) by Jonathan
> > Cameron. When the system does not support NUMA architecture, the
> > "socket_id" is expected to be -1. The valid "socket_id" in BOND PMD is
> > greater than or equal to zero. So it will cause an error when DPDK
> > checks the validity of the "socket_id" when starting the bond. This
> > commit can fix this bug.
> >
> > Fixes: f294e04851fd ("net/bonding: fix socket ID check")
> > Cc: stable@dpdk.org
> >
> > Signed-off-by: Zerun Fu <zerun.fu@corigine.com>
> > Reviewed-by: Peng Zhang <peng.zhang@corigine.com>
> > Reviewed-by: Chaoyong He <chaoyong.he@corigine.com>
> > Reviewed-by: Long Wu <long.wu@corigine.com>
> > ---
> > drivers/net/bonding/rte_eth_bond_args.c | 6 ++++++
> > drivers/net/bonding/rte_eth_bond_pmd.c | 2 +-
> > 2 files changed, 7 insertions(+), 1 deletion(-)
> >
> > diff --git a/drivers/net/bonding/rte_eth_bond_args.c
> > b/drivers/net/bonding/rte_eth_bond_args.c
> > index 6553166f5c..c137efd55f 100644
> > --- a/drivers/net/bonding/rte_eth_bond_args.c
> > +++ b/drivers/net/bonding/rte_eth_bond_args.c
> > @@ -212,6 +212,12 @@ bond_ethdev_parse_socket_id_kvarg(const char
> *key __rte_unused,
> > if (*endptr != 0 || errno != 0)
> > return -1;
> >
> > + /* SOCKET_ID_ANY also consider a valid socket id */
> > + if ((int8_t)socket_id == SOCKET_ID_ANY) {
> > + *(int *)extra_args = SOCKET_ID_ANY;
> > + return 0;
> > + }
> > +
> > /* validate socket id value */
> > if (socket_id >= 0 && socket_id < RTE_MAX_NUMA_NODES) {
> > *(int *)extra_args = (int)socket_id; diff --git
> > a/drivers/net/bonding/rte_eth_bond_pmd.c
> > b/drivers/net/bonding/rte_eth_bond_pmd.c
> > index f0c4f7d26b..390a5b4271 100644
> > --- a/drivers/net/bonding/rte_eth_bond_pmd.c
> > +++ b/drivers/net/bonding/rte_eth_bond_pmd.c
> > @@ -3604,7 +3604,7 @@ static int
> > bond_alloc(struct rte_vdev_device *dev, uint8_t mode)
> > {
> > const char *name = rte_vdev_device_name(dev);
> > - uint8_t socket_id = dev->device.numa_node;
> > + int socket_id = dev->device.numa_node;
>
> Well, other point should be also modified, like :
>
> ***
>
> "socket %u.", name, bonding_mode, socket_id);
>
> ***
>
> %u -- > %d.
Okay, I will send a v2 patch fix this.
>
> BTW, I think there is no need to add args like "socket_id=-1..." if we know
> this server does not support NUMA.
>
> Default socket id is -1, so this is meaningless.
>
We found this bug when running 'dperf' app, and it is the 'dperf' app add this 'socket_id=-1' args.
Maybe the 'dperf' app should change its logic?
Please help correct me if I misunderstood, thanks.
> > struct bond_dev_private *internals = NULL;
> > struct rte_eth_dev *eth_dev = NULL;
> > uint32_t vlan_filter_bmp_size;
next prev parent reply other threads:[~2023-06-16 6:08 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-06-16 3:20 Chaoyong He
2023-06-16 3:54 ` humin (Q)
2023-06-16 6:08 ` Chaoyong He [this message]
2023-06-16 11:57 ` humin (Q)
2023-06-16 7:15 ` Chaoyong He
2023-06-16 7:20 ` [PATCH v3] " Chaoyong He
2023-06-16 12:00 ` humin (Q)
2023-06-19 8:57 ` Ferruh Yigit
2023-06-20 2:53 ` humin (Q)
2023-06-20 10:18 ` Ferruh Yigit
2023-06-20 11:03 ` Niklas Söderlund
2023-06-20 13:15 ` humin (Q)
2023-06-20 14:10 ` Ferruh Yigit
2023-06-20 14:19 ` Thomas Monjalon
2023-06-21 4:00 ` humin (Q)
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=PH0PR13MB556856B226E43190B7A758A79E58A@PH0PR13MB5568.namprd13.prod.outlook.com \
--to=chaoyong.he@corigine.com \
--cc=Long.Wu@nephogine.com \
--cc=dev@dpdk.org \
--cc=humin29@huawei.com \
--cc=niklas.soderlund@corigine.com \
--cc=oss-drivers@corigine.com \
--cc=peng.zhang@nephogine.com \
--cc=stable@dpdk.org \
--cc=zerun.fu@nephogine.com \
/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).