btrfs: preallocate device flush bio
authorDavid Sterba <dsterba@suse.com>
Tue, 6 Jun 2017 15:06:06 +0000 (17:06 +0200)
committerDavid Sterba <dsterba@suse.com>
Wed, 21 Jun 2017 17:03:38 +0000 (19:03 +0200)
commit85c054f41980a34f8f0eaf2a1782c0a19b73be55
treeb127434d66d6eea75a6132b3e5b8176c2608e9d9
parente021cb72dc6c6728656d76792251a6589f9f2a0f
btrfs: preallocate device flush bio

For devices that support flushing, we allocate a bio, submit, wait for
it and then free it. The bio allocation does not fail so ENOMEM is not a
problem but we still may unnecessarily stress the allocation subsystem.

Instead, we can allocate the bio at the same time we allocate the device
and reuse it each time we need to flush the barriers. The bio is reset
before each use. Reference counting is simplified to just device
allocation (get) and freeing (put).

The bio used to be submitted through the integrity checker which will
find out that bio has no data attached and call submit_bio.

Status of the bio in flight needs to be tracked separately in case the
device caches get switched off between write and wait.

Signed-off-by: David Sterba <dsterba@suse.com>
fs/btrfs/disk-io.c
fs/btrfs/volumes.c
fs/btrfs/volumes.h