9ae3a8
From 1eae92fe23ff0e5ba28374220417a44920192ee4 Mon Sep 17 00:00:00 2001
9ae3a8
Message-Id: <1eae92fe23ff0e5ba28374220417a44920192ee4.1389014116.git.minovotn@redhat.com>
9ae3a8
In-Reply-To: <c8cc35838d42aa286242772d97e3a9be7bb786ba.1389014116.git.minovotn@redhat.com>
9ae3a8
References: <c8cc35838d42aa286242772d97e3a9be7bb786ba.1389014116.git.minovotn@redhat.com>
9ae3a8
From: Paolo Bonzini <pbonzini@redhat.com>
9ae3a8
Date: Mon, 9 Dec 2013 14:08:57 +0100
9ae3a8
Subject: [PATCH 09/50] block: add logical block provisioning info to
9ae3a8
 BlockDriverInfo
9ae3a8
9ae3a8
RH-Author: Paolo Bonzini <pbonzini@redhat.com>
9ae3a8
Message-id: <1386598178-11845-12-git-send-email-pbonzini@redhat.com>
9ae3a8
Patchwork-id: 56051
9ae3a8
O-Subject: [RHEL 7.0 qemu-kvm PATCH 11/52] block: add logical block provisioning info to BlockDriverInfo
9ae3a8
Bugzilla: 1007815
9ae3a8
RH-Acked-by: Jeffrey Cody <jcody@redhat.com>
9ae3a8
RH-Acked-by: Fam Zheng <famz@redhat.com>
9ae3a8
RH-Acked-by: Stefan Hajnoczi <stefanha@redhat.com>
9ae3a8
9ae3a8
From: Peter Lieven <pl@kamp.de>
9ae3a8
9ae3a8
Reviewed-by: Eric Blake <eblake@redhat.com>
9ae3a8
Signed-off-by: Peter Lieven <pl@kamp.de>
9ae3a8
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
9ae3a8
(cherry picked from commit e1a5c4bed44bc23f69f53883c657e31e150cab30)
9ae3a8
---
9ae3a8
 include/block/block.h | 16 ++++++++++++++++
9ae3a8
 1 file changed, 16 insertions(+)
9ae3a8
9ae3a8
Signed-off-by: Michal Novotny <minovotn@redhat.com>
9ae3a8
---
9ae3a8
 include/block/block.h | 16 ++++++++++++++++
9ae3a8
 1 file changed, 16 insertions(+)
9ae3a8
9ae3a8
diff --git a/include/block/block.h b/include/block/block.h
9ae3a8
index 10abc00..ab3044e 100644
9ae3a8
--- a/include/block/block.h
9ae3a8
+++ b/include/block/block.h
9ae3a8
@@ -18,6 +18,22 @@ typedef struct BlockDriverInfo {
9ae3a8
     /* offset at which the VM state can be saved (0 if not possible) */
9ae3a8
     int64_t vm_state_offset;
9ae3a8
     bool is_dirty;
9ae3a8
+    /*
9ae3a8
+     * True if unallocated blocks read back as zeroes. This is equivalent
9ae3a8
+     * to the the LBPRZ flag in the SCSI logical block provisioning page.
9ae3a8
+     */
9ae3a8
+    bool unallocated_blocks_are_zero;
9ae3a8
+    /*
9ae3a8
+     * True if the driver can optimize writing zeroes by unmapping
9ae3a8
+     * sectors. This is equivalent to the BLKDISCARDZEROES ioctl in Linux
9ae3a8
+     * with the difference that in qemu a discard is allowed to silently
9ae3a8
+     * fail. Therefore we have to use bdrv_write_zeroes with the
9ae3a8
+     * BDRV_REQ_MAY_UNMAP flag for an optimized zero write with unmapping.
9ae3a8
+     * After this call the driver has to guarantee that the contents read
9ae3a8
+     * back as zero. It is additionally required that the block device is
9ae3a8
+     * opened with BDRV_O_UNMAP flag for this to work.
9ae3a8
+     */
9ae3a8
+    bool can_write_zeroes_with_unmap;
9ae3a8
 } BlockDriverInfo;
9ae3a8
 
9ae3a8
 typedef struct BlockFragInfo {
9ae3a8
-- 
9ae3a8
1.7.11.7
9ae3a8