From a66f3c3f70d1f3b82510b5620b2fea9064291628 Mon Sep 17 00:00:00 2001 From: Christoph Hellwig Date: Mon, 29 Sep 2014 13:11:05 +1000 Subject: [PATCH] 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 --- ltp/fsx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 */ -- 2.25.1