From: Anthony Liguori <aliguori@us.ibm.com>
To: Markus Armbruster <armbru@redhat.com>, qemu-devel@nongnu.org
Cc: mjt@tls.msk.ru, agraf@suse.de, blauwirbel@gmail.com,
qemu-ppc@nongnu.org, aviksil@linux.vnet.ibm.com
Subject: Re: [Qemu-devel] [PATCH v2 0/6] Clean up bogus default boot order
Date: Thu, 18 Jul 2013 13:28:39 -0500 [thread overview]
Message-ID: <877ggn4t9k.fsf@codemonkey.ws> (raw)
In-Reply-To: <87ob9zltes.fsf@blackfin.pond.sub.org>
Markus Armbruster <armbru@redhat.com> writes:
> Ping?
This needs a rebase.
Regards,
Anthony Liguori
>
> Markus Armbruster <armbru@redhat.com> writes:
>
>> This is on top of "[PATCH v4 00/12] Boot order tests", so it's
>> protected by these tests.
>>
>> The first five patches are admittedly related to the stated purpose of
>> this series pretty much only by "I can't stand perpetuating this
>> stupid crap". Max Filippov and Peter Maydell already cleaned up
>> Xtensa and ARM the same way.
>>
>> v2:
>> * Straightforward rebase
>> * PATCH 6 improved commit message (Alex)
>>
>> Markus Armbruster (6):
>> pc: Don't prematurely explode QEMUMachineInitArgs
>> pc: Don't explode QEMUMachineInitArgs into local variables needlessly
>> sun4: Don't prematurely explode QEMUMachineInitArgs
>> ppc: Don't explode QEMUMachineInitArgs into local variables
>> needlessly
>> ppc: Don't duplicate QEMUMachineInitArgs in PPCE500Params
>> hw: Clean up bogus default boot order
>>
>> hw/alpha/dp264.c | 1 -
>> hw/arm/collie.c | 1 -
>> hw/arm/exynos4_boards.c | 2 -
>> hw/arm/gumstix.c | 2 -
>> hw/arm/highbank.c | 1 -
>> hw/arm/integratorcp.c | 1 -
>> hw/arm/kzm.c | 1 -
>> hw/arm/mainstone.c | 1 -
>> hw/arm/musicpal.c | 1 -
>> hw/arm/nseries.c | 6 +-
>> hw/arm/omap_sx1.c | 2 -
>> hw/arm/palm.c | 1 -
>> hw/arm/realview.c | 4 -
>> hw/arm/spitz.c | 4 -
>> hw/arm/stellaris.c | 2 -
>> hw/arm/tosa.c | 1 -
>> hw/arm/versatilepb.c | 2 -
>> hw/arm/vexpress.c | 2 -
>> hw/arm/xilinx_zynq.c | 1 -
>> hw/arm/z2.c | 1 -
>> hw/core/null-machine.c | 1 -
>> hw/cris/axis_dev88.c | 1 -
>> hw/i386/pc_piix.c | 89 +++++++--------------
>> hw/i386/pc_q35.c | 28 +++----
>> hw/i386/xen_machine_pv.c | 1 -
>> hw/lm32/lm32_boards.c | 2 -
>> hw/lm32/milkymist.c | 1 -
>> hw/m68k/an5206.c | 1 -
>> hw/m68k/dummy_m68k.c | 1 -
>> hw/m68k/mcf5208.c | 1 -
>> hw/microblaze/petalogix_ml605_mmu.c | 1 -
>> hw/microblaze/petalogix_s3adsp1800_mmu.c | 1 -
>> hw/mips/mips_fulong2e.c | 1 -
>> hw/mips/mips_jazz.c | 2 -
>> hw/mips/mips_malta.c | 1 -
>> hw/mips/mips_mipssim.c | 1 -
>> hw/mips/mips_r4k.c | 1 -
>> hw/openrisc/openrisc_sim.c | 1 -
>> hw/ppc/e500.c | 35 +++++----
>> hw/ppc/e500.h | 13 +--
>> hw/ppc/e500plat.c | 15 +---
>> hw/ppc/mac_newworld.c | 4 +-
>> hw/ppc/mac_oldworld.c | 4 +-
>> hw/ppc/mpc8544ds.c | 15 +---
>> hw/ppc/ppc405_boards.c | 2 -
>> hw/ppc/ppc440_bamboo.c | 1 -
>> hw/ppc/prep.c | 4 +-
>> hw/ppc/spapr.c | 4 +-
>> hw/ppc/virtex_ml507.c | 1 -
>> hw/s390x/s390-virtio-ccw.c | 1 -
>> hw/s390x/s390-virtio.c | 1 -
>> hw/sh4/r2d.c | 1 -
>> hw/sh4/shix.c | 1 -
>> hw/sparc/leon3.c | 1 -
>> hw/sparc/sun4m.c | 131 ++++++++-----------------------
>> hw/sparc64/sun4u.c | 58 +++++---------
>> hw/unicore32/puv3.c | 1 -
>> hw/xtensa/xtensa_lx60.c | 2 -
>> hw/xtensa/xtensa_sim.c | 1 -
>> include/hw/boards.h | 7 +-
>> vl.c | 4 +-
>> 61 files changed, 130 insertions(+), 349 deletions(-)
next prev parent reply other threads:[~2013-07-18 18:29 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-06-26 14:13 [Qemu-devel] [PATCH v2 0/6] Clean up bogus default boot order Markus Armbruster
2013-06-26 14:13 ` [Qemu-devel] [PATCH v2 1/6] pc: Don't prematurely explode QEMUMachineInitArgs Markus Armbruster
2013-06-26 14:13 ` [Qemu-devel] [PATCH v2 2/6] pc: Don't explode QEMUMachineInitArgs into local variables needlessly Markus Armbruster
2013-06-26 14:13 ` [Qemu-devel] [PATCH v2 3/6] sun4: Don't prematurely explode QEMUMachineInitArgs Markus Armbruster
2013-06-26 14:13 ` [Qemu-devel] [PATCH v2 4/6] ppc: Don't explode QEMUMachineInitArgs into local variables needlessly Markus Armbruster
2013-06-26 14:13 ` [Qemu-devel] [PATCH v2 5/6] ppc: Don't duplicate QEMUMachineInitArgs in PPCE500Params Markus Armbruster
2013-06-26 14:13 ` [Qemu-devel] [PATCH v2 6/6] hw: Clean up bogus default boot order Markus Armbruster
2013-07-18 16:33 ` [Qemu-devel] [PATCH v2 0/6] " Markus Armbruster
2013-07-18 18:28 ` Anthony Liguori [this message]
2013-07-22 11:48 ` Markus Armbruster
2013-08-16 11:14 ` Markus Armbruster
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=877ggn4t9k.fsf@codemonkey.ws \
--to=aliguori@us.ibm.com \
--cc=agraf@suse.de \
--cc=armbru@redhat.com \
--cc=aviksil@linux.vnet.ibm.com \
--cc=blauwirbel@gmail.com \
--cc=mjt@tls.msk.ru \
--cc=qemu-devel@nongnu.org \
--cc=qemu-ppc@nongnu.org \
/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).