From: Laszlo Ersek <lersek@redhat.com>
To: qemu-devel@nongnu.org
Cc: "Michael S. Tsirkin" <mst@redhat.com>
Subject: Re: [Qemu-devel] [PATCH v4 0/7] publish etc/acpi/APIC in fw_cfg
Date: Wed, 24 Apr 2013 11:39:22 +0200 [thread overview]
Message-ID: <5177A84A.9050602@redhat.com> (raw)
In-Reply-To: <1366316544-1428-1-git-send-email-lersek@redhat.com>
On 04/18/13 22:22, Laszlo Ersek wrote:
> v4:
> - patches 1-6 are unchanged and carry Michael's ACK,
> - patch 7 is rendered dependent on a new configure switch (default off)
> [Michael Tsirkin].
>
> v3:
> - rebased to current master 24a6e7f4,
> - added Michael's S-o-b to 6/7 [Eric Blake],
> - added Dave Frodin's relicensing ACK to 7/7, originally sent to Michael
> in private [Michael Tsirkin],
> - slightly reworded 7/7's commit message where it credits Michael's
> prototype [Eric Blake].
>
> v2:
> - address (1) in
> <http://thread.gmane.org/gmane.comp.emulators.qemu/206146/focus=206195>:
>
> - rebase to Paolo's recent series
> <http://thread.gmane.org/gmane.comp.emulators.qemu/206196/focus=206278>,
>
> - patch 2 is new, fixes style of function parameter references in a
> comment [mst],
>
> - patch 6 is new, moves a macro definition [mst],
>
> - patch 7 should be structured more logically now, plus the commit
> message has grown some bits related to licensing [mst].
> acpi_table_fill_hdr() is kept distinct from the -acpitable switch's
> implementation on purpose, similarly to pc_acpi_install() in v1.
>
> - Tested APIC / DSDT / RSDT against contents saved from v1.
>
> v1 blurb:
>
> This series exports the MADT (APIC) ACPI table under the new
> "etc/acpi/APIC" fw_cfg file. I sought to follow the requirements set
> forth in [1], the new table is only visible in the patched/patched
> case. I cross-tested { master, patched } qemu with { master, patched }
> seabios (the APIC, DSDT and RSDT tables) using guest acpidump and
> dmesg.
>
> The -acpitable command line option is purposely ignored based on the
> last paragraph of [2]; the user isn't supposed to pass APIC with that
> option.
>
> checkpatch.pl complains a little but (as last time) it's a false
> alarm.
>
> The series is bisectable.
>
> [1] http://thread.gmane.org/gmane.comp.emulators.qemu/202005/focus=202072
> [2] http://thread.gmane.org/gmane.comp.bios.coreboot.seabios/5960/focus=6008
>
> Laszlo Ersek (6):
> refer to FWCfgState explicitly
> acpi_table_install(): fix funcparam formatting in leading comment
> hw/acpi: extract standard table headers as a standalone structure
> hw/acpi: export default ACPI headers using the type just introduced
> hw/acpi: export acpi_checksum()
> hw/i386: build ACPI MADT (APIC) for fw_cfg clients
>
> Michael S. Tsirkin (1):
> hw/i386/pc.c: move IO_APIC_DEFAULT_ADDRESS to include/hw/i386/apic.h
>
> configure | 12 ++++
> hw/i386/Makefile.objs | 1 +
> hw/i386/acpi.h | 9 +++
> hw/i386/multiboot.h | 4 +-
> include/hw/acpi/acpi.h | 15 +++++
> include/hw/i386/apic.h | 2 +
> include/hw/i386/pc.h | 19 +++---
> include/hw/loader.h | 3 +-
> hw/acpi/core.c | 91 ++++++++++++++-------------
> hw/acpi/piix4.c | 2 +-
> hw/core/loader.c | 2 +-
> hw/i386/acpi.c | 159 ++++++++++++++++++++++++++++++++++++++++++++++++
> hw/i386/multiboot.c | 2 +-
> hw/i386/pc.c | 49 +++++++++++----
> hw/i386/pc_piix.c | 2 +-
> hw/sparc/sun4m.c | 6 +-
> hw/sparc64/sun4u.c | 2 +-
> 17 files changed, 303 insertions(+), 77 deletions(-)
> create mode 100644 hw/i386/acpi.h
> create mode 100644 hw/i386/acpi.c
Ping... When may I expect reviews for this?
(1) AIUI,
- Michael hasn't acked this series, but he didn't NAK it either -- the
two of us disagree on his most recent review, but that shouldn't be
reason for others not to look at the series,
- he's alrady cooking a series based on this one.
(2) I'm aware that we're in soft freeze for 1.5 now. I'm just saying I
won't touch the HPET or SRAT until this MADT series is sufficiently
acked. I need to be able to trust the structure if I want it to carry
the HPET and the SRAT too. (I don't insist in the slightest on
(co-)owning this task, ie. there's no time pressure from my side. I'm
just pointing out a dependency.)
Thanks
Laszlo
next prev parent reply other threads:[~2013-04-24 9:37 UTC|newest]
Thread overview: 32+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-04-18 20:22 [Qemu-devel] [PATCH v4 0/7] publish etc/acpi/APIC in fw_cfg Laszlo Ersek
2013-04-18 20:22 ` [Qemu-devel] [PATCH v4 1/7] refer to FWCfgState explicitly Laszlo Ersek
2013-04-25 18:44 ` Anthony Liguori
2013-04-25 21:04 ` Michael S. Tsirkin
2013-04-18 20:22 ` [Qemu-devel] [PATCH v4 2/7] acpi_table_install(): fix funcparam formatting in leading comment Laszlo Ersek
2013-04-25 18:44 ` Anthony Liguori
2013-04-18 20:22 ` [Qemu-devel] [PATCH v4 3/7] hw/acpi: extract standard table headers as a standalone structure Laszlo Ersek
2013-04-25 18:47 ` Anthony Liguori
2013-04-26 9:32 ` Laszlo Ersek
2013-04-18 20:22 ` [Qemu-devel] [PATCH v4 4/7] hw/acpi: export default ACPI headers using the type just introduced Laszlo Ersek
2013-04-25 18:49 ` Anthony Liguori
2013-04-26 9:53 ` Laszlo Ersek
2013-04-18 20:22 ` [Qemu-devel] [PATCH v4 5/7] hw/acpi: export acpi_checksum() Laszlo Ersek
2013-04-25 18:55 ` Anthony Liguori
2013-04-18 20:22 ` [Qemu-devel] [PATCH v4 6/7] hw/i386/pc.c: move IO_APIC_DEFAULT_ADDRESS to include/hw/i386/apic.h Laszlo Ersek
2013-04-25 18:55 ` Anthony Liguori
2013-04-18 20:22 ` [Qemu-devel] [PATCH v4 7/7] hw/i386: build ACPI MADT (APIC) for fw_cfg clients Laszlo Ersek
2013-04-18 20:30 ` Michael S. Tsirkin
2013-04-19 10:58 ` Laszlo Ersek
2013-04-24 9:42 ` Michael S. Tsirkin
2013-04-25 19:03 ` Anthony Liguori
2013-04-25 20:11 ` Eduardo Habkost
2013-04-25 20:45 ` Anthony Liguori
2013-04-25 20:57 ` [Qemu-devel] Purpose of qemu-common.h (was Re: [PATCH v4 7/7] hw/i386: build ACPI MADT (APIC) for fw_cfg clients) Eduardo Habkost
2013-04-25 21:33 ` Michael S. Tsirkin
2013-04-26 11:13 ` [Qemu-devel] [PATCH v4 7/7] hw/i386: build ACPI MADT (APIC) for fw_cfg clients Laszlo Ersek
2013-04-29 8:20 ` Michael S. Tsirkin
2013-04-29 12:39 ` Kevin O'Connor
2013-04-29 13:21 ` Michael S. Tsirkin
2013-04-29 13:21 ` Laszlo Ersek
2013-04-24 9:39 ` Laszlo Ersek [this message]
2013-04-25 16:45 ` [Qemu-devel] [PATCH v4 0/7] publish etc/acpi/APIC in fw_cfg Anthony Liguori
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=5177A84A.9050602@redhat.com \
--to=lersek@redhat.com \
--cc=mst@redhat.com \
--cc=qemu-devel@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).