The PCIESlot::disable_acs boolean was only set in the
hw_compat_3_1[] array, via the 'disable-acs=true' property.
We removed all machines using that array, lets remove that
property and all the code around it.
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Message-Id: <
20260307152635.83893-10-philmd@linaro.org>
pcie_aer_root_init(d);
rp_aer_vector_update(d);
- if (rpc->acs_offset && !s->disable_acs) {
+ if (rpc->acs_offset) {
pcie_acs_init(d, rpc->acs_offset);
}
return;
static const Property rp_props[] = {
DEFINE_PROP_BIT(COMPAT_PROP_PCP, PCIDevice, cap_present,
QEMU_PCIE_SLTCAP_PCP_BITNR, true),
- DEFINE_PROP_BOOL("disable-acs", PCIESlot, disable_acs, false),
};
static void rp_instance_post_init(Object *obj)
PCIExpLinkWidth width;
bool flitmode;
- /* Disable ACS (really for a pcie_root_port) */
- bool disable_acs;
-
/* Indicates whether any type of hot-plug is allowed on the slot */
bool hotplug;