From: Marcel Apfelbaum <marcel@redhat.com>
To: "Michael S. Tsirkin" <mst@redhat.com>
Cc: qemu-devel@nongnu.org, imammedo@redhat.com
Subject: Re: [Qemu-devel] [PATCH] hw/pxb-pcie: fix PCI Express hotplug support
Date: Fri, 3 Feb 2017 00:44:17 +0200 [thread overview]
Message-ID: <dc10fe8b-7769-efae-1f32-ad8644cfd565@redhat.com> (raw)
In-Reply-To: <20170203001441-mutt-send-email-mst@kernel.org>
On 02/03/2017 12:34 AM, Michael S. Tsirkin wrote:
> On Fri, Feb 03, 2017 at 12:05:52AM +0200, Marcel Apfelbaum wrote:
>> Add the missing osc method for pxb-pcie devices
>>
>> Signed-off-by: Marcel Apfelbaum <marcel@redhat.com>
>> ---
>>
>> Note: The patch is based on the fact that Q35's osc method is quite generic.
>>
>> Thanks,
>> Marcel
>>
>> hw/i386/acpi-build.c | 5 +++++
>> 1 file changed, 5 insertions(+)
>>
>> diff --git a/hw/i386/acpi-build.c b/hw/i386/acpi-build.c
>> index 1c928ab..555aab3 100644
>> --- a/hw/i386/acpi-build.c
>> +++ b/hw/i386/acpi-build.c
>> @@ -1964,6 +1964,11 @@ build_dsdt(GArray *table_data, BIOSLinker *linker,
>> aml_append(dev, aml_name_decl("_UID", aml_int(bus_num)));
>> aml_append(dev, aml_name_decl("_HID", aml_eisaid("PNP0A03")));
>> aml_append(dev, aml_name_decl("_BBN", aml_int(bus_num)));
>> + if (pci_bus_is_express(bus)) {
>> + aml_append(dev, aml_name_decl("SUPP", aml_int(0)));
>> + aml_append(dev, aml_name_decl("CTRL", aml_int(0)));
>> + aml_append(dev, build_q35_osc_method());
>> + }
>
Hi Michael,
Thanks for the review.
> I think we want to move this stuff into build_q35_osc_method:
> "SUPP" seems to be 0, CTRL should be a variable passed in.
>
Sure
>
>> if (numa_node != NUMA_NODE_UNASSIGNED) {
>> aml_append(dev, aml_name_decl("_PXM", aml_int(numa_node)));
>
>
> In fact build_q35_osc_method needs to be cleaned up.
> It stores result in "CTRL" which should be documented.
>
> "SUPP" seems to be unused.
>
> A bunch of comments missing.
>
> More importantly, its an unserialized method but it creates a bunch of
> fields so attempts to run two of these in parallel will crash.
I don't see how this code will run in parallel. (the code that calls the _OSC method)
> I see the same in ACPI spec which probably means it should be
> revisited with a critical eye.
>
I am in PTO next week, then I'll revisit the build_q35_osc_method and (try to) clean it up.
Thanks,
Marcel
>
>> --
>> 2.5.5
next prev parent reply other threads:[~2017-02-02 22:44 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-02-02 22:05 [Qemu-devel] [PATCH] hw/pxb-pcie: fix PCI Express hotplug support Marcel Apfelbaum
2017-02-02 22:34 ` Michael S. Tsirkin
2017-02-02 22:44 ` Marcel Apfelbaum [this message]
2017-02-02 22:49 ` Michael S. Tsirkin
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=dc10fe8b-7769-efae-1f32-ad8644cfd565@redhat.com \
--to=marcel@redhat.com \
--cc=imammedo@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).