diff options
author | Carlos Maiolino <cem@kernel.org> | 2025-03-18 14:10:30 +0100 |
---|---|---|
committer | Carlos Maiolino <cem@kernel.org> | 2025-03-18 14:10:30 +0100 |
commit | c3a60b673a229940ab531dfbe917a91c8ea3cefc (patch) | |
tree | 59788012ad345d08f02d78f5ff070cc6216d374f /fs/xfs/xfs_inode.c | |
parent | 8e6415460ff16f5a9673a021547e0a34358ddfe9 (diff) | |
parent | 89ce287c83c91f5d222809b82e597426587a862d (diff) |
Merge branch 'xfs-6.15-folios_vmalloc' into XFS-for-linus-6.15-merge
Merge buffer cache conversion to folios and vmalloc
Signed-off-by: Carlos Maiolino <cem@kernel.org>
Diffstat (limited to 'fs/xfs/xfs_inode.c')
-rw-r--r-- | fs/xfs/xfs_inode.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/xfs/xfs_inode.c b/fs/xfs/xfs_inode.c index 7ded570e0191..ce6b8ffbaa2c 100644 --- a/fs/xfs/xfs_inode.c +++ b/fs/xfs/xfs_inode.c @@ -1721,8 +1721,7 @@ xfs_ifree_cluster( * to mark all the active inodes on the buffer stale. */ error = xfs_trans_get_buf(tp, mp->m_ddev_targp, blkno, - mp->m_bsize * igeo->blocks_per_cluster, - XBF_UNMAPPED, &bp); + mp->m_bsize * igeo->blocks_per_cluster, 0, &bp); if (error) return error; |