ACPI: Increase quota of PCI service

Some tests trigger memory exhaustions of the PCI-slave service used by the
ACPI-driver.
This commit is contained in:
Sebastian Sumpf 2012-07-18 15:46:07 +02:00 committed by Norman Feske
parent ff65f6f021
commit ae88dc233c
1 changed files with 1 additions and 1 deletions

View File

@ -202,7 +202,7 @@ int main(int argc, char **argv)
/* use 'pci_drv' as slave service */
static Rpc_entrypoint pci_ep(&cap, STACK_SIZE, "pci_slave");
static Pci_policy pci_policy(pci_ep, ep, irq_ep);
static Genode::Slave pci_slave(pci_ep, pci_policy, 512 * 1024);
static Genode::Slave pci_slave(pci_ep, pci_policy, 1024 * 1024);
Genode::sleep_forever();
return 0;