Commit c6389845 authored by Minwoo Im's avatar Minwoo Im Committed by Sagi Grimberg
Browse files

nvme: add Get LBA Status command opcode



NVMe 1.4 added Get LBA Status command with opcode 0x86.

Signed-off-by: default avatarMinwoo Im <minwoo.im.dev@gmail.com>
Signed-off-by: default avatarSagi Grimberg <sagi@grimberg.me>
parent 3bec2e37
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -814,6 +814,7 @@ enum nvme_admin_opcode {
	nvme_admin_security_send	= 0x81,
	nvme_admin_security_recv	= 0x82,
	nvme_admin_sanitize_nvm		= 0x84,
	nvme_admin_get_lba_status	= 0x86,
};

#define nvme_admin_opcode_name(opcode)	{ opcode, #opcode }