* [PATCH v2] i440fx/acpi: disable hotplug of cold plugged bridges regarldless of hotplug switch
@ 2020-09-04 12:44 Ani Sinha
2020-09-04 13:29 ` Philippe Mathieu-Daudé
0 siblings, 1 reply; 4+ messages in thread
From: Ani Sinha @ 2020-09-04 12:44 UTC (permalink / raw)
To: qemu-devel
Cc: Eduardo Habkost, Michael S. Tsirkin, jusual, Paolo Bonzini,
Ani Sinha, Igor Mammedov, Richard Henderson
Cold plugged bridges should not be hot unpluggable, even when their hotplug
property (acpi-pci-hotplug-with-bridge-support) is turned off. However, with
the current implementaton, windows would try to hot-unplug a pci bridge when
it's hotplug switch is off. This is regardless of whether there are devices
attached to the bridge. When devices are attached to the bridge, the bridge
is ultimately not hot-unpluggable. We have a demo video here:
https://youtu.be/pME2sjyQweo
In this fix, we identify a cold plugged bridge and for cold plugged bridges,
we do not add the appropriate amls and acpi methods that are used by the OS
to identify a hot-unpluggable pci device. After this change, Windows does not
show an option to eject the PCI bridge. A demo video is here:
https://youtu.be/kbgej5B9Hgs
While at it, I have also updated a stale comment.
This change is tested with a Windows 2012R2 guest image and Windows 2019 server
guest image running on Ubuntu 18.04 host. This change is based off of upstream
qemu master branch tag v5.1.0.
Signed-off-by: Ani Sinha <ani@anisinha.ca>
---
hw/i386/acpi-build.c | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
Changelog:
v2: cosmetic commit log update.
v1: initial patch.
diff --git a/hw/i386/acpi-build.c b/hw/i386/acpi-build.c
index b7bcbbbb2a..90b863f4ec 100644
--- a/hw/i386/acpi-build.c
+++ b/hw/i386/acpi-build.c
@@ -359,6 +359,7 @@ static void build_append_pci_bus_devices(Aml *parent_scope, PCIBus *bus,
int slot = PCI_SLOT(i);
bool hotplug_enabled_dev;
bool bridge_in_acpi;
+ bool cold_plugged_bridge;
if (!pdev) {
if (bsel) { /* add hotplug slots for non present devices */
@@ -380,15 +381,14 @@ static void build_append_pci_bus_devices(Aml *parent_scope, PCIBus *bus,
pc = PCI_DEVICE_GET_CLASS(pdev);
dc = DEVICE_GET_CLASS(pdev);
- /* When hotplug for bridges is enabled, bridges are
- * described in ACPI separately (see build_pci_bus_end).
- * In this case they aren't themselves hot-pluggable.
+ /*
+ * Cold plugged bridges aren't themselves hot-pluggable.
* Hotplugged bridges *are* hot-pluggable.
*/
- bridge_in_acpi = pc->is_bridge && pcihp_bridge_en &&
- !DEVICE(pdev)->hotplugged;
+ cold_plugged_bridge = pc->is_bridge && !DEVICE(pdev)->hotplugged;
+ bridge_in_acpi = cold_plugged_bridge && pcihp_bridge_en;
- hotplug_enabled_dev = bsel && dc->hotpluggable && !bridge_in_acpi;
+ hotplug_enabled_dev = bsel && dc->hotpluggable && !cold_plugged_bridge;
if (pc->class_id == PCI_CLASS_BRIDGE_ISA) {
continue;
--
2.17.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH v2] i440fx/acpi: disable hotplug of cold plugged bridges regarldless of hotplug switch
2020-09-04 12:44 [PATCH v2] i440fx/acpi: disable hotplug of cold plugged bridges regarldless of hotplug switch Ani Sinha
@ 2020-09-04 13:29 ` Philippe Mathieu-Daudé
2020-09-04 13:39 ` Ani Sinha
0 siblings, 1 reply; 4+ messages in thread
From: Philippe Mathieu-Daudé @ 2020-09-04 13:29 UTC (permalink / raw)
To: Ani Sinha, qemu-devel
Cc: Eduardo Habkost, Michael S. Tsirkin, jusual, Igor Mammedov,
Paolo Bonzini, Richard Henderson
Hi Ani,
On 9/4/20 2:44 PM, Ani Sinha wrote:
> Cold plugged bridges should not be hot unpluggable, even when their hotplug
> property (acpi-pci-hotplug-with-bridge-support) is turned off. However, with
> the current implementaton, windows would try to hot-unplug a pci bridge when
> it's hotplug switch is off. This is regardless of whether there are devices
> attached to the bridge. When devices are attached to the bridge, the bridge
> is ultimately not hot-unpluggable. We have a demo video here:
> https://youtu.be/pME2sjyQweo
>
> In this fix, we identify a cold plugged bridge and for cold plugged bridges,
> we do not add the appropriate amls and acpi methods that are used by the OS
> to identify a hot-unpluggable pci device. After this change, Windows does not
> show an option to eject the PCI bridge. A demo video is here:
> https://youtu.be/kbgej5B9Hgs
>
> While at it, I have also updated a stale comment.
>
> This change is tested with a Windows 2012R2 guest image and Windows 2019 server
> guest image running on Ubuntu 18.04 host. This change is based off of upstream
> qemu master branch tag v5.1.0.
Can you add a test reproducer?
Looking at tests/qtest/virtio-rng-test.c it shouldn't be that
hard / time consuming.
Thanks!
Phil.
>
> Signed-off-by: Ani Sinha <ani@anisinha.ca>
> ---
> hw/i386/acpi-build.c | 12 ++++++------
> 1 file changed, 6 insertions(+), 6 deletions(-)
>
> Changelog:
> v2: cosmetic commit log update.
> v1: initial patch.
>
> diff --git a/hw/i386/acpi-build.c b/hw/i386/acpi-build.c
> index b7bcbbbb2a..90b863f4ec 100644
> --- a/hw/i386/acpi-build.c
> +++ b/hw/i386/acpi-build.c
> @@ -359,6 +359,7 @@ static void build_append_pci_bus_devices(Aml *parent_scope, PCIBus *bus,
> int slot = PCI_SLOT(i);
> bool hotplug_enabled_dev;
> bool bridge_in_acpi;
> + bool cold_plugged_bridge;
>
> if (!pdev) {
> if (bsel) { /* add hotplug slots for non present devices */
> @@ -380,15 +381,14 @@ static void build_append_pci_bus_devices(Aml *parent_scope, PCIBus *bus,
> pc = PCI_DEVICE_GET_CLASS(pdev);
> dc = DEVICE_GET_CLASS(pdev);
>
> - /* When hotplug for bridges is enabled, bridges are
> - * described in ACPI separately (see build_pci_bus_end).
> - * In this case they aren't themselves hot-pluggable.
> + /*
> + * Cold plugged bridges aren't themselves hot-pluggable.
> * Hotplugged bridges *are* hot-pluggable.
> */
> - bridge_in_acpi = pc->is_bridge && pcihp_bridge_en &&
> - !DEVICE(pdev)->hotplugged;
> + cold_plugged_bridge = pc->is_bridge && !DEVICE(pdev)->hotplugged;
> + bridge_in_acpi = cold_plugged_bridge && pcihp_bridge_en;
>
> - hotplug_enabled_dev = bsel && dc->hotpluggable && !bridge_in_acpi;
> + hotplug_enabled_dev = bsel && dc->hotpluggable && !cold_plugged_bridge;
>
> if (pc->class_id == PCI_CLASS_BRIDGE_ISA) {
> continue;
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH v2] i440fx/acpi: disable hotplug of cold plugged bridges regarldless of hotplug switch
2020-09-04 13:29 ` Philippe Mathieu-Daudé
@ 2020-09-04 13:39 ` Ani Sinha
2020-09-04 14:04 ` Ani Sinha
0 siblings, 1 reply; 4+ messages in thread
From: Ani Sinha @ 2020-09-04 13:39 UTC (permalink / raw)
To: QEMU Developers, Philippe Mathieu-Daudé
Cc: Eduardo Habkost, Michael S. Tsirkin, Julia Suvorova,
Igor Mammedov, Paolo Bonzini, Richard Henderson
[-- Attachment #1: Type: text/plain, Size: 1530 bytes --]
On Sep 4, 2020, 18:59 +0530, Philippe Mathieu-Daudé <philmd@redhat.com>,
wrote:
Hi Ani,
On 9/4/20 2:44 PM, Ani Sinha wrote:
Cold plugged bridges should not be hot unpluggable, even when their hotplug
property (acpi-pci-hotplug-with-bridge-support) is turned off. However, with
the current implementaton, windows would try to hot-unplug a pci bridge when
it's hotplug switch is off. This is regardless of whether there are devices
attached to the bridge. When devices are attached to the bridge, the bridge
is ultimately not hot-unpluggable. We have a demo video here:
https://youtu.be/pME2sjyQweo
In this fix, we identify a cold plugged bridge and for cold plugged bridges,
we do not add the appropriate amls and acpi methods that are used by the OS
to identify a hot-unpluggable pci device. After this change, Windows does
not
show an option to eject the PCI bridge. A demo video is here:
https://youtu.be/kbgej5B9Hgs
While at it, I have also updated a stale comment.
This change is tested with a Windows 2012R2 guest image and Windows 2019
server
guest image running on Ubuntu 18.04 host. This change is based off of
upstream
qemu master branch tag v5.1.0.
Can you add a test reproducer?
Looking at tests/qtest/virtio-rng-test.c it shouldn't be that
hard / time consuming.
I can add a unit test. If you look at the disassembled DSDT table, you can
easily see that it’s adding the EJ0 method for the slot in which the bridge
is attached.
[-- Attachment #2: Type: text/html, Size: 9433 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH v2] i440fx/acpi: disable hotplug of cold plugged bridges regarldless of hotplug switch
2020-09-04 13:39 ` Ani Sinha
@ 2020-09-04 14:04 ` Ani Sinha
0 siblings, 0 replies; 4+ messages in thread
From: Ani Sinha @ 2020-09-04 14:04 UTC (permalink / raw)
To: QEMU Developers, Philippe Mathieu-Daudé
Cc: Eduardo Habkost, Michael S. Tsirkin, Julia Suvorova,
Igor Mammedov, Paolo Bonzini, Richard Henderson
On Fri, Sep 4, 2020 at 7:09 PM Ani Sinha <ani@anisinha.ca> wrote:
>
> On Sep 4, 2020, 18:59 +0530, Philippe Mathieu-Daudé <philmd@redhat.com>, wrote:
>
> Hi Ani,
>
>
> On 9/4/20 2:44 PM, Ani Sinha wrote:
>
> Cold plugged bridges should not be hot unpluggable, even when their hotplug
>
> property (acpi-pci-hotplug-with-bridge-support) is turned off. However, with
>
> the current implementaton, windows would try to hot-unplug a pci bridge when
>
> it's hotplug switch is off. This is regardless of whether there are devices
>
> attached to the bridge. When devices are attached to the bridge, the bridge
>
> is ultimately not hot-unpluggable. We have a demo video here:
>
> https://youtu.be/pME2sjyQweo
>
>
> In this fix, we identify a cold plugged bridge and for cold plugged bridges,
>
> we do not add the appropriate amls and acpi methods that are used by the OS
>
> to identify a hot-unpluggable pci device. After this change, Windows does not
>
> show an option to eject the PCI bridge. A demo video is here:
>
> https://youtu.be/kbgej5B9Hgs
>
>
> While at it, I have also updated a stale comment.
>
>
> This change is tested with a Windows 2012R2 guest image and Windows 2019 server
>
> guest image running on Ubuntu 18.04 host. This change is based off of upstream
>
> qemu master branch tag v5.1.0.
>
>
> Can you add a test reproducer?
>
>
> Looking at tests/qtest/virtio-rng-test.c it shouldn't be that
>
> hard / time consuming.
I think this test is hotplugging a bridge through the qmp command.
This test does not apply here as we are talking about cold plugged
bridges and making sure cold plugged bridges are not ejectable.
If you have a test infra to test such a case, please let me know.
>
> I can add a unit test. If you look at the disassembled DSDT table, you can easily see that it’s adding the EJ0 method for the slot in which the bridge is attached.
The unit test will capture this change perfectly. It will compare the
generated AML against expected AML and fail if they don't match.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2020-09-04 14:05 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-09-04 12:44 [PATCH v2] i440fx/acpi: disable hotplug of cold plugged bridges regarldless of hotplug switch Ani Sinha
2020-09-04 13:29 ` Philippe Mathieu-Daudé
2020-09-04 13:39 ` Ani Sinha
2020-09-04 14:04 ` Ani Sinha
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).