From 32bf73073ae7d6c9b509001ad05f8eeaf20b0f66 Mon Sep 17 00:00:00 2001 From: Markus Armbruster Date: Fri, 31 Jul 2009 00:35:40 +0200 Subject: Restore support for block driver "fat" Okay, brown-paperbag-time. Block drivers have two names. "fat" is the protocol name. What is actually matched by bdrv_is_supported() is the format name, which is "vvfat". Still bug 514785. From: Markus Armbruster 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 RH-Upstream-status: not-applicable Bugzilla: 514785 Acked-by: Chris Wright Acked-by: Gleb Natapov Acked-by: Juan Quintela Acked-by: Dan Kenigsberg Acked-by: Donald Dutile Message-ID: <87y6q5ol37.fsf@pike.pond.sub.org> Signed-off-by: Eduardo Habkost Obsoletes: <877hxqyp2z.fsf@pike.pond.sub.org> Acked-by: Amit Shah --- qemu/block.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qemu/block.c b/qemu/block.c index a17b9b66..ca7d1c1c 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; -- cgit v1.2.3