return ll_new_hw_segment(q, req, bio);
 }
 
-/*
- * blk-mq uses req->special to carry normal driver per-request payload, it
- * does not indicate a prepared command that we cannot merge with.
- */
-static bool req_no_special_merge(struct request *req)
-{
-       struct request_queue *q = req->q;
-
-       return !q->mq_ops && req->special;
-}
-
 static bool req_attempt_discard_merge(struct request_queue *q, struct request *req,
                struct request *next)
 {
        unsigned int seg_size =
                req->biotail->bi_seg_back_size + next->bio->bi_seg_front_size;
 
-       /*
-        * First check if the either of the requests are re-queued
-        * requests.  Can't merge them if they are.
-        */
-       if (req_no_special_merge(req) || req_no_special_merge(next))
-               return 0;
-
        if (req_gap_back_merge(req, next->bio))
                return 0;
 
                return NULL;
 
        if (rq_data_dir(req) != rq_data_dir(next)
-           || req->rq_disk != next->rq_disk
-           || req_no_special_merge(next))
+           || req->rq_disk != next->rq_disk)
                return NULL;
 
        if (req_op(req) == REQ_OP_WRITE_SAME &&
        if (bio_data_dir(bio) != rq_data_dir(rq))
                return false;
 
-       /* must be same device and not a special request */
-       if (rq->rq_disk != bio->bi_disk || req_no_special_merge(rq))
+       /* must be same device */
+       if (rq->rq_disk != bio->bi_disk)
                return false;
 
        /* only merge integrity protected bio into ditto rq */