mirror of
https://github.com/genodelabs/genode.git
synced 2025-04-08 11:55:24 +00:00
Increase RAM quota for Nic::Connection
At least on foc_x86_64, nic_router refused to create sessions for the test clients as the session object's size exceeds the old quota donation. Ref #2139
This commit is contained in:
parent
a090c9047d
commit
7eabe482b6
@ -35,7 +35,8 @@ struct Nic::Connection : Genode::Connection<Session>, Session_client
|
||||
{
|
||||
return session(parent,
|
||||
"ram_quota=%ld, tx_buf_size=%ld, rx_buf_size=%ld, label=\"%s\"",
|
||||
6*4096 + tx_buf_size + rx_buf_size, tx_buf_size, rx_buf_size, label);
|
||||
32*1024*sizeof(long) + tx_buf_size + rx_buf_size,
|
||||
tx_buf_size, rx_buf_size, label);
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
x
Reference in New Issue
Block a user