*/
 static const unsigned long max_service_from_wr = 120000;
 
+/*
+ * Maximum time between the creation of two queues, for stable merge
+ * to be activated (in ms)
+ */
+static const unsigned long bfq_activation_stable_merging = 600;
+/*
+ * Minimum time to be waited before evaluating delayed stable merge (in ms)
+ */
+static const unsigned long bfq_late_stable_merging = 600;
+
 #define RQ_BIC(rq)             icq_to_bic((rq)->elv.priv[0])
 #define RQ_BFQQ(rq)            ((rq)->elv.priv[1])
 
                if (bic->stable_merge_bfqq &&
                    !bfq_bfqq_just_created(bfqq) &&
                    time_is_before_jiffies(bfqq->split_time +
-                                         msecs_to_jiffies(200)) &&
+                                         msecs_to_jiffies(bfq_late_stable_merging)) &&
                    time_is_before_jiffies(bfqq->creation_time +
-                                          msecs_to_jiffies(200))) {
+                                          msecs_to_jiffies(bfq_late_stable_merging))) {
                        struct bfq_queue *stable_merge_bfqq =
                                bic->stable_merge_bfqq;
                        int proc_ref = min(bfqq_process_refs(bfqq),
         */
        if (!last_bfqq_created ||
            time_before(last_bfqq_created->creation_time +
-                       bfqd->bfq_burst_interval,
+                       msecs_to_jiffies(bfq_activation_stable_merging),
                        bfqq->creation_time) ||
                bfqq->entity.parent != last_bfqq_created->entity.parent ||
                bfqq->ioprio != last_bfqq_created->ioprio ||