From 75bd80f900ea7c15b9fc4654c3bea3b46719888f Mon Sep 17 00:00:00 2001 From: Eric Sandeen Date: Thu, 24 Sep 2020 13:21:21 -0500 Subject: [PATCH] src/t_mmap_dio: do not build if !HAVE_AIO We have a config check for libaio headers, and don't build certain tools if it is not present, but this one was missed. Signed-off-by: Eric Sandeen Reviewed-by: Eryu Guan Signed-off-by: Eryu Guan --- src/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Makefile b/src/Makefile index 643c1916..020e1dc9 100644 --- a/src/Makefile +++ b/src/Makefile @@ -13,7 +13,7 @@ TARGETS = dirstress fill fill2 getpagesize holes lstat64 \ godown resvtest writemod writev_on_pagefault makeextents itrash rename \ multi_open_unlink dmiperf unwritten_sync genhashnames t_holes \ t_mmap_writev t_truncate_cmtime dirhash_collide t_rename_overwrite \ - holetest t_truncate_self t_mmap_dio af_unix t_mmap_stale_pmd \ + holetest t_truncate_self af_unix t_mmap_stale_pmd \ t_mmap_cow_race t_mmap_fallocate fsync-err t_mmap_write_ro \ t_ext4_dax_journal_corruption t_ext4_dax_inline_corruption \ t_ofd_locks t_mmap_collision mmap-write-concurrent \ @@ -61,6 +61,7 @@ LLDLIBS += $(LIBGDBM) endif ifeq ($(HAVE_AIO), true) +TARGETS += t_mmap_dio SUBDIRS += aio-dio-regress LLDLIBS += -laio endif -- 2.39.5