qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH 32/60] qed: refuse unaligned zero writes with a back


From: Michael Tokarev
Subject: [Qemu-devel] [PATCH 32/60] qed: refuse unaligned zero writes with a backing file
Date: Mon, 4 Feb 2013 14:40:42 +0400

From: Stefan Hajnoczi <address@hidden>

Zero writes have cluster granularity in QED.  Therefore they can only be
used to zero entire clusters.

If the zero write request leaves sectors untouched, zeroing the entire
cluster would obscure the backing file.  Instead return -ENOTSUP, which
is handled by block.c:bdrv_co_do_write_zeroes() and falls back to a
regular write.

The qemu-iotests 034 test cases covers this scenario.

Signed-off-by: Stefan Hajnoczi <address@hidden>
Reviewed-by: Paolo Bonzini <address@hidden>
Signed-off-by: Kevin Wolf <address@hidden>
(cherry picked from commit ef72f76e58107bd4096018c3db2912d28249308e)

Signed-off-by: Michael Tokarev <address@hidden>
---
 block/qed.c |   11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/block/qed.c b/block/qed.c
index 30a31f9..49ac93e 100644
--- a/block/qed.c
+++ b/block/qed.c
@@ -1370,10 +1370,21 @@ static int coroutine_fn 
bdrv_qed_co_write_zeroes(BlockDriverState *bs,
                                                  int nb_sectors)
 {
     BlockDriverAIOCB *blockacb;
+    BDRVQEDState *s = bs->opaque;
     QEDWriteZeroesCB cb = { .done = false };
     QEMUIOVector qiov;
     struct iovec iov;
 
+    /* Refuse if there are untouched backing file sectors */
+    if (bs->backing_hd) {
+        if (qed_offset_into_cluster(s, sector_num * BDRV_SECTOR_SIZE) != 0) {
+            return -ENOTSUP;
+        }
+        if (qed_offset_into_cluster(s, nb_sectors * BDRV_SECTOR_SIZE) != 0) {
+            return -ENOTSUP;
+        }
+    }
+
     /* Zero writes start without an I/O buffer.  If a buffer becomes necessary
      * then it will be allocated during request processing.
      */
-- 
1.7.10.4




reply via email to

[Prev in Thread] Current Thread [Next in Thread]