1*3998e2a0SBruce Richardson /* SPDX-License-Identifier: BSD-3-Clause 2*3998e2a0SBruce Richardson * Copyright(c) 2010-2016 Intel Corporation 3bda68ab9SRemy Horton */ 4bda68ab9SRemy Horton #include <stdio.h> 5bda68ab9SRemy Horton #include <string.h> 6bda68ab9SRemy Horton #include <stdint.h> 7bda68ab9SRemy Horton #include <rte_version.h> 8bda68ab9SRemy Horton #include <rte_ethdev.h> 9bda68ab9SRemy Horton #include <rte_ether.h> 10c752998bSGaetan Rivet #include <rte_bus_pci.h> 11077d223eSBernard Iremonger #ifdef RTE_LIBRTE_IXGBE_PMD 12077d223eSBernard Iremonger #include <rte_pmd_ixgbe.h> 13077d223eSBernard Iremonger #endif 14bda68ab9SRemy Horton #include "rte_ethtool.h" 15bda68ab9SRemy Horton 16bda68ab9SRemy Horton #define PKTPOOL_SIZE 512 17bda68ab9SRemy Horton #define PKTPOOL_CACHE 32 18bda68ab9SRemy Horton 19bda68ab9SRemy Horton 20bda68ab9SRemy Horton int 2147523597SZhiyong Yang rte_ethtool_get_drvinfo(uint16_t port_id, struct ethtool_drvinfo *drvinfo) 22bda68ab9SRemy Horton { 23bda68ab9SRemy Horton struct rte_eth_dev_info dev_info; 24001a1c0fSZyta Szpak struct rte_dev_reg_info reg_info; 25bda68ab9SRemy Horton int n; 261e07b4ecSQiming Yang int ret; 27bda68ab9SRemy Horton 28bda68ab9SRemy Horton if (drvinfo == NULL) 29bda68ab9SRemy Horton return -EINVAL; 30bda68ab9SRemy Horton 311414dabcSMauricio Vasquez B RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 32bda68ab9SRemy Horton 331e07b4ecSQiming Yang ret = rte_eth_dev_fw_version_get(port_id, drvinfo->fw_version, 341e07b4ecSQiming Yang sizeof(drvinfo->fw_version)); 351e07b4ecSQiming Yang if (ret < 0) 361e07b4ecSQiming Yang printf("firmware version get error: (%s)\n", strerror(-ret)); 371e07b4ecSQiming Yang else if (ret > 0) 381e07b4ecSQiming Yang printf("Insufficient fw version buffer size, " 3998a7ea33SJerin Jacob "the minimum size should be %d\n", ret); 401e07b4ecSQiming Yang 41bda68ab9SRemy Horton memset(&dev_info, 0, sizeof(dev_info)); 42bda68ab9SRemy Horton rte_eth_dev_info_get(port_id, &dev_info); 43bda68ab9SRemy Horton 44bda68ab9SRemy Horton snprintf(drvinfo->driver, sizeof(drvinfo->driver), "%s", 45bda68ab9SRemy Horton dev_info.driver_name); 46bda68ab9SRemy Horton snprintf(drvinfo->version, sizeof(drvinfo->version), "%s", 47bda68ab9SRemy Horton rte_version()); 4817fd714eSThomas Monjalon /* TODO: replace bus_info by rte_devargs.name */ 496c66be9aSRemy Horton if (dev_info.pci_dev) 50bda68ab9SRemy Horton snprintf(drvinfo->bus_info, sizeof(drvinfo->bus_info), 51bda68ab9SRemy Horton "%04x:%02x:%02x.%x", 526c66be9aSRemy Horton dev_info.pci_dev->addr.domain, 536c66be9aSRemy Horton dev_info.pci_dev->addr.bus, 546c66be9aSRemy Horton dev_info.pci_dev->addr.devid, 556c66be9aSRemy Horton dev_info.pci_dev->addr.function); 566c66be9aSRemy Horton else 576c66be9aSRemy Horton snprintf(drvinfo->bus_info, sizeof(drvinfo->bus_info), "N/A"); 58bda68ab9SRemy Horton 59001a1c0fSZyta Szpak memset(®_info, 0, sizeof(reg_info)); 60001a1c0fSZyta Szpak rte_eth_dev_get_reg_info(port_id, ®_info); 61001a1c0fSZyta Szpak n = reg_info.length; 62bda68ab9SRemy Horton if (n > 0) 63bda68ab9SRemy Horton drvinfo->regdump_len = n; 64bda68ab9SRemy Horton else 65bda68ab9SRemy Horton drvinfo->regdump_len = 0; 66bda68ab9SRemy Horton 67bda68ab9SRemy Horton n = rte_eth_dev_get_eeprom_length(port_id); 68bda68ab9SRemy Horton if (n > 0) 69bda68ab9SRemy Horton drvinfo->eedump_len = n; 70bda68ab9SRemy Horton else 71bda68ab9SRemy Horton drvinfo->eedump_len = 0; 72bda68ab9SRemy Horton 73bda68ab9SRemy Horton drvinfo->n_stats = sizeof(struct rte_eth_stats) / sizeof(uint64_t); 74bda68ab9SRemy Horton drvinfo->testinfo_len = 0; 75bda68ab9SRemy Horton 76bda68ab9SRemy Horton return 0; 77bda68ab9SRemy Horton } 78bda68ab9SRemy Horton 79bda68ab9SRemy Horton int 8047523597SZhiyong Yang rte_ethtool_get_regs_len(uint16_t port_id) 81bda68ab9SRemy Horton { 82001a1c0fSZyta Szpak struct rte_dev_reg_info reg_info; 83001a1c0fSZyta Szpak int ret; 84bda68ab9SRemy Horton 85001a1c0fSZyta Szpak memset(®_info, 0, sizeof(reg_info)); 86001a1c0fSZyta Szpak 87001a1c0fSZyta Szpak ret = rte_eth_dev_get_reg_info(port_id, ®_info); 88001a1c0fSZyta Szpak if (ret) 89001a1c0fSZyta Szpak return ret; 90001a1c0fSZyta Szpak 91001a1c0fSZyta Szpak return reg_info.length * reg_info.width; 92bda68ab9SRemy Horton } 93bda68ab9SRemy Horton 94bda68ab9SRemy Horton int 9547523597SZhiyong Yang rte_ethtool_get_regs(uint16_t port_id, struct ethtool_regs *regs, void *data) 96bda68ab9SRemy Horton { 97bda68ab9SRemy Horton struct rte_dev_reg_info reg_info; 98bda68ab9SRemy Horton int status; 99bda68ab9SRemy Horton 100bda68ab9SRemy Horton if (regs == NULL || data == NULL) 101bda68ab9SRemy Horton return -EINVAL; 102bda68ab9SRemy Horton 103bda68ab9SRemy Horton reg_info.data = data; 104bda68ab9SRemy Horton reg_info.length = 0; 105bda68ab9SRemy Horton 106bda68ab9SRemy Horton status = rte_eth_dev_get_reg_info(port_id, ®_info); 107bda68ab9SRemy Horton if (status) 108bda68ab9SRemy Horton return status; 109bda68ab9SRemy Horton regs->version = reg_info.version; 110bda68ab9SRemy Horton 111bda68ab9SRemy Horton return 0; 112bda68ab9SRemy Horton } 113bda68ab9SRemy Horton 114bda68ab9SRemy Horton int 11547523597SZhiyong Yang rte_ethtool_get_link(uint16_t port_id) 116bda68ab9SRemy Horton { 117bda68ab9SRemy Horton struct rte_eth_link link; 118bda68ab9SRemy Horton 1191414dabcSMauricio Vasquez B RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 120bda68ab9SRemy Horton rte_eth_link_get(port_id, &link); 121bda68ab9SRemy Horton return link.link_status; 122bda68ab9SRemy Horton } 123bda68ab9SRemy Horton 124bda68ab9SRemy Horton int 12547523597SZhiyong Yang rte_ethtool_get_eeprom_len(uint16_t port_id) 126bda68ab9SRemy Horton { 127bda68ab9SRemy Horton return rte_eth_dev_get_eeprom_length(port_id); 128bda68ab9SRemy Horton } 129bda68ab9SRemy Horton 130bda68ab9SRemy Horton int 13147523597SZhiyong Yang rte_ethtool_get_eeprom(uint16_t port_id, struct ethtool_eeprom *eeprom, 132bda68ab9SRemy Horton void *words) 133bda68ab9SRemy Horton { 134bda68ab9SRemy Horton struct rte_dev_eeprom_info eeprom_info; 135bda68ab9SRemy Horton int status; 136bda68ab9SRemy Horton 137bda68ab9SRemy Horton if (eeprom == NULL || words == NULL) 138bda68ab9SRemy Horton return -EINVAL; 139bda68ab9SRemy Horton 140bda68ab9SRemy Horton eeprom_info.offset = eeprom->offset; 141bda68ab9SRemy Horton eeprom_info.length = eeprom->len; 142bda68ab9SRemy Horton eeprom_info.data = words; 143bda68ab9SRemy Horton 144bda68ab9SRemy Horton status = rte_eth_dev_get_eeprom(port_id, &eeprom_info); 145bda68ab9SRemy Horton if (status) 146bda68ab9SRemy Horton return status; 147bda68ab9SRemy Horton 148bda68ab9SRemy Horton eeprom->magic = eeprom_info.magic; 149bda68ab9SRemy Horton 150bda68ab9SRemy Horton return 0; 151bda68ab9SRemy Horton } 152bda68ab9SRemy Horton 153bda68ab9SRemy Horton int 15447523597SZhiyong Yang rte_ethtool_set_eeprom(uint16_t port_id, struct ethtool_eeprom *eeprom, 155bda68ab9SRemy Horton void *words) 156bda68ab9SRemy Horton { 157bda68ab9SRemy Horton struct rte_dev_eeprom_info eeprom_info; 158bda68ab9SRemy Horton int status; 159bda68ab9SRemy Horton 160bda68ab9SRemy Horton if (eeprom == NULL || words == NULL || eeprom->offset >= eeprom->len) 161bda68ab9SRemy Horton return -EINVAL; 162bda68ab9SRemy Horton 163bda68ab9SRemy Horton eeprom_info.offset = eeprom->offset; 164bda68ab9SRemy Horton eeprom_info.length = eeprom->len; 165bda68ab9SRemy Horton eeprom_info.data = words; 166bda68ab9SRemy Horton 167bda68ab9SRemy Horton status = rte_eth_dev_set_eeprom(port_id, &eeprom_info); 168bda68ab9SRemy Horton if (status) 169bda68ab9SRemy Horton return status; 170bda68ab9SRemy Horton 171bda68ab9SRemy Horton eeprom->magic = eeprom_info.magic; 172bda68ab9SRemy Horton 173bda68ab9SRemy Horton return 0; 174bda68ab9SRemy Horton } 175bda68ab9SRemy Horton 176bda68ab9SRemy Horton int 17747523597SZhiyong Yang rte_ethtool_get_pauseparam(uint16_t port_id, 178bda68ab9SRemy Horton struct ethtool_pauseparam *pause_param) 179bda68ab9SRemy Horton { 180bda68ab9SRemy Horton struct rte_eth_fc_conf fc_conf; 181bda68ab9SRemy Horton int status; 182bda68ab9SRemy Horton 183bda68ab9SRemy Horton if (pause_param == NULL) 184bda68ab9SRemy Horton return -EINVAL; 185bda68ab9SRemy Horton 186bda68ab9SRemy Horton status = rte_eth_dev_flow_ctrl_get(port_id, &fc_conf); 187bda68ab9SRemy Horton if (status) 188bda68ab9SRemy Horton return status; 189bda68ab9SRemy Horton 190bda68ab9SRemy Horton pause_param->tx_pause = 0; 191bda68ab9SRemy Horton pause_param->rx_pause = 0; 192bda68ab9SRemy Horton switch (fc_conf.mode) { 193bda68ab9SRemy Horton case RTE_FC_RX_PAUSE: 194bda68ab9SRemy Horton pause_param->rx_pause = 1; 195bda68ab9SRemy Horton break; 196bda68ab9SRemy Horton case RTE_FC_TX_PAUSE: 197bda68ab9SRemy Horton pause_param->tx_pause = 1; 198bda68ab9SRemy Horton break; 199bda68ab9SRemy Horton case RTE_FC_FULL: 200bda68ab9SRemy Horton pause_param->rx_pause = 1; 201bda68ab9SRemy Horton pause_param->tx_pause = 1; 202bda68ab9SRemy Horton default: 203bda68ab9SRemy Horton /* dummy block to avoid compiler warning */ 204bda68ab9SRemy Horton break; 205bda68ab9SRemy Horton } 206bda68ab9SRemy Horton pause_param->autoneg = (uint32_t)fc_conf.autoneg; 207bda68ab9SRemy Horton 208bda68ab9SRemy Horton return 0; 209bda68ab9SRemy Horton } 210bda68ab9SRemy Horton 211bda68ab9SRemy Horton int 21247523597SZhiyong Yang rte_ethtool_set_pauseparam(uint16_t port_id, 213bda68ab9SRemy Horton struct ethtool_pauseparam *pause_param) 214bda68ab9SRemy Horton { 215bda68ab9SRemy Horton struct rte_eth_fc_conf fc_conf; 216bda68ab9SRemy Horton int status; 217bda68ab9SRemy Horton 218bda68ab9SRemy Horton if (pause_param == NULL) 219bda68ab9SRemy Horton return -EINVAL; 220bda68ab9SRemy Horton 221bda68ab9SRemy Horton /* 222bda68ab9SRemy Horton * Read device flow control parameter first since 223bda68ab9SRemy Horton * ethtool set_pauseparam op doesn't have all the information. 224bda68ab9SRemy Horton * as defined in struct rte_eth_fc_conf. 225bda68ab9SRemy Horton * This API requires the device to support both 226bda68ab9SRemy Horton * rte_eth_dev_flow_ctrl_get and rte_eth_dev_flow_ctrl_set, otherwise 227bda68ab9SRemy Horton * return -ENOTSUP 228bda68ab9SRemy Horton */ 229bda68ab9SRemy Horton status = rte_eth_dev_flow_ctrl_get(port_id, &fc_conf); 230bda68ab9SRemy Horton if (status) 231bda68ab9SRemy Horton return status; 232bda68ab9SRemy Horton 233bda68ab9SRemy Horton fc_conf.autoneg = (uint8_t)pause_param->autoneg; 234bda68ab9SRemy Horton 235bda68ab9SRemy Horton if (pause_param->tx_pause) { 236bda68ab9SRemy Horton if (pause_param->rx_pause) 237bda68ab9SRemy Horton fc_conf.mode = RTE_FC_FULL; 238bda68ab9SRemy Horton else 239bda68ab9SRemy Horton fc_conf.mode = RTE_FC_TX_PAUSE; 240bda68ab9SRemy Horton } else { 241bda68ab9SRemy Horton if (pause_param->rx_pause) 242bda68ab9SRemy Horton fc_conf.mode = RTE_FC_RX_PAUSE; 243bda68ab9SRemy Horton else 244bda68ab9SRemy Horton fc_conf.mode = RTE_FC_NONE; 245bda68ab9SRemy Horton } 246bda68ab9SRemy Horton 247bda68ab9SRemy Horton status = rte_eth_dev_flow_ctrl_set(port_id, &fc_conf); 248bda68ab9SRemy Horton if (status) 249bda68ab9SRemy Horton return status; 250bda68ab9SRemy Horton 251bda68ab9SRemy Horton return 0; 252bda68ab9SRemy Horton } 253bda68ab9SRemy Horton 254bda68ab9SRemy Horton int 25547523597SZhiyong Yang rte_ethtool_net_open(uint16_t port_id) 256bda68ab9SRemy Horton { 257bda68ab9SRemy Horton rte_eth_dev_stop(port_id); 258bda68ab9SRemy Horton 259bda68ab9SRemy Horton return rte_eth_dev_start(port_id); 260bda68ab9SRemy Horton } 261bda68ab9SRemy Horton 262bda68ab9SRemy Horton int 26347523597SZhiyong Yang rte_ethtool_net_stop(uint16_t port_id) 264bda68ab9SRemy Horton { 2651414dabcSMauricio Vasquez B RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 266bda68ab9SRemy Horton rte_eth_dev_stop(port_id); 267bda68ab9SRemy Horton 268bda68ab9SRemy Horton return 0; 269bda68ab9SRemy Horton } 270bda68ab9SRemy Horton 271bda68ab9SRemy Horton int 27247523597SZhiyong Yang rte_ethtool_net_get_mac_addr(uint16_t port_id, struct ether_addr *addr) 273bda68ab9SRemy Horton { 2741414dabcSMauricio Vasquez B RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 275bda68ab9SRemy Horton if (addr == NULL) 276bda68ab9SRemy Horton return -EINVAL; 277bda68ab9SRemy Horton rte_eth_macaddr_get(port_id, addr); 278bda68ab9SRemy Horton 279bda68ab9SRemy Horton return 0; 280bda68ab9SRemy Horton } 281bda68ab9SRemy Horton 282bda68ab9SRemy Horton int 28347523597SZhiyong Yang rte_ethtool_net_set_mac_addr(uint16_t port_id, struct ether_addr *addr) 284bda68ab9SRemy Horton { 285bda68ab9SRemy Horton if (addr == NULL) 286bda68ab9SRemy Horton return -EINVAL; 287bda68ab9SRemy Horton return rte_eth_dev_default_mac_addr_set(port_id, addr); 288bda68ab9SRemy Horton } 289bda68ab9SRemy Horton 290bda68ab9SRemy Horton int 29147523597SZhiyong Yang rte_ethtool_net_validate_addr(uint16_t port_id __rte_unused, 292bda68ab9SRemy Horton struct ether_addr *addr) 293bda68ab9SRemy Horton { 294bda68ab9SRemy Horton if (addr == NULL) 295bda68ab9SRemy Horton return -EINVAL; 296bda68ab9SRemy Horton return is_valid_assigned_ether_addr(addr); 297bda68ab9SRemy Horton } 298bda68ab9SRemy Horton 299bda68ab9SRemy Horton int 30047523597SZhiyong Yang rte_ethtool_net_change_mtu(uint16_t port_id, int mtu) 301bda68ab9SRemy Horton { 302bda68ab9SRemy Horton if (mtu < 0 || mtu > UINT16_MAX) 303bda68ab9SRemy Horton return -EINVAL; 304bda68ab9SRemy Horton return rte_eth_dev_set_mtu(port_id, (uint16_t)mtu); 305bda68ab9SRemy Horton } 306bda68ab9SRemy Horton 307bda68ab9SRemy Horton int 30847523597SZhiyong Yang rte_ethtool_net_get_stats64(uint16_t port_id, struct rte_eth_stats *stats) 309bda68ab9SRemy Horton { 310bda68ab9SRemy Horton if (stats == NULL) 311bda68ab9SRemy Horton return -EINVAL; 312bda68ab9SRemy Horton return rte_eth_stats_get(port_id, stats); 313bda68ab9SRemy Horton } 314bda68ab9SRemy Horton 315bda68ab9SRemy Horton int 31647523597SZhiyong Yang rte_ethtool_net_vlan_rx_add_vid(uint16_t port_id, uint16_t vid) 317bda68ab9SRemy Horton { 318bda68ab9SRemy Horton return rte_eth_dev_vlan_filter(port_id, vid, 1); 319bda68ab9SRemy Horton } 320bda68ab9SRemy Horton 321bda68ab9SRemy Horton int 32247523597SZhiyong Yang rte_ethtool_net_vlan_rx_kill_vid(uint16_t port_id, uint16_t vid) 323bda68ab9SRemy Horton { 324bda68ab9SRemy Horton return rte_eth_dev_vlan_filter(port_id, vid, 0); 325bda68ab9SRemy Horton } 326bda68ab9SRemy Horton 327bda68ab9SRemy Horton /* 328bda68ab9SRemy Horton * The set_rx_mode provides driver-specific rx mode setting. 329bda68ab9SRemy Horton * This implementation implements rx mode setting based upon 330bda68ab9SRemy Horton * ixgbe/igb drivers. Further improvement is to provide a 331bda68ab9SRemy Horton * callback op field over struct rte_eth_dev::dev_ops so each 332bda68ab9SRemy Horton * driver can register device-specific implementation 333bda68ab9SRemy Horton */ 334bda68ab9SRemy Horton int 33547523597SZhiyong Yang rte_ethtool_net_set_rx_mode(uint16_t port_id) 336bda68ab9SRemy Horton { 337bda68ab9SRemy Horton uint16_t num_vfs; 338bda68ab9SRemy Horton struct rte_eth_dev_info dev_info; 339bda68ab9SRemy Horton uint16_t vf; 340bda68ab9SRemy Horton 341bda68ab9SRemy Horton memset(&dev_info, 0, sizeof(dev_info)); 342bda68ab9SRemy Horton rte_eth_dev_info_get(port_id, &dev_info); 343bda68ab9SRemy Horton num_vfs = dev_info.max_vfs; 344bda68ab9SRemy Horton 345bda68ab9SRemy Horton /* Set VF vf_rx_mode, VF unsupport status is discard */ 346077d223eSBernard Iremonger for (vf = 0; vf < num_vfs; vf++) { 347077d223eSBernard Iremonger #ifdef RTE_LIBRTE_IXGBE_PMD 348077d223eSBernard Iremonger rte_pmd_ixgbe_set_vf_rxmode(port_id, vf, 349bda68ab9SRemy Horton ETH_VMDQ_ACCEPT_UNTAG, 0); 350077d223eSBernard Iremonger #endif 351077d223eSBernard Iremonger } 352bda68ab9SRemy Horton 353bda68ab9SRemy Horton /* Enable Rx vlan filter, VF unspport status is discard */ 354bda68ab9SRemy Horton rte_eth_dev_set_vlan_offload(port_id, ETH_VLAN_FILTER_MASK); 355bda68ab9SRemy Horton 356bda68ab9SRemy Horton return 0; 357bda68ab9SRemy Horton } 358bda68ab9SRemy Horton 359bda68ab9SRemy Horton 360bda68ab9SRemy Horton int 36147523597SZhiyong Yang rte_ethtool_get_ringparam(uint16_t port_id, 362bda68ab9SRemy Horton struct ethtool_ringparam *ring_param) 363bda68ab9SRemy Horton { 364bda68ab9SRemy Horton struct rte_eth_dev_info dev_info; 365bda68ab9SRemy Horton struct rte_eth_rxq_info rx_qinfo; 366bda68ab9SRemy Horton struct rte_eth_txq_info tx_qinfo; 367bda68ab9SRemy Horton int stat; 368bda68ab9SRemy Horton 369bda68ab9SRemy Horton if (ring_param == NULL) 370bda68ab9SRemy Horton return -EINVAL; 371bda68ab9SRemy Horton 372bda68ab9SRemy Horton rte_eth_dev_info_get(port_id, &dev_info); 373bda68ab9SRemy Horton 374bda68ab9SRemy Horton stat = rte_eth_rx_queue_info_get(port_id, 0, &rx_qinfo); 375bda68ab9SRemy Horton if (stat != 0) 376bda68ab9SRemy Horton return stat; 377bda68ab9SRemy Horton 378bda68ab9SRemy Horton stat = rte_eth_tx_queue_info_get(port_id, 0, &tx_qinfo); 379bda68ab9SRemy Horton if (stat != 0) 380bda68ab9SRemy Horton return stat; 381bda68ab9SRemy Horton 382bda68ab9SRemy Horton memset(ring_param, 0, sizeof(*ring_param)); 383bda68ab9SRemy Horton ring_param->rx_pending = rx_qinfo.nb_desc; 384bda68ab9SRemy Horton ring_param->rx_max_pending = dev_info.rx_desc_lim.nb_max; 385bda68ab9SRemy Horton ring_param->tx_pending = tx_qinfo.nb_desc; 386bda68ab9SRemy Horton ring_param->tx_max_pending = dev_info.tx_desc_lim.nb_max; 387bda68ab9SRemy Horton 388bda68ab9SRemy Horton return 0; 389bda68ab9SRemy Horton } 390bda68ab9SRemy Horton 391bda68ab9SRemy Horton 392bda68ab9SRemy Horton int 39347523597SZhiyong Yang rte_ethtool_set_ringparam(uint16_t port_id, 394bda68ab9SRemy Horton struct ethtool_ringparam *ring_param) 395bda68ab9SRemy Horton { 396bda68ab9SRemy Horton struct rte_eth_rxq_info rx_qinfo; 397bda68ab9SRemy Horton int stat; 398bda68ab9SRemy Horton 399bda68ab9SRemy Horton if (ring_param == NULL) 400bda68ab9SRemy Horton return -EINVAL; 401bda68ab9SRemy Horton 402bda68ab9SRemy Horton stat = rte_eth_rx_queue_info_get(port_id, 0, &rx_qinfo); 403bda68ab9SRemy Horton if (stat != 0) 404bda68ab9SRemy Horton return stat; 405bda68ab9SRemy Horton 406bda68ab9SRemy Horton rte_eth_dev_stop(port_id); 407bda68ab9SRemy Horton 408bda68ab9SRemy Horton stat = rte_eth_tx_queue_setup(port_id, 0, ring_param->tx_pending, 409bda68ab9SRemy Horton rte_socket_id(), NULL); 410bda68ab9SRemy Horton if (stat != 0) 411bda68ab9SRemy Horton return stat; 412bda68ab9SRemy Horton 413bda68ab9SRemy Horton stat = rte_eth_rx_queue_setup(port_id, 0, ring_param->rx_pending, 414bda68ab9SRemy Horton rte_socket_id(), NULL, rx_qinfo.mp); 415bda68ab9SRemy Horton if (stat != 0) 416bda68ab9SRemy Horton return stat; 417bda68ab9SRemy Horton 418bda68ab9SRemy Horton return rte_eth_dev_start(port_id); 419bda68ab9SRemy Horton } 420