From 8a3042b714b36ad9b55bff1d2f62997e8aa832b1 Mon Sep 17 00:00:00 2001 From: Maciej Szwed Date: Wed, 15 Jan 2020 11:05:18 +0100 Subject: [PATCH] bdev/nvme: Fix comments in nvme_bdev_io structure Signed-off-by: Maciej Szwed Change-Id: I04b310a9f50c1728b9cd260517591c5e9108cc95 Reviewed-on: https://review.gerrithub.io/c/spdk/spdk/+/481673 Tested-by: SPDK CI Jenkins Community-CI: Broadcom SPDK FC-NVMe CI Reviewed-by: Jim Harris Reviewed-by: Shuhei Matsumoto --- module/bdev/nvme/bdev_nvme.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/module/bdev/nvme/bdev_nvme.c b/module/bdev/nvme/bdev_nvme.c index 3810f2380..9ea0aa80d 100644 --- a/module/bdev/nvme/bdev_nvme.c +++ b/module/bdev/nvme/bdev_nvme.c @@ -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; };