The following changes since commit 7216b664d93ef9c59ca5dbc8f54bad2118231ee3: Calculate min_rate with the consideration of thinktime (2021-01-26 08:58:42 -0700) are available in the Git repository at: git://git.kernel.dk/fio.git master for you to fetch changes up to 119bb82143bd6c4a577c135ece4ed6b702443f50: Merge branch 'fio-fix-detecting-libpmem' of https://github.com/ldorau/fio (2021-01-27 09:51:01 -0700) ---------------------------------------------------------------- Jens Axboe (1): Merge branch 'fio-fix-detecting-libpmem' of https://github.com/ldorau/fio Lukasz Dorau (1): fio: fix detecting libpmem configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- Diff of recent changes: diff --git a/configure b/configure index e6e33d7f..748f7014 100755 --- a/configure +++ b/configure @@ -2055,7 +2055,7 @@ cat > $TMPC << EOF int main(int argc, char **argv) { int rc; - rc = pmem_is_pmem(NULL, NULL); + rc = pmem_is_pmem(NULL, 0); return 0; } EOF