From: Eric Sandeen Date: Mon, 6 Feb 2012 06:00:52 +0000 (-0600) Subject: fsstress: make sync a write op X-Git-Tag: v2022.05.01~3621 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=7d89aa90763e1ec02498b8193900902470e22fc1;p=xfstests-dev.git fsstress: make sync a write op I was running 068 to test freeze changes, and realized that "sync" is not in the op list when "-w" (write ops) is specified, although fsync & fdatasync are. It seems to me that sync should be a default write op as well. Signed-off-by: Eric Sandeen Reviewed-by: Dave Chinner --- diff --git a/ltp/fsstress.c b/ltp/fsstress.c index 9b3af178..b4cfb257 100644 --- a/ltp/fsstress.c +++ b/ltp/fsstress.c @@ -178,6 +178,7 @@ void unresvsp_f(int, long); void write_f(int, long); opdesc_t ops[] = { + /* { OP_ENUM, "name", function, freq, iswrite }, */ { OP_ALLOCSP, "allocsp", allocsp_f, 1, 1 }, { OP_ATTR_REMOVE, "attr_remove", attr_remove_f, /* 1 */ 0, 1 }, { OP_ATTR_SET, "attr_set", attr_set_f, /* 2 */ 0, 1 }, @@ -207,7 +208,7 @@ opdesc_t ops[] = { { OP_SETXATTR, "setxattr", setxattr_f, 1, 1 }, { OP_STAT, "stat", stat_f, 1, 0 }, { OP_SYMLINK, "symlink", symlink_f, 2, 1 }, - { OP_SYNC, "sync", sync_f, 1, 0 }, + { OP_SYNC, "sync", sync_f, 1, 1 }, { OP_TRUNCATE, "truncate", truncate_f, 2, 1 }, { OP_UNLINK, "unlink", unlink_f, 1, 1 }, { OP_UNRESVSP, "unresvsp", unresvsp_f, 1, 1 },