Re: [PATCH 06/12] hw/pci-host/q35: Initialize properties just once

2023-03-01 Thread Michael S. Tsirkin
On Tue, Feb 14, 2023 at 02:14:35PM +0100, Bernhard Beschow wrote: > Although not used there, the attributes for Q35's "pci-hole64-size" and > "short_root_bus" properties currently reside in its child device. This > causes the default values to be overwritten during the child's > object_initialize()

[PATCH 06/12] hw/pci-host/q35: Initialize properties just once

2023-02-14 Thread Bernhard Beschow
Although not used there, the attributes for Q35's "pci-hole64-size" and "short_root_bus" properties currently reside in its child device. This causes the default values to be overwritten during the child's object_initialize() phase. Avoid this by moving both attributes into the host device. Signed