Skip to content

Commit

Permalink
drivers/net: check process type in close operation
Browse files Browse the repository at this point in the history
The secondary processes are not allowed to release shared resources.
Only process-private resources should be freed in a secondary process.
Most of the time, there is no process-private resource,
so the close operation is just forbidden in a secondary process.

After adding proper check in the port close functions,
some redundant checks in the device remove functions are dropped.

Signed-off-by: Thomas Monjalon <thomas@monjalon.net>
Reviewed-by: Rosen Xu <rosen.xu@intel.com>
Reviewed-by: Sachin Saxena <sachin.saxena@oss.nxp.com>
Reviewed-by: Ajit Khaparde <ajit.khaparde@broadcom.com>
Reviewed-by: Liron Himi <lironh@marvell.com>
Reviewed-by: Haiyue Wang <haiyue.wang@intel.com>
Acked-by: Jeff Guo <jia.guo@intel.com>
Reviewed-by: Andrew Rybchenko <arybchenko@solarflare.com>
Acked-by: Stephen Hemminger <stephen@networkplumber.org>
  • Loading branch information
tmonjalo authored and Ferruh Yigit committed Sep 30, 2020
1 parent 68f578b commit 3041049
Show file tree
Hide file tree
Showing 37 changed files with 119 additions and 35 deletions.
3 changes: 3 additions & 0 deletions drivers/net/af_xdp/rte_eth_af_xdp.c
Expand Up @@ -821,6 +821,9 @@ eth_dev_close(struct rte_eth_dev *dev)
struct pkt_rx_queue *rxq;
int i;

if (rte_eal_process_type() != RTE_PROC_PRIMARY)
return 0;

AF_XDP_LOG(INFO, "Closing AF_XDP ethdev on numa socket %u\n",
rte_socket_id());

Expand Down
3 changes: 3 additions & 0 deletions drivers/net/ark/ark_ethdev.c
Expand Up @@ -680,6 +680,9 @@ eth_ark_dev_close(struct rte_eth_dev *dev)
struct ark_adapter *ark = dev->data->dev_private;
uint16_t i;

if (rte_eal_process_type() != RTE_PROC_PRIMARY)
return 0;

if (ark->user_ext.dev_close)
ark->user_ext.dev_close(dev,
ark->user_data[dev->data->port_id]);
Expand Down
3 changes: 3 additions & 0 deletions drivers/net/avp/avp_ethdev.c
Expand Up @@ -2107,6 +2107,9 @@ avp_dev_close(struct rte_eth_dev *eth_dev)
struct avp_dev *avp = AVP_DEV_PRIVATE_TO_HW(eth_dev->data->dev_private);
int ret;

if (rte_eal_process_type() != RTE_PROC_PRIMARY)
return 0;

rte_spinlock_lock(&avp->lock);
if (avp->flags & AVP_F_DETACHED) {
PMD_DRV_LOG(ERR, "Operation not supported during VM live migration\n");
Expand Down
3 changes: 3 additions & 0 deletions drivers/net/bnxt/bnxt_ethdev.c
Expand Up @@ -1408,6 +1408,9 @@ static int bnxt_dev_close_op(struct rte_eth_dev *eth_dev)
{
struct bnxt *bp = eth_dev->data->dev_private;

if (rte_eal_process_type() != RTE_PROC_PRIMARY)
return 0;

/* cancel the recovery handler before remove dev */
rte_eal_alarm_cancel(bnxt_dev_reset_and_resume, (void *)bp);
rte_eal_alarm_cancel(bnxt_dev_recover, (void *)bp);
Expand Down
3 changes: 3 additions & 0 deletions drivers/net/bnxt/bnxt_reps.c
Expand Up @@ -250,6 +250,9 @@ int bnxt_representor_uninit(struct rte_eth_dev *eth_dev)
(struct bnxt_representor *)eth_dev->data->dev_private;
uint16_t vf_id;

if (rte_eal_process_type() != RTE_PROC_PRIMARY)
return 0;

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;
Expand Down
3 changes: 3 additions & 0 deletions drivers/net/cxgbe/cxgbe_ethdev.c
Expand Up @@ -326,6 +326,9 @@ int cxgbe_dev_close(struct rte_eth_dev *eth_dev)

CXGBE_FUNC_TRACE();

if (rte_eal_process_type() != RTE_PROC_PRIMARY)
return 0;

if (!(adapter->flags & FULL_INIT_DONE))
return 0;

Expand Down
3 changes: 3 additions & 0 deletions drivers/net/e1000/em_ethdev.c
Expand Up @@ -762,6 +762,9 @@ eth_em_close(struct rte_eth_dev *dev)
struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;

if (rte_eal_process_type() != RTE_PROC_PRIMARY)
return 0;

eth_em_stop(dev);
adapter->stopped = 1;
em_dev_free_queues(dev);
Expand Down
6 changes: 6 additions & 0 deletions drivers/net/e1000/igb_ethdev.c
Expand Up @@ -1535,6 +1535,9 @@ eth_igb_close(struct rte_eth_dev *dev)
struct e1000_filter_info *filter_info =
E1000_DEV_PRIVATE_TO_FILTER_INFO(dev->data->dev_private);

if (rte_eal_process_type() != RTE_PROC_PRIMARY)
return 0;

eth_igb_stop(dev);

e1000_phy_hw_reset(hw);
Expand Down Expand Up @@ -3382,6 +3385,9 @@ igbvf_dev_close(struct rte_eth_dev *dev)

PMD_INIT_FUNC_TRACE();

if (rte_eal_process_type() != RTE_PROC_PRIMARY)
return 0;

e1000_reset_hw(hw);

igbvf_dev_stop(dev);
Expand Down
3 changes: 3 additions & 0 deletions drivers/net/ena/ena_ethdev.c
Expand Up @@ -506,6 +506,9 @@ static int ena_close(struct rte_eth_dev *dev)
struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
struct ena_adapter *adapter = dev->data->dev_private;

if (rte_eal_process_type() != RTE_PROC_PRIMARY)
return 0;

if (adapter->state == ENA_ADAPTER_STATE_RUNNING)
ena_stop(dev);
adapter->state = ENA_ADAPTER_STATE_CLOSED;
Expand Down
3 changes: 3 additions & 0 deletions drivers/net/enetc/enetc_ethdev.c
Expand Up @@ -551,6 +551,9 @@ enetc_dev_close(struct rte_eth_dev *dev)
uint16_t i;

PMD_INIT_FUNC_TRACE();
if (rte_eal_process_type() != RTE_PROC_PRIMARY)
return 0;

enetc_dev_stop(dev);

for (i = 0; i < dev->data->nb_rx_queues; i++) {
Expand Down
3 changes: 3 additions & 0 deletions drivers/net/enic/enic_ethdev.c
Expand Up @@ -451,6 +451,9 @@ static int enicpmd_dev_close(struct rte_eth_dev *eth_dev)
struct enic *enic = pmd_priv(eth_dev);

ENICPMD_FUNC_TRACE();
if (rte_eal_process_type() != RTE_PROC_PRIMARY)
return 0;

enic_remove(enic);

return 0;
Expand Down
9 changes: 2 additions & 7 deletions drivers/net/fm10k/fm10k_ethdev.c
Expand Up @@ -2785,6 +2785,8 @@ fm10k_dev_close(struct rte_eth_dev *dev)
struct rte_intr_handle *intr_handle = &pdev->intr_handle;

PMD_INIT_FUNC_TRACE();
if (rte_eal_process_type() != RTE_PROC_PRIMARY)
return 0;

fm10k_mbx_lock(hw);
hw->mac.ops.update_lport_state(hw, hw->mac.dglort_map,
Expand Down Expand Up @@ -3237,14 +3239,7 @@ static int
eth_fm10k_dev_uninit(struct rte_eth_dev *dev)
{
PMD_INIT_FUNC_TRACE();

/* only uninitialize in the primary process */
if (rte_eal_process_type() != RTE_PROC_PRIMARY)
return 0;

/* safe to close dev here */
fm10k_dev_close(dev);

return 0;
}

Expand Down
3 changes: 3 additions & 0 deletions drivers/net/hinic/hinic_pmd_ethdev.c
Expand Up @@ -2969,6 +2969,9 @@ static int hinic_dev_close(struct rte_eth_dev *dev)
{
struct hinic_nic_dev *nic_dev = HINIC_ETH_DEV_TO_PRIVATE_NIC_DEV(dev);

if (rte_eal_process_type() != RTE_PROC_PRIMARY)
return 0;

if (rte_bit_relaxed_test_and_set32(HINIC_DEV_CLOSE,
&nic_dev->dev_status)) {
PMD_DRV_LOG(WARNING, "Device %s already closed",
Expand Down
2 changes: 2 additions & 0 deletions drivers/net/i40e/i40e_ethdev.c
Expand Up @@ -2620,6 +2620,8 @@ i40e_dev_close(struct rte_eth_dev *dev)
int retries = 0;

PMD_INIT_FUNC_TRACE();
if (rte_eal_process_type() != RTE_PROC_PRIMARY)
return 0;

ret = rte_eth_switch_domain_free(pf->switch_domain_id);
if (ret)
Expand Down
3 changes: 3 additions & 0 deletions drivers/net/i40e/i40e_ethdev_vf.c
Expand Up @@ -2402,6 +2402,9 @@ i40evf_dev_close(struct rte_eth_dev *dev)
struct i40e_hw *hw = I40E_DEV_PRIVATE_TO_HW(dev->data->dev_private);
struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);

if (rte_eal_process_type() != RTE_PROC_PRIMARY)
return 0;

i40evf_dev_stop(dev);
i40e_dev_free_queues(dev);
/*
Expand Down
3 changes: 3 additions & 0 deletions drivers/net/iavf/iavf_ethdev.c
Expand Up @@ -1468,6 +1468,9 @@ iavf_dev_close(struct rte_eth_dev *dev)
IAVF_DEV_PRIVATE_TO_ADAPTER(dev->data->dev_private);
struct iavf_info *vf = IAVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);

if (rte_eal_process_type() != RTE_PROC_PRIMARY)
return 0;

iavf_dev_stop(dev);
iavf_flow_flush(dev, NULL);
iavf_flow_uninit(adapter);
Expand Down
3 changes: 3 additions & 0 deletions drivers/net/ice/ice_ethdev.c
Expand Up @@ -2388,6 +2388,9 @@ ice_dev_close(struct rte_eth_dev *dev)
struct ice_adapter *ad =
ICE_DEV_PRIVATE_TO_ADAPTER(dev->data->dev_private);

if (rte_eal_process_type() != RTE_PROC_PRIMARY)
return 0;

/* Since stop will make link down, then the link event will be
* triggered, disable the irq firstly to avoid the port_infoe etc
* resources deallocation causing the interrupt service thread
Expand Down
6 changes: 2 additions & 4 deletions drivers/net/igc/igc_ethdev.c
Expand Up @@ -1175,6 +1175,8 @@ eth_igc_close(struct rte_eth_dev *dev)
int retry = 0;

PMD_INIT_FUNC_TRACE();
if (rte_eal_process_type() != RTE_PROC_PRIMARY)
return 0;

if (!adapter->stopped)
eth_igc_stop(dev);
Expand Down Expand Up @@ -1363,10 +1365,6 @@ static int
eth_igc_dev_uninit(__rte_unused struct rte_eth_dev *eth_dev)
{
PMD_INIT_FUNC_TRACE();

if (rte_eal_process_type() != RTE_PROC_PRIMARY)
return 0;

eth_igc_close(eth_dev);
return 0;
}
Expand Down
2 changes: 2 additions & 0 deletions drivers/net/ionic/ionic_ethdev.c
Expand Up @@ -963,6 +963,8 @@ ionic_dev_close(struct rte_eth_dev *eth_dev)
int err;

IONIC_PRINT_CALL();
if (rte_eal_process_type() != RTE_PROC_PRIMARY)
return 0;

err = ionic_lif_stop(lif);
if (err) {
Expand Down
3 changes: 3 additions & 0 deletions drivers/net/ipn3ke/ipn3ke_representor.c
Expand Up @@ -214,6 +214,9 @@ ipn3ke_rpst_dev_close(struct rte_eth_dev *dev)
struct ipn3ke_hw *hw = IPN3KE_DEV_PRIVATE_TO_HW(dev);
struct ipn3ke_rpst *rpst = IPN3KE_DEV_PRIVATE_TO_RPST(dev);

if (rte_eal_process_type() != RTE_PROC_PRIMARY)
return 0;

if (hw->retimer.mac_type == IFPGA_RAWDEV_RETIMER_MAC_TYPE_10GE_XFI) {
/* Disable the TX path */
ipn3ke_xmac_tx_disable(hw, rpst->port_id, 0);
Expand Down
4 changes: 4 additions & 0 deletions drivers/net/ixgbe/ixgbe_ethdev.c
Expand Up @@ -2995,6 +2995,8 @@ ixgbe_dev_close(struct rte_eth_dev *dev)
int ret;

PMD_INIT_FUNC_TRACE();
if (rte_eal_process_type() != RTE_PROC_PRIMARY)
return 0;

ixgbe_pf_reset_hw(hw);

Expand Down Expand Up @@ -5448,6 +5450,8 @@ ixgbevf_dev_close(struct rte_eth_dev *dev)
struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;

PMD_INIT_FUNC_TRACE();
if (rte_eal_process_type() != RTE_PROC_PRIMARY)
return 0;

ixgbe_reset_hw(hw);

Expand Down
3 changes: 3 additions & 0 deletions drivers/net/kni/rte_eth_kni.c
Expand Up @@ -204,6 +204,9 @@ eth_kni_close(struct rte_eth_dev *eth_dev)
struct pmd_internals *internals;
int ret;

if (rte_eal_process_type() != RTE_PROC_PRIMARY)
return 0;

eth_kni_dev_stop(eth_dev);

/* mac_addrs must not be freed alone because part of dev_private */
Expand Down
3 changes: 3 additions & 0 deletions drivers/net/liquidio/lio_ethdev.c
Expand Up @@ -1555,6 +1555,9 @@ lio_dev_close(struct rte_eth_dev *eth_dev)
{
struct lio_device *lio_dev = LIO_DEV(eth_dev);

if (rte_eal_process_type() != RTE_PROC_PRIMARY)
return 0;

lio_dev_info(lio_dev, "closing port %d\n", eth_dev->data->port_id);

if (lio_dev->intf_open)
Expand Down
2 changes: 2 additions & 0 deletions drivers/net/mlx4/mlx4.c
Expand Up @@ -376,6 +376,8 @@ mlx4_dev_close(struct rte_eth_dev *dev)
struct mlx4_priv *priv = dev->data->dev_private;
unsigned int i;

if (rte_eal_process_type() != RTE_PROC_PRIMARY)
return 0;
DEBUG("%p: closing device \"%s\"",
(void *)dev,
((priv->ctx != NULL) ? priv->ctx->device->name : ""));
Expand Down
3 changes: 3 additions & 0 deletions drivers/net/mvneta/mvneta_ethdev.c
Expand Up @@ -435,6 +435,9 @@ mvneta_dev_close(struct rte_eth_dev *dev)
struct mvneta_priv *priv = dev->data->dev_private;
int i;

if (rte_eal_process_type() != RTE_PROC_PRIMARY)
return 0;

if (priv->ppio)
mvneta_dev_stop(dev);

Expand Down
3 changes: 3 additions & 0 deletions drivers/net/mvpp2/mrvl_ethdev.c
Expand Up @@ -861,6 +861,9 @@ mrvl_dev_close(struct rte_eth_dev *dev)
struct mrvl_priv *priv = dev->data->dev_private;
size_t i;

if (rte_eal_process_type() != RTE_PROC_PRIMARY)
return 0;

mrvl_flush_rx_queues(dev);
mrvl_flush_tx_shadow_queues(dev);
mrvl_flow_deinit(dev);
Expand Down
2 changes: 2 additions & 0 deletions drivers/net/netvsc/hn_ethdev.c
Expand Up @@ -842,6 +842,8 @@ static int
hn_dev_close(struct rte_eth_dev *dev)
{
PMD_INIT_FUNC_TRACE();
if (rte_eal_process_type() != RTE_PROC_PRIMARY)
return 0;

hn_vf_close(dev);
hn_dev_free_queues(dev);
Expand Down
3 changes: 3 additions & 0 deletions drivers/net/nfb/nfb_ethdev.c
Expand Up @@ -217,6 +217,9 @@ nfb_eth_dev_close(struct rte_eth_dev *dev)
uint16_t nb_rx = dev->data->nb_rx_queues;
uint16_t nb_tx = dev->data->nb_tx_queues;

if (rte_eal_process_type() != RTE_PROC_PRIMARY)
return 0;

nfb_eth_dev_stop(dev);

nfb_nc_rxmac_deinit(internals->rxmac, internals->max_rxmac);
Expand Down
3 changes: 3 additions & 0 deletions drivers/net/nfp/nfp_net.c
Expand Up @@ -871,6 +871,9 @@ nfp_net_close(struct rte_eth_dev *dev)
struct rte_pci_device *pci_dev;
int i;

if (rte_eal_process_type() != RTE_PROC_PRIMARY)
return 0;

PMD_INIT_LOG(DEBUG, "Close");

hw = NFP_NET_DEV_PRIVATE_TO_HW(dev->data->dev_private);
Expand Down
2 changes: 2 additions & 0 deletions drivers/net/octeontx/octeontx_ethdev.c
Expand Up @@ -487,6 +487,8 @@ octeontx_dev_close(struct rte_eth_dev *dev)
int ret;

PMD_INIT_FUNC_TRACE();
if (rte_eal_process_type() != RTE_PROC_PRIMARY)
return 0;

rte_event_dev_close(nic->evdev);

Expand Down
3 changes: 3 additions & 0 deletions drivers/net/pfe/pfe_ethdev.c
Expand Up @@ -396,6 +396,9 @@ pfe_eth_close(struct rte_eth_dev *dev)
if (!g_pfe)
return -1;

if (rte_eal_process_type() != RTE_PROC_PRIMARY)
return 0;

pfe_eth_stop(dev);
/* Close the device file for link status */
pfe_eth_close_cdev(dev->data->dev_private);
Expand Down

0 comments on commit 3041049

Please sign in to comment.