Sophie

Sophie

distrib > Scientific%20Linux > 5x > x86_64 > media > main-src > by-pkgid > aadbe78a25743146bb784eee19f007c5 > files > 551

kvm-83-164.el5_5.9.src.rpm

From: Markus Armbruster <armbru@redhat.com>
Date: Thu, 30 Jul 2009 20:59:16 +0200
Subject: [PATCH RHEL-5] Restore support for block driver "fat"

When we axed unsupported block drivers, we also killed off "fat".  This
broke RHEVM.  The need for fat had been mentioned, but was
overlooked.

Regardless of whether RHEVM should or could be changed not to use "fat",
we need to unbreak it first, and ask questions later.

Bug 514785.  Please ACK.


Signed-off-by: Markus Armbruster <armbru@redhat.com>
Message-ID: <877hxqyp2z.fsf@pike.pond.sub.org>
RH-Upstream-status: not-applicable
Bugzilla: 514785
Acked-by: Chris Wright <chrisw@redhat.com>
Acked-by: Gleb Natapov <gleb@redhat.com>
Acked-by: Juan Quintela <quintela@redhat.com>
Acked-by: Dan Kenigsberg <danken@redhat.com>
Acked-by: Donald Dutile <ddutile@redhat.com>

diff --git a/qemu/block.c b/qemu/block.c
index a17b9b6..4beee04 100644
--- a/qemu/block.c
+++ b/qemu/block.c
@@ -180,7 +180,7 @@ BlockDriver *bdrv_find_format(const char *format_name)
 static int bdrv_is_supported(BlockDriver *drv)
 {
     static const char *supported[] = {
-        "raw", "qcow2", "host_device", NULL
+        "raw", "qcow2", "host_device", "vvfat", NULL
     };
     const char **p;