bdev/nvme: Shorten the name of hot inserted NVMe device.

Make sure the name will not exceed the length of SPDK_BDEV_MAX_NAME_LENGTH.

Change-Id: I33a3f10c836e650fdcb578c7d9e58169d9bb766a
Signed-off-by: Cunyin Chang <cunyin.chang@intel.com>
This commit is contained in:
Cunyin Chang 2017-03-27 15:04:00 +08:00 committed by Jim Harris
parent e5a3193b80
commit 321d28ef02

View File

@ -589,7 +589,7 @@ attach_cb(void *cb_ctx, const struct spdk_nvme_transport_id *trid,
}
}
} else {
name = spdk_sprintf_alloc("HotInsertNvme%d", g_hot_insert_nvme_controller_index++);
name = spdk_sprintf_alloc("HotInNvme%d", g_hot_insert_nvme_controller_index++);
}
if (!name) {
SPDK_ERRLOG("Failed to assign name to NVMe device\n");