0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-09-28 19:58:53 +02:00

ircd::fs: Use better indicator for async support type.

This commit is contained in:
Jason Volk 2019-08-11 04:52:17 -07:00
parent f8df61536a
commit 41c8643305

View file

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