qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH 21/21] block: Remove special case for vvfat


From: Kevin Wolf
Subject: [Qemu-devel] [PATCH 21/21] block: Remove special case for vvfat
Date: Fri, 14 May 2010 19:10:55 +0200

The special case doesn't really us buy anything. Without it vvfat works more
consistently as a protocol. We get raw on top of vvfat now, which works just
as well as using vvfat directly.

Signed-off-by: Kevin Wolf <address@hidden>
---
 block.c |    5 -----
 1 files changed, 0 insertions(+), 5 deletions(-)

diff --git a/block.c b/block.c
index 7822580..bfe46e3 100644
--- a/block.c
+++ b/block.c
@@ -326,11 +326,6 @@ static BlockDriver *find_image_format(const char *filename)
     uint8_t buf[2048];
     BlockDriverState *bs;
 
-    drv = find_protocol(filename);
-    /* no need to test disk image formats for vvfat */
-    if (drv && strcmp(drv->format_name, "vvfat") == 0)
-        return drv;
-
     ret = bdrv_file_open(&bs, filename, 0);
     if (ret < 0)
         return NULL;
-- 
1.6.6.1




reply via email to

[Prev in Thread] Current Thread [Next in Thread]