vhost: rename ops registering function
authorHuawei Xie <huawei.xie@intel.com>
Wed, 8 Oct 2014 18:54:50 +0000 (02:54 +0800)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Mon, 13 Oct 2014 17:16:54 +0000 (19:16 +0200)
Rename init_virtio_net as rte_vhost_callback_register API.
rte_vhost_callback_register register the callbacks called when a
vhost device is created and ready to be added to data processing core
or is de-actived by guest.

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

index 0a38e4d..0e9c473 100644 (file)
@@ -119,8 +119,6 @@ struct virtio_net_device_ops {
        void (* destroy_device) (volatile struct virtio_net *); /* Remove device. */
 };
 
-int init_virtio_net(struct virtio_net_device_ops const * const);
-int deinit_virtio_net(void);
 
 /**
  * Function to convert guest physical addresses to vhost virtual addresses.
@@ -147,6 +145,8 @@ gpa_to_vva(struct virtio_net *dev, uint64_t guest_pa)
 /* Register vhost driver. dev_name could be different for multiple instance support. */
 int rte_vhost_driver_register(const char *dev_name);
 
+/* Register callbacks. */
+int rte_vhost_driver_callback_register(struct virtio_net_device_ops const * const);
 /* Start vhost driver session blocking loop. */
 int rte_vhost_driver_session_start(void);
 
index ee37a40..14e657b 100644 (file)
@@ -964,18 +964,9 @@ get_virtio_net_callbacks(void)
  * Register ops so that we can add/remove device to data core.
  */
 int
-init_virtio_net(struct virtio_net_device_ops const * const ops)
+rte_vhost_driver_callback_register(struct virtio_net_device_ops const * const ops)
 {
        notify_ops = ops;
 
        return 0;
 }
-
-/*
- * Currently not used as we Ctrl+c to exit application.
- */
-int
-deinit_virtio_net(void)
-{
-       return 0;
-}