mirror of
https://github.com/linux-apfs/apfstests.git
synced 2026-05-01 15:01:44 -07:00
57a18fcb24
IO_URING is a new feature of curent linux kernel, add basic IO_URING read/write into fsstess to cover this kind of IO testing. Signed-off-by: Zorro Lang <zlang@redhat.com> Reviewed-by: Brian Foster <bfoster@redhat.com> Signed-off-by: Eryu Guan <guaneryu@gmail.com>
5 lines
140 B
Plaintext
5 lines
140 B
Plaintext
AC_DEFUN([AC_PACKAGE_WANT_URING],
|
|
[ AC_CHECK_HEADERS(liburing.h, [ have_uring=true ], [ have_uring=false ])
|
|
AC_SUBST(have_uring)
|
|
])
|