diff options
author | Christoph Hellwig <hch@lst.de> | 2016-02-08 06:58:07 +0300 |
---|---|---|
committer | Dave Chinner <david@fromorbit.com> | 2016-02-08 06:58:07 +0300 |
commit | edfd9dd549212a0923c9b5b142275dc88912abfa (patch) | |
tree | 8d096dd78a94b1f4594afcbefec9d187de060923 /fs/xfs/libxfs/xfs_bmap_btree.c | |
parent | c46ee8ad7856b58eeb383c30ce847897f85c4103 (diff) | |
download | linux-edfd9dd549212a0923c9b5b142275dc88912abfa.tar.xz |
xfs: move buffer invalidation to xfs_btree_free_block
... instead of leaving it in the methods.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Brian Foster <bfoster@redhat.com>
Signed-off-by: Dave Chinner <david@fromorbit.com>
Diffstat (limited to 'fs/xfs/libxfs/xfs_bmap_btree.c')
-rw-r--r-- | fs/xfs/libxfs/xfs_bmap_btree.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/fs/xfs/libxfs/xfs_bmap_btree.c b/fs/xfs/libxfs/xfs_bmap_btree.c index 1637c37bfbaa..e37508ae589b 100644 --- a/fs/xfs/libxfs/xfs_bmap_btree.c +++ b/fs/xfs/libxfs/xfs_bmap_btree.c @@ -531,7 +531,6 @@ xfs_bmbt_free_block( xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE); xfs_trans_mod_dquot_byino(tp, ip, XFS_TRANS_DQ_BCOUNT, -1L); - xfs_trans_binval(tp, bp); return 0; } |