diff options
Diffstat (limited to 'fs/xfs/libxfs/xfs_dir2_data.c')
| -rw-r--r-- | fs/xfs/libxfs/xfs_dir2_data.c | 3 | 
1 files changed, 3 insertions, 0 deletions
| diff --git a/fs/xfs/libxfs/xfs_dir2_data.c b/fs/xfs/libxfs/xfs_dir2_data.c index 824131e71bc5..af71a84f343c 100644 --- a/fs/xfs/libxfs/xfs_dir2_data.c +++ b/fs/xfs/libxfs/xfs_dir2_data.c @@ -31,6 +31,7 @@  #include "xfs_trans.h"  #include "xfs_buf_item.h"  #include "xfs_cksum.h" +#include "xfs_log.h"  /*   * Check the consistency of the data block. @@ -224,6 +225,8 @@ xfs_dir3_data_verify(  			return false;  		if (be64_to_cpu(hdr3->blkno) != bp->b_bn)  			return false; +		if (!xfs_log_check_lsn(mp, be64_to_cpu(hdr3->lsn))) +			return false;  	} else {  		if (hdr3->magic != cpu_to_be32(XFS_DIR2_DATA_MAGIC))  			return false; | 
