fsstress: make sync a write op
authorEric Sandeen <sandeen@sandeen.net>
Mon, 6 Feb 2012 06:00:52 +0000 (00:00 -0600)
committerEric Sandeen <sandeen@sandeen.net>
Mon, 6 Feb 2012 06:00:52 +0000 (00:00 -0600)
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 <sandeen@sandeen.net>
Reviewed-by: Dave Chinner <dchinner@redhat.com>
ltp/fsstress.c

index 9b3af17803cc896a9936aa7ea91cd499cd90b729..b4cfb257b16a593fd17cb6cdd82cf0625a4d184d 100644 (file)
@@ -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 },