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 <hch@lst.de>
Reviewed-by: Theodore Ts'o <tytso@mit.edu>
Signed-off-by: Dave Chinner <david@fromorbit.com>
This commit is contained in:
Christoph Hellwig
2014-09-29 13:11:05 +10:00
committed by Dave Chinner
parent 44d8ae4351
commit a66f3c3f70
+1 -1
View File
@@ -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 */