[PATCH v2] hw/nvme: Return error for fused operations

2021-09-15 Thread Pankaj Raghav
operations are mentioned in the general SQE section in the SPEC. Signed-off-by: Pankaj Raghav --- hw/nvme/ctrl.c | 8 1 file changed, 8 insertions(+) diff --git a/hw/nvme/ctrl.c b/hw/nvme/ctrl.c index dc0e7b0030..2f247a9275 100644 --- a/hw/nvme/ctrl.c +++ b/hw/nvme/ctrl.c @@ -3893,6

[PATCH] hw/nvme: Return error for fused operations

2021-09-10 Thread Pankaj Raghav
Currently, FUSED operations are not supported by QEMU. As per the 1.4 SPEC, controller should abort the command that requested a fused operation with an INVALID FIELD error code if they are not supported. Signed-off-by: Pankaj Raghav --- hw/nvme/ctrl.c | 4 1 file changed, 4 insertions