0
0
Fork 0
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:
Jason Volk 2019-04-22 15:39:14 -07:00
parent c6d056421d
commit a61d04a9c2
2 changed files with 2 additions and 2 deletions

View file

@ -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 },
}; };

View file

@ -500,7 +500,7 @@ try
} }
,queue ,queue
{ {
max_submit max_submit?: max_events
} }
,resfd ,resfd
{ {