lib and module: remove remaining _spdk prefixes.
Signed-off-by: Seth Howell <seth.howell@intel.com> Change-Id: I84ae9fd59ea6472762083aae88ed50a20a28eceb Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/2463 Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Ben Walker <benjamin.walker@intel.com> Reviewed-by: Aleksey Marchuk <alexeymar@mellanox.com> Reviewed-by: Shuhei Matsumoto <shuhei.matsumoto.xt@hitachi.com>
This commit is contained in:
parent
57c2b0c5a3
commit
4bca12f1fe
@ -1538,7 +1538,7 @@ out:
|
||||
}
|
||||
|
||||
static void
|
||||
_spdk_vhost_fini(void *arg1)
|
||||
vhost_fini(void *arg1)
|
||||
{
|
||||
struct spdk_vhost_dev *vdev, *tmp;
|
||||
|
||||
@ -1571,7 +1571,7 @@ session_shutdown(void *arg)
|
||||
}
|
||||
|
||||
SPDK_INFOLOG(SPDK_LOG_VHOST, "Exiting\n");
|
||||
spdk_thread_send_msg(g_vhost_init_thread, _spdk_vhost_fini, NULL);
|
||||
spdk_thread_send_msg(g_vhost_init_thread, vhost_fini, NULL);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
@ -255,7 +255,7 @@ vbdev_error_base_bdev_hotremove_cb(void *_part_base)
|
||||
}
|
||||
|
||||
static int
|
||||
_spdk_vbdev_error_create(struct spdk_bdev *base_bdev)
|
||||
_vbdev_error_create(struct spdk_bdev *base_bdev)
|
||||
{
|
||||
struct spdk_bdev_part_base *base = NULL;
|
||||
struct error_disk *disk = NULL;
|
||||
@ -321,7 +321,7 @@ vbdev_error_create(const char *base_bdev_name)
|
||||
return 0;
|
||||
}
|
||||
|
||||
rc = _spdk_vbdev_error_create(base_bdev);
|
||||
rc = _vbdev_error_create(base_bdev);
|
||||
if (rc != 0) {
|
||||
vbdev_error_config_remove(base_bdev_name);
|
||||
SPDK_ERRLOG("Could not create ErrorInjection bdev %s (rc=%d)\n",
|
||||
@ -478,7 +478,7 @@ vbdev_error_examine(struct spdk_bdev *bdev)
|
||||
|
||||
cfg = vbdev_error_config_find_by_base_name(bdev->name);
|
||||
if (cfg != NULL) {
|
||||
rc = _spdk_vbdev_error_create(bdev);
|
||||
rc = _vbdev_error_create(bdev);
|
||||
if (rc != 0) {
|
||||
SPDK_ERRLOG("could not create error vbdev for bdev %s at examine\n",
|
||||
bdev->name);
|
||||
|
@ -887,7 +887,7 @@ static struct spdk_bdev_fn_table vbdev_lvol_fn_table = {
|
||||
};
|
||||
|
||||
static void
|
||||
_spdk_lvol_destroy_cb(void *cb_arg, int bdeverrno)
|
||||
lvol_destroy_cb(void *cb_arg, int bdeverrno)
|
||||
{
|
||||
}
|
||||
|
||||
@ -902,7 +902,7 @@ _create_lvol_disk_destroy_cb(void *cb_arg, int bdeverrno)
|
||||
return;
|
||||
}
|
||||
|
||||
spdk_lvol_destroy(lvol, _spdk_lvol_destroy_cb, NULL);
|
||||
spdk_lvol_destroy(lvol, lvol_destroy_cb, NULL);
|
||||
}
|
||||
|
||||
static void
|
||||
|
Loading…
Reference in New Issue
Block a user