]> www.infradead.org Git - qemu-nvme.git/commit
hw/nvme: consider COPY command in nvme_aio_err
authorMinwoo Im <minwoo.im@samsung.com>
Tue, 18 Apr 2023 00:26:21 +0000 (09:26 +0900)
committerKlaus Jensen <k.jensen@samsung.com>
Wed, 24 May 2023 09:21:26 +0000 (11:21 +0200)
commit6b9d6cf937c764a3377694a579b3b7259ad13c57
tree935e9c332db3cf80b6d49226c7130a601a241f9e
parent4f2acc6f9805e147cf0534e48c0dc253bd40d46c
hw/nvme: consider COPY command in nvme_aio_err

If we don't have NVME_CMD_COPY consideration in the switch statement in
nvme_aio_err(), it will go to have NVME_INTERNAL_DEV_ERROR and
`req->status` will be ovewritten to it.  During the aio context, it
might set the NVMe status field like NVME_CMD_SIZE_LIMIT, but it's
overwritten in the nvme_aio_err().

Add consideration for the NVME_CMD_COPY not to overwrite the status at
the end of the function.

Signed-off-by: Minwoo Im <minwoo.im@samsung.com>
Reviewed-by: Klaus Jensen <k.jensen@samsung.com>
Signed-off-by: Klaus Jensen <k.jensen@samsung.com>
hw/nvme/ctrl.c