rocksdb: fix thread name typo

Change-Id: Ica0eff7268c227dac5fc3491b6894cd34ecea034
Signed-off-by: Liu Xiaodong <xiaodong.liu@intel.com>
Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/9384
Tested-by: SPDK CI Jenkins <sys_sgci@intel.com>
Community-CI: Broadcom CI <spdk-ci.pdl@broadcom.com>
Community-CI: Mellanox Build Bot
Reviewed-by: Changpeng Liu <changpeng.liu@intel.com>
Reviewed-by: Tomasz Zawadzki <tomasz.zawadzki@intel.com>
This commit is contained in:
Liu Xiaodong 2021-09-03 05:28:48 -04:00 committed by Tomasz Zawadzki
parent 7ebcd64889
commit de1df7a17d

View File

@ -90,7 +90,7 @@ set_channel()
struct spdk_thread *thread;
if (g_fs != NULL && g_sync_args.channel == NULL) {
thread = spdk_thread_create("spdK_rocksdb", NULL);
thread = spdk_thread_create("spdk_rocksdb", NULL);
spdk_set_thread(thread);
g_sync_args.channel = spdk_fs_alloc_thread_ctx(g_fs);
}