ethdev: fix ID spelling in comments and log messages

Signed-off-by: Andrew Rybchenko <andrew.rybchenko@oktetlabs.ru>
Acked-by: Ori Kam <orika@nvidia.com>
Reviewed-by: Ferruh Yigit <ferruh.yigit@intel.com>
This commit is contained in:
Andrew Rybchenko 2021-10-20 15:47:24 +03:00 committed by Ferruh Yigit
parent 5b49ba658b
commit 5906be5af6
6 changed files with 43 additions and 43 deletions

View File

@ -1420,7 +1420,7 @@ rte_eth_linkstatus_get(const struct rte_eth_dev *dev,
* *
* A pool of switch domain identifiers which can be allocated on request. This * A pool of switch domain identifiers which can be allocated on request. This
* will enabled devices which support the concept of switch domains to request * will enabled devices which support the concept of switch domains to request
* a switch domain id which is guaranteed to be unique from other devices * a switch domain ID which is guaranteed to be unique from other devices
* running in the same process. * running in the same process.
* *
* @param domain_id * @param domain_id

View File

@ -10,7 +10,7 @@
#include "rte_ethdev.h" #include "rte_ethdev.h"
/* /*
* Convert rte_eth_dev pointer to port id. * Convert rte_eth_dev pointer to port ID.
* NULL will be translated to RTE_MAX_ETHPORTS. * NULL will be translated to RTE_MAX_ETHPORTS.
*/ */
uint16_t eth_dev_to_id(const struct rte_eth_dev *dev); uint16_t eth_dev_to_id(const struct rte_eth_dev *dev);

View File

@ -90,7 +90,7 @@ eth_representor_cmp(const char *key __rte_unused,
np = eth_da.nb_ports > 0 ? eth_da.nb_ports : 1; np = eth_da.nb_ports > 0 ? eth_da.nb_ports : 1;
nf = eth_da.nb_representor_ports > 0 ? eth_da.nb_representor_ports : 1; nf = eth_da.nb_representor_ports > 0 ? eth_da.nb_representor_ports : 1;
/* Return 0 if representor id is matching one of the values. */ /* Return 0 if representor ID is matching one of the values. */
for (i = 0; i < nc * np * nf; ++i) { for (i = 0; i < nc * np * nf; ++i) {
c = i / (np * nf); c = i / (np * nf);
p = (i / nf) % np; p = (i / nf) % np;

View File

@ -538,7 +538,7 @@ unlock:
/* /*
* Attach to a port already registered by the primary process, which * Attach to a port already registered by the primary process, which
* makes sure that the same device would have the same port id both * makes sure that the same device would have the same port ID both
* in the primary and secondary process. * in the primary and secondary process.
*/ */
struct rte_eth_dev * struct rte_eth_dev *
@ -668,7 +668,7 @@ eth_dev_owner_set(const uint16_t port_id, const uint64_t old_owner_id,
struct rte_eth_dev_owner *port_owner; struct rte_eth_dev_owner *port_owner;
if (port_id >= RTE_MAX_ETHPORTS || !eth_dev_is_allocated(ethdev)) { if (port_id >= RTE_MAX_ETHPORTS || !eth_dev_is_allocated(ethdev)) {
RTE_ETHDEV_LOG(ERR, "Port id %"PRIu16" is not allocated\n", RTE_ETHDEV_LOG(ERR, "Port ID %"PRIu16" is not allocated\n",
port_id); port_id);
return -ENODEV; return -ENODEV;
} }
@ -760,7 +760,7 @@ rte_eth_dev_owner_delete(const uint64_t owner_id)
owner_id); owner_id);
} else { } else {
RTE_ETHDEV_LOG(ERR, RTE_ETHDEV_LOG(ERR,
"Invalid owner id=%016"PRIx64"\n", "Invalid owner ID=%016"PRIx64"\n",
owner_id); owner_id);
ret = -EINVAL; ret = -EINVAL;
} }
@ -779,7 +779,7 @@ rte_eth_dev_owner_get(const uint16_t port_id, struct rte_eth_dev_owner *owner)
ethdev = &rte_eth_devices[port_id]; ethdev = &rte_eth_devices[port_id];
if (!eth_dev_is_allocated(ethdev)) { if (!eth_dev_is_allocated(ethdev)) {
RTE_ETHDEV_LOG(ERR, "Port id %"PRIu16" is not allocated\n", RTE_ETHDEV_LOG(ERR, "Port ID %"PRIu16" is not allocated\n",
port_id); port_id);
return -ENODEV; return -ENODEV;
} }
@ -4333,7 +4333,7 @@ rte_eth_dev_mac_addr_add(uint16_t port_id, struct rte_ether_addr *addr,
return -EINVAL; return -EINVAL;
} }
if (pool >= ETH_64_POOLS) { if (pool >= ETH_64_POOLS) {
RTE_ETHDEV_LOG(ERR, "Pool id must be 0-%d\n", ETH_64_POOLS - 1); RTE_ETHDEV_LOG(ERR, "Pool ID must be 0-%d\n", ETH_64_POOLS - 1);
return -EINVAL; return -EINVAL;
} }
@ -4558,7 +4558,7 @@ int rte_eth_set_queue_rate_limit(uint16_t port_id, uint16_t queue_idx,
if (queue_idx > dev_info.max_tx_queues) { if (queue_idx > dev_info.max_tx_queues) {
RTE_ETHDEV_LOG(ERR, RTE_ETHDEV_LOG(ERR,
"Set queue rate limit:port %u: invalid queue id=%u\n", "Set queue rate limit:port %u: invalid queue ID=%u\n",
port_id, queue_idx); port_id, queue_idx);
return -EINVAL; return -EINVAL;
} }
@ -6415,7 +6415,7 @@ rte_eth_rx_metadata_negotiate(uint16_t port_id, uint64_t *features)
if (dev->data->dev_configured != 0) { if (dev->data->dev_configured != 0) {
RTE_ETHDEV_LOG(ERR, RTE_ETHDEV_LOG(ERR,
"The port (id=%"PRIu16") is already configured\n", "The port (ID=%"PRIu16") is already configured\n",
port_id); port_id);
return -EBUSY; return -EBUSY;
} }

View File

@ -198,7 +198,7 @@ int rte_eth_iterator_init(struct rte_dev_iterator *iter, const char *devargs);
* Iterates on devices with devargs filter. * Iterates on devices with devargs filter.
* The ownership is not checked. * The ownership is not checked.
* *
* The next port id is returned, and the iterator is updated. * The next port ID is returned, and the iterator is updated.
* *
* @param iter * @param iter
* Device iterator handle initialized by rte_eth_iterator_init(). * Device iterator handle initialized by rte_eth_iterator_init().
@ -206,7 +206,7 @@ int rte_eth_iterator_init(struct rte_dev_iterator *iter, const char *devargs);
* by calling rte_eth_iterator_cleanup(). * by calling rte_eth_iterator_cleanup().
* *
* @return * @return
* A port id if found, RTE_MAX_ETHPORTS otherwise. * A port ID if found, RTE_MAX_ETHPORTS otherwise.
*/ */
uint16_t rte_eth_iterator_next(struct rte_dev_iterator *iter); uint16_t rte_eth_iterator_next(struct rte_dev_iterator *iter);
@ -231,7 +231,7 @@ void rte_eth_iterator_cleanup(struct rte_dev_iterator *iter);
* the function rte_eth_iterator_cleanup() must be called. * the function rte_eth_iterator_cleanup() must be called.
* *
* @param id * @param id
* Iterated port id of type uint16_t. * Iterated port ID of type uint16_t.
* @param devargs * @param devargs
* Device parameters input as string of type char*. * Device parameters input as string of type char*.
* @param iter * @param iter
@ -936,7 +936,7 @@ struct rte_eth_vmdq_dcb_conf {
* Passing the ETH_VMDQ_ACCEPT_UNTAG in the rx_mode field allows pool * Passing the ETH_VMDQ_ACCEPT_UNTAG in the rx_mode field allows pool
* selection using only the MAC address. MAC address to pool mapping is done * selection using only the MAC address. MAC address to pool mapping is done
* using the rte_eth_dev_mac_addr_add function, with the pool parameter * using the rte_eth_dev_mac_addr_add function, with the pool parameter
* corresponding to the pool id. * corresponding to the pool ID.
* *
* Queue selection within the selected pool will be done using RSS when * Queue selection within the selected pool will be done using RSS when
* it is enabled or revert to the first queue of the pool if not. * it is enabled or revert to the first queue of the pool if not.
@ -1472,7 +1472,7 @@ struct rte_eth_dev_portconf {
}; };
/** /**
* Default values for switch domain id when ethdev does not support switch * Default values for switch domain ID when ethdev does not support switch
* domain definitions. * domain definitions.
*/ */
#define RTE_ETH_DEV_SWITCH_DOMAIN_ID_INVALID (UINT16_MAX) #define RTE_ETH_DEV_SWITCH_DOMAIN_ID_INVALID (UINT16_MAX)
@ -1482,7 +1482,7 @@ struct rte_eth_dev_portconf {
*/ */
struct rte_eth_switch_info { struct rte_eth_switch_info {
const char *name; /**< switch name */ const char *name; /**< switch name */
uint16_t domain_id; /**< switch domain id */ uint16_t domain_id; /**< switch domain ID */
/** /**
* Mapping to the devices physical switch port as enumerated from the * Mapping to the devices physical switch port as enumerated from the
* perspective of the embedded interconnect/switch. For SR-IOV enabled * perspective of the embedded interconnect/switch. For SR-IOV enabled
@ -1645,7 +1645,7 @@ struct rte_eth_burst_mode {
* This structure is used by rte_eth_xstats_get() to provide * This structure is used by rte_eth_xstats_get() to provide
* statistics that are not provided in the generic *rte_eth_stats* * statistics that are not provided in the generic *rte_eth_stats*
* structure. * structure.
* It maps a name id, corresponding to an index in the array returned * It maps a name ID, corresponding to an index in the array returned
* by rte_eth_xstats_get_names(), to a statistic value. * by rte_eth_xstats_get_names(), to a statistic value.
*/ */
struct rte_eth_xstat { struct rte_eth_xstat {
@ -1861,12 +1861,12 @@ struct rte_eth_dev_owner {
* Iterates over valid ethdev ports owned by a specific owner. * Iterates over valid ethdev ports owned by a specific owner.
* *
* @param port_id * @param port_id
* The id of the next possible valid owned port. * The ID of the next possible valid owned port.
* @param owner_id * @param owner_id
* The owner identifier. * The owner identifier.
* RTE_ETH_DEV_NO_OWNER means iterate over all valid ownerless ports. * RTE_ETH_DEV_NO_OWNER means iterate over all valid ownerless ports.
* @return * @return
* Next valid port id owned by owner_id, RTE_MAX_ETHPORTS if there is none. * Next valid port ID owned by owner_id, RTE_MAX_ETHPORTS if there is none.
*/ */
uint64_t rte_eth_find_next_owned_by(uint16_t port_id, uint64_t rte_eth_find_next_owned_by(uint16_t port_id,
const uint64_t owner_id); const uint64_t owner_id);
@ -1883,9 +1883,9 @@ uint64_t rte_eth_find_next_owned_by(uint16_t port_id,
* Iterates over valid ethdev ports. * Iterates over valid ethdev ports.
* *
* @param port_id * @param port_id
* The id of the next possible valid port. * The ID of the next possible valid port.
* @return * @return
* Next valid port id, RTE_MAX_ETHPORTS if there is none. * Next valid port ID, RTE_MAX_ETHPORTS if there is none.
*/ */
uint16_t rte_eth_find_next(uint16_t port_id); uint16_t rte_eth_find_next(uint16_t port_id);
@ -1899,11 +1899,11 @@ uint16_t rte_eth_find_next(uint16_t port_id);
* Iterates over ethdev ports of a specified device. * Iterates over ethdev ports of a specified device.
* *
* @param port_id_start * @param port_id_start
* The id of the next possible valid port. * The ID of the next possible valid port.
* @param parent * @param parent
* The generic device behind the ports to iterate. * The generic device behind the ports to iterate.
* @return * @return
* Next port id of the device, possibly port_id_start, * Next port ID of the device, possibly port_id_start,
* RTE_MAX_ETHPORTS if there is none. * RTE_MAX_ETHPORTS if there is none.
*/ */
uint16_t uint16_t
@ -1914,7 +1914,7 @@ rte_eth_find_next_of(uint16_t port_id_start,
* Macro to iterate over all ethdev ports of a specified device. * Macro to iterate over all ethdev ports of a specified device.
* *
* @param port_id * @param port_id
* The id of the matching port being iterated. * The ID of the matching port being iterated.
* @param parent * @param parent
* The rte_device pointer matching the iterated ports. * The rte_device pointer matching the iterated ports.
*/ */
@ -1927,11 +1927,11 @@ rte_eth_find_next_of(uint16_t port_id_start,
* Iterates over sibling ethdev ports (i.e. sharing the same rte_device). * Iterates over sibling ethdev ports (i.e. sharing the same rte_device).
* *
* @param port_id_start * @param port_id_start
* The id of the next possible valid sibling port. * The ID of the next possible valid sibling port.
* @param ref_port_id * @param ref_port_id
* The id of a reference port to compare rte_device with. * The ID of a reference port to compare rte_device with.
* @return * @return
* Next sibling port id, possibly port_id_start or ref_port_id itself, * Next sibling port ID, possibly port_id_start or ref_port_id itself,
* RTE_MAX_ETHPORTS if there is none. * RTE_MAX_ETHPORTS if there is none.
*/ */
uint16_t uint16_t
@ -1943,9 +1943,9 @@ rte_eth_find_next_sibling(uint16_t port_id_start, uint16_t ref_port_id);
* Note: the specified reference port is part of the loop iterations. * Note: the specified reference port is part of the loop iterations.
* *
* @param port_id * @param port_id
* The id of the matching port being iterated. * The ID of the matching port being iterated.
* @param ref_port_id * @param ref_port_id
* The id of the port being compared. * The ID of the port being compared.
*/ */
#define RTE_ETH_FOREACH_DEV_SIBLING(port_id, ref_port_id) \ #define RTE_ETH_FOREACH_DEV_SIBLING(port_id, ref_port_id) \
for (port_id = rte_eth_find_next_sibling(0, ref_port_id); \ for (port_id = rte_eth_find_next_sibling(0, ref_port_id); \
@ -2414,7 +2414,7 @@ int rte_eth_hairpin_unbind(uint16_t tx_port, uint16_t rx_port);
* @param port_id * @param port_id
* The port identifier of the Ethernet device * The port identifier of the Ethernet device
* @return * @return
* The NUMA socket id to which the Ethernet device is connected or * The NUMA socket ID to which the Ethernet device is connected or
* a default of zero if the socket could not be determined. * a default of zero if the socket could not be determined.
* -1 is returned is the port_id value is out of range. * -1 is returned is the port_id value is out of range.
*/ */
@ -2576,7 +2576,7 @@ int rte_eth_dev_set_link_down(uint16_t port_id);
int rte_eth_dev_close(uint16_t port_id); int rte_eth_dev_close(uint16_t port_id);
/** /**
* Reset a Ethernet device and keep its port id. * Reset a Ethernet device and keep its port ID.
* *
* When a port has to be reset passively, the DPDK application can invoke * When a port has to be reset passively, the DPDK application can invoke
* this function. For example when a PF is reset, all its VFs should also * this function. For example when a PF is reset, all its VFs should also
@ -2587,7 +2587,7 @@ int rte_eth_dev_close(uint16_t port_id);
* When this function is called, it first stops the port and then calls the * When this function is called, it first stops the port and then calls the
* PMD specific dev_uninit( ) and dev_init( ) to return the port to initial * PMD specific dev_uninit( ) and dev_init( ) to return the port to initial
* state, in which no Tx and Rx queues are setup, as if the port has been * state, in which no Tx and Rx queues are setup, as if the port has been
* reset and not started. The port keeps the port id it had before the * reset and not started. The port keeps the port ID it had before the
* function call. * function call.
* *
* After calling rte_eth_dev_reset( ), the application should use * After calling rte_eth_dev_reset( ), the application should use
@ -2822,7 +2822,7 @@ int rte_eth_stats_reset(uint16_t port_id);
* is too small. The return value corresponds to the size that should * is too small. The return value corresponds to the size that should
* be given to succeed. The entries in the table are not valid and * be given to succeed. The entries in the table are not valid and
* shall not be used by the caller. * shall not be used by the caller.
* - A negative value on error (invalid port id). * - A negative value on error (invalid port ID).
*/ */
int rte_eth_xstats_get_names(uint16_t port_id, int rte_eth_xstats_get_names(uint16_t port_id,
struct rte_eth_xstat_name *xstats_names, struct rte_eth_xstat_name *xstats_names,
@ -2855,7 +2855,7 @@ int rte_eth_xstats_get_names(uint16_t port_id,
* is too small. The return value corresponds to the size that should * is too small. The return value corresponds to the size that should
* be given to succeed. The entries in the table are not valid and * be given to succeed. The entries in the table are not valid and
* shall not be used by the caller. * shall not be used by the caller.
* - A negative value on error (invalid port id). * - A negative value on error (invalid port ID).
*/ */
int rte_eth_xstats_get(uint16_t port_id, struct rte_eth_xstat *xstats, int rte_eth_xstats_get(uint16_t port_id, struct rte_eth_xstat *xstats,
unsigned int n); unsigned int n);
@ -3555,7 +3555,7 @@ typedef int (*rte_eth_dev_cb_fn)(uint16_t port_id,
* Register a callback function for port event. * Register a callback function for port event.
* *
* @param port_id * @param port_id
* Port id. * Port ID.
* RTE_ETH_ALL means register the event for all port ids. * RTE_ETH_ALL means register the event for all port ids.
* @param event * @param event
* Event interested. * Event interested.
@ -3576,7 +3576,7 @@ int rte_eth_dev_callback_register(uint16_t port_id,
* Unregister a callback function for port event. * Unregister a callback function for port event.
* *
* @param port_id * @param port_id
* Port id. * Port ID.
* RTE_ETH_ALL means unregister the event for all port ids. * RTE_ETH_ALL means unregister the event for all port ids.
* @param event * @param event
* Event interested. * Event interested.
@ -4008,7 +4008,7 @@ int rte_eth_dev_uc_all_hash_table_set(uint16_t port_id, uint8_t on);
* @param port_id * @param port_id
* The port identifier of the Ethernet device. * The port identifier of the Ethernet device.
* @param queue_idx * @param queue_idx
* The queue id. * The queue ID.
* @param tx_rate * @param tx_rate
* The Tx rate in Mbps. Allocated from the total port link speed. * The Tx rate in Mbps. Allocated from the total port link speed.
* @return * @return
@ -4710,7 +4710,7 @@ int
rte_eth_read_clock(uint16_t port_id, uint64_t *clock); rte_eth_read_clock(uint16_t port_id, uint64_t *clock);
/** /**
* Get the port id from device name. The device name should be specified * Get the port ID from device name. The device name should be specified
* as below: * as below:
* - PCIe address (Domain:Bus:Device.Function), for example- 0000:2:00.0 * - PCIe address (Domain:Bus:Device.Function), for example- 0000:2:00.0
* - SoC device name, for example- fsl-gmac0 * - SoC device name, for example- fsl-gmac0
@ -4728,7 +4728,7 @@ int
rte_eth_dev_get_port_by_name(const char *name, uint16_t *port_id); rte_eth_dev_get_port_by_name(const char *name, uint16_t *port_id);
/** /**
* Get the device name from port id. The device name is specified as below: * Get the device name from port ID. The device name is specified as below:
* - PCIe address (Domain:Bus:Device.Function), for example- 0000:02:00.0 * - PCIe address (Domain:Bus:Device.Function), for example- 0000:02:00.0
* - SoC device name, for example- fsl-gmac0 * - SoC device name, for example- fsl-gmac0
* - vdev dpdk name, for example- net_[pcap0|null0|tun0|tap0] * - vdev dpdk name, for example- net_[pcap0|null0|tun0|tap0]
@ -5106,7 +5106,7 @@ rte_eth_rx_burst(uint16_t port_id, uint16_t queue_id,
* @param port_id * @param port_id
* The port identifier of the Ethernet device. * The port identifier of the Ethernet device.
* @param queue_id * @param queue_id
* The queue id on the specific port. * The queue ID on the specific port.
* @return * @return
* The number of used descriptors in the specific queue, or: * The number of used descriptors in the specific queue, or:
* - (-ENODEV) if *port_id* is invalid. * - (-ENODEV) if *port_id* is invalid.
@ -5456,7 +5456,7 @@ rte_eth_tx_burst(uint16_t port_id, uint16_t queue_id,
* *
* @param port_id * @param port_id
* The port identifier of the Ethernet device. * The port identifier of the Ethernet device.
* The value must be a valid port id. * The value must be a valid port ID.
* @param queue_id * @param queue_id
* The index of the transmit queue through which output packets must be * The index of the transmit queue through which output packets must be
* sent. * sent.

View File

@ -2804,12 +2804,12 @@ struct rte_flow_query_age {
* Adds a counter action to a matched flow. * Adds a counter action to a matched flow.
* *
* If more than one count action is specified in a single flow rule, then each * If more than one count action is specified in a single flow rule, then each
* action must specify a unique id. * action must specify a unique ID.
* *
* Counters can be retrieved and reset through ``rte_flow_query()``, see * Counters can be retrieved and reset through ``rte_flow_query()``, see
* ``struct rte_flow_query_count``. * ``struct rte_flow_query_count``.
* *
* For ports within the same switch domain then the counter id namespace extends * For ports within the same switch domain then the counter ID namespace extends
* to all ports within that switch domain. * to all ports within that switch domain.
*/ */
struct rte_flow_action_count { struct rte_flow_action_count {