diff options
Diffstat (limited to 'fs/xfs/libxfs/xfs_dir2_node.c')
| -rw-r--r-- | fs/xfs/libxfs/xfs_dir2_node.c | 10 | 
1 files changed, 4 insertions, 6 deletions
diff --git a/fs/xfs/libxfs/xfs_dir2_node.c b/fs/xfs/libxfs/xfs_dir2_node.c index 16731d2d684b..afcc6642690a 100644 --- a/fs/xfs/libxfs/xfs_dir2_node.c +++ b/fs/xfs/libxfs/xfs_dir2_node.c @@ -6,12 +6,11 @@   */  #include "xfs.h"  #include "xfs_fs.h" +#include "xfs_shared.h"  #include "xfs_format.h"  #include "xfs_log_format.h"  #include "xfs_trans_resv.h"  #include "xfs_mount.h" -#include "xfs_da_format.h" -#include "xfs_da_btree.h"  #include "xfs_inode.h"  #include "xfs_bmap.h"  #include "xfs_dir2.h" @@ -20,7 +19,6 @@  #include "xfs_trace.h"  #include "xfs_trans.h"  #include "xfs_buf_item.h" -#include "xfs_cksum.h"  #include "xfs_log.h"  /* @@ -84,7 +82,7 @@ static xfs_failaddr_t  xfs_dir3_free_verify(  	struct xfs_buf		*bp)  { -	struct xfs_mount	*mp = bp->b_target->bt_mount; +	struct xfs_mount	*mp = bp->b_mount;  	struct xfs_dir2_free_hdr *hdr = bp->b_addr;  	if (!xfs_verify_magic(bp, hdr->magic)) @@ -110,7 +108,7 @@ static void  xfs_dir3_free_read_verify(  	struct xfs_buf	*bp)  { -	struct xfs_mount	*mp = bp->b_target->bt_mount; +	struct xfs_mount	*mp = bp->b_mount;  	xfs_failaddr_t		fa;  	if (xfs_sb_version_hascrc(&mp->m_sb) && @@ -127,7 +125,7 @@ static void  xfs_dir3_free_write_verify(  	struct xfs_buf	*bp)  { -	struct xfs_mount	*mp = bp->b_target->bt_mount; +	struct xfs_mount	*mp = bp->b_mount;  	struct xfs_buf_log_item	*bip = bp->b_log_item;  	struct xfs_dir3_blk_hdr	*hdr3 = bp->b_addr;  	xfs_failaddr_t		fa;  | 
