From: Christoph Hellwig Date: Mon, 29 Sep 2014 03:11:05 +0000 (+1000) Subject: fsx: increase number of logged operations X-Git-Tag: v2022.05.01~3054 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=a66f3c3f70d1f3b82510b5620b2fea9064291628;p=xfstests-dev.git fsx: increase number of logged operations 1000 operations is not nearly enough to debug complex data integrity issues, so increase the log buffer by an order of magnitude. Signed-off-by: Christoph Hellwig Reviewed-by: Theodore Ts'o Signed-off-by: Dave Chinner --- diff --git a/ltp/fsx.c b/ltp/fsx.c index 47d3ee8d..3709419b 100644 --- a/ltp/fsx.c +++ b/ltp/fsx.c @@ -49,7 +49,7 @@ struct log_entry { int args[3]; }; -#define LOGSIZE 1000 +#define LOGSIZE 10000 struct log_entry oplog[LOGSIZE]; /* the log */ int logptr = 0; /* current position in log */