|
|
0a122b |
From 8edbab3c2116944b96ba6bcbd36e8c2c5236cf5f Mon Sep 17 00:00:00 2001
|
|
|
0a122b |
Message-Id: <8edbab3c2116944b96ba6bcbd36e8c2c5236cf5f.1389014116.git.minovotn@redhat.com>
|
|
|
0a122b |
In-Reply-To: <c8cc35838d42aa286242772d97e3a9be7bb786ba.1389014116.git.minovotn@redhat.com>
|
|
|
0a122b |
References: <c8cc35838d42aa286242772d97e3a9be7bb786ba.1389014116.git.minovotn@redhat.com>
|
|
|
0a122b |
From: Paolo Bonzini <pbonzini@redhat.com>
|
|
|
0a122b |
Date: Mon, 9 Dec 2013 14:08:59 +0100
|
|
|
0a122b |
Subject: [PATCH 11/50] block/iscsi: add .bdrv_get_info
|
|
|
0a122b |
|
|
|
0a122b |
RH-Author: Paolo Bonzini <pbonzini@redhat.com>
|
|
|
0a122b |
Message-id: <1386598178-11845-14-git-send-email-pbonzini@redhat.com>
|
|
|
0a122b |
Patchwork-id: 56048
|
|
|
0a122b |
O-Subject: [RHEL 7.0 qemu-kvm PATCH 13/52] block/iscsi: add .bdrv_get_info
|
|
|
0a122b |
Bugzilla: 1007815
|
|
|
0a122b |
RH-Acked-by: Jeffrey Cody <jcody@redhat.com>
|
|
|
0a122b |
RH-Acked-by: Fam Zheng <famz@redhat.com>
|
|
|
0a122b |
RH-Acked-by: Stefan Hajnoczi <stefanha@redhat.com>
|
|
|
0a122b |
|
|
|
0a122b |
From: Peter Lieven <pl@kamp.de>
|
|
|
0a122b |
|
|
|
0a122b |
Signed-off-by: Peter Lieven <pl@kamp.de>
|
|
|
0a122b |
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
|
|
|
0a122b |
(cherry picked from commit 186d4f2b1deaae5c404798959bfbdb781e762045)
|
|
|
0a122b |
---
|
|
|
0a122b |
block/iscsi.c | 9 +++++++++
|
|
|
0a122b |
1 file changed, 9 insertions(+)
|
|
|
0a122b |
|
|
|
0a122b |
Signed-off-by: Michal Novotny <minovotn@redhat.com>
|
|
|
0a122b |
---
|
|
|
0a122b |
block/iscsi.c | 9 +++++++++
|
|
|
0a122b |
1 file changed, 9 insertions(+)
|
|
|
0a122b |
|
|
|
0a122b |
diff --git a/block/iscsi.c b/block/iscsi.c
|
|
|
0a122b |
index 3a34eb7..1e8a2bb 100644
|
|
|
0a122b |
--- a/block/iscsi.c
|
|
|
0a122b |
+++ b/block/iscsi.c
|
|
|
0a122b |
@@ -1508,6 +1508,14 @@ out:
|
|
|
0a122b |
return ret;
|
|
|
0a122b |
}
|
|
|
0a122b |
|
|
|
0a122b |
+static int iscsi_get_info(BlockDriverState *bs, BlockDriverInfo *bdi)
|
|
|
0a122b |
+{
|
|
|
0a122b |
+ IscsiLun *iscsilun = bs->opaque;
|
|
|
0a122b |
+ bdi->unallocated_blocks_are_zero = !!iscsilun->lbprz;
|
|
|
0a122b |
+ bdi->can_write_zeroes_with_unmap = iscsilun->lbprz && iscsilun->lbp.lbpws;
|
|
|
0a122b |
+ return 0;
|
|
|
0a122b |
+}
|
|
|
0a122b |
+
|
|
|
0a122b |
static QEMUOptionParameter iscsi_create_options[] = {
|
|
|
0a122b |
{
|
|
|
0a122b |
.name = BLOCK_OPT_SIZE,
|
|
|
0a122b |
@@ -1528,6 +1536,7 @@ static BlockDriver bdrv_iscsi = {
|
|
|
0a122b |
.create_options = iscsi_create_options,
|
|
|
0a122b |
|
|
|
0a122b |
.bdrv_getlength = iscsi_getlength,
|
|
|
0a122b |
+ .bdrv_get_info = iscsi_get_info,
|
|
|
0a122b |
.bdrv_truncate = iscsi_truncate,
|
|
|
0a122b |
|
|
|
0a122b |
.bdrv_co_get_block_status = iscsi_co_get_block_status,
|
|
|
0a122b |
--
|
|
|
0a122b |
1.7.11.7
|
|
|
0a122b |
|