diff options
author | Christoph Hellwig <hch@lst.de> | 2016-11-01 07:40:06 -0600 |
---|---|---|
committer | Jens Axboe <axboe@fb.com> | 2016-11-01 09:43:26 -0600 |
commit | 67f055c798c72c49ee0c844eae0cd6e9c83b1b16 (patch) | |
tree | 20786d4de35a1832debc631f0a6586e8c38ce7eb /fs/btrfs/volumes.c | |
parent | 83b5df67c50995ed93b2b7adac3f002ad8bb6069 (diff) | |
download | linux-stable-67f055c798c72c49ee0c844eae0cd6e9c83b1b16.tar.gz linux-stable-67f055c798c72c49ee0c844eae0cd6e9c83b1b16.tar.bz2 linux-stable-67f055c798c72c49ee0c844eae0cd6e9c83b1b16.zip |
btrfs: use op_is_sync to check for synchronous requests
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Jens Axboe <axboe@fb.com>
Diffstat (limited to 'fs/btrfs/volumes.c')
-rw-r--r-- | fs/btrfs/volumes.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/btrfs/volumes.c b/fs/btrfs/volumes.c index 71a60cc01451..deda46cf1292 100644 --- a/fs/btrfs/volumes.c +++ b/fs/btrfs/volumes.c @@ -6100,7 +6100,7 @@ static noinline void btrfs_schedule_bio(struct btrfs_root *root, bio->bi_next = NULL; spin_lock(&device->io_lock); - if (bio->bi_opf & REQ_SYNC) + if (op_is_sync(bio->bi_opf)) pending_bios = &device->pending_sync_bios; else pending_bios = &device->pending_bios; |