[LTP] [PATCH] Skip test02 before kernel 2.6.38

shuang.qiu@oracle.com shuang.qiu@oracle.com
Wed Jan 13 05:58:49 CET 2016


From: Shuang Qiu <shuang.qiu@oracle.com>

FALLOC_FL_PUNCH_HOLE flag for fallocate syscall is available since Linux 2.6.38.

Signed-off-by: Shuang Qiu <shuang.qiu@oracle.com>
---
 testcases/kernel/syscalls/fallocate/fallocate04.c |    5 +++++
 1 file changed, 5 insertions(+)

diff --git a/testcases/kernel/syscalls/fallocate/fallocate04.c b/testcases/kernel/syscalls/fallocate/fallocate04.c
index 41453ac..f77e283 100644
--- a/testcases/kernel/syscalls/fallocate/fallocate04.c
+++ b/testcases/kernel/syscalls/fallocate/fallocate04.c
@@ -142,6 +142,11 @@ static void test02(void)
 	tst_resm(TINFO, "read allocated file size '%zu'", alloc_size0);
 	tst_resm(TINFO, "make a hole with FALLOC_FL_PUNCH_HOLE");
 
+	if (tst_kvercmp(2, 6, 38) < 0) {
+		tst_brkm(TCONF, cleanup,
+			 "Test must be run with kernel 2.6.38 or newer");
+	}
+
 	if (fallocate(fd, FALLOC_FL_PUNCH_HOLE | FALLOC_FL_KEEP_SIZE,
 	    block_size, block_size) == -1) {
 		if (errno == EOPNOTSUPP)
-- 
1.7.9.5



More information about the Ltp mailing list