bdev/nvme: convert probe messages to TRACELOGs

Also add a message when a controller is attached and assigned a name.

Change-Id: I54f2d711d55ba7ae99913fdfea652770b1f8931d
Signed-off-by: Daniel Verkamp <daniel.verkamp@intel.com>
This commit is contained in:
Daniel Verkamp 2017-03-30 10:59:25 -07:00 committed by Jim Harris
parent 7254f2b639
commit d55c3b8f8a

View File

@ -516,7 +516,7 @@ static bool
hotplug_probe_cb(void *cb_ctx, const struct spdk_nvme_transport_id *trid, hotplug_probe_cb(void *cb_ctx, const struct spdk_nvme_transport_id *trid,
struct spdk_nvme_ctrlr_opts *opts) struct spdk_nvme_ctrlr_opts *opts)
{ {
SPDK_NOTICELOG("Attaching to %s\n", trid->traddr); SPDK_TRACELOG(SPDK_TRACE_BDEV_NVME, "Attaching to %s\n", trid->traddr);
return true; return true;
} }
@ -529,7 +529,7 @@ probe_cb(void *cb_ctx, const struct spdk_nvme_transport_id *trid,
size_t i; size_t i;
bool claim_device = false; bool claim_device = false;
SPDK_NOTICELOG("Probing device %s\n", trid->traddr); SPDK_TRACELOG(SPDK_TRACE_BDEV_NVME, "Probing device %s\n", trid->traddr);
for (i = 0; i < ctx->count; i++) { for (i = 0; i < ctx->count; i++) {
if (spdk_nvme_transport_id_compare(trid, &ctx->trids[i]) == 0) { if (spdk_nvme_transport_id_compare(trid, &ctx->trids[i]) == 0) {
@ -539,7 +539,7 @@ probe_cb(void *cb_ctx, const struct spdk_nvme_transport_id *trid,
} }
if (!claim_device) { if (!claim_device) {
SPDK_ERRLOG("Not claiming device at %s\n", trid->traddr); SPDK_TRACELOG(SPDK_TRACE_BDEV_NVME, "Not claiming device at %s\n", trid->traddr);
return false; return false;
} }
@ -596,6 +596,8 @@ attach_cb(void *cb_ctx, const struct spdk_nvme_transport_id *trid,
return; return;
} }
SPDK_TRACELOG(SPDK_TRACE_BDEV_NVME, "Attached to %s (%s)\n", trid->traddr, name);
nvme_ctrlr = calloc(1, sizeof(*nvme_ctrlr)); nvme_ctrlr = calloc(1, sizeof(*nvme_ctrlr));
if (nvme_ctrlr == NULL) { if (nvme_ctrlr == NULL) {
SPDK_ERRLOG("Failed to allocate device struct\n"); SPDK_ERRLOG("Failed to allocate device struct\n");