|
@@ -666,16 +666,16 @@ static inline bool rq_mergeable(struct request *rq)
|
|
|
return true;
|
|
|
}
|
|
|
|
|
|
-static inline bool blk_check_merge_flags(unsigned int flags1,
|
|
|
- unsigned int flags2)
|
|
|
+static inline bool blk_check_merge_flags(unsigned int flags1, unsigned int op1,
|
|
|
+ unsigned int flags2, unsigned int op2)
|
|
|
{
|
|
|
- if ((flags1 & REQ_DISCARD) != (flags2 & REQ_DISCARD))
|
|
|
+ if ((op1 == REQ_OP_DISCARD) != (op2 == REQ_OP_DISCARD))
|
|
|
return false;
|
|
|
|
|
|
if ((flags1 & REQ_SECURE) != (flags2 & REQ_SECURE))
|
|
|
return false;
|
|
|
|
|
|
- if ((flags1 & REQ_WRITE_SAME) != (flags2 & REQ_WRITE_SAME))
|
|
|
+ if ((op1 == REQ_OP_WRITE_SAME) != (op2 == REQ_OP_WRITE_SAME))
|
|
|
return false;
|
|
|
|
|
|
return true;
|
|
@@ -887,12 +887,12 @@ static inline unsigned int blk_rq_cur_sectors(const struct request *rq)
|
|
|
}
|
|
|
|
|
|
static inline unsigned int blk_queue_get_max_sectors(struct request_queue *q,
|
|
|
- unsigned int cmd_flags)
|
|
|
+ int op)
|
|
|
{
|
|
|
- if (unlikely(cmd_flags & REQ_DISCARD))
|
|
|
+ if (unlikely(op == REQ_OP_DISCARD))
|
|
|
return min(q->limits.max_discard_sectors, UINT_MAX >> 9);
|
|
|
|
|
|
- if (unlikely(cmd_flags & REQ_WRITE_SAME))
|
|
|
+ if (unlikely(op == REQ_OP_WRITE_SAME))
|
|
|
return q->limits.max_write_same_sectors;
|
|
|
|
|
|
return q->limits.max_sectors;
|
|
@@ -919,11 +919,11 @@ static inline unsigned int blk_rq_get_max_sectors(struct request *rq)
|
|
|
if (unlikely(rq->cmd_type != REQ_TYPE_FS))
|
|
|
return q->limits.max_hw_sectors;
|
|
|
|
|
|
- if (!q->limits.chunk_sectors || (rq->cmd_flags & REQ_DISCARD))
|
|
|
- return blk_queue_get_max_sectors(q, rq->cmd_flags);
|
|
|
+ if (!q->limits.chunk_sectors || (req_op(rq) == REQ_OP_DISCARD))
|
|
|
+ return blk_queue_get_max_sectors(q, req_op(rq));
|
|
|
|
|
|
return min(blk_max_size_offset(q, blk_rq_pos(rq)),
|
|
|
- blk_queue_get_max_sectors(q, rq->cmd_flags));
|
|
|
+ blk_queue_get_max_sectors(q, req_op(rq)));
|
|
|
}
|
|
|
|
|
|
static inline unsigned int blk_rq_count_bios(struct request *rq)
|