]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/commitdiff
umem: use op_is_sync to check for synchronous requests
authorChristoph Hellwig <hch@lst.de>
Tue, 1 Nov 2016 13:40:04 +0000 (07:40 -0600)
committerJens Axboe <axboe@fb.com>
Tue, 1 Nov 2016 15:43:26 +0000 (09:43 -0600)
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Jens Axboe <axboe@fb.com>
drivers/block/umem.c

index be90e15854ed5bf4078e8b9caa25d6d997231366..46f4c719fed96317c2bb1a217d6744f046c10986 100644 (file)
@@ -535,7 +535,7 @@ static blk_qc_t mm_make_request(struct request_queue *q, struct bio *bio)
        *card->biotail = bio;
        bio->bi_next = NULL;
        card->biotail = &bio->bi_next;
-       if (bio->bi_opf & REQ_SYNC || !mm_check_plugged(card))
+       if (op_is_sync(bio->bi_opf) || !mm_check_plugged(card))
                activate(card);
        spin_unlock_irq(&card->lock);