bdev/nvme: Fix comments in nvme_bdev_io structure

Signed-off-by: Maciej Szwed <maciej.szwed@intel.com>
Change-Id: I04b310a9f50c1728b9cd260517591c5e9108cc95

Reviewed-on: https://review.gerrithub.io/c/spdk/spdk/+/481673
Tested-by: SPDK CI Jenkins <sys_sgci@intel.com>
Community-CI: Broadcom SPDK FC-NVMe CI <spdk-ci.pdl@broadcom.com>
Reviewed-by: Jim Harris <james.r.harris@intel.com>
Reviewed-by: Shuhei Matsumoto <shuhei.matsumoto.xt@hitachi.com>
This commit is contained in:
Maciej Szwed 2020-01-15 11:05:18 +01:00 committed by Tomasz Zawadzki
parent 9a80e954f7
commit 8a3042b714

View File

@ -69,13 +69,13 @@ struct nvme_bdev_io {
/** Offset in current iovec. */
uint32_t iov_offset;
/** Saved status for admin passthru completion event or PI error verification. */
/** Saved status for admin passthru completion event, PI error verification, or intermediate compare-and-write status */
struct spdk_nvme_cpl cpl;
/** Originating thread */
struct spdk_thread *orig_thread;
/** Intermediate compare-and-write status */
/** Keeps track if first of fused commands was submitted */
bool first_fused_submitted;
};