diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2025-01-10 18:04:27 +0100 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2025-01-10 18:04:27 +0100 |
commit | 36eb21945a19d82c5b4bb1e995ca798104cb85ec (patch) | |
tree | 979d253f54a0cd9474215d2d42053dffbecb9ca5 /fs | |
parent | Merge tag 'platform-drivers-x86-v6.13-5' of git://git.kernel.org/pub/scm/linu... (diff) | |
parent | xfs: lock dquot buffer before detaching dquot from b_li_list (diff) | |
download | linux-36eb21945a19d82c5b4bb1e995ca798104cb85ec.tar.xz linux-36eb21945a19d82c5b4bb1e995ca798104cb85ec.zip |
Merge tag 'xfs-fixes-6.13-rc7' of git://git.kernel.org/pub/scm/fs/xfs/xfs-linux
Pull xfs fixes from Carlos Maiolino:
- Fix a missing lock while detaching a dquot buffer
- Fix failure on xfs_update_last_rtgroup_size for !XFS_RT
* tag 'xfs-fixes-6.13-rc7' of git://git.kernel.org/pub/scm/fs/xfs/xfs-linux:
xfs: lock dquot buffer before detaching dquot from b_li_list
xfs: don't return an error from xfs_update_last_rtgroup_size for !XFS_RT
Diffstat (limited to 'fs')
-rw-r--r-- | fs/xfs/libxfs/xfs_rtgroup.h | 2 | ||||
-rw-r--r-- | fs/xfs/xfs_dquot.c | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/fs/xfs/libxfs/xfs_rtgroup.h b/fs/xfs/libxfs/xfs_rtgroup.h index 7e7e491ff06f..2d7822644eff 100644 --- a/fs/xfs/libxfs/xfs_rtgroup.h +++ b/fs/xfs/libxfs/xfs_rtgroup.h @@ -272,7 +272,7 @@ static inline int xfs_initialize_rtgroups(struct xfs_mount *mp, } # define xfs_rtgroup_extents(mp, rgno) (0) -# define xfs_update_last_rtgroup_size(mp, rgno) (-EOPNOTSUPP) +# define xfs_update_last_rtgroup_size(mp, rgno) (0) # define xfs_rtgroup_lock(rtg, gf) ((void)0) # define xfs_rtgroup_unlock(rtg, gf) ((void)0) # define xfs_rtgroup_trans_join(tp, rtg, gf) ((void)0) diff --git a/fs/xfs/xfs_dquot.c b/fs/xfs/xfs_dquot.c index f11d475898f2..201c26322ede 100644 --- a/fs/xfs/xfs_dquot.c +++ b/fs/xfs/xfs_dquot.c @@ -87,8 +87,9 @@ xfs_dquot_detach_buf( } spin_unlock(&qlip->qli_lock); if (bp) { + xfs_buf_lock(bp); list_del_init(&qlip->qli_item.li_bio_list); - xfs_buf_rele(bp); + xfs_buf_relse(bp); } } |