Commit 4bca12f1 authored by Seth Howell's avatar Seth Howell Committed by Tomasz Zawadzki
Browse files

lib and module: remove remaining _spdk prefixes.

parent 57c2b0c5
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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;
}

+3 −3
Original line number Diff line number Diff line
@@ -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);
+2 −2
Original line number Diff line number Diff line
@@ -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