Btrfs: fix prealloc under heavy fragmentation conditions
authorJosef Bacik <jbacik@fb.com>
Wed, 23 Sep 2015 21:11:16 +0000 (17:11 -0400)
committerChris Mason <clm@fb.com>
Thu, 22 Oct 2015 01:51:44 +0000 (18:51 -0700)
commit0b670dc44c91bd1e5fac15b5ac4c98c8bd255ca2
treee0215055573cac5f67c6f6c5a515efdceb60bb07
parentd0bd456074dca089579818312da7cbe726ad2ff9
Btrfs: fix prealloc under heavy fragmentation conditions

If we are heavily fragmented we will continually try to prealloc the largest
extent size we can every time we call btrfs_reserve_extent.  This can be very
expensive when we are heavily fragmented, burning lots of CPU cycles and loops
through the allocator.  So instead notice when we get a smaller chunk from the
allocator than what we specified and use this as the new maximum size we try to
allocate.  Thanks,

Signed-off-by: Josef Bacik <jbacik@fb.com>
Signed-off-by: Chris Mason <clm@fb.com>
fs/btrfs/inode.c