X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=lib%2Fethdev%2Frte_ethdev.h;h=bef24173cfe7a257f1796e060b9327c004386d84;hb=afc664e83b29a0952ec216eb1384cd11790595e1;hp=29258455178e35451342ca5ece6b227a2f55a938;hpb=97d7b92772603602fed376b6bcf50d55721c659e;p=dpdk.git diff --git a/lib/ethdev/rte_ethdev.h b/lib/ethdev/rte_ethdev.h index 2925845517..bef24173cf 100644 --- a/lib/ethdev/rte_ethdev.h +++ b/lib/ethdev/rte_ethdev.h @@ -1894,9 +1894,6 @@ uint16_t rte_eth_find_next(uint16_t port_id); RTE_ETH_FOREACH_DEV_OWNED_BY(p, RTE_ETH_DEV_NO_OWNER) /** - * @warning - * @b EXPERIMENTAL: this API may change without prior notice. - * * Iterates over ethdev ports of a specified device. * * @param port_id_start @@ -1907,7 +1904,6 @@ uint16_t rte_eth_find_next(uint16_t port_id); * Next port id of the device, possibly port_id_start, * RTE_MAX_ETHPORTS if there is none. */ -__rte_experimental uint16_t rte_eth_find_next_of(uint16_t port_id_start, const struct rte_device *parent); @@ -1926,9 +1922,6 @@ rte_eth_find_next_of(uint16_t port_id_start, port_id = rte_eth_find_next_of(port_id + 1, parent)) /** - * @warning - * @b EXPERIMENTAL: this API may change without prior notice. - * * Iterates over sibling ethdev ports (i.e. sharing the same rte_device). * * @param port_id_start @@ -1939,7 +1932,6 @@ rte_eth_find_next_of(uint16_t port_id_start, * Next sibling port id, possibly port_id_start or ref_port_id itself, * RTE_MAX_ETHPORTS if there is none. */ -__rte_experimental uint16_t rte_eth_find_next_sibling(uint16_t port_id_start, uint16_t ref_port_id); @@ -4353,7 +4345,6 @@ int rte_eth_tx_queue_info_get(uint16_t port_id, uint16_t queue_id, * - -ENOTSUP: routine is not supported by the device PMD. * - -EINVAL: The queue_id is out of range. */ -__rte_experimental int rte_eth_rx_burst_mode_get(uint16_t port_id, uint16_t queue_id, struct rte_eth_burst_mode *mode); @@ -4375,7 +4366,6 @@ int rte_eth_rx_burst_mode_get(uint16_t port_id, uint16_t queue_id, * - -ENOTSUP: routine is not supported by the device PMD. * - -EINVAL: The queue_id is out of range. */ -__rte_experimental int rte_eth_tx_burst_mode_get(uint16_t port_id, uint16_t queue_id, struct rte_eth_burst_mode *mode);