vhost: expose register and start functions
authorHuawei Xie <huawei.xie@intel.com>
Wed, 8 Oct 2014 18:54:49 +0000 (02:54 +0800)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Mon, 13 Oct 2014 17:16:54 +0000 (19:16 +0200)
Rename register_cuse_device as rte_vhost_driver_register API.
Rename start_session_loop as rte_vhost_driver_session_start API.

Signed-off-by: Huawei Xie <huawei.xie@intel.com>
Acked-by: Changchun Ouyang <changchun.ouyang@intel.com>
lib/librte_vhost/vhost-net-cdev.c
lib/librte_vhost/vhost-net-cdev.h

index 4eeb676..d9d24bc 100644 (file)
@@ -302,7 +302,7 @@ static const struct cuse_lowlevel_ops vhost_net_ops = {
  * also passed when the device is registered in main.c.
  */
 int
-register_cuse_device(const char *base_name)
+rte_vhost_driver_register(const char *dev_name)
 {
        struct cuse_info cuse_info;
        char device_name[PATH_MAX] = "";
@@ -353,7 +353,7 @@ register_cuse_device(const char *base_name)
  * The CUSE session is launched allowing the application to receive open, release and ioctl calls.
  */
 int
-start_cuse_session_loop(void)
+rte_vhost_driver_session_start(void)
 {
        fuse_session_loop(session);
 
index 0db8f0a..fa67caf 100644 (file)
@@ -77,8 +77,6 @@ struct vhost_net_device_ops {
        int (* reset_owner)     (struct vhost_device_ctx);
 };
 
-int register_cuse_device(const char *base_name, int index, struct vhost_net_device_ops const * const);
-int start_cuse_session_loop(void);
 
 struct vhost_net_device_ops const *get_virtio_net_callbacks(void);
 #endif /* _VHOST_NET_CDEV_H_ */