mirror of
https://github.com/matrix-construct/construct
synced 2024-11-16 15:00:51 +01:00
ircd::fs: Allow ircd.fs.aio.max_submit=0 to indicate max possible.
This commit is contained in:
parent
c6d056421d
commit
a61d04a9c2
2 changed files with 2 additions and 2 deletions
|
@ -1388,7 +1388,7 @@ decltype(ircd::fs::aio::max_submit)
|
||||||
ircd::fs::aio::max_submit
|
ircd::fs::aio::max_submit
|
||||||
{
|
{
|
||||||
{ "name", "ircd.fs.aio.max_submit" },
|
{ "name", "ircd.fs.aio.max_submit" },
|
||||||
{ "default", 32L },
|
{ "default", 0L },
|
||||||
{ "persist", false },
|
{ "persist", false },
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -500,7 +500,7 @@ try
|
||||||
}
|
}
|
||||||
,queue
|
,queue
|
||||||
{
|
{
|
||||||
max_submit
|
max_submit?: max_events
|
||||||
}
|
}
|
||||||
,resfd
|
,resfd
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue