diff options
-rw-r--r-- | fs/xfs/xfs_bmap.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/xfs/xfs_bmap.c b/fs/xfs/xfs_bmap.c index c5077208e419..491f35e2dd26 100644 --- a/fs/xfs/xfs_bmap.c +++ b/fs/xfs/xfs_bmap.c | |||
@@ -4676,9 +4676,6 @@ __xfs_bmapi_allocate( | |||
4676 | return error; | 4676 | return error; |
4677 | } | 4677 | } |
4678 | 4678 | ||
4679 | if (bma->flags & XFS_BMAPI_STACK_SWITCH) | ||
4680 | bma->stack_switch = 1; | ||
4681 | |||
4682 | error = xfs_bmap_alloc(bma); | 4679 | error = xfs_bmap_alloc(bma); |
4683 | if (error) | 4680 | if (error) |
4684 | return error; | 4681 | return error; |
@@ -4952,6 +4949,9 @@ xfs_bmapi_write( | |||
4952 | bma.flist = flist; | 4949 | bma.flist = flist; |
4953 | bma.firstblock = firstblock; | 4950 | bma.firstblock = firstblock; |
4954 | 4951 | ||
4952 | if (flags & XFS_BMAPI_STACK_SWITCH) | ||
4953 | bma.stack_switch = 1; | ||
4954 | |||
4955 | while (bno < end && n < *nmap) { | 4955 | while (bno < end && n < *nmap) { |
4956 | inhole = eof || bma.got.br_startoff > bno; | 4956 | inhole = eof || bma.got.br_startoff > bno; |
4957 | wasdelay = !inhole && isnullstartblock(bma.got.br_startblock); | 4957 | wasdelay = !inhole && isnullstartblock(bma.got.br_startblock); |