9ae3a8
From ef41c637feebd279b017838b46dc5cfdb52c1ef6 Mon Sep 17 00:00:00 2001
9ae3a8
Message-Id: <ef41c637feebd279b017838b46dc5cfdb52c1ef6.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:09:00 +0100
9ae3a8
Subject: [PATCH 12/50] block: add BlockLimits structure to BlockDriverState
9ae3a8
9ae3a8
RH-Author: Paolo Bonzini <pbonzini@redhat.com>
9ae3a8
Message-id: <1386598178-11845-15-git-send-email-pbonzini@redhat.com>
9ae3a8
Patchwork-id: 56049
9ae3a8
O-Subject: [RHEL 7.0 qemu-kvm PATCH 14/52] block: add BlockLimits structure to BlockDriverState
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
this patch adds BlockLimits which introduces discard and write_zeroes
9ae3a8
limits and alignment information to the BlockDriverState.
9ae3a8
9ae3a8
Signed-off-by: Peter Lieven <pl@kamp.de>
9ae3a8
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
9ae3a8
(cherry picked from commit fe81c2cca6dc69a5e423f6d8b235606b7f3ca7b7)
9ae3a8
---
9ae3a8
 include/block/block_int.h | 17 +++++++++++++++++
9ae3a8
 1 file changed, 17 insertions(+)
9ae3a8
9ae3a8
Signed-off-by: Michal Novotny <minovotn@redhat.com>
9ae3a8
---
9ae3a8
 include/block/block_int.h | 17 +++++++++++++++++
9ae3a8
 1 file changed, 17 insertions(+)
9ae3a8
9ae3a8
diff --git a/include/block/block_int.h b/include/block/block_int.h
9ae3a8
index 236c0c2..ab98c07 100644
9ae3a8
--- a/include/block/block_int.h
9ae3a8
+++ b/include/block/block_int.h
9ae3a8
@@ -219,6 +219,20 @@ struct BlockDriver {
9ae3a8
     QLIST_ENTRY(BlockDriver) list;
9ae3a8
 };
9ae3a8
 
9ae3a8
+typedef struct BlockLimits {
9ae3a8
+    /* maximum number of sectors that can be discarded at once */
9ae3a8
+    int max_discard;
9ae3a8
+
9ae3a8
+    /* optimal alignment for discard requests in sectors */
9ae3a8
+    int64_t discard_alignment;
9ae3a8
+
9ae3a8
+    /* maximum number of sectors that can zeroized at once */
9ae3a8
+    int max_write_zeroes;
9ae3a8
+
9ae3a8
+    /* optimal alignment for write zeroes requests in sectors */
9ae3a8
+    int64_t write_zeroes_alignment;
9ae3a8
+} BlockLimits;
9ae3a8
+
9ae3a8
 /*
9ae3a8
  * Note: the function bdrv_append() copies and swaps contents of
9ae3a8
  * BlockDriverStates, so if you add new fields to this struct, please
9ae3a8
@@ -273,6 +287,9 @@ struct BlockDriverState {
9ae3a8
     uint64_t total_time_ns[BDRV_MAX_IOTYPE];
9ae3a8
     uint64_t wr_highest_sector;
9ae3a8
 
9ae3a8
+    /* I/O Limits */
9ae3a8
+    BlockLimits bl;
9ae3a8
+
9ae3a8
     /* Whether the disk can expand beyond total_sectors */
9ae3a8
     int growable;
9ae3a8
 
9ae3a8
-- 
9ae3a8
1.7.11.7
9ae3a8