From 780dd1eaffaf57ff6910289bd74d82a884677c3c Mon Sep 17 00:00:00 2001 From: Eryu Guan Date: Thu, 16 Mar 2017 14:48:07 +0800 Subject: [PATCH] generic/417: reduce extend attribute size xattr size 1024 is too big for 1k block size ext3/4 filesystem, so test fails due to ENSPC message from multi_open_unlink when setting xattr. Reduce the xattr size to 512 so it fits in 1k block size ext3/4. Reviewed-by: Xiong Zhou Signed-off-by: Eryu Guan --- tests/generic/417 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/generic/417 b/tests/generic/417 index 45d63f5e..690ceb5d 100755 --- a/tests/generic/417 +++ b/tests/generic/417 @@ -61,7 +61,7 @@ function create_dirty_orphans() { num_files=200 num_eas=1 - ea_val_size=1024 + ea_val_size=512 # sleep for ages and we will kill this pid when we are ready delay=100 -- 2.39.5