* exploits this hook to address the following issue: if 'next' has a
  * fifo_time lower that rq, then the fifo_time of rq must be set to
  * the value of 'next', to not forget the greater age of 'next'.
- * Moreover 'next' may be in a bfq_queue, in this case it must be
- * removed.
  *
  * NOTE: in this function we assume that rq is in a bfq_queue, basing
  * on that rq is picked from the hash table q->elevator->hash, which,
        if (bfqq->next_rq == next)
                bfqq->next_rq = rq;
 
-       if (!RB_EMPTY_NODE(&next->rb_node)) {
-               bfq_remove_request(q, next);
-               bfqg_stats_update_io_remove(bfqq_group(bfqq), next->cmd_flags);
-       }
-
        bfqg_stats_update_io_merged(bfqq_group(bfqq), next->cmd_flags);
 }