mirror of
https://github.com/matrix-construct/construct
synced 2024-11-16 15:00:51 +01:00
ircd::fs: Use better indicator for async support type.
This commit is contained in:
parent
f8df61536a
commit
41c8643305
1 changed files with 4 additions and 4 deletions
|
@ -2393,8 +2393,8 @@ ircd::fs::debug_support()
|
|||
const bool support_async
|
||||
{
|
||||
false
|
||||
|| iou::support
|
||||
|| aio::support
|
||||
|| iou::system
|
||||
|| aio::system
|
||||
};
|
||||
|
||||
log::info
|
||||
|
@ -2417,9 +2417,9 @@ ircd::fs::debug_support()
|
|||
{
|
||||
log, "Asynchronous filesystem IO provided by %s %s.",
|
||||
"Linux",
|
||||
iou::support?
|
||||
iou::system?
|
||||
"io_uring":
|
||||
aio::support?
|
||||
aio::system?
|
||||
"AIO":
|
||||
"?????",
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue