* ``_rte_eth_dev_callback_process()`` -> ``rte_eth_dev_callback_process()``
* ``_rte_eth_dev_reset`` -> ``rte_eth_dev_internal_reset()``
+* vhost: Moved vDPA APIs from experimental to stable.
+
* rawdev: Added a structure size parameter to the functions
``rte_rawdev_queue_setup()``, ``rte_rawdev_queue_conf_get()``,
``rte_rawdev_info_get()`` and ``rte_rawdev_configure()``,
};
/**
- * @warning
- * @b EXPERIMENTAL: this API may change without prior notice
- *
* Find the device id of a vdpa device from its name
*
* @param name
* @return
* vDPA device pointer on success, NULL on failure
*/
-__rte_experimental
struct rte_vdpa_device *
rte_vdpa_find_device_by_name(const char *name);
/**
- * @warning
- * @b EXPERIMENTAL: this API may change without prior notice
- *
* Get the generic device from the vdpa device
*
* @param vdpa_dev
* @return
* generic device pointer on success, NULL on failure
*/
-__rte_experimental
struct rte_device *
rte_vdpa_get_rte_device(struct rte_vdpa_device *vdpa_dev);
/**
- * @warning
- * @b EXPERIMENTAL: this API may change without prior notice
- *
* Get number of queue pairs supported by the vDPA device
*
* @param dev
* @return
* 0 on success, -1 on failure
*/
-__rte_experimental
int
rte_vdpa_get_queue_num(struct rte_vdpa_device *dev, uint32_t *queue_num);
/**
- * @warning
- * @b EXPERIMENTAL: this API may change without prior notice
- *
* Get the Virtio features supported by the vDPA device
*
* @param dev
* @return
* 0 on success, -1 on failure
*/
-__rte_experimental
int
rte_vdpa_get_features(struct rte_vdpa_device *dev, uint64_t *features);
/**
- * @warning
- * @b EXPERIMENTAL: this API may change without prior notice
- *
* Get the Vhost-user protocol features supported by the vDPA device
*
* @param dev
* @return
* 0 on success, -1 on failure
*/
-__rte_experimental
int
rte_vdpa_get_protocol_features(struct rte_vdpa_device *dev, uint64_t *features);
/**
- * @warning
- * @b EXPERIMENTAL: this API may change without prior notice
- *
* Synchronize the used ring from mediated ring to guest, log dirty
* page for each writeable buffer, caller should handle the used
* ring logging before device stop.
* @return
* number of synced used entries on success, -1 on failure
*/
-__rte_experimental
int
rte_vdpa_relay_vring_used(int vid, uint16_t qid, void *vring_m);
/**
- * @warning
- * @b EXPERIMENTAL: this API may change without prior notice
- *
* Retrieve names of statistics of a vDPA device.
*
* There is an assumption that 'stat_names' and 'stats' arrays are matched
* A negative value on error, otherwise the number of entries filled in the
* stats name array.
*/
-__rte_experimental
int
rte_vdpa_get_stats_names(struct rte_vdpa_device *dev,
struct rte_vdpa_stat_name *stats_names,
unsigned int size);
/**
- * @warning
- * @b EXPERIMENTAL: this API may change without prior notice
- *
* Retrieve statistics of a vDPA device.
*
* There is an assumption that 'stat_names' and 'stats' arrays are matched
* A negative value on error, otherwise the number of entries filled in the
* stats table.
*/
-__rte_experimental
int
rte_vdpa_get_stats(struct rte_vdpa_device *dev, uint16_t qid,
struct rte_vdpa_stat *stats, unsigned int n);
/**
- * @warning
- * @b EXPERIMENTAL: this API may change without prior notice
- *
* Reset statistics of a vDPA device.
*
* @param dev
* @return
* 0 on success, a negative value on error.
*/
-__rte_experimental
int
rte_vdpa_reset_stats(struct rte_vdpa_device *dev, uint16_t qid);
#endif /* _RTE_VDPA_H_ */
};
/**
- * @warning
- * @b EXPERIMENTAL: this API may change without prior notice
- *
* Register a vdpa device
*
* @param rte_dev
* @return
* vDPA device pointer on success, NULL on failure
*/
-__rte_experimental
struct rte_vdpa_device *
rte_vdpa_register_device(struct rte_device *rte_dev,
struct rte_vdpa_dev_ops *ops);
/**
- * @warning
- * @b EXPERIMENTAL: this API may change without prior notice
- *
* Unregister a vdpa device
*
* @param dev
* @return
* device id on success, -1 on failure
*/
-__rte_experimental
int
rte_vdpa_unregister_device(struct rte_vdpa_device *dev);
/**
- * @warning
- * @b EXPERIMENTAL: this API may change without prior notice
- *
* Enable/Disable host notifier mapping for a vdpa port.
*
* @param vid
* @return
* 0 on success, -1 on failure
*/
-__rte_experimental
int
rte_vhost_host_notifier_ctrl(int vid, uint16_t qid, bool enable);
/**
- * @warning
- * @b EXPERIMENTAL: this API may change without prior notice
- *
* Synchronize the used ring from mediated ring to guest, log dirty
* page for each writeable buffer, caller should handle the used
* ring logging before device stop.
* @return
* number of synced used entries on success, -1 on failure
*/
-__rte_experimental
int
rte_vdpa_relay_vring_used(int vid, uint16_t qid, void *vring_m);
* @return
* 0 on success, -1 on failure
*/
-__rte_experimental
int
rte_vhost_driver_attach_vdpa_device(const char *path,
struct rte_vdpa_device *dev);
* @return
* 0 on success, -1 on failure
*/
-__rte_experimental
int
rte_vhost_driver_detach_vdpa_device(const char *path);
* @return
* vDPA device pointer, NULL on failure
*/
-__rte_experimental
struct rte_vdpa_device *
rte_vhost_driver_get_vdpa_device(const char *path);
* @return
* 0 on success, -1 on failure
*/
-__rte_experimental
int
rte_vhost_get_log_base(int vid, uint64_t *log_base, uint64_t *log_size);
* @return
* 0 on success, -1 on failure
*/
-__rte_experimental
int
rte_vhost_get_vring_base(int vid, uint16_t queue_id,
uint16_t *last_avail_idx, uint16_t *last_used_idx);
* @return
* 0 on success, -1 on failure
*/
-__rte_experimental
int
rte_vhost_set_vring_base(int vid, uint16_t queue_id,
uint16_t last_avail_idx, uint16_t last_used_idx);
* @return
* vDPA device pointer on success, NULL on failure
*/
-__rte_experimental
struct rte_vdpa_device *
rte_vhost_get_vdpa_device(int vid);
rte_vhost_log_write;
rte_vhost_rx_queue_count;
rte_vhost_vring_call;
-
- local: *;
-};
-
-EXPERIMENTAL {
- global:
-
+ rte_vhost_get_log_base;
+ rte_vhost_get_vring_base;
+ rte_vhost_set_vring_base;
+ rte_vhost_host_notifier_ctrl;
rte_vdpa_register_device;
rte_vdpa_unregister_device;
rte_vdpa_get_stats_names;
rte_vhost_driver_detach_vdpa_device;
rte_vhost_driver_get_vdpa_device;
rte_vhost_get_vdpa_device;
+ rte_vdpa_find_device_by_name;
+ rte_vdpa_get_rte_device;
+ rte_vdpa_get_queue_num;
+ rte_vdpa_get_features;
+ rte_vdpa_get_protocol_features;
+ rte_vdpa_relay_vring_used;
+
+ local: *;
+};
+
+EXPERIMENTAL {
+ global:
+
rte_vhost_driver_get_protocol_features;
rte_vhost_driver_get_queue_num;
- rte_vhost_get_log_base;
- rte_vhost_get_vring_base;
- rte_vhost_set_vring_base;
rte_vhost_crypto_create;
rte_vhost_crypto_free;
rte_vhost_crypto_fetch_requests;
rte_vhost_crypto_finalize_requests;
rte_vhost_crypto_set_zero_copy;
rte_vhost_va_from_guest_pa;
- rte_vhost_host_notifier_ctrl;
- rte_vdpa_relay_vring_used;
rte_vhost_extern_callback_register;
rte_vhost_driver_set_protocol_features;
rte_vhost_set_inflight_desc_split;
rte_vhost_get_vhost_ring_inflight;
rte_vhost_get_vring_base_from_inflight;
rte_vhost_slave_config_change;
- rte_vdpa_find_device_by_name;
- rte_vdpa_get_rte_device;
- rte_vdpa_get_queue_num;
- rte_vdpa_get_features;
- rte_vdpa_get_protocol_features;
rte_vhost_async_channel_register;
rte_vhost_async_channel_unregister;
rte_vhost_submit_enqueue_burst;