|
|
218e99 |
From c6de1e3f478b5449d1283c66164c5ede351db600 Mon Sep 17 00:00:00 2001
|
|
|
218e99 |
From: Max Reitz <mreitz@redhat.com>
|
|
|
218e99 |
Date: Wed, 6 Nov 2013 16:53:35 +0100
|
|
|
218e99 |
Subject: [PATCH 78/87] block: Add bdrv_get_specific_info
|
|
|
218e99 |
|
|
|
218e99 |
RH-Author: Max Reitz <mreitz@redhat.com>
|
|
|
218e99 |
Message-id: <1383756824-6921-13-git-send-email-mreitz@redhat.com>
|
|
|
218e99 |
Patchwork-id: 55567
|
|
|
218e99 |
O-Subject: [RHEL-7.0 qemu-kvm PATCH v2 12/21] block: Add bdrv_get_specific_info
|
|
|
218e99 |
Bugzilla: 980771
|
|
|
218e99 |
RH-Acked-by: Kevin Wolf <kwolf@redhat.com>
|
|
|
218e99 |
RH-Acked-by: Fam Zheng <famz@redhat.com>
|
|
|
218e99 |
RH-Acked-by: Jeffrey Cody <jcody@redhat.com>
|
|
|
218e99 |
|
|
|
218e99 |
BZ: 980771
|
|
|
218e99 |
|
|
|
218e99 |
Add a function for retrieving an ImageInfoSpecific object from a block
|
|
|
218e99 |
driver.
|
|
|
218e99 |
|
|
|
218e99 |
Signed-off-by: Max Reitz <mreitz@redhat.com>
|
|
|
218e99 |
Reviewed-by: Eric Blake <eblake@redhat.com>
|
|
|
218e99 |
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
|
|
|
218e99 |
(cherry picked from commit eae041fe6f4314962e873615134eefb32cf8ba61)
|
|
|
218e99 |
|
|
|
218e99 |
Signed-off-by: Max Reitz <mreitz@redhat.com>
|
|
|
218e99 |
---
|
|
|
218e99 |
block.c | 9 +++++++++
|
|
|
218e99 |
block/qapi.c | 3 +++
|
|
|
218e99 |
include/block/block.h | 1 +
|
|
|
218e99 |
include/block/block_int.h | 1 +
|
|
|
218e99 |
4 files changed, 14 insertions(+)
|
|
|
218e99 |
|
|
|
218e99 |
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
|
|
|
218e99 |
---
|
|
|
218e99 |
block.c | 9 +++++++++
|
|
|
218e99 |
block/qapi.c | 3 +++
|
|
|
218e99 |
include/block/block.h | 1 +
|
|
|
218e99 |
include/block/block_int.h | 1 +
|
|
|
218e99 |
4 files changed, 14 insertions(+), 0 deletions(-)
|
|
|
218e99 |
|
|
|
218e99 |
diff --git a/block.c b/block.c
|
|
|
218e99 |
index e4885da..6913799 100644
|
|
|
218e99 |
--- a/block.c
|
|
|
218e99 |
+++ b/block.c
|
|
|
218e99 |
@@ -3309,6 +3309,15 @@ int bdrv_get_info(BlockDriverState *bs, BlockDriverInfo *bdi)
|
|
|
218e99 |
return drv->bdrv_get_info(bs, bdi);
|
|
|
218e99 |
}
|
|
|
218e99 |
|
|
|
218e99 |
+ImageInfoSpecific *bdrv_get_specific_info(BlockDriverState *bs)
|
|
|
218e99 |
+{
|
|
|
218e99 |
+ BlockDriver *drv = bs->drv;
|
|
|
218e99 |
+ if (drv && drv->bdrv_get_specific_info) {
|
|
|
218e99 |
+ return drv->bdrv_get_specific_info(bs);
|
|
|
218e99 |
+ }
|
|
|
218e99 |
+ return NULL;
|
|
|
218e99 |
+}
|
|
|
218e99 |
+
|
|
|
218e99 |
int bdrv_save_vmstate(BlockDriverState *bs, const uint8_t *buf,
|
|
|
218e99 |
int64_t pos, int size)
|
|
|
218e99 |
{
|
|
|
218e99 |
diff --git a/block/qapi.c b/block/qapi.c
|
|
|
218e99 |
index a4bc411..896cd37 100644
|
|
|
218e99 |
--- a/block/qapi.c
|
|
|
218e99 |
+++ b/block/qapi.c
|
|
|
218e99 |
@@ -134,6 +134,9 @@ void bdrv_query_image_info(BlockDriverState *bs,
|
|
|
218e99 |
info->dirty_flag = bdi.is_dirty;
|
|
|
218e99 |
info->has_dirty_flag = true;
|
|
|
218e99 |
}
|
|
|
218e99 |
+ info->format_specific = bdrv_get_specific_info(bs);
|
|
|
218e99 |
+ info->has_format_specific = info->format_specific != NULL;
|
|
|
218e99 |
+
|
|
|
218e99 |
backing_filename = bs->backing_file;
|
|
|
218e99 |
if (backing_filename[0] != '\0') {
|
|
|
218e99 |
info->backing_filename = g_strdup(backing_filename);
|
|
|
218e99 |
diff --git a/include/block/block.h b/include/block/block.h
|
|
|
218e99 |
index 7695cae..656570e 100644
|
|
|
218e99 |
--- a/include/block/block.h
|
|
|
218e99 |
+++ b/include/block/block.h
|
|
|
218e99 |
@@ -338,6 +338,7 @@ int bdrv_get_flags(BlockDriverState *bs);
|
|
|
218e99 |
int bdrv_write_compressed(BlockDriverState *bs, int64_t sector_num,
|
|
|
218e99 |
const uint8_t *buf, int nb_sectors);
|
|
|
218e99 |
int bdrv_get_info(BlockDriverState *bs, BlockDriverInfo *bdi);
|
|
|
218e99 |
+ImageInfoSpecific *bdrv_get_specific_info(BlockDriverState *bs);
|
|
|
218e99 |
void bdrv_round_to_clusters(BlockDriverState *bs,
|
|
|
218e99 |
int64_t sector_num, int nb_sectors,
|
|
|
218e99 |
int64_t *cluster_sector_num,
|
|
|
218e99 |
diff --git a/include/block/block_int.h b/include/block/block_int.h
|
|
|
218e99 |
index 9348238..0dbc34f 100644
|
|
|
218e99 |
--- a/include/block/block_int.h
|
|
|
218e99 |
+++ b/include/block/block_int.h
|
|
|
218e99 |
@@ -166,6 +166,7 @@ struct BlockDriver {
|
|
|
218e99 |
int (*bdrv_snapshot_load_tmp)(BlockDriverState *bs,
|
|
|
218e99 |
const char *snapshot_name);
|
|
|
218e99 |
int (*bdrv_get_info)(BlockDriverState *bs, BlockDriverInfo *bdi);
|
|
|
218e99 |
+ ImageInfoSpecific *(*bdrv_get_specific_info)(BlockDriverState *bs);
|
|
|
218e99 |
|
|
|
218e99 |
int (*bdrv_save_vmstate)(BlockDriverState *bs, QEMUIOVector *qiov,
|
|
|
218e99 |
int64_t pos);
|
|
|
218e99 |
--
|
|
|
218e99 |
1.7.1
|
|
|
218e99 |
|