diff mbox series

xfs: remove unused variable from xfs_dir2_block_lookup_int

Message ID 20191113041310.GG6219@magnolia (mailing list archive)
State New, archived
Headers show
Series xfs: remove unused variable from xfs_dir2_block_lookup_int | expand

Commit Message

Darrick J. Wong Nov. 13, 2019, 4:13 a.m. UTC
From: Darrick J. Wong <darrick.wong@oracle.com>

Remove an unused variable.

Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
---
 fs/xfs/libxfs/xfs_dir2_block.c |    2 --
 1 file changed, 2 deletions(-)

Comments

Darrick J. Wong Nov. 13, 2019, 4:23 a.m. UTC | #1
On Tue, Nov 12, 2019 at 08:13:10PM -0800, Darrick J. Wong wrote:
> From: Darrick J. Wong <darrick.wong@oracle.com>
> 
> Remove an unused variable.

NAK, I'll just roll this into the devirtualize m_dirops patch.

--D

> Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
> ---
>  fs/xfs/libxfs/xfs_dir2_block.c |    2 --
>  1 file changed, 2 deletions(-)
> 
> diff --git a/fs/xfs/libxfs/xfs_dir2_block.c b/fs/xfs/libxfs/xfs_dir2_block.c
> index f9d83205659e..328a8dd53a22 100644
> --- a/fs/xfs/libxfs/xfs_dir2_block.c
> +++ b/fs/xfs/libxfs/xfs_dir2_block.c
> @@ -660,13 +660,11 @@ xfs_dir2_block_lookup_int(
>  	int			high;		/* binary search high index */
>  	int			low;		/* binary search low index */
>  	int			mid;		/* binary search current idx */
> -	xfs_mount_t		*mp;		/* filesystem mount point */
>  	xfs_trans_t		*tp;		/* transaction pointer */
>  	enum xfs_dacmp		cmp;		/* comparison result */
>  
>  	dp = args->dp;
>  	tp = args->trans;
> -	mp = dp->i_mount;
>  
>  	error = xfs_dir3_block_read(tp, dp, &bp);
>  	if (error)
diff mbox series

Patch

diff --git a/fs/xfs/libxfs/xfs_dir2_block.c b/fs/xfs/libxfs/xfs_dir2_block.c
index f9d83205659e..328a8dd53a22 100644
--- a/fs/xfs/libxfs/xfs_dir2_block.c
+++ b/fs/xfs/libxfs/xfs_dir2_block.c
@@ -660,13 +660,11 @@  xfs_dir2_block_lookup_int(
 	int			high;		/* binary search high index */
 	int			low;		/* binary search low index */
 	int			mid;		/* binary search current idx */
-	xfs_mount_t		*mp;		/* filesystem mount point */
 	xfs_trans_t		*tp;		/* transaction pointer */
 	enum xfs_dacmp		cmp;		/* comparison result */
 
 	dp = args->dp;
 	tp = args->trans;
-	mp = dp->i_mount;
 
 	error = xfs_dir3_block_read(tp, dp, &bp);
 	if (error)