TSG-10708 KNI使用io_uring替换read/write以实现I/O加速

* support iouring: 按需动态分配内存
This commit is contained in:
luwenpeng
2022-05-31 17:38:00 +08:00
parent f7ea81dad8
commit 990d8ae173
11 changed files with 441 additions and 39 deletions

8
cmake/FindLIBURING.cmake Normal file
View File

@@ -0,0 +1,8 @@
include(FindPkgConfig)
pkg_check_modules(LIBURING liburing)
if(LIBURING_FOUND)
set(SUPPORT_LIBURING true)
else()
set(SUPPORT_LIBURING false)
endif()