net/dpaa: remove experimental tag from PMD API
Signed-off-by: Hemant Agrawal <hemant.agrawal@nxp.com> Acked-by: Shreyansh Jain <shreyansh.jain@nxp.com>
This commit is contained in:
parent
8d6fc8b67e
commit
1e06b6dc71
@ -617,7 +617,7 @@ int dpaa_eth_rx_queue_setup(struct rte_eth_dev *dev, uint16_t queue_idx,
|
||||
return 0;
|
||||
}
|
||||
|
||||
int __rte_experimental
|
||||
int
|
||||
dpaa_eth_eventq_attach(const struct rte_eth_dev *dev,
|
||||
int eth_rx_queue_id,
|
||||
u16 ch_id,
|
||||
@ -680,7 +680,7 @@ dpaa_eth_eventq_attach(const struct rte_eth_dev *dev,
|
||||
return ret;
|
||||
}
|
||||
|
||||
int __rte_experimental
|
||||
int
|
||||
dpaa_eth_eventq_detach(const struct rte_eth_dev *dev,
|
||||
int eth_rx_queue_id)
|
||||
{
|
||||
@ -956,7 +956,7 @@ is_dpaa_supported(struct rte_eth_dev *dev)
|
||||
return is_device_supported(dev, &rte_dpaa_pmd);
|
||||
}
|
||||
|
||||
int __rte_experimental
|
||||
int
|
||||
rte_pmd_dpaa_set_tx_loopback(uint8_t port, uint8_t on)
|
||||
{
|
||||
struct rte_eth_dev *dev;
|
||||
|
@ -160,12 +160,14 @@ struct dpaa_if_stats {
|
||||
uint64_t tund; /**<Tx Undersized */
|
||||
};
|
||||
|
||||
int __rte_experimental dpaa_eth_eventq_attach(const struct rte_eth_dev *dev,
|
||||
int eth_rx_queue_id,
|
||||
int
|
||||
dpaa_eth_eventq_attach(const struct rte_eth_dev *dev,
|
||||
int eth_rx_queue_id,
|
||||
u16 ch_id,
|
||||
const struct rte_event_eth_rx_adapter_queue_conf *queue_conf);
|
||||
|
||||
int __rte_experimental dpaa_eth_eventq_detach(const struct rte_eth_dev *dev,
|
||||
int
|
||||
dpaa_eth_eventq_detach(const struct rte_eth_dev *dev,
|
||||
int eth_rx_queue_id);
|
||||
|
||||
enum qman_cb_dqrr_result
|
||||
|
@ -18,9 +18,6 @@
|
||||
#include <rte_ethdev_driver.h>
|
||||
|
||||
/**
|
||||
* @warning
|
||||
* @b EXPERIMENTAL: this API may change, or be removed, without prior notice
|
||||
*
|
||||
* Enable/Disable TX loopback
|
||||
*
|
||||
* @param port
|
||||
@ -33,7 +30,7 @@
|
||||
* - (-ENODEV) if *port* invalid.
|
||||
* - (-EINVAL) if bad parameter.
|
||||
*/
|
||||
int __rte_experimental
|
||||
int
|
||||
rte_pmd_dpaa_set_tx_loopback(uint8_t port, uint8_t on);
|
||||
|
||||
#endif /* _PMD_DPAA_H_ */
|
||||
|
@ -3,10 +3,10 @@ DPDK_17.11 {
|
||||
local: *;
|
||||
};
|
||||
|
||||
EXPERIMENTAL {
|
||||
DPDK_18.08 {
|
||||
global:
|
||||
|
||||
dpaa_eth_eventq_attach;
|
||||
dpaa_eth_eventq_detach;
|
||||
rte_pmd_dpaa_set_tx_loopback;
|
||||
};
|
||||
} DPDK_17.11;
|
||||
|
Loading…
Reference in New Issue
Block a user