The following changes since commit f9fc7a27cae5ea2dbb310c05f7b693c68ba15537: backend: fix runtime when used with thinktime (2023-02-17 19:52:50 -0700) are available in the Git repository at: git://git.kernel.dk/fio.git master for you to fetch changes up to 7a3a166c6c43e45de1c8085254fbdd011c572f05: configure: restore dev-dax and libpmem (2023-02-20 08:53:23 -0500) ---------------------------------------------------------------- Vincent Fu (1): configure: restore dev-dax and libpmem configure | 8 ++++++++ 1 file changed, 8 insertions(+) --- Diff of recent changes: diff --git a/configure b/configure index 0d02bce8..45d10a31 100755 --- a/configure +++ b/configure @@ -2228,6 +2228,14 @@ if compile_prog "" "-lpmem2" "libpmem2"; then fi print_config "libpmem2" "$libpmem2" +# Choose libpmem-based ioengines +if test "$libpmem" = "yes" && test "$disable_pmem" = "no"; then + devdax="yes" + if test "$libpmem1_5" = "yes"; then + pmem="yes" + fi +fi + ########################################## # Report whether dev-dax engine is enabled print_config "PMDK dev-dax engine" "$devdax"