Commit e9ff4753 authored by Jim Harris's avatar Jim Harris Committed by Konrad Sztyber
Browse files

nvme: fix ERRLOG typo in nvme_pcie_poll_group_get_stats.



This is PCIe code, not RDMA.  Just remove RDMA,
it is obvious from function name what kind of poll
group this is.

Signed-off-by: default avatarJim Harris <james.r.harris@intel.com>
Change-Id: I4792d1ff035e0f4f9fb4aee4fabb6ddc935c14f7
Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/17671


Community-CI: Mellanox Build Bot
Reviewed-by: default avatarShuhei Matsumoto <smatsumoto@nvidia.com>
Reviewed-by: default avatarKonrad Sztyber <konrad.sztyber@intel.com>
Tested-by: default avatarSPDK CI Jenkins <sys_sgci@intel.com>
parent 0aef7f2a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1797,7 +1797,7 @@ nvme_pcie_poll_group_get_stats(struct spdk_nvme_transport_poll_group *tgroup,

	stats = calloc(1, sizeof(*stats));
	if (!stats) {
		SPDK_ERRLOG("Can't allocate memory for RDMA stats\n");
		SPDK_ERRLOG("Can't allocate memory for stats\n");
		return -ENOMEM;
	}
	stats->trtype = SPDK_NVME_TRANSPORT_PCIE;