diff options
author | Dave Chinner <dchinner@redhat.com> | 2012-11-02 11:38:42 +1100 |
---|---|---|
committer | Ben Myers <bpm@sgi.com> | 2012-11-08 11:10:18 -0600 |
commit | 4b62acfe99e158fb7812982d1cf90a075710a92c (patch) | |
tree | 110257a9ec56399668b7f4962a8fdb12782b7890 /fs/xfs | |
parent | ca250b1b3d711936d7dae9e97871f2261347f82d (diff) | |
download | talos-op-linux-4b62acfe99e158fb7812982d1cf90a075710a92c.tar.gz talos-op-linux-4b62acfe99e158fb7812982d1cf90a075710a92c.zip |
xfs: don't vmap inode cluster buffers during free
Inode buffers do not need to be mapped as inodes are read or written
directly from/to the pages underlying the buffer. This fixes a
regression introduced by commit 611c994 ("xfs: make XBF_MAPPED the
default behaviour").
Signed-off-by: Dave Chinner <dchinner@redhat.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Mark Tinguely <tinguely@sgi.com>
Signed-off-by: Ben Myers <bpm@sgi.com>
Diffstat (limited to 'fs/xfs')
-rw-r--r-- | fs/xfs/xfs_inode.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/xfs/xfs_inode.c b/fs/xfs/xfs_inode.c index 2778258fcfa2..1938b41ee9f5 100644 --- a/fs/xfs/xfs_inode.c +++ b/fs/xfs/xfs_inode.c @@ -1509,7 +1509,8 @@ xfs_ifree_cluster( * to mark all the active inodes on the buffer stale. */ bp = xfs_trans_get_buf(tp, mp->m_ddev_targp, blkno, - mp->m_bsize * blks_per_cluster, 0); + mp->m_bsize * blks_per_cluster, + XBF_UNMAPPED); if (!bp) return ENOMEM; |