From 8175ef2944cb5679b33f0365aed720b636fa11ef Mon Sep 17 00:00:00 2001 From: Karol Latecki Date: Fri, 4 Feb 2022 11:59:42 +0100 Subject: [PATCH] pkgdep/git: bump up nvme-cli version to 1.16 spdk_nvme_cli_cuse.sh fails with: ``` NVMe status: DATA_XFER_ERROR: Error while trying to transfer the data or metadata(0x2004) ``` when running test with v1.15 version. v1.16 works just fine. Fixes #2361 Signed-off-by: Karol Latecki Change-Id: Ic058d652d1a8f7adc05fefbad58a5e24d31f2cc8 Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/11408 Tested-by: SPDK CI Jenkins Community-CI: Broadcom CI Reviewed-by: Pawel Piatek Reviewed-by: Konrad Sztyber Reviewed-by: Jim Harris --- test/common/config/pkgdep/git | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/common/config/pkgdep/git b/test/common/config/pkgdep/git index 0ea0342f4..8099f6b95 100644 --- a/test/common/config/pkgdep/git +++ b/test/common/config/pkgdep/git @@ -312,7 +312,7 @@ function install_nvmecli() { if [[ ! -d $GIT_REPOS/nvme-cli-cuse ]]; then git clone "https://github.com/linux-nvme/nvme-cli.git" "$GIT_REPOS/nvme-cli-cuse" fi - git -C "$GIT_REPOS/nvme-cli-cuse" checkout v1.15 + git -C "$GIT_REPOS/nvme-cli-cuse" checkout v1.16 make -C "$GIT_REPOS/nvme-cli-cuse" CPPFLAGS="-Wno-error=maybe-uninitialized" sudo mv "$GIT_REPOS/nvme-cli-cuse" /usr/local/src/nvme-cli fi