acpi: Adjust device_pd quota for 64bit machines

This commit is contained in:
Norman Feske 2013-03-22 12:45:31 +01:00
parent 839c0263c9
commit c36909e5dc
2 changed files with 5 additions and 5 deletions

View File

@ -69,7 +69,7 @@ set config {
<provides> <service name="Timer"/> </provides>
</start>
<start name="test-lwip_httpsrv">
<resource name="RAM" quantum="2M"/>
<resource name="RAM" quantum="3M"/>
</start> }
append_if [have_spec omap4] config {
@ -91,7 +91,7 @@ append_if [expr ![have_spec omap4]] config {
append_if [have_spec acpi] config {
<start name="acpi">
<resource name="RAM" quantum="5M"/>
<resource name="RAM" quantum="6M"/>
<binary name="acpi_drv"/>
<provides>
<service name="PCI"/>

View File

@ -81,7 +81,7 @@ int main(int argc, char **argv)
*/
enum {
STACK_SIZE = 2 * sizeof(addr_t)*1024,
PCI_DEVICE_PD_RAM_QUOTA = 512 * 1024,
PCI_DEVICE_PD_RAM_QUOTA = sizeof(addr_t) * 128 * 1024,
};
static Cap_connection cap;