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
|
const bool support_async
|
||||||
{
|
{
|
||||||
false
|
false
|
||||||
|| iou::support
|
|| iou::system
|
||||||
|| aio::support
|
|| aio::system
|
||||||
};
|
};
|
||||||
|
|
||||||
log::info
|
log::info
|
||||||
|
@ -2417,9 +2417,9 @@ ircd::fs::debug_support()
|
||||||
{
|
{
|
||||||
log, "Asynchronous filesystem IO provided by %s %s.",
|
log, "Asynchronous filesystem IO provided by %s %s.",
|
||||||
"Linux",
|
"Linux",
|
||||||
iou::support?
|
iou::system?
|
||||||
"io_uring":
|
"io_uring":
|
||||||
aio::support?
|
aio::system?
|
||||||
"AIO":
|
"AIO":
|
||||||
"?????",
|
"?????",
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue