diff options
author | Darrick J. Wong <djwong@kernel.org> | 2021-06-08 18:22:34 +0200 |
---|---|---|
committer | Darrick J. Wong <djwong@kernel.org> | 2021-06-08 18:22:34 +0200 |
commit | 8b943d21d40d5d7f8306e833b156f8d11094470f (patch) | |
tree | 02417dc80e38042ff9e4fc0b35c2a5c1ab70c427 /fs/xfs/libxfs/xfs_alloc.c | |
parent | Merge tag 'unit-conversion-cleanups-5.14_2021-06-03' of https://git.kernel.or... (diff) | |
parent | xfs: don't take a spinlock unconditionally in the DIO fastpath (diff) | |
download | linux-8b943d21d40d5d7f8306e833b156f8d11094470f.tar.xz linux-8b943d21d40d5d7f8306e833b156f8d11094470f.zip |
Merge tag 'assorted-fixes-5.14-1_2021-06-03' of https://git.kernel.org/pub/scm/linux/kernel/git/djwong/xfs-linux into xfs-5.14-merge2
xfs: assorted fixes for 5.14, part 1
This branch contains the first round of various small fixes for 5.14.
* tag 'assorted-fixes-5.14-1_2021-06-03' of https://git.kernel.org/pub/scm/linux/kernel/git/djwong/xfs-linux:
xfs: don't take a spinlock unconditionally in the DIO fastpath
xfs: mark xfs_bmap_set_attrforkoff static
xfs: Remove redundant assignment to busy
xfs: sort variable alphabetically to avoid repeated declaration
Diffstat (limited to 'fs/xfs/libxfs/xfs_alloc.c')
-rw-r--r-- | fs/xfs/libxfs/xfs_alloc.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/fs/xfs/libxfs/xfs_alloc.c b/fs/xfs/libxfs/xfs_alloc.c index 00bb34251829..4c4fd77bbc4b 100644 --- a/fs/xfs/libxfs/xfs_alloc.c +++ b/fs/xfs/libxfs/xfs_alloc.c @@ -1676,7 +1676,6 @@ restart: cnt_cur = xfs_allocbt_init_cursor(args->mp, args->tp, args->agbp, args->pag, XFS_BTNUM_CNT); bno_cur = NULL; - busy = false; /* * Look for an entry >= maxlen+alignment-1 blocks. |