Message ID | 20180418040828.18165-4-david@fromorbit.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
s/blk/block/ for block patches.
Otherwise looks fine:
Reviewed-by: Christoph Hellwig <hch@lst.de>
On 4/17/18 10:08 PM, Dave Chinner wrote: > From: Dave Chinner <dchinner@redhat.com> > > So we can check FUA support status from the iomap direct IO code. Applied, thanks.
diff --git a/include/linux/blkdev.h b/include/linux/blkdev.h index 9af3e0f430bc..c362aadfe036 100644 --- a/include/linux/blkdev.h +++ b/include/linux/blkdev.h @@ -737,6 +737,7 @@ bool blk_queue_flag_test_and_clear(unsigned int flag, struct request_queue *q); #define blk_queue_quiesced(q) test_bit(QUEUE_FLAG_QUIESCED, &(q)->queue_flags) #define blk_queue_preempt_only(q) \ test_bit(QUEUE_FLAG_PREEMPT_ONLY, &(q)->queue_flags) +#define blk_queue_fua(q) test_bit(QUEUE_FLAG_FUA, &(q)->queue_flags) extern int blk_set_preempt_only(struct request_queue *q); extern void blk_clear_preempt_only(struct request_queue *q);