Re: [Qemu-devel] [PATCH] nvme: fix write zeroes offset and count

2019-03-12 Thread Kevin Wolf
Am 11.03.2019 um 16:11 hat Keith Busch geschrieben: > The implementation used blocks units rather than the expected bytes. > > Fixes: c03e7ef12a9 ("nvme: Implement Write Zeroes") > Reported-by: Ming Lei > Signed-off-by: Keith Busch Thanks, applied to the block branch. Kevin

Re: [Qemu-devel] [PATCH] nvme: fix write zeroes offset and count

2019-03-12 Thread Christoph Hellwig
On Mon, Mar 11, 2019 at 09:11:53AM -0600, Keith Busch wrote: > The implementation used blocks units rather than the expected bytes. Thank, looks good: Reviewed-by: Christoph Hellwig And sorry for causing this mess.

[Qemu-devel] [PATCH] nvme: fix write zeroes offset and count

2019-03-11 Thread Keith Busch
The implementation used blocks units rather than the expected bytes. Fixes: c03e7ef12a9 ("nvme: Implement Write Zeroes") Reported-by: Ming Lei Signed-off-by: Keith Busch --- hw/block/nvme.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/hw/block/nvme.c b/hw/block/nvme