[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Qemu-devel] [PATCH v3 01/38] block: Remove host floppy support
From: |
Eric Blake |
Subject: |
Re: [Qemu-devel] [PATCH v3 01/38] block: Remove host floppy support |
Date: |
Wed, 03 Jun 2015 14:08:35 -0600 |
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.7.0 |
On 06/03/2015 01:43 PM, Max Reitz wrote:
> It has been deprecated as of 2.3, so we can now remove it.
>
> Signed-off-by: Max Reitz <address@hidden>
> ---
> block/raw-posix.c | 228
> ++-------------------------------------------------
> qapi/block-core.json | 9 +-
> 2 files changed, 11 insertions(+), 226 deletions(-)
Dropping is not backwards-compatible, but that was the whole point of
deprecating it to make it obvious that we planned to do it.
Reviewed-by: Eric Blake <address@hidden>
> @@ -2283,14 +2221,13 @@ static int hdev_create(const char *filename, QemuOpts
> *opts,
> int64_t total_size = 0;
> bool has_prefix;
>
> - /* This function is used by all three protocol block drivers and
> therefore
> - * any of these three prefixes may be given.
> + /* This function is used by both protocol block drivers and therefore
> either
> + * of these prefixes may be given.
> * The return value has to be stored somewhere, otherwise this is an
> error
> * due to -Werror=unused-value. */
> has_prefix =
> strstart(filename, "host_device:", &filename) ||
> - strstart(filename, "host_cdrom:" , &filename) ||
> - strstart(filename, "host_floppy:", &filename);
> + strstart(filename, "host_cdrom:" , &filename);
Libvirt does not refer to 'host_floppy' anywhere, so that is also
reassuring about dropping this ancient and seldom-used feature.
> +++ b/qapi/block-core.json
> @@ -215,10 +215,11 @@
> # @drv: the name of the block format used to open the backing device. As of
> # 0.14.0 this can be: 'blkdebug', 'bochs', 'cloop', 'cow', 'dmg',
> # 'file', 'file', 'ftp', 'ftps', 'host_cdrom', 'host_device',
> -# 'host_floppy', 'http', 'https', 'nbd', 'parallels', 'qcow',
> +# 'http', 'https', 'nbd', 'parallels', 'qcow',
> # 'qcow2', 'raw', 'tftp', 'vdi', 'vmdk', 'vpc', 'vvfat'
> # 2.2: 'archipelago' added, 'cow' dropped
> # 2.3: 'host_floppy' deprecated
> +# 2.4: 'host_floppy' dropped
Also nice to know this is not the first time we've dropped something
that is now worthless.
--
Eric Blake eblake redhat com +1-919-301-3266
Libvirt virtualization library http://libvirt.org
signature.asc
Description: OpenPGP digital signature
- [Qemu-devel] [PATCH v3 00/38] blockdev: BlockBackend and media, Max Reitz, 2015/06/03
- [Qemu-devel] [PATCH v3 01/38] block: Remove host floppy support, Max Reitz, 2015/06/03
- Re: [Qemu-devel] [PATCH v3 01/38] block: Remove host floppy support,
Eric Blake <=
- [Qemu-devel] [PATCH v3 02/38] blockdev: Allow creation of BDS trees without BB, Max Reitz, 2015/06/03
- [Qemu-devel] [PATCH v3 03/38] iotests: Only create BB if necessary, Max Reitz, 2015/06/03
- [Qemu-devel] [PATCH v3 05/38] block: Add blk_is_available(), Max Reitz, 2015/06/03
- [Qemu-devel] [PATCH v3 04/38] block: Make bdrv_is_inserted() return a bool, Max Reitz, 2015/06/03