From: Ferruh Yigit <ferruh.yigit@intel.com> To: Kumara Parameshwaran <kumaraparamesh92@gmail.com>, <keith.wiles@intel.com> Cc: <dev@dpdk.org>, Kumara Parameshwaran <kparameshwar@vmware.com>, "Raslan Darawsheh" <rasland@nvidia.com> Subject: Re: [PATCH] net/tap: Bug fix to populate fds in secondary process Date: Mon, 17 Jan 2022 18:22:40 +0000 Message-ID: <83fe377d-adfe-76ca-5bbb-4f02f8575380@intel.com> (raw) In-Reply-To: <20211126041515.96259-1-kumaraparamesh92@gmail.com> On 11/26/2021 4:15 AM, Kumara Parameshwaran wrote: > From: Kumara Parameshwaran <kparameshwar@vmware.com> > > When a tap device is hotplugged to primary process which in turn > adds the device to all secondary process, the secondary process > does a tap_mp_attach_queues, but the fds are not populated in > the primary during the probe they are populated during the queue_setup, > added a fix to sync the queues during rte_eth_dev_start > Hi Kumara, Original intention seems first running primary application, later secondary, so yes it doesn't looks like covering the hotplug case. I have a few questions below, can you please check? > Signed-off-by: Kumara Parameshwaran <kparameshwar@vmware.com> > --- > drivers/net/tap/rte_eth_tap.c | 80 +++++++++++++++++++++++++++++++++++ > 1 file changed, 80 insertions(+) > > diff --git a/drivers/net/tap/rte_eth_tap.c b/drivers/net/tap/rte_eth_tap.c > index f1b48cae82..8e7915656b 100644 > --- a/drivers/net/tap/rte_eth_tap.c > +++ b/drivers/net/tap/rte_eth_tap.c > @@ -67,6 +67,7 @@ > > /* IPC key for queue fds sync */ > #define TAP_MP_KEY "tap_mp_sync_queues" > +#define TAP_MP_REQ_START_RXTX "tap_mp_req_start_rxtx" > > #define TAP_IOV_DEFAULT_MAX 1024 > > @@ -880,11 +881,51 @@ tap_link_set_up(struct rte_eth_dev *dev) > return tap_ioctl(pmd, SIOCSIFFLAGS, &ifr, 1, LOCAL_AND_REMOTE); > } > > +static int tap_mp_req_on_rxtx(struct rte_eth_dev *dev) > +{ > + struct rte_mp_msg msg; > + struct ipc_queues *request_param = (struct ipc_queues *)msg.param; > + int err; > + int fd_iterator = 0; > + struct pmd_process_private *process_private = dev->process_private; > + int i; > + > + memset(&msg, 0, sizeof(msg)); > + strcpy(msg.name, TAP_MP_REQ_START_RXTX); > + strlcpy(request_param->port_name, dev->data->name, > + sizeof(request_param->port_name)); Why one use 'strcpy' and other 'strlcpy', can you please unify both to 'strlcpy'? > + msg.len_param = sizeof(*request_param); > + for (i = 0; i < dev->data->nb_tx_queues; i++) { > + msg.fds[fd_iterator++] = process_private->txq_fds[i]; > + msg.num_fds++; > + request_param->txq_count++; > + } > + for (i = 0; i < dev->data->nb_rx_queues; i++) { > + msg.fds[fd_iterator++] = process_private->rxq_fds[i]; > + msg.num_fds++; > + request_param->rxq_count++; > + } > + > + RTE_ASSERT(request_param->txq_count == dev->data->nb_tx_queues); > + RTE_ASSERT(request_param->rxq_count == dev->data->nb_rx_queues); > + Are these assertions really useful? Asserts are good to verify the external assumptions, but for this case the values are all related to above logic already. > + err = rte_mp_sendmsg(&msg); > + if (err < 0) { > + TAP_LOG(ERR, "Failed to send start req to secondary %d", > + rte_errno); > + return -1; > + } > + > + return 0; > +} > + > static int > tap_dev_start(struct rte_eth_dev *dev) > { > int err, i; > > + tap_mp_req_on_rxtx(dev); > + As for as I understand your logic is primary sends the message to the secondar(y|ies), so what happens first secondary is started? What about secondary sends the message when they are started? Also above functions is called by both primary and secondary, what happens when it is called by secondary? And the logic is not clear, it can be good to add a process type check to clarify. > err = tap_intr_handle_set(dev, 1); > if (err) > return err; > @@ -901,6 +942,39 @@ tap_dev_start(struct rte_eth_dev *dev) > return err; > } > > +static int > +tap_mp_req_start_rxtx(const struct rte_mp_msg *request, __rte_unused const void *peer) > +{ > + struct rte_eth_dev *dev; > + int ret; > + uint16_t port_id; > + const struct ipc_queues *request_param = > + (const struct ipc_queues *)request->param; > + int fd_iterator; > + int queue; > + struct pmd_process_private *process_private; > + > + ret = rte_eth_dev_get_port_by_name(request_param->port_name, &port_id); > + if (ret) { > + TAP_LOG(ERR, "Failed to get port id for %s", > + request_param->port_name); > + return -1; > + } > + dev = &rte_eth_devices[port_id];> + process_private = dev->process_private; > + dev->data->nb_rx_queues = request_param->rxq_count; > + dev->data->nb_tx_queues = request_param->txq_count; > + fd_iterator = 0; > + RTE_LOG(DEBUG, PMD, "tap_attach rx_q:%d tx_q:%d\n", request_param->rxq_count, > + request_param->txq_count); > + for (queue = 0; queue < request_param->txq_count; queue++) > + process_private->txq_fds[queue] = request->fds[fd_iterator++]; > + for (queue = 0; queue < request_param->rxq_count; queue++) > + process_private->rxq_fds[queue] = request->fds[fd_iterator++]; > + > + return 0; > +} > + > /* This function gets called when the current port gets stopped. > */ > static int > @@ -2445,6 +2519,12 @@ rte_pmd_tap_probe(struct rte_vdev_device *dev) > ret = tap_mp_attach_queues(name, eth_dev); > if (ret != 0) > return -1; > + > + ret = rte_mp_action_register(TAP_MP_REQ_START_RXTX, tap_mp_req_start_rxtx); > + if (ret < 0 && rte_errno != ENOTSUP) > + TAP_LOG(ERR, "tap: Failed to register IPC callback: %s", > + strerror(rte_errno)); > + While this update fds in start logic is added, do we still need the 'tap_mp_attach_queues()'? Can't we remove the 'tap_mp_sync_queues()' after this change? And need to unregister the mp_action, possibly in the 'tap_dev_close()'?
next prev parent reply other threads:[~2022-01-17 18:22 UTC|newest] Thread overview: 27+ messages / expand[flat|nested] mbox.gz Atom feed top 2021-11-26 4:15 Kumara Parameshwaran 2022-01-17 18:22 ` Ferruh Yigit [this message] 2022-01-18 4:39 ` Kumara Parameshwaran 2022-01-18 9:10 ` Ferruh Yigit 2022-01-18 10:52 ` kumaraparameshwaran rathinavel 2022-01-18 12:14 ` Ferruh Yigit 2022-01-17 18:28 ` Ferruh Yigit 2022-01-17 18:33 ` Thomas Monjalon 2022-01-18 9:47 ` Ferruh Yigit 2022-01-18 11:21 ` kumaraparameshwaran rathinavel 2022-01-18 12:12 ` Ferruh Yigit 2022-01-18 12:31 ` Thomas Monjalon 2022-01-17 22:16 ` Stephen Hemminger 2022-01-18 5:22 ` Kumara Parameshwaran 2022-01-18 16:21 ` Stephen Hemminger 2022-01-19 4:33 ` kumaraparameshwaran rathinavel 2022-01-19 4:51 ` Stephen Hemminger -- strict thread matches above, loose matches on Subject: below -- 2022-01-21 4:29 Kumara Parameshwaran 2022-01-24 9:47 ` Ferruh Yigit 2022-01-20 13:38 Kumara Parameshwaran 2022-01-20 13:26 Kumara Parameshwaran 2022-01-20 11:12 Kumara Parameshwaran 2022-01-20 15:49 ` Stephen Hemminger 2022-01-24 9:32 ` Ferruh Yigit 2021-11-25 12:25 Kumara Parameshwaran 2021-11-25 12:23 Kumara Parameshwaran 2021-11-25 12:04 Kumara Parameshwaran
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=83fe377d-adfe-76ca-5bbb-4f02f8575380@intel.com \ --to=ferruh.yigit@intel.com \ --cc=dev@dpdk.org \ --cc=keith.wiles@intel.com \ --cc=kparameshwar@vmware.com \ --cc=kumaraparamesh92@gmail.com \ --cc=rasland@nvidia.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
DPDK patches and discussions This inbox may be cloned and mirrored by anyone: git clone --mirror http://inbox.dpdk.org/dev/0 dev/git/0.git # If you have public-inbox 1.1+ installed, you may # initialize and index your mirror using the following commands: public-inbox-init -V2 dev dev/ http://inbox.dpdk.org/dev \ dev@dpdk.org public-inbox-index dev Example config snippet for mirrors. Newsgroup available over NNTP: nntp://inbox.dpdk.org/inbox.dpdk.dev AGPL code for this site: git clone https://public-inbox.org/public-inbox.git