examples/nvme: report fused operations in indentify example

Change-Id: I401078cffd3b328fd784d55882fca0fff6646ce0
Signed-off-by: Tomasz Kulasek <tomaszx.kulasek@intel.com>
Reviewed-on: https://review.gerrithub.io/c/spdk/spdk/+/476770
Reviewed-by: Tomasz Zawadzki <tomasz.zawadzki@intel.com>
Reviewed-by: Paul Luse <paul.e.luse@intel.com>
Reviewed-by: Changpeng Liu <changpeng.liu@intel.com>
Reviewed-by: Shuhei Matsumoto <shuhei.matsumoto.xt@hitachi.com>
Reviewed-by: Jim Harris <james.r.harris@intel.com>
Community-CI: SPDK CI Jenkins <sys_sgci@intel.com>
Tested-by: SPDK CI Jenkins <sys_sgci@intel.com>
This commit is contained in:
Tomasz Kulasek 2019-12-03 09:32:56 -05:00 committed by Tomasz Zawadzki
parent 535dd2ec9b
commit d5ee14af37

View File

@ -1129,6 +1129,8 @@ print_controller(struct spdk_nvme_ctrlr *ctrlr, const struct spdk_nvme_transport
printf("Atomic Write Unit (Normal): %d\n", cdata->awun + 1);
printf("Atomic Write Unit (PFail): %d\n", cdata->awupf + 1);
printf("Atomic Compare & Write Unit: %d\n", cdata->acwu + 1);
printf("Fused Compare & Write: %s\n",
cdata->fuses.compare_and_write ? "Supported" : "Not Supported");
printf("Scatter-Gather List\n");
printf(" SGL Command Set: %s\n",
cdata->sgls.supported == SPDK_NVME_SGLS_SUPPORTED ? "Supported" :