mirror of
https://github.com/matrix-construct/construct
synced 2025-01-14 00:34:18 +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
|
||||
{
|
||||
{ "name", "ircd.fs.aio.max_submit" },
|
||||
{ "default", 32L },
|
||||
{ "default", 0L },
|
||||
{ "persist", false },
|
||||
};
|
||||
|
||||
|
|
|
@ -500,7 +500,7 @@ try
|
|||
}
|
||||
,queue
|
||||
{
|
||||
max_submit
|
||||
max_submit?: max_events
|
||||
}
|
||||
,resfd
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue