diff options
author | Brian Foster <bfoster@redhat.com> | 2016-01-04 15:55:10 +1100 |
---|---|---|
committer | Dave Chinner <david@fromorbit.com> | 2016-01-04 15:55:10 +1100 |
commit | 6528250b712102a7481c28db535ef251459d1868 (patch) | |
tree | fdde13830aafdc7d039fb70883b4a504c3bab60e /fs/xfs/libxfs/xfs_log_recover.h | |
parent | d7f37692e38798797d415153bc186afb2bbac645 (diff) | |
download | lwn-6528250b712102a7481c28db535ef251459d1868.tar.gz lwn-6528250b712102a7481c28db535ef251459d1868.zip |
xfs: support a crc verification only log record pass
Log recovery torn write detection uses CRC verification over a range of
the active log to identify torn writes. Since the generic log recovery
pass code implements a superset of the functionality required for CRC
verification, it can be easily modified to support a CRC verification
only pass.
Create a new CRC pass type and update the log record processing helper
to skip everything beyond CRC verification when in this mode. This pass
will be invoked in subsequent patches to implement torn write detection.
Signed-off-by: Brian Foster <bfoster@redhat.com>
Reviewed-by: Dave Chinner <dchinner@redhat.com>
Signed-off-by: Dave Chinner <david@fromorbit.com>
Diffstat (limited to 'fs/xfs/libxfs/xfs_log_recover.h')
-rw-r--r-- | fs/xfs/libxfs/xfs_log_recover.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/xfs/libxfs/xfs_log_recover.h b/fs/xfs/libxfs/xfs_log_recover.h index 1c55ccbb379d..8e385f91d660 100644 --- a/fs/xfs/libxfs/xfs_log_recover.h +++ b/fs/xfs/libxfs/xfs_log_recover.h @@ -60,6 +60,7 @@ typedef struct xlog_recover { */ #define XLOG_BC_TABLE_SIZE 64 +#define XLOG_RECOVER_CRCPASS 0 #define XLOG_RECOVER_PASS1 1 #define XLOG_RECOVER_PASS2 2 |