[pve-devel] [PATCH] add BlockDevice type to prevent warning.

Wolfgang Link w.link at proxmox.com
Wed Jun 10 10:31:00 CEST 2015


From: "w.link at proxmox.com" <Wolfgang Link>

The raw_bsd.c insert a check to warn when mounting BD, what has no device type.

Signed-off-by: w.link at proxmox.com <Wolfgang Link>
---
 debian/patches/add_block_driver_type_to_extract | 14 ++++++++++++++
 debian/patches/series                           |  1 +
 2 files changed, 15 insertions(+)
 create mode 100644 debian/patches/add_block_driver_type_to_extract

diff --git a/debian/patches/add_block_driver_type_to_extract b/debian/patches/add_block_driver_type_to_extract
new file mode 100644
index 0000000..39f626b
--- /dev/null
+++ b/debian/patches/add_block_driver_type_to_extract
@@ -0,0 +1,14 @@
+Index: qemu-kvm-devel/vma.c
+===================================================================
+--- qemu-kvm-devel.orig/vma.c
++++ qemu-kvm-devel/vma.c
+@@ -299,7 +299,8 @@ static int extract_content(int argc, cha
+             }
+ 
+             BlockDriverState *bs = bdrv_new();
+-            if (errp || bdrv_open(&bs, devfn, NULL, NULL, flags, NULL, &errp)) {
++	    BlockDriver *drv = bdrv_find_format("raw");
++            if (errp || bdrv_open(&bs, devfn, NULL, NULL, flags, drv, &errp)) {
+                 g_error("can't open file %s - %s", devfn,
+                         error_get_pretty(errp));
+             }
diff --git a/debian/patches/series b/debian/patches/series
index f270864..292bba6 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -31,3 +31,4 @@ gluster-backupserver.patch
 add-qmp-get-link-status.patch
 0001-friendlier-ai_flag-hints-for-ipv6-hosts.patch
 tcmalloc.patch
+add_block_driver_type_to_extract
-- 
2.1.4





More information about the pve-devel mailing list