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