From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=51383 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OCAjs-0001RO-KR for qemu-devel@nongnu.org; Wed, 12 May 2010 08:08:40 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OCAjq-0001M5-Qw for qemu-devel@nongnu.org; Wed, 12 May 2010 08:08:36 -0400 Received: from mx1.redhat.com ([209.132.183.28]:17206) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OCAjq-0001Li-Bk for qemu-devel@nongnu.org; Wed, 12 May 2010 08:08:34 -0400 Received: from int-mx02.intmail.prod.int.phx2.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id o4CC8WuW013448 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Wed, 12 May 2010 08:08:33 -0400 From: Kevin Wolf Date: Wed, 12 May 2010 14:08:10 +0200 Message-Id: <1273666090-10459-1-git-send-email-kwolf@redhat.com> Subject: [Qemu-devel] [PATCH] block: Remove special case for vvfat List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: kwolf@redhat.com 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 --- block.c | 5 ----- 1 files changed, 0 insertions(+), 5 deletions(-) diff --git a/block.c b/block.c index ffe82f8..b65a3e5 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