From: Minwoo Im Date: Wed, 10 Feb 2021 12:27:01 +0000 (+0900) Subject: nvme: remove spurious command show 'rsvd' X-Git-Tag: v1.14~84 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=1977fbf29d1908997c546b678d53904fc8ba422e;p=users%2Fsagi%2Fnvme-cli.git nvme: remove spurious command show 'rsvd' Remove spurious showing attribute 'rsvd'. This even is not from the user input. Signed-off-by: Minwoo Im --- diff --git a/nvme.c b/nvme.c index 07416980..31fe1bb9 100644 --- a/nvme.c +++ b/nvme.c @@ -4657,7 +4657,6 @@ static int submit_io(int opcode, char *command, const char *desc, printf("flags : %02x\n", 0); printf("control : %04x\n", control); printf("nblocks : %04x\n", cfg.block_count); - printf("rsvd : %04x\n", 0); printf("metadata : %"PRIx64"\n", (uint64_t)(uintptr_t)mbuffer); printf("addr : %"PRIx64"\n", (uint64_t)(uintptr_t)buffer); printf("slba : %"PRIx64"\n", (uint64_t)cfg.start_block);