diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2021-04-07 19:21:47 +0100 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2021-04-07 19:21:47 +0100 |
commit | 1b7dabccd0e81e285c700467f1a8f6083c15bc6b (patch) | |
tree | 4871d95b8ae7311e676001a74bb8f55abe1bf688 /include | |
parent | d0d3dd401b70168a353450e031727affee828527 (diff) | |
parent | 7645f21f409b67eb9aad9feef6283c2e186e3703 (diff) | |
download | qemu-1b7dabccd0e81e285c700467f1a8f6083c15bc6b.zip qemu-1b7dabccd0e81e285c700467f1a8f6083c15bc6b.tar.gz qemu-1b7dabccd0e81e285c700467f1a8f6083c15bc6b.tar.bz2 |
Merge remote-tracking branch 'remotes/nvme/tags/nvme-fixes-20210407-pull-request' into staging
emulated nvme fixes for -rc3
v3:
- removed unnecessary deprecation warning
v2:
- added missing patches
# gpg: Signature made Wed 07 Apr 2021 17:47:13 BST
# gpg: using RSA key 522833AA75E2DCE6A24766C04DE1AF316D4F0DE9
# gpg: Good signature from "Klaus Jensen <its@irrelevant.dk>" [unknown]
# gpg: aka "Klaus Jensen <k.jensen@samsung.com>" [unknown]
# gpg: WARNING: This key is not certified with a trusted signature!
# gpg: There is no indication that the signature belongs to the owner.
# Primary key fingerprint: DDCA 4D9C 9EF9 31CC 3468 4272 63D5 6FC5 E55D A838
# Subkey fingerprint: 5228 33AA 75E2 DCE6 A247 66C0 4DE1 AF31 6D4F 0DE9
* remotes/nvme/tags/nvme-fixes-20210407-pull-request:
hw/block/nvme: fix out-of-bounds read in nvme_subsys_ctrl
hw/block/nvme: fix assert crash in nvme_subsys_ns
hw/block/nvme: fix ns attachment out-of-bounds read
hw/block/nvme: add missing copyright headers
hw/block/nvme: fix handling of private namespaces
hw/block/nvme: update dmsrl limit on namespace detachment
hw/block/nvme: fix warning about legacy namespace configuration
hw/block/nvme: fix the nsid 'invalid' value
hw/block/nvme: fix missing string representation for ns attachment
hw/block/nvme: fix pi constraint check
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/block/nvme.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/block/nvme.h b/include/block/nvme.h index b0a4e42..4ac926f 100644 --- a/include/block/nvme.h +++ b/include/block/nvme.h @@ -847,6 +847,7 @@ enum NvmeStatusCodes { NVME_FEAT_NOT_NS_SPEC = 0x010f, NVME_FW_REQ_SUSYSTEM_RESET = 0x0110, NVME_NS_ALREADY_ATTACHED = 0x0118, + NVME_NS_PRIVATE = 0x0119, NVME_NS_NOT_ATTACHED = 0x011A, NVME_NS_CTRL_LIST_INVALID = 0x011C, NVME_CONFLICTING_ATTRS = 0x0180, |