From: Leandro Dorileo <l@dorileo.org>
To: qemu-devel@nongnu.org
Cc: Kevin Wolf <kwolf@redhat.com>, Fam Zheng <famz@redhat.com>,
Stefan Hajnoczi <stefanha@redhat.com>,
Liu Yuan <namei.unix@gmail.com>, Jeff Cody <jcody@redhat.com>,
Markus Armbruster <armbru@redhat.com>, Peter Lieven <pl@kamp.de>,
"Richard W.M. Jones" <rjones@redhat.com>,
Luiz Capitulino <lcapitulino@redhat.com>,
Leandro Dorileo <l@dorileo.org>,
Ronnie Sahlberg <ronniesahlberg@gmail.com>,
Josh Durgin <josh.durgin@inktank.com>,
Anthony Liguori <anthony@codemonkey.ws>,
Paolo Bonzini <pbonzini@redhat.com>, Stefan Weil <sw@weilnetz.de>,
Max Reitz <mreitz@redhat.com>,
MORITA Kazutaka <morita.kazutaka@lab.ntt.co.jp>,
Benoit Canet <benoit@irqsave.net>
Subject: [Qemu-devel] [PATCH 00/26] QemuOptionParameter -> QemuOpts migration
Date: Thu, 20 Mar 2014 21:13:07 -0300 [thread overview]
Message-ID: <1395360813-2833-1-git-send-email-l@dorileo.org> (raw)
This patch series does the QemuOptionParameter -> QemuOpts migration. The idea
is to collect all the required Reviewed-by and squash the patches changing the
block layer + block drivers (patches [06..25]) in a single patch so we don't
break anything and keep the tree's bisectability (just in case we realize this patch
series must be integrated).
In response to Chunyan's patchset, this patch series was first intended to describe
my thoughts on how this migration should be performed.
The patches 2 and 3 can be squashed later on, I just kept them split to keep
Chunyan's authorship.
--
Dorileo
Chunyan Liu (3):
qapi: output def_value_str when query command line options
add def_value_str to QemuOptDesc
QemuOpt: introduce qemu_opts_append()
Leandro Dorileo (23):
QemuOpt: improve default value
QemuOpt: add qemu_opt_print_help()
block: migrate block later QemuOptionParameter
cow: migrate cow driver QemuOptionParameter usage
gluster: migrate gluster driver QemuOptionParameter usage
iscsi: migrate iscsi driver QemuOptionParameter usage
nfs: migrate nfs driver QemuOptionParameter usage
qcow: migrate qcow driver QemuOptionParameter usage
qcow2: migrate qcow2 driver QemuOptionParameter usage
qed: migrate qed driver QemuOptionParameter usage
raw-posix: migrate raw-posix driver QemuOptionParameter usage
raw-win32: migrate cow driver QemuOptionParameter usage
raw_bsd: migrate raw_bsd driver QemuOptionParameter usage
rbd: migrate rbd driver QemuOptionParameter usage
sheepdog: migrate sheepdog driver QemuOptionParameter usage
ssh: migrate ssh driver QemuOptionParameter usage
vdi: migrate vdi driver QemuOptionParameter usage
vhdx: migrate vhdx driver QemuOptionParameter usage
vmdk: migrate vmdk driver QemuOptionParameter usage
vpc: migrate vpc driver QemuOptionParameter usage
vvfat: migrate vvfat driver QemuOptionParameter usage
QemuOpt: get rid of QEMUOptionParameter
qemu-img: migrate QemuOptionParameter usage
block.c | 133 +++++++++++++----------
block/cow.c | 44 ++++----
block/gluster.c | 68 ++++++------
block/iscsi.c | 32 +++---
block/nfs.c | 11 +-
block/qcow.c | 59 +++++------
block/qcow2.c | 263 ++++++++++++++++++++++------------------------
block/qed.c | 79 ++++++--------
block/raw-posix.c | 50 ++++-----
block/raw-win32.c | 29 +++--
block/raw_bsd.c | 21 ++--
block/rbd.c | 60 +++++------
block/sheepdog.c | 104 +++++++++---------
block/ssh.c | 29 +++--
block/vdi.c | 73 ++++++-------
block/vhdx.c | 88 ++++++++--------
block/vmdk.c | 105 +++++++++---------
block/vpc.c | 54 +++++-----
block/vvfat.c | 26 ++++-
include/block/block.h | 7 +-
include/block/block_int.h | 8 +-
include/qemu/option.h | 23 +++-
qapi-schema.json | 6 +-
qemu-img.c | 166 ++++++++++++++++-------------
qmp-commands.hx | 2 +
util/qemu-config.c | 4 +
util/qemu-option.c | 174 +++++++++++++++++++++++++-----
27 files changed, 952 insertions(+), 766 deletions(-)
--
1.9.0
next reply other threads:[~2014-03-21 0:13 UTC|newest]
Thread overview: 34+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-03-21 0:13 Leandro Dorileo [this message]
2014-03-21 0:13 ` [Qemu-devel] [PATCH 01/26] qapi: output def_value_str when query command line options Leandro Dorileo
2014-03-21 23:15 ` Eric Blake
2014-03-21 0:13 ` [Qemu-devel] [PATCH 02/26] add def_value_str to QemuOptDesc Leandro Dorileo
2014-03-21 0:13 ` [Qemu-devel] [PATCH 03/26] QemuOpt: improve default value Leandro Dorileo
2014-03-21 0:13 ` [Qemu-devel] [PATCH 04/26] QemuOpt: introduce qemu_opts_append() Leandro Dorileo
2014-03-21 0:13 ` [Qemu-devel] [PATCH 05/26] QemuOpt: add qemu_opt_print_help() Leandro Dorileo
2014-03-21 0:13 ` [Qemu-devel] [PATCH 06/26] block: migrate block later QemuOptionParameter Leandro Dorileo
2014-03-21 0:13 ` [Qemu-devel] [PATCH 07/26] cow: migrate cow driver QemuOptionParameter usage Leandro Dorileo
2014-03-21 0:13 ` [Qemu-devel] [PATCH 08/26] gluster: migrate gluster " Leandro Dorileo
2014-03-21 0:13 ` [Qemu-devel] [PATCH 09/26] iscsi: migrate iscsi " Leandro Dorileo
2014-03-21 6:43 ` Peter Lieven
2014-03-21 13:31 ` Leandro Dorileo
2014-03-21 13:34 ` Leandro Dorileo
2014-03-21 13:42 ` Peter Lieven
2014-03-21 13:54 ` Leandro Dorileo
2014-03-21 0:13 ` [Qemu-devel] [PATCH 10/26] nfs: migrate nfs " Leandro Dorileo
2014-03-21 0:13 ` [Qemu-devel] [PATCH 11/26] qcow: migrate qcow " Leandro Dorileo
2014-03-21 0:13 ` [Qemu-devel] [PATCH 12/26] qcow2: migrate qcow2 " Leandro Dorileo
2014-03-21 0:13 ` [Qemu-devel] [PATCH 13/26] qed: migrate qed " Leandro Dorileo
2014-03-21 0:13 ` [Qemu-devel] [PATCH 14/26] raw-posix: migrate raw-posix " Leandro Dorileo
2014-03-21 0:13 ` [Qemu-devel] [PATCH 15/26] raw-win32: migrate cow " Leandro Dorileo
2014-03-21 0:13 ` [Qemu-devel] [PATCH 16/26] raw_bsd: migrate raw_bsd " Leandro Dorileo
2014-03-21 0:13 ` [Qemu-devel] [PATCH 17/26] rbd: migrate rbd " Leandro Dorileo
2014-03-21 0:13 ` [Qemu-devel] [PATCH 18/26] sheepdog: migrate sheepdog " Leandro Dorileo
2014-03-21 0:13 ` [Qemu-devel] [PATCH 19/26] ssh: migrate ssh " Leandro Dorileo
2014-03-21 8:32 ` Richard W.M. Jones
2014-03-21 0:13 ` [Qemu-devel] [PATCH 20/26] vdi: migrate vdi " Leandro Dorileo
2014-03-21 0:13 ` [Qemu-devel] [PATCH 21/26] vhdx: migrate vhdx " Leandro Dorileo
2014-03-21 0:13 ` [Qemu-devel] [PATCH 22/26] vmdk: migrate vmdk " Leandro Dorileo
2014-03-21 0:13 ` [Qemu-devel] [PATCH 23/26] vpc: migrate vpc " Leandro Dorileo
2014-03-21 0:13 ` [Qemu-devel] [PATCH 24/26] vvfat: migrate vvfat " Leandro Dorileo
2014-03-21 0:13 ` [Qemu-devel] [PATCH 25/26] QemuOpt: get rid of QEMUOptionParameter Leandro Dorileo
2014-03-21 0:13 ` [Qemu-devel] [PATCH 26/26] qemu-img: migrate QemuOptionParameter usage Leandro Dorileo
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1395360813-2833-1-git-send-email-l@dorileo.org \
--to=l@dorileo.org \
--cc=anthony@codemonkey.ws \
--cc=armbru@redhat.com \
--cc=benoit@irqsave.net \
--cc=famz@redhat.com \
--cc=jcody@redhat.com \
--cc=josh.durgin@inktank.com \
--cc=kwolf@redhat.com \
--cc=lcapitulino@redhat.com \
--cc=morita.kazutaka@lab.ntt.co.jp \
--cc=mreitz@redhat.com \
--cc=namei.unix@gmail.com \
--cc=pbonzini@redhat.com \
--cc=pl@kamp.de \
--cc=qemu-devel@nongnu.org \
--cc=rjones@redhat.com \
--cc=ronniesahlberg@gmail.com \
--cc=stefanha@redhat.com \
--cc=sw@weilnetz.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).