From: Ajit Khaparde <ajit.khaparde@broadcom.com> To: Thomas Monjalon <thomas@monjalon.net> Cc: dpdk-dev <dev@dpdk.org>, Ferruh Yigit <ferruh.yigit@intel.com>, Andrew Rybchenko <andrew.rybchenko@oktetlabs.ru>, Stephen Hemminger <stephen@networkplumber.org>, Haiyue Wang <haiyue.wang@intel.com>, Jeff Guo <jia.guo@intel.com>, Andrew Rybchenko <arybchenko@solarflare.com>, Shepard Siegel <shepard.siegel@atomicrules.com>, Ed Czeck <ed.czeck@atomicrules.com>, John Miller <john.miller@atomicrules.com>, Igor Russkikh <igor.russkikh@aquantia.com>, Pavel Belous <pavel.belous@aquantia.com>, Somalapuram Amaranath <asomalap@amd.com>, Somnath Kotur <somnath.kotur@broadcom.com>, Chas Williams <chas3@att.com>, "Min Hu (Connor)" <humin29@huawei.com>, Hemant Agrawal <hemant.agrawal@nxp.com>, Sachin Saxena <sachin.saxena@oss.nxp.com>, Marcin Wojtas <mw@semihalf.com>, Michal Krawczyk <mk@semihalf.com>, Guy Tzalik <gtzalik@amazon.com>, Evgeny Schemeilin <evgenys@amazon.com>, Igor Chauskin <igorch@amazon.com>, Qi Zhang <qi.z.zhang@intel.com>, Xiao Wang <xiao.w.wang@intel.com>, Ziyang Xuan <xuanziyang2@huawei.com>, Xiaoyun Wang <cloud.wangxiaoyun@huawei.com>, Guoyang Zhou <zhouguoyang@huawei.com>, "Wei Hu (Xavier)" <xavier.huwei@huawei.com>, Yisen Zhuang <yisen.zhuang@huawei.com>, Beilei Xing <beilei.xing@intel.com>, Jingjing Wu <jingjing.wu@intel.com>, Qiming Yang <qiming.yang@intel.com>, Alfredo Cardigliano <cardigliano@ntop.org>, Shijith Thotton <sthotton@marvell.com>, Srisivasubramanian Srinivasan <srinivasan@marvell.com>, Stephen Hemminger <sthemmin@microsoft.com>, "K. Y. Srinivasan" <kys@microsoft.com>, Haiyang Zhang <haiyangz@microsoft.com>, Long Li <longli@microsoft.com>, Harman Kalra <hkalra@marvell.com>, Rasesh Mody <rmody@marvell.com>, Shahed Shaikh <shshaikh@marvell.com>, Keith Wiles <keith.wiles@intel.com>, Maxime Coquelin <maxime.coquelin@redhat.com>, Chenbo Xia <chenbo.xia@intel.com>, Zhihong Wang <zhihong.wang@intel.com>, Yong Wang <yongwang@vmware.com> Subject: Re: [dpdk-dev] [PATCH v6 2/3] ethdev: reset all when releasing a port Date: Fri, 16 Oct 2020 08:21:49 -0700 Message-ID: <CACZ4nhty58D+9YZTUskn=YxcNHOAKga8qwH_r=eHZgFdUOxB9Q@mail.gmail.com> (raw) In-Reply-To: <20201016133259.3061153-3-thomas@monjalon.net> On Fri, Oct 16, 2020 at 6:33 AM Thomas Monjalon <thomas@monjalon.net> wrote: > > The function rte_eth_dev_release_port() is partially resetting > the struct rte_eth_dev. The drivers were completing this reset > with more pointers set to NULL in the close or remove operations. > > More pointers are reset at ethdev level, > and some redundant assignments are removed from PMDs. > > Signed-off-by: Thomas Monjalon <thomas@monjalon.net> > Acked-by: Stephen Hemminger <stephen@networkplumber.org> > Reviewed-by: Haiyue Wang <haiyue.wang@intel.com> > Acked-by: Jeff Guo <jia.guo@intel.com> > Reviewed-by: Andrew Rybchenko <arybchenko@solarflare.com> > Reviewed-by: Ferruh Yigit <ferruh.yigit@intel.com> Acked-by: Ajit Khaparde <ajit.khaparde@broadcom.com> > --- > drivers/net/ark/ark_ethdev.c | 3 --- > drivers/net/atlantic/atl_ethdev.c | 4 ---- > drivers/net/axgbe/axgbe_ethdev.c | 3 --- > drivers/net/bnxt/bnxt_ethdev.c | 4 ---- > drivers/net/bnxt/bnxt_reps.c | 1 - > drivers/net/bonding/rte_eth_bond_pmd.c | 4 ---- > drivers/net/dpaa/dpaa_ethdev.c | 4 ---- > drivers/net/dpaa2/dpaa2_ethdev.c | 4 ---- > drivers/net/e1000/em_ethdev.c | 4 ---- > drivers/net/e1000/igb_ethdev.c | 8 -------- > drivers/net/ena/ena_ethdev.c | 5 ----- > drivers/net/fm10k/fm10k_ethdev.c | 4 ---- > drivers/net/hinic/hinic_pmd_ethdev.c | 4 ---- > drivers/net/hns3/hns3_ethdev.c | 4 ---- > drivers/net/hns3/hns3_ethdev_vf.c | 5 ----- > drivers/net/i40e/i40e_ethdev.c | 4 ---- > drivers/net/i40e/i40e_ethdev_vf.c | 4 ---- > drivers/net/iavf/iavf_ethdev.c | 4 ---- > drivers/net/ice/ice_dcf_ethdev.c | 4 ---- > drivers/net/ice/ice_ethdev.c | 4 ---- > drivers/net/ionic/ionic_ethdev.c | 5 ----- > drivers/net/ixgbe/ixgbe_ethdev.c | 8 -------- > drivers/net/liquidio/lio_ethdev.c | 4 ---- > drivers/net/netvsc/hn_ethdev.c | 4 ---- > drivers/net/octeontx/octeontx_ethdev.c | 3 --- > drivers/net/qede/qede_ethdev.c | 4 ---- > drivers/net/sfc/sfc_ethdev.c | 7 +------ > drivers/net/tap/rte_eth_tap.c | 1 - > drivers/net/virtio/virtio_ethdev.c | 4 ---- > drivers/net/vmxnet3/vmxnet3_ethdev.c | 5 ----- > lib/librte_ethdev/rte_ethdev.c | 9 +++++++++ > 31 files changed, 10 insertions(+), 125 deletions(-) > > diff --git a/drivers/net/ark/ark_ethdev.c b/drivers/net/ark/ark_ethdev.c > index f1355581f1..dc14f0fb1a 100644 > --- a/drivers/net/ark/ark_ethdev.c > +++ b/drivers/net/ark/ark_ethdev.c > @@ -504,9 +504,6 @@ eth_ark_dev_uninit(struct rte_eth_dev *dev) > ark_pktgen_uninit(ark->pg); > ark_pktchkr_uninit(ark->pc); > > - dev->dev_ops = NULL; > - dev->rx_pkt_burst = NULL; > - dev->tx_pkt_burst = NULL; > return 0; > } > > diff --git a/drivers/net/atlantic/atl_ethdev.c b/drivers/net/atlantic/atl_ethdev.c > index f2e48e1c11..d96865d5b4 100644 > --- a/drivers/net/atlantic/atl_ethdev.c > +++ b/drivers/net/atlantic/atl_ethdev.c > @@ -702,10 +702,6 @@ atl_dev_close(struct rte_eth_dev *dev) > > atl_free_queues(dev); > > - dev->dev_ops = NULL; > - dev->rx_pkt_burst = NULL; > - dev->tx_pkt_burst = NULL; > - > /* disable uio intr before callback unregister */ > rte_intr_disable(intr_handle); > rte_intr_callback_unregister(intr_handle, > diff --git a/drivers/net/axgbe/axgbe_ethdev.c b/drivers/net/axgbe/axgbe_ethdev.c > index cf085487cc..39087f36f0 100644 > --- a/drivers/net/axgbe/axgbe_ethdev.c > +++ b/drivers/net/axgbe/axgbe_ethdev.c > @@ -2134,9 +2134,6 @@ axgbe_dev_close(struct rte_eth_dev *eth_dev) > return 0; > > pci_dev = RTE_DEV_TO_PCI(eth_dev->device); > - eth_dev->dev_ops = NULL; > - eth_dev->rx_pkt_burst = NULL; > - eth_dev->tx_pkt_burst = NULL; > axgbe_dev_clear_queues(eth_dev); > > /* disable uio intr before callback unregister */ > diff --git a/drivers/net/bnxt/bnxt_ethdev.c b/drivers/net/bnxt/bnxt_ethdev.c > index 8b63134c39..3d32b578e8 100644 > --- a/drivers/net/bnxt/bnxt_ethdev.c > +++ b/drivers/net/bnxt/bnxt_ethdev.c > @@ -1433,10 +1433,6 @@ static int bnxt_dev_close_op(struct rte_eth_dev *eth_dev) > bnxt_free_pf_info(bp); > bnxt_free_parent_info(bp); > > - eth_dev->dev_ops = NULL; > - eth_dev->rx_pkt_burst = NULL; > - eth_dev->tx_pkt_burst = NULL; > - > rte_memzone_free((const struct rte_memzone *)bp->tx_mem_zone); > bp->tx_mem_zone = NULL; > rte_memzone_free((const struct rte_memzone *)bp->rx_mem_zone); > diff --git a/drivers/net/bnxt/bnxt_reps.c b/drivers/net/bnxt/bnxt_reps.c > index 74a76fce57..012ccc73fe 100644 > --- a/drivers/net/bnxt/bnxt_reps.c > +++ b/drivers/net/bnxt/bnxt_reps.c > @@ -255,7 +255,6 @@ int bnxt_representor_uninit(struct rte_eth_dev *eth_dev) > > PMD_DRV_LOG(DEBUG, "BNXT Port:%d VFR uninit\n", eth_dev->data->port_id); > eth_dev->data->mac_addrs = NULL; > - eth_dev->dev_ops = NULL; > > parent_bp = rep->parent_dev->data->dev_private; > if (!parent_bp) { > diff --git a/drivers/net/bonding/rte_eth_bond_pmd.c b/drivers/net/bonding/rte_eth_bond_pmd.c > index 1f761c7c9e..ce8fe254af 100644 > --- a/drivers/net/bonding/rte_eth_bond_pmd.c > +++ b/drivers/net/bonding/rte_eth_bond_pmd.c > @@ -2130,10 +2130,6 @@ bond_ethdev_close(struct rte_eth_dev *dev) > */ > rte_mempool_free(internals->mode6.mempool); > > - dev->dev_ops = NULL; > - dev->rx_pkt_burst = NULL; > - dev->tx_pkt_burst = NULL; > - > return 0; > } > > diff --git a/drivers/net/dpaa/dpaa_ethdev.c b/drivers/net/dpaa/dpaa_ethdev.c > index 952e8f72ad..6d27d742af 100644 > --- a/drivers/net/dpaa/dpaa_ethdev.c > +++ b/drivers/net/dpaa/dpaa_ethdev.c > @@ -504,10 +504,6 @@ static int dpaa_eth_dev_close(struct rte_eth_dev *dev) > rte_free(dpaa_intf->tx_queues); > dpaa_intf->tx_queues = NULL; > > - dev->dev_ops = NULL; > - dev->rx_pkt_burst = NULL; > - dev->tx_pkt_burst = NULL; > - > return 0; > } > > diff --git a/drivers/net/dpaa2/dpaa2_ethdev.c b/drivers/net/dpaa2/dpaa2_ethdev.c > index d8624514df..ba99a524f9 100644 > --- a/drivers/net/dpaa2/dpaa2_ethdev.c > +++ b/drivers/net/dpaa2/dpaa2_ethdev.c > @@ -1284,10 +1284,6 @@ dpaa2_dev_close(struct rte_eth_dev *dev) > if (priv->extract.qos_extract_param) > rte_free((void *)(size_t)priv->extract.qos_extract_param); > > - dev->dev_ops = NULL; > - dev->rx_pkt_burst = NULL; > - dev->tx_pkt_burst = NULL; > - > DPAA2_PMD_INFO("%s: netdev deleted", dev->data->name); > return 0; > } > diff --git a/drivers/net/e1000/em_ethdev.c b/drivers/net/e1000/em_ethdev.c > index dd9238a616..304c040421 100644 > --- a/drivers/net/e1000/em_ethdev.c > +++ b/drivers/net/e1000/em_ethdev.c > @@ -774,10 +774,6 @@ eth_em_close(struct rte_eth_dev *dev) > em_release_manageability(hw); > em_hw_control_release(hw); > > - dev->dev_ops = NULL; > - dev->rx_pkt_burst = NULL; > - dev->tx_pkt_burst = NULL; > - > /* disable uio intr before callback unregister */ > rte_intr_disable(intr_handle); > rte_intr_callback_unregister(intr_handle, > diff --git a/drivers/net/e1000/igb_ethdev.c b/drivers/net/e1000/igb_ethdev.c > index f697b0e52e..9a3f9cb669 100644 > --- a/drivers/net/e1000/igb_ethdev.c > +++ b/drivers/net/e1000/igb_ethdev.c > @@ -1565,10 +1565,6 @@ eth_igb_close(struct rte_eth_dev *dev) > memset(&link, 0, sizeof(link)); > rte_eth_linkstatus_set(dev, &link); > > - dev->dev_ops = NULL; > - dev->rx_pkt_burst = NULL; > - dev->tx_pkt_burst = NULL; > - > /* Reset any pending lock */ > igb_reset_swfw_lock(hw); > > @@ -3405,10 +3401,6 @@ igbvf_dev_close(struct rte_eth_dev *dev) > memset(&addr, 0, sizeof(addr)); > igbvf_default_mac_addr_set(dev, &addr); > > - dev->dev_ops = NULL; > - dev->rx_pkt_burst = NULL; > - dev->tx_pkt_burst = NULL; > - > rte_intr_callback_unregister(&pci_dev->intr_handle, > eth_igbvf_interrupt_handler, > (void *)dev); > diff --git a/drivers/net/ena/ena_ethdev.c b/drivers/net/ena/ena_ethdev.c > index e02d340c33..bdb8fe79c6 100644 > --- a/drivers/net/ena/ena_ethdev.c > +++ b/drivers/net/ena/ena_ethdev.c > @@ -1956,11 +1956,6 @@ static int eth_ena_dev_uninit(struct rte_eth_dev *eth_dev) > > ena_destroy_device(eth_dev); > > - eth_dev->dev_ops = NULL; > - eth_dev->rx_pkt_burst = NULL; > - eth_dev->tx_pkt_burst = NULL; > - eth_dev->tx_pkt_prepare = NULL; > - > return 0; > } > > diff --git a/drivers/net/fm10k/fm10k_ethdev.c b/drivers/net/fm10k/fm10k_ethdev.c > index 0c13fd5c37..bada69c64a 100644 > --- a/drivers/net/fm10k/fm10k_ethdev.c > +++ b/drivers/net/fm10k/fm10k_ethdev.c > @@ -2805,10 +2805,6 @@ fm10k_dev_close(struct rte_eth_dev *dev) > fm10k_dev_queue_release(dev); > fm10k_stop_hw(hw); > > - dev->dev_ops = NULL; > - dev->rx_pkt_burst = NULL; > - dev->tx_pkt_burst = NULL; > - > /* disable uio/vfio intr */ > rte_intr_disable(intr_handle); > > diff --git a/drivers/net/hinic/hinic_pmd_ethdev.c b/drivers/net/hinic/hinic_pmd_ethdev.c > index daf8f33cf3..2504228d94 100644 > --- a/drivers/net/hinic/hinic_pmd_ethdev.c > +++ b/drivers/net/hinic/hinic_pmd_ethdev.c > @@ -3253,10 +3253,6 @@ static int hinic_dev_uninit(struct rte_eth_dev *dev) > > hinic_dev_close(dev); > > - dev->dev_ops = NULL; > - dev->rx_pkt_burst = NULL; > - dev->tx_pkt_burst = NULL; > - > rte_free(nic_dev->mc_list); > > return HINIC_OK; > diff --git a/drivers/net/hns3/hns3_ethdev.c b/drivers/net/hns3/hns3_ethdev.c > index 8fcc0f18c5..c850e5eb14 100644 > --- a/drivers/net/hns3/hns3_ethdev.c > +++ b/drivers/net/hns3/hns3_ethdev.c > @@ -6201,10 +6201,6 @@ hns3_dev_uninit(struct rte_eth_dev *eth_dev) > if (rte_eal_process_type() != RTE_PROC_PRIMARY) > return -EPERM; > > - eth_dev->dev_ops = NULL; > - eth_dev->rx_pkt_burst = NULL; > - eth_dev->tx_pkt_burst = NULL; > - eth_dev->tx_pkt_prepare = NULL; > if (hw->adapter_state < HNS3_NIC_CLOSING) > hns3_dev_close(eth_dev); > > diff --git a/drivers/net/hns3/hns3_ethdev_vf.c b/drivers/net/hns3/hns3_ethdev_vf.c > index b2038395a2..6e169583a0 100644 > --- a/drivers/net/hns3/hns3_ethdev_vf.c > +++ b/drivers/net/hns3/hns3_ethdev_vf.c > @@ -2847,11 +2847,6 @@ hns3vf_dev_uninit(struct rte_eth_dev *eth_dev) > if (rte_eal_process_type() != RTE_PROC_PRIMARY) > return -EPERM; > > - eth_dev->dev_ops = NULL; > - eth_dev->rx_pkt_burst = NULL; > - eth_dev->tx_pkt_burst = NULL; > - eth_dev->tx_pkt_prepare = NULL; > - > if (hw->adapter_state < HNS3_NIC_CLOSING) > hns3vf_dev_close(eth_dev); > > diff --git a/drivers/net/i40e/i40e_ethdev.c b/drivers/net/i40e/i40e_ethdev.c > index 825de51fbb..605a1792b6 100644 > --- a/drivers/net/i40e/i40e_ethdev.c > +++ b/drivers/net/i40e/i40e_ethdev.c > @@ -2693,10 +2693,6 @@ i40e_dev_close(struct rte_eth_dev *dev) > (reg | I40E_PFGEN_CTRL_PFSWR_MASK)); > I40E_WRITE_FLUSH(hw); > > - dev->dev_ops = NULL; > - dev->rx_pkt_burst = NULL; > - dev->tx_pkt_burst = NULL; > - > /* Clear PXE mode */ > i40e_clear_pxe_mode(hw); > > diff --git a/drivers/net/i40e/i40e_ethdev_vf.c b/drivers/net/i40e/i40e_ethdev_vf.c > index 40c9745433..3dcd50c428 100644 > --- a/drivers/net/i40e/i40e_ethdev_vf.c > +++ b/drivers/net/i40e/i40e_ethdev_vf.c > @@ -2421,10 +2421,6 @@ i40evf_dev_close(struct rte_eth_dev *dev) > i40e_shutdown_adminq(hw); > i40evf_disable_irq0(hw); > > - dev->dev_ops = NULL; > - dev->rx_pkt_burst = NULL; > - dev->tx_pkt_burst = NULL; > - > rte_free(vf->vf_res); > vf->vf_res = NULL; > rte_free(vf->aq_resp); > diff --git a/drivers/net/iavf/iavf_ethdev.c b/drivers/net/iavf/iavf_ethdev.c > index 8bd2c048a1..c951e75358 100644 > --- a/drivers/net/iavf/iavf_ethdev.c > +++ b/drivers/net/iavf/iavf_ethdev.c > @@ -1525,10 +1525,6 @@ iavf_dev_close(struct rte_eth_dev *dev) > iavf_dev_interrupt_handler, dev); > iavf_disable_irq0(hw); > > - dev->dev_ops = NULL; > - dev->rx_pkt_burst = NULL; > - dev->tx_pkt_burst = NULL; > - > if (vf->vf_res->vf_cap_flags & VIRTCHNL_VF_OFFLOAD_RSS_PF) { > if (vf->rss_lut) { > rte_free(vf->rss_lut); > diff --git a/drivers/net/ice/ice_dcf_ethdev.c b/drivers/net/ice/ice_dcf_ethdev.c > index 33dd0c44f2..f2056e2aba 100644 > --- a/drivers/net/ice/ice_dcf_ethdev.c > +++ b/drivers/net/ice/ice_dcf_ethdev.c > @@ -855,10 +855,6 @@ ice_dcf_dev_close(struct rte_eth_dev *dev) > if (rte_eal_process_type() != RTE_PROC_PRIMARY) > return 0; > > - dev->dev_ops = NULL; > - dev->rx_pkt_burst = NULL; > - dev->tx_pkt_burst = NULL; > - > ice_dcf_uninit_parent_adapter(dev); > ice_dcf_uninit_hw(dev, &adapter->real_hw); > > diff --git a/drivers/net/ice/ice_ethdev.c b/drivers/net/ice/ice_ethdev.c > index 1db4015c23..33b2828703 100644 > --- a/drivers/net/ice/ice_ethdev.c > +++ b/drivers/net/ice/ice_ethdev.c > @@ -2417,10 +2417,6 @@ ice_dev_close(struct rte_eth_dev *dev) > rte_free(pf->proto_xtr); > pf->proto_xtr = NULL; > > - dev->dev_ops = NULL; > - dev->rx_pkt_burst = NULL; > - dev->tx_pkt_burst = NULL; > - > /* disable uio intr before callback unregister */ > rte_intr_disable(intr_handle); > > diff --git a/drivers/net/ionic/ionic_ethdev.c b/drivers/net/ionic/ionic_ethdev.c > index ef7d06e526..1387253dc8 100644 > --- a/drivers/net/ionic/ionic_ethdev.c > +++ b/drivers/net/ionic/ionic_ethdev.c > @@ -1065,11 +1065,6 @@ eth_ionic_dev_uninit(struct rte_eth_dev *eth_dev) > ionic_lif_deinit(lif); > ionic_lif_free(lif); > > - eth_dev->dev_ops = NULL; > - eth_dev->rx_pkt_burst = NULL; > - eth_dev->tx_pkt_burst = NULL; > - eth_dev->tx_pkt_prepare = NULL; > - > return 0; > } > > diff --git a/drivers/net/ixgbe/ixgbe_ethdev.c b/drivers/net/ixgbe/ixgbe_ethdev.c > index a45c59644b..841c6877b2 100644 > --- a/drivers/net/ixgbe/ixgbe_ethdev.c > +++ b/drivers/net/ixgbe/ixgbe_ethdev.c > @@ -3010,10 +3010,6 @@ ixgbe_dev_close(struct rte_eth_dev *dev) > /* reprogram the RAR[0] in case user changed it. */ > ixgbe_set_rar(hw, 0, hw->mac.addr, 0, IXGBE_RAH_AV); > > - dev->dev_ops = NULL; > - dev->rx_pkt_burst = NULL; > - dev->tx_pkt_burst = NULL; > - > /* Unlock any pending hardware semaphore */ > ixgbe_swfw_lock_reset(hw); > > @@ -5468,10 +5464,6 @@ ixgbevf_dev_close(struct rte_eth_dev *dev) > **/ > ixgbevf_remove_mac_addr(dev, 0); > > - dev->dev_ops = NULL; > - dev->rx_pkt_burst = NULL; > - dev->tx_pkt_burst = NULL; > - > rte_intr_disable(intr_handle); > rte_intr_callback_unregister(intr_handle, > ixgbevf_dev_interrupt_handler, dev); > diff --git a/drivers/net/liquidio/lio_ethdev.c b/drivers/net/liquidio/lio_ethdev.c > index 52bcefc819..1b01502e49 100644 > --- a/drivers/net/liquidio/lio_ethdev.c > +++ b/drivers/net/liquidio/lio_ethdev.c > @@ -2068,10 +2068,6 @@ lio_eth_dev_uninit(struct rte_eth_dev *eth_dev) > /* lio_free_sc_buffer_pool */ > lio_free_sc_buffer_pool(lio_dev); > > - eth_dev->dev_ops = NULL; > - eth_dev->rx_pkt_burst = NULL; > - eth_dev->tx_pkt_burst = NULL; > - > return 0; > } > > diff --git a/drivers/net/netvsc/hn_ethdev.c b/drivers/net/netvsc/hn_ethdev.c > index be3713dfa0..8743e6e69a 100644 > --- a/drivers/net/netvsc/hn_ethdev.c > +++ b/drivers/net/netvsc/hn_ethdev.c > @@ -1050,10 +1050,6 @@ eth_hn_dev_uninit(struct rte_eth_dev *eth_dev) > hn_dev_stop(eth_dev); > hn_dev_close(eth_dev); > > - eth_dev->dev_ops = NULL; > - eth_dev->tx_pkt_burst = NULL; > - eth_dev->rx_pkt_burst = NULL; > - > hn_detach(hv); > hn_chim_uninit(eth_dev); > rte_vmbus_chan_close(hv->primary->chan); > diff --git a/drivers/net/octeontx/octeontx_ethdev.c b/drivers/net/octeontx/octeontx_ethdev.c > index aa9ef3bb70..0ea6de448a 100644 > --- a/drivers/net/octeontx/octeontx_ethdev.c > +++ b/drivers/net/octeontx/octeontx_ethdev.c > @@ -513,9 +513,6 @@ octeontx_dev_close(struct rte_eth_dev *dev) > > octeontx_port_close(nic); > > - dev->tx_pkt_burst = NULL; > - dev->rx_pkt_burst = NULL; > - > return 0; > } > > diff --git a/drivers/net/qede/qede_ethdev.c b/drivers/net/qede/qede_ethdev.c > index 88389c9e4f..0dd2f78820 100644 > --- a/drivers/net/qede/qede_ethdev.c > +++ b/drivers/net/qede/qede_ethdev.c > @@ -1594,10 +1594,6 @@ static int qede_dev_close(struct rte_eth_dev *eth_dev) > if (ECORE_IS_CMT(edev)) > rte_eal_alarm_cancel(qede_poll_sp_sb_cb, (void *)eth_dev); > > - eth_dev->dev_ops = NULL; > - eth_dev->rx_pkt_burst = NULL; > - eth_dev->tx_pkt_burst = NULL; > - > return 0; > } > > diff --git a/drivers/net/sfc/sfc_ethdev.c b/drivers/net/sfc/sfc_ethdev.c > index f41d0f5fe2..620e541a10 100644 > --- a/drivers/net/sfc/sfc_ethdev.c > +++ b/drivers/net/sfc/sfc_ethdev.c > @@ -324,11 +324,7 @@ static void > sfc_eth_dev_secondary_clear_ops(struct rte_eth_dev *dev) > { > free(dev->process_private); > - dev->process_private = NULL; > - dev->dev_ops = NULL; > - dev->tx_pkt_prepare = NULL; > - dev->tx_pkt_burst = NULL; > - dev->rx_pkt_burst = NULL; > + rte_eth_dev_release_port(dev); > } > > static int > @@ -380,7 +376,6 @@ sfc_dev_close(struct rte_eth_dev *dev) > /* Required for logging, so cleanup last */ > sa->eth_dev = NULL; > > - dev->process_private = NULL; > free(sa); > > return 0; > diff --git a/drivers/net/tap/rte_eth_tap.c b/drivers/net/tap/rte_eth_tap.c > index b127ce62dc..0598de00ed 100644 > --- a/drivers/net/tap/rte_eth_tap.c > +++ b/drivers/net/tap/rte_eth_tap.c > @@ -1134,7 +1134,6 @@ tap_dev_close(struct rte_eth_dev *dev) > internals->ioctl_sock = -1; > } > rte_free(dev->process_private); > - dev->process_private = NULL; > if (tap_devices_count == 1) > rte_mp_action_unregister(TAP_MP_KEY); > tap_devices_count--; > diff --git a/drivers/net/virtio/virtio_ethdev.c b/drivers/net/virtio/virtio_ethdev.c > index aa8de55fe9..e492e822c4 100644 > --- a/drivers/net/virtio/virtio_ethdev.c > +++ b/drivers/net/virtio/virtio_ethdev.c > @@ -2001,10 +2001,6 @@ eth_virtio_dev_uninit(struct rte_eth_dev *eth_dev) > virtio_dev_stop(eth_dev); > virtio_dev_close(eth_dev); > > - eth_dev->dev_ops = NULL; > - eth_dev->tx_pkt_burst = NULL; > - eth_dev->rx_pkt_burst = NULL; > - > PMD_INIT_LOG(DEBUG, "dev_uninit completed"); > > return 0; > diff --git a/drivers/net/vmxnet3/vmxnet3_ethdev.c b/drivers/net/vmxnet3/vmxnet3_ethdev.c > index 828043a65a..1d070fbd79 100644 > --- a/drivers/net/vmxnet3/vmxnet3_ethdev.c > +++ b/drivers/net/vmxnet3/vmxnet3_ethdev.c > @@ -368,11 +368,6 @@ eth_vmxnet3_dev_uninit(struct rte_eth_dev *eth_dev) > return -EBUSY; > } > > - eth_dev->dev_ops = NULL; > - eth_dev->rx_pkt_burst = NULL; > - eth_dev->tx_pkt_burst = NULL; > - eth_dev->tx_pkt_prepare = NULL; > - > return 0; > } > > diff --git a/lib/librte_ethdev/rte_ethdev.c b/lib/librte_ethdev/rte_ethdev.c > index bec12f6814..3ae2253b9d 100644 > --- a/lib/librte_ethdev/rte_ethdev.c > +++ b/lib/librte_ethdev/rte_ethdev.c > @@ -557,7 +557,16 @@ rte_eth_dev_release_port(struct rte_eth_dev *eth_dev) > > eth_dev->state = RTE_ETH_DEV_UNUSED; > eth_dev->device = NULL; > + eth_dev->process_private = NULL; > eth_dev->intr_handle = NULL; > + eth_dev->rx_pkt_burst = NULL; > + eth_dev->tx_pkt_burst = NULL; > + eth_dev->tx_pkt_prepare = NULL; > + eth_dev->rx_queue_count = NULL; > + eth_dev->rx_descriptor_done = NULL; > + eth_dev->rx_descriptor_status = NULL; > + eth_dev->tx_descriptor_status = NULL; > + eth_dev->dev_ops = NULL; > > if (rte_eal_process_type() == RTE_PROC_PRIMARY) { > rte_free(eth_dev->data->rx_queues); > -- > 2.28.0 >
next prev parent reply other threads:[~2020-10-16 15:22 UTC|newest] Thread overview: 201+ messages / expand[flat|nested] mbox.gz Atom feed top 2020-09-13 22:06 [dpdk-dev] [PATCH 00/20] cleanup ethdev close operation Thomas Monjalon 2020-09-13 22:06 ` [dpdk-dev] [PATCH 01/20] ethdev: reset device and interrupt pointers on release Thomas Monjalon 2020-09-23 16:41 ` Ferruh Yigit 2020-09-13 22:06 ` [dpdk-dev] [PATCH 02/20] ethdev: allow drivers to return error on close Thomas Monjalon 2020-09-23 16:41 ` Ferruh Yigit 2020-09-23 20:53 ` Thomas Monjalon 2020-09-23 21:02 ` Stephen Hemminger 2020-09-23 21:06 ` Thomas Monjalon 2020-09-23 21:47 ` Stephen Hemminger 2020-09-23 21:52 ` Thomas Monjalon 2020-09-23 22:02 ` Stephen Hemminger 2020-09-23 22:35 ` Thomas Monjalon 2020-09-24 9:12 ` Bruce Richardson 2020-09-24 10:07 ` Thomas Monjalon 2020-09-24 12:09 ` Ferruh Yigit 2020-09-24 14:48 ` Stephen Hemminger 2020-09-13 22:06 ` [dpdk-dev] [PATCH 03/20] net/af_packet: release port upon close Thomas Monjalon 2020-09-23 16:41 ` Ferruh Yigit 2020-09-13 22:06 ` [dpdk-dev] [PATCH 04/20] net/atlantic: " Thomas Monjalon 2020-09-16 15:14 ` Igor Russkikh 2020-09-23 16:42 ` Ferruh Yigit 2020-09-23 20:50 ` Thomas Monjalon 2020-09-13 22:06 ` [dpdk-dev] [PATCH 05/20] net/axgbe: " Thomas Monjalon 2020-09-13 22:06 ` [dpdk-dev] [PATCH 06/20] net/bonding: " Thomas Monjalon 2020-09-13 22:06 ` [dpdk-dev] [PATCH 07/20] net/failsafe: " Thomas Monjalon 2020-09-23 21:24 ` Thomas Monjalon 2020-09-13 22:06 ` [dpdk-dev] [PATCH 08/20] net/iavf: " Thomas Monjalon 2020-09-13 22:07 ` [dpdk-dev] [PATCH 09/20] net/mlx4: " Thomas Monjalon 2020-09-13 22:07 ` [dpdk-dev] [PATCH 10/20] net/null: " Thomas Monjalon 2020-09-23 16:44 ` Ferruh Yigit 2020-09-23 20:47 ` Thomas Monjalon 2020-09-24 21:58 ` Thomas Monjalon 2020-09-25 8:52 ` Ferruh Yigit 2020-09-25 13:13 ` Thomas Monjalon 2020-09-13 22:07 ` [dpdk-dev] [PATCH 11/20] net/octeontx: " Thomas Monjalon 2020-09-13 22:07 ` [dpdk-dev] [PATCH 12/20] net/pcap: " Thomas Monjalon 2020-09-23 16:44 ` Ferruh Yigit 2020-09-23 20:44 ` Thomas Monjalon 2020-09-24 11:56 ` Ferruh Yigit 2020-09-13 22:07 ` [dpdk-dev] [PATCH 13/20] net/ring: " Thomas Monjalon 2020-09-14 8:51 ` Bruce Richardson 2020-09-13 22:07 ` [dpdk-dev] [PATCH 14/20] net/softnic: " Thomas Monjalon 2020-09-14 15:21 ` Dumitrescu, Cristian 2020-09-13 22:07 ` [dpdk-dev] [PATCH 15/20] net/tap: " Thomas Monjalon 2020-09-13 22:07 ` [dpdk-dev] [PATCH 16/20] ethdev: remove old close behaviour Thomas Monjalon 2020-09-23 16:44 ` Ferruh Yigit 2020-09-23 20:41 ` Thomas Monjalon 2020-09-24 12:00 ` Ferruh Yigit 2020-09-25 4:31 ` Rasesh Mody 2020-09-13 22:07 ` [dpdk-dev] [PATCH 17/20] drivers/net: accept removing device without any port Thomas Monjalon 2020-09-23 16:45 ` Ferruh Yigit 2020-09-27 6:25 ` Xu, Rosen 2020-09-13 22:07 ` [dpdk-dev] [PATCH 18/20] drivers/net: remove redundant MAC addresses freeing Thomas Monjalon 2020-09-23 16:45 ` Ferruh Yigit 2020-09-13 22:07 ` [dpdk-dev] [PATCH 19/20] app/testpmd: reset port status on close notification Thomas Monjalon 2020-09-23 16:45 ` Ferruh Yigit 2020-09-23 20:32 ` Thomas Monjalon 2020-09-24 12:07 ` Ferruh Yigit 2020-09-24 12:17 ` Thomas Monjalon 2020-09-24 13:06 ` Ferruh Yigit 2020-09-13 22:07 ` [dpdk-dev] [PATCH 20/20] app/testpmd: align behaviour of multi-port detach Thomas Monjalon 2020-09-23 16:44 ` [dpdk-dev] [PATCH 00/20] cleanup ethdev close operation Ferruh Yigit 2020-09-27 23:42 ` [dpdk-dev] [PATCH v2 00/25] " Thomas Monjalon 2020-09-27 23:42 ` [dpdk-dev] [PATCH v2 01/25] ethdev: reset device and interrupt pointers on release Thomas Monjalon 2020-09-27 23:42 ` [dpdk-dev] [PATCH v2 02/25] ethdev: allow drivers to return error on close Thomas Monjalon 2020-09-28 0:46 ` Xu, Rosen 2020-09-28 9:51 ` Sachin Saxena (OSS) 2020-09-28 18:26 ` [dpdk-dev] [EXT] " Liron Himi 2020-09-27 23:42 ` [dpdk-dev] [PATCH v2 03/25] net/af_packet: release port upon close Thomas Monjalon 2020-09-27 23:42 ` [dpdk-dev] [PATCH v2 04/25] net/atlantic: " Thomas Monjalon 2020-09-27 23:42 ` [dpdk-dev] [PATCH v2 05/25] net/axgbe: " Thomas Monjalon 2020-09-27 23:42 ` [dpdk-dev] [PATCH v2 06/25] net/bnx2x: " Thomas Monjalon 2020-09-27 23:42 ` [dpdk-dev] [PATCH v2 07/25] net/bonding: " Thomas Monjalon 2020-09-27 23:42 ` [dpdk-dev] [PATCH v2 08/25] net/failsafe: " Thomas Monjalon 2020-09-27 23:42 ` [dpdk-dev] [PATCH v2 09/25] net/mlx4: " Thomas Monjalon 2020-09-27 23:42 ` [dpdk-dev] [PATCH v2 10/25] net/null: " Thomas Monjalon 2020-09-27 23:42 ` [dpdk-dev] [PATCH v2 11/25] net/octeontx: " Thomas Monjalon 2020-09-27 23:42 ` [dpdk-dev] [PATCH v2 12/25] net/pcap: " Thomas Monjalon 2020-09-27 23:42 ` [dpdk-dev] [PATCH v2 13/25] net/qede: " Thomas Monjalon 2020-09-27 23:42 ` [dpdk-dev] [PATCH v2 14/25] net/ring: " Thomas Monjalon 2020-09-27 23:42 ` [dpdk-dev] [PATCH v2 15/25] net/softnic: " Thomas Monjalon 2020-09-27 23:42 ` [dpdk-dev] [PATCH v2 16/25] net/tap: " Thomas Monjalon 2020-09-27 23:42 ` [dpdk-dev] [PATCH v2 17/25] ethdev: remove old close behaviour Thomas Monjalon 2020-09-28 18:25 ` [dpdk-dev] [EXT] " Liron Himi 2020-09-27 23:42 ` [dpdk-dev] [PATCH v2 18/25] drivers/net: accept removing device without any port Thomas Monjalon 2020-09-28 0:47 ` Xu, Rosen 2020-09-28 9:54 ` Sachin Saxena (OSS) 2020-09-27 23:42 ` [dpdk-dev] [PATCH v2 19/25] drivers/net: check process type in close operation Thomas Monjalon 2020-09-27 23:52 ` Thomas Monjalon 2020-09-28 0:50 ` Xu, Rosen 2020-09-28 9:55 ` Sachin Saxena (OSS) 2020-09-28 14:57 ` Ajit Khaparde 2020-09-28 18:25 ` [dpdk-dev] [EXT] " Liron Himi 2020-09-28 18:51 ` [dpdk-dev] " Stephen Hemminger 2020-09-28 20:57 ` Thomas Monjalon 2020-09-27 23:42 ` [dpdk-dev] [PATCH v2 20/25] drivers/net: remove redundant MAC addresses freeing Thomas Monjalon 2020-09-27 23:42 ` [dpdk-dev] [PATCH v2 21/25] app/testpmd: reset port status on close notification Thomas Monjalon 2020-09-27 23:42 ` [dpdk-dev] [PATCH v2 22/25] app/testpmd: align behaviour of multi-port detach Thomas Monjalon 2020-09-27 23:42 ` [dpdk-dev] [PATCH v2 23/25] ethdev: remove forcing stopped state upon close Thomas Monjalon 2020-09-27 23:42 ` [dpdk-dev] [PATCH v2 24/25] ethdev: reset all when releasing a port Thomas Monjalon 2020-09-27 23:42 ` [dpdk-dev] [PATCH v2 25/25] ethdev: allow close function to return an error Thomas Monjalon 2020-09-28 18:24 ` [dpdk-dev] [EXT] " Liron Himi 2020-09-28 23:14 ` [dpdk-dev] [PATCH v3 00/29] cleanup ethdev close operation Thomas Monjalon 2020-09-28 23:14 ` [dpdk-dev] [PATCH v3 01/29] ethdev: reset device and interrupt pointers on release Thomas Monjalon 2020-09-29 10:52 ` Andrew Rybchenko 2020-09-28 23:14 ` [dpdk-dev] [PATCH v3 02/29] ethdev: allow drivers to return error on close Thomas Monjalon 2020-09-29 2:16 ` Wang, Haiyue 2020-09-29 5:56 ` Guo, Jia 2020-09-29 10:53 ` Andrew Rybchenko 2020-09-30 12:12 ` Ferruh Yigit 2020-09-28 23:14 ` [dpdk-dev] [PATCH v3 03/29] net/af_packet: release port upon close Thomas Monjalon 2020-09-28 23:14 ` [dpdk-dev] [PATCH v3 04/29] net/atlantic: " Thomas Monjalon 2020-09-28 23:14 ` [dpdk-dev] [PATCH v3 05/29] net/axgbe: " Thomas Monjalon 2020-09-28 23:14 ` [dpdk-dev] [PATCH v3 06/29] net/bnx2x: " Thomas Monjalon 2020-09-28 23:14 ` [dpdk-dev] [PATCH v3 07/29] net/bonding: " Thomas Monjalon 2020-09-28 23:14 ` [dpdk-dev] [PATCH v3 08/29] net/dpaa: " Thomas Monjalon 2020-09-29 4:53 ` Hemant Agrawal 2020-09-28 23:14 ` [dpdk-dev] [PATCH v3 09/29] net/dpaa2: " Thomas Monjalon 2020-09-29 4:53 ` Hemant Agrawal 2020-09-28 23:14 ` [dpdk-dev] [PATCH v3 10/29] net/enetc: " Thomas Monjalon 2020-09-28 23:14 ` [dpdk-dev] [PATCH v3 11/29] net/failsafe: " Thomas Monjalon 2020-10-05 10:19 ` Gaëtan Rivet 2020-09-28 23:14 ` [dpdk-dev] [PATCH v3 12/29] net/mlx4: " Thomas Monjalon 2020-09-28 23:14 ` [dpdk-dev] [PATCH v3 13/29] net/null: " Thomas Monjalon 2020-09-29 16:47 ` Ferruh Yigit 2020-09-28 23:14 ` [dpdk-dev] [PATCH v3 14/29] net/octeontx: " Thomas Monjalon 2020-09-28 23:14 ` [dpdk-dev] [PATCH v3 15/29] net/pcap: " Thomas Monjalon 2020-09-29 16:49 ` Ferruh Yigit 2020-09-28 23:14 ` [dpdk-dev] [PATCH v3 16/29] net/pfe: " Thomas Monjalon 2020-09-28 23:14 ` [dpdk-dev] [PATCH v3 17/29] net/qede: " Thomas Monjalon 2020-09-28 23:14 ` [dpdk-dev] [PATCH v3 18/29] net/ring: " Thomas Monjalon 2020-09-28 23:14 ` [dpdk-dev] [PATCH v3 19/29] net/softnic: " Thomas Monjalon 2020-09-28 23:14 ` [dpdk-dev] [PATCH v3 20/29] net/tap: " Thomas Monjalon 2020-09-30 8:34 ` wangyunjian 2020-09-28 23:14 ` [dpdk-dev] [PATCH v3 21/29] ethdev: remove old close behaviour Thomas Monjalon 2020-09-29 2:27 ` Wang, Haiyue 2020-09-29 5:55 ` Guo, Jia 2020-09-29 10:38 ` Andrew Rybchenko 2020-09-29 17:08 ` Ferruh Yigit 2020-09-28 23:14 ` [dpdk-dev] [PATCH v3 22/29] drivers/net: accept removing device without any port Thomas Monjalon 2020-09-28 23:14 ` [dpdk-dev] [PATCH v3 23/29] drivers/net: check process type in close operation Thomas Monjalon 2020-09-29 2:39 ` Wang, Haiyue 2020-09-29 5:53 ` Guo, Jia 2020-09-29 10:42 ` Andrew Rybchenko 2020-09-28 23:14 ` [dpdk-dev] [PATCH v3 24/29] drivers/net: remove redundant MAC addresses freeing Thomas Monjalon 2020-09-28 23:14 ` [dpdk-dev] [PATCH v3 25/29] app/testpmd: reset port status on close notification Thomas Monjalon 2020-09-30 12:15 ` Ferruh Yigit 2020-09-28 23:14 ` [dpdk-dev] [PATCH v3 26/29] app/testpmd: align behaviour of multi-port detach Thomas Monjalon 2020-09-30 12:17 ` Ferruh Yigit 2020-09-28 23:14 ` [dpdk-dev] [PATCH v3 27/29] ethdev: remove forcing stopped state upon close Thomas Monjalon 2020-09-29 10:44 ` Andrew Rybchenko 2020-09-29 16:01 ` Ferruh Yigit 2020-09-29 16:06 ` Thomas Monjalon 2020-09-29 16:39 ` Ferruh Yigit 2020-09-28 23:14 ` [dpdk-dev] [PATCH v3 28/29] ethdev: reset all when releasing a port Thomas Monjalon 2020-09-29 2:34 ` Wang, Haiyue 2020-09-29 5:51 ` Guo, Jia 2020-09-29 10:26 ` Maxime Coquelin 2020-09-29 10:36 ` Thomas Monjalon 2020-09-29 11:58 ` Wang, Haiyue 2020-09-29 15:50 ` Ferruh Yigit 2020-09-29 16:02 ` Thomas Monjalon 2020-09-29 16:35 ` Ferruh Yigit 2020-09-30 12:17 ` Ferruh Yigit 2020-09-29 10:50 ` Andrew Rybchenko 2020-09-28 23:14 ` [dpdk-dev] [PATCH v3 29/29] ethdev: allow close function to return an error Thomas Monjalon 2020-09-29 11:05 ` Andrew Rybchenko 2020-09-29 11:47 ` Thomas Monjalon 2020-09-29 11:54 ` Andrew Rybchenko 2020-09-28 23:33 ` [dpdk-dev] [PATCH v3 00/29] cleanup ethdev close operation Stephen Hemminger 2020-09-30 12:22 ` Ferruh Yigit 2020-10-05 17:08 ` [dpdk-dev] [PATCH v4 0/3] " Thomas Monjalon 2020-10-05 17:08 ` [dpdk-dev] [PATCH v4 1/3] ethdev: remove forcing stopped state upon close Thomas Monjalon 2020-10-05 17:08 ` [dpdk-dev] [PATCH v4 2/3] ethdev: reset all when releasing a port Thomas Monjalon 2020-10-05 17:08 ` [dpdk-dev] [PATCH v4 3/3] ethdev: allow close function to return an error Thomas Monjalon 2020-10-06 9:43 ` Ferruh Yigit 2020-10-06 10:57 ` Thomas Monjalon 2020-10-13 8:40 ` Andrew Rybchenko 2020-10-13 8:55 ` Thomas Monjalon 2020-10-13 9:33 ` Ferruh Yigit 2020-10-13 10:06 ` [dpdk-dev] [PATCH v5 0/3] cleanup ethdev close operation Thomas Monjalon 2020-10-13 10:06 ` [dpdk-dev] [PATCH v5 1/3] ethdev: remove forcing stopped state upon close Thomas Monjalon 2020-10-13 12:36 ` Ferruh Yigit 2020-10-13 12:49 ` Thomas Monjalon 2020-10-13 12:45 ` Ferruh Yigit 2020-10-13 12:51 ` Thomas Monjalon 2020-10-13 17:54 ` Ferruh Yigit 2020-10-13 17:59 ` Thomas Monjalon 2020-10-13 10:06 ` [dpdk-dev] [PATCH v5 2/3] ethdev: reset all when releasing a port Thomas Monjalon 2020-10-13 13:10 ` Ferruh Yigit 2020-10-13 10:06 ` [dpdk-dev] [PATCH v5 3/3] ethdev: allow close function to return an error Thomas Monjalon 2020-10-13 10:41 ` Andrew Rybchenko 2020-10-13 10:43 ` Thomas Monjalon 2020-10-13 13:10 ` Ferruh Yigit 2020-10-16 13:32 ` [dpdk-dev] [PATCH v6 0/3] cleanup ethdev close operation Thomas Monjalon 2020-10-16 13:32 ` [dpdk-dev] [PATCH v6 1/3] ethdev: remove forcing stopped state upon close Thomas Monjalon 2020-10-16 13:32 ` [dpdk-dev] [PATCH v6 2/3] ethdev: reset all when releasing a port Thomas Monjalon 2020-10-16 15:21 ` Ajit Khaparde [this message] 2020-10-16 13:32 ` [dpdk-dev] [PATCH v6 3/3] ethdev: allow close function to return an error Thomas Monjalon 2020-10-16 17:55 ` [dpdk-dev] [PATCH v6 0/3] cleanup ethdev close operation Ferruh Yigit 2020-10-20 12:24 ` Bruce Richardson
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='CACZ4nhty58D+9YZTUskn=YxcNHOAKga8qwH_r=eHZgFdUOxB9Q@mail.gmail.com' \ --to=ajit.khaparde@broadcom.com \ --cc=andrew.rybchenko@oktetlabs.ru \ --cc=arybchenko@solarflare.com \ --cc=asomalap@amd.com \ --cc=beilei.xing@intel.com \ --cc=cardigliano@ntop.org \ --cc=chas3@att.com \ --cc=chenbo.xia@intel.com \ --cc=cloud.wangxiaoyun@huawei.com \ --cc=dev@dpdk.org \ --cc=ed.czeck@atomicrules.com \ --cc=evgenys@amazon.com \ --cc=ferruh.yigit@intel.com \ --cc=gtzalik@amazon.com \ --cc=haiyangz@microsoft.com \ --cc=haiyue.wang@intel.com \ --cc=hemant.agrawal@nxp.com \ --cc=hkalra@marvell.com \ --cc=humin29@huawei.com \ --cc=igor.russkikh@aquantia.com \ --cc=igorch@amazon.com \ --cc=jia.guo@intel.com \ --cc=jingjing.wu@intel.com \ --cc=john.miller@atomicrules.com \ --cc=keith.wiles@intel.com \ --cc=kys@microsoft.com \ --cc=longli@microsoft.com \ --cc=maxime.coquelin@redhat.com \ --cc=mk@semihalf.com \ --cc=mw@semihalf.com \ --cc=pavel.belous@aquantia.com \ --cc=qi.z.zhang@intel.com \ --cc=qiming.yang@intel.com \ --cc=rmody@marvell.com \ --cc=sachin.saxena@oss.nxp.com \ --cc=shepard.siegel@atomicrules.com \ --cc=shshaikh@marvell.com \ --cc=somnath.kotur@broadcom.com \ --cc=srinivasan@marvell.com \ --cc=stephen@networkplumber.org \ --cc=sthemmin@microsoft.com \ --cc=sthotton@marvell.com \ --cc=thomas@monjalon.net \ --cc=xavier.huwei@huawei.com \ --cc=xiao.w.wang@intel.com \ --cc=xuanziyang2@huawei.com \ --cc=yisen.zhuang@huawei.com \ --cc=yongwang@vmware.com \ --cc=zhihong.wang@intel.com \ --cc=zhouguoyang@huawei.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 https://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/ https://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