* [PATCH 0/4] sched: Various reweight_entity() fixes
@ 2026-01-30 9:34 Peter Zijlstra
2026-01-30 9:34 ` [PATCH 1/4] sched/fair: Only set slice protection at pick time Peter Zijlstra
` (8 more replies)
0 siblings, 9 replies; 70+ messages in thread
From: Peter Zijlstra @ 2026-01-30 9:34 UTC (permalink / raw)
To: mingo
Cc: peterz, juri.lelli, vincent.guittot, dietmar.eggemann, rostedt,
bsegall, mgorman, vschneid, linux-kernel, wangtao554, quzicheng,
kprateek.nayak, wuyun.abel, dsmythies
Two issues related to reweight_entity() were raised; poking at all that got me
these patches.
They're in queue.git/sched/core and I spend most of yesterday staring at traces
trying to find anything wrong. So far, so good.
Please test.
^ permalink raw reply [flat|nested] 70+ messages in thread
* [PATCH 1/4] sched/fair: Only set slice protection at pick time
2026-01-30 9:34 [PATCH 0/4] sched: Various reweight_entity() fixes Peter Zijlstra
@ 2026-01-30 9:34 ` Peter Zijlstra
2026-01-30 15:52 ` Vincent Guittot
2026-01-30 9:34 ` [PATCH 2/4] sched/eevdf: Update se->vprot in reweight_entity() Peter Zijlstra
` (7 subsequent siblings)
8 siblings, 1 reply; 70+ messages in thread
From: Peter Zijlstra @ 2026-01-30 9:34 UTC (permalink / raw)
To: mingo
Cc: peterz, juri.lelli, vincent.guittot, dietmar.eggemann, rostedt,
bsegall, mgorman, vschneid, linux-kernel, wangtao554, quzicheng,
kprateek.nayak, wuyun.abel, dsmythies
We should not (re)set slice protection in the sched_change pattern
which calls put_prev_task() / set_next_task().
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
---
kernel/sched/fair.c | 11 ++++++-----
1 file changed, 6 insertions(+), 5 deletions(-)
--- a/kernel/sched/fair.c
+++ b/kernel/sched/fair.c
@@ -5420,7 +5420,7 @@ dequeue_entity(struct cfs_rq *cfs_rq, st
}
static void
-set_next_entity(struct cfs_rq *cfs_rq, struct sched_entity *se)
+set_next_entity(struct cfs_rq *cfs_rq, struct sched_entity *se, bool first)
{
clear_buddies(cfs_rq, se);
@@ -5435,7 +5435,8 @@ set_next_entity(struct cfs_rq *cfs_rq, s
__dequeue_entity(cfs_rq, se);
update_load_avg(cfs_rq, se, UPDATE_TG);
- set_protect_slice(cfs_rq, se);
+ if (first)
+ set_protect_slice(cfs_rq, se);
}
update_stats_curr_start(cfs_rq, se);
@@ -8958,13 +8959,13 @@ pick_next_task_fair(struct rq *rq, struc
pse = parent_entity(pse);
}
if (se_depth >= pse_depth) {
- set_next_entity(cfs_rq_of(se), se);
+ set_next_entity(cfs_rq_of(se), se, true);
se = parent_entity(se);
}
}
put_prev_entity(cfs_rq, pse);
- set_next_entity(cfs_rq, se);
+ set_next_entity(cfs_rq, se, true);
__set_next_task_fair(rq, p, true);
}
@@ -13578,7 +13579,7 @@ static void set_next_task_fair(struct rq
for_each_sched_entity(se) {
struct cfs_rq *cfs_rq = cfs_rq_of(se);
- set_next_entity(cfs_rq, se);
+ set_next_entity(cfs_rq, se, first);
/* ensure bandwidth has been allocated on our new cfs_rq */
account_cfs_rq_runtime(cfs_rq, 0);
}
^ permalink raw reply [flat|nested] 70+ messages in thread
* [PATCH 2/4] sched/eevdf: Update se->vprot in reweight_entity()
2026-01-30 9:34 [PATCH 0/4] sched: Various reweight_entity() fixes Peter Zijlstra
2026-01-30 9:34 ` [PATCH 1/4] sched/fair: Only set slice protection at pick time Peter Zijlstra
@ 2026-01-30 9:34 ` Peter Zijlstra
2026-01-30 16:20 ` Vincent Guittot
2026-01-30 9:34 ` [PATCH 3/4] sched/fair: Increase weight bits for avg_vruntime Peter Zijlstra
` (6 subsequent siblings)
8 siblings, 1 reply; 70+ messages in thread
From: Peter Zijlstra @ 2026-01-30 9:34 UTC (permalink / raw)
To: mingo
Cc: peterz, juri.lelli, vincent.guittot, dietmar.eggemann, rostedt,
bsegall, mgorman, vschneid, linux-kernel, wangtao554, quzicheng,
kprateek.nayak, wuyun.abel, dsmythies, Zhang Qiao
From: Wang Tao <wangtao554@huawei.com>
In the EEVDF framework with Run-to-Parity protection, `se->vprot` is an
independent variable defining the virtual protection timestamp.
When `reweight_entity()` is called (e.g., via nice/renice), it performs
the following actions to preserve Lag consistency:
1. Scales `se->vlag` based on the new weight.
2. Calls `place_entity()`, which recalculates `se->vruntime` based on
the new weight and scaled lag.
However, the current implementation fails to update `se->vprot`, leading
to mismatches between the task's actual runtime and its expected duration.
Fixes: 63304558ba5d ("sched/eevdf: Curb wakeup-preemption")
Suggested-by: Zhang Qiao <zhangqiao22@huawei.com>
Signed-off-by: Wang Tao <wangtao554@huawei.com>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Link: https://patch.msgid.link/20260120123113.3518950-1-wangtao554@huawei.com
---
kernel/sched/fair.c | 12 ++++++++++++
1 file changed, 12 insertions(+)
--- a/kernel/sched/fair.c
+++ b/kernel/sched/fair.c
@@ -3790,6 +3790,8 @@ static void reweight_entity(struct cfs_r
unsigned long weight)
{
bool curr = cfs_rq->curr == se;
+ bool rel_vprot = false;
+ u64 vprot;
if (se->on_rq) {
/* commit outstanding execution time */
@@ -3797,6 +3799,11 @@ static void reweight_entity(struct cfs_r
update_entity_lag(cfs_rq, se);
se->deadline -= se->vruntime;
se->rel_deadline = 1;
+ if (curr && protect_slice(se)) {
+ vprot = se->vprot - se->vruntime;
+ rel_vprot = true;
+ }
+
cfs_rq->nr_queued--;
if (!curr)
__dequeue_entity(cfs_rq, se);
@@ -3812,6 +3819,9 @@ static void reweight_entity(struct cfs_r
if (se->rel_deadline)
se->deadline = div_s64(se->deadline * se->load.weight, weight);
+ if (rel_vprot)
+ vprot = div_s64(vprot * se->load.weight, weight);
+
update_load_set(&se->load, weight);
do {
@@ -3823,6 +3833,8 @@ static void reweight_entity(struct cfs_r
enqueue_load_avg(cfs_rq, se);
if (se->on_rq) {
place_entity(cfs_rq, se, 0);
+ if (rel_vprot)
+ se->vprot = se->vruntime + vprot;
update_load_add(&cfs_rq->load, se->load.weight);
if (!curr)
__enqueue_entity(cfs_rq, se);
^ permalink raw reply [flat|nested] 70+ messages in thread
* [PATCH 3/4] sched/fair: Increase weight bits for avg_vruntime
2026-01-30 9:34 [PATCH 0/4] sched: Various reweight_entity() fixes Peter Zijlstra
2026-01-30 9:34 ` [PATCH 1/4] sched/fair: Only set slice protection at pick time Peter Zijlstra
2026-01-30 9:34 ` [PATCH 2/4] sched/eevdf: Update se->vprot in reweight_entity() Peter Zijlstra
@ 2026-01-30 9:34 ` Peter Zijlstra
2026-01-30 9:34 ` [PATCH 4/4] sched/fair: Revert 6d71a9c61604 ("sched/fair: Fix EEVDF entity placement bug causing scheduling lag") Peter Zijlstra
` (5 subsequent siblings)
8 siblings, 0 replies; 70+ messages in thread
From: Peter Zijlstra @ 2026-01-30 9:34 UTC (permalink / raw)
To: mingo
Cc: peterz, juri.lelli, vincent.guittot, dietmar.eggemann, rostedt,
bsegall, mgorman, vschneid, linux-kernel, wangtao554, quzicheng,
kprateek.nayak, wuyun.abel, dsmythies
Due to the zero_vruntime patch, the deltas are now a lot smaller and
measurement with kernel-build and hackbench runs show about 54 bits
used.
This ensures avg_vruntime() tracks the full weight range, reducing
numerical artifacts in reweight and the like.
Also, lets keep the paranoid debug code around this time.
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
---
kernel/sched/debug.c | 14 ++++++++
kernel/sched/fair.c | 77 +++++++++++++++++++++++++++++++++++++++++-------
kernel/sched/features.h | 2 +
kernel/sched/sched.h | 3 +
4 files changed, 83 insertions(+), 13 deletions(-)
--- a/kernel/sched/debug.c
+++ b/kernel/sched/debug.c
@@ -8,6 +8,7 @@
*/
#include <linux/debugfs.h>
#include <linux/nmi.h>
+#include <linux/log2.h>
#include "sched.h"
/*
@@ -790,10 +791,13 @@ static void print_rq(struct seq_file *m,
void print_cfs_rq(struct seq_file *m, int cpu, struct cfs_rq *cfs_rq)
{
- s64 left_vruntime = -1, zero_vruntime, right_vruntime = -1, left_deadline = -1, spread;
+ s64 left_vruntime = -1, right_vruntime = -1, left_deadline = -1, spread;
+ s64 zero_vruntime = -1, sum_w_vruntime = -1;
struct sched_entity *last, *first, *root;
struct rq *rq = cpu_rq(cpu);
+ unsigned int sum_shift;
unsigned long flags;
+ u64 sum_weight;
#ifdef CONFIG_FAIR_GROUP_SCHED
SEQ_printf(m, "\n");
@@ -814,6 +818,9 @@ void print_cfs_rq(struct seq_file *m, in
if (last)
right_vruntime = last->vruntime;
zero_vruntime = cfs_rq->zero_vruntime;
+ sum_w_vruntime = cfs_rq->sum_w_vruntime;
+ sum_weight = cfs_rq->sum_weight;
+ sum_shift = cfs_rq->sum_shift;
raw_spin_rq_unlock_irqrestore(rq, flags);
SEQ_printf(m, " .%-30s: %Ld.%06ld\n", "left_deadline",
@@ -822,6 +829,11 @@ void print_cfs_rq(struct seq_file *m, in
SPLIT_NS(left_vruntime));
SEQ_printf(m, " .%-30s: %Ld.%06ld\n", "zero_vruntime",
SPLIT_NS(zero_vruntime));
+ SEQ_printf(m, " .%-30s: %Ld (%d bits)\n", "sum_w_vruntime",
+ sum_w_vruntime, ilog2(abs(sum_w_vruntime)));
+ SEQ_printf(m, " .%-30s: %Lu\n", "sum_weight",
+ sum_weight);
+ SEQ_printf(m, " .%-30s: %u\n", "sum_shift", sum_shift);
SEQ_printf(m, " .%-30s: %Ld.%06ld\n", "avg_vruntime",
SPLIT_NS(avg_vruntime(cfs_rq)));
SEQ_printf(m, " .%-30s: %Ld.%06ld\n", "right_vruntime",
--- a/kernel/sched/fair.c
+++ b/kernel/sched/fair.c
@@ -650,15 +650,20 @@ static inline s64 entity_key(struct cfs_
* Since zero_vruntime closely tracks the per-task service, these
* deltas: (v_i - v0), will be in the order of the maximal (virtual) lag
* induced in the system due to quantisation.
- *
- * Also, we use scale_load_down() to reduce the size.
- *
- * As measured, the max (key * weight) value was ~44 bits for a kernel build.
*/
-static void
-sum_w_vruntime_add(struct cfs_rq *cfs_rq, struct sched_entity *se)
+static inline unsigned long avg_vruntime_weight(struct cfs_rq *cfs_rq, unsigned long w)
+{
+#ifdef CONFIG_64BIT
+ if (cfs_rq->sum_shift)
+ w = max(2UL, w >> cfs_rq->sum_shift);
+#endif
+ return w;
+}
+
+static inline void
+__sum_w_vruntime_add(struct cfs_rq *cfs_rq, struct sched_entity *se)
{
- unsigned long weight = scale_load_down(se->load.weight);
+ unsigned long weight = avg_vruntime_weight(cfs_rq, se->load.weight);
s64 key = entity_key(cfs_rq, se);
cfs_rq->sum_w_vruntime += key * weight;
@@ -666,9 +671,59 @@ sum_w_vruntime_add(struct cfs_rq *cfs_rq
}
static void
+sum_w_vruntime_add_paranoid(struct cfs_rq *cfs_rq, struct sched_entity *se)
+{
+ unsigned long weight;
+ s64 key, tmp;
+
+again:
+ weight = avg_vruntime_weight(cfs_rq, se->load.weight);
+ key = entity_key(cfs_rq, se);
+
+ if (check_mul_overflow(key, weight, &key))
+ goto overflow;
+
+ if (check_add_overflow(cfs_rq->sum_w_vruntime, key, &tmp))
+ goto overflow;
+
+ cfs_rq->sum_w_vruntime = tmp;
+ cfs_rq->sum_weight += weight;
+ return;
+
+overflow:
+ /*
+ * There's gotta be a limit -- if we're still failing at this point
+ * there's really nothing much to be done about things.
+ */
+ BUG_ON(cfs_rq->sum_shift >= 10);
+ cfs_rq->sum_shift++;
+
+ /*
+ * Note: \Sum (k_i * (w_i >> 1)) != (\Sum (k_i * w_i)) >> 1
+ */
+ cfs_rq->sum_w_vruntime = 0;
+ cfs_rq->sum_weight = 0;
+
+ for (struct rb_node *node = cfs_rq->tasks_timeline.rb_leftmost;
+ node; node = rb_next(node))
+ __sum_w_vruntime_add(cfs_rq, __node_2_se(node));
+
+ goto again;
+}
+
+static void
+sum_w_vruntime_add(struct cfs_rq *cfs_rq, struct sched_entity *se)
+{
+ if (sched_feat(PARANOID_AVG))
+ return sum_w_vruntime_add_paranoid(cfs_rq, se);
+
+ __sum_w_vruntime_add(cfs_rq, se);
+}
+
+static void
sum_w_vruntime_sub(struct cfs_rq *cfs_rq, struct sched_entity *se)
{
- unsigned long weight = scale_load_down(se->load.weight);
+ unsigned long weight = avg_vruntime_weight(cfs_rq, se->load.weight);
s64 key = entity_key(cfs_rq, se);
cfs_rq->sum_w_vruntime -= key * weight;
@@ -695,7 +750,7 @@ u64 avg_vruntime(struct cfs_rq *cfs_rq)
long load = cfs_rq->sum_weight;
if (curr && curr->on_rq) {
- unsigned long weight = scale_load_down(curr->load.weight);
+ unsigned long weight = avg_vruntime_weight(cfs_rq, curr->load.weight);
avg += entity_key(cfs_rq, curr) * weight;
load += weight;
@@ -5170,9 +5225,9 @@ place_entity(struct cfs_rq *cfs_rq, stru
*/
load = cfs_rq->sum_weight;
if (curr && curr->on_rq)
- load += scale_load_down(curr->load.weight);
+ load += avg_vruntime_weight(cfs_rq, curr->load.weight);
- lag *= load + scale_load_down(se->load.weight);
+ lag *= load + avg_vruntime_weight(cfs_rq, se->load.weight);
if (WARN_ON_ONCE(!load))
load = 1;
lag = div_s64(lag, load);
--- a/kernel/sched/features.h
+++ b/kernel/sched/features.h
@@ -58,6 +58,8 @@ SCHED_FEAT(CACHE_HOT_BUDDY, true)
SCHED_FEAT(DELAY_DEQUEUE, true)
SCHED_FEAT(DELAY_ZERO, true)
+SCHED_FEAT(PARANOID_AVG, false)
+
/*
* Allow wakeup-time preemption of the current task:
*/
--- a/kernel/sched/sched.h
+++ b/kernel/sched/sched.h
@@ -679,8 +679,9 @@ struct cfs_rq {
s64 sum_w_vruntime;
u64 sum_weight;
-
u64 zero_vruntime;
+ unsigned int sum_shift;
+
#ifdef CONFIG_SCHED_CORE
unsigned int forceidle_seq;
u64 zero_vruntime_fi;
^ permalink raw reply [flat|nested] 70+ messages in thread
* [PATCH 4/4] sched/fair: Revert 6d71a9c61604 ("sched/fair: Fix EEVDF entity placement bug causing scheduling lag")
2026-01-30 9:34 [PATCH 0/4] sched: Various reweight_entity() fixes Peter Zijlstra
` (2 preceding siblings ...)
2026-01-30 9:34 ` [PATCH 3/4] sched/fair: Increase weight bits for avg_vruntime Peter Zijlstra
@ 2026-01-30 9:34 ` Peter Zijlstra
2026-01-31 1:47 ` Zhang Qiao
2026-02-01 17:13 ` [PATCH 0/4] sched: Various reweight_entity() fixes Doug Smythies
` (4 subsequent siblings)
8 siblings, 1 reply; 70+ messages in thread
From: Peter Zijlstra @ 2026-01-30 9:34 UTC (permalink / raw)
To: mingo
Cc: peterz, juri.lelli, vincent.guittot, dietmar.eggemann, rostedt,
bsegall, mgorman, vschneid, linux-kernel, wangtao554, quzicheng,
kprateek.nayak, wuyun.abel, dsmythies
Zicheng Qu reported that, because avg_vruntime() always includes
cfs_rq->curr, when ->on_rq, place_entity() doesn't work right.
Specifically, the lag scaling in place_entity() relies on
avg_vruntime() being the state *before* placement of the new entity.
However in this case avg_vruntime() will actually already include the
entity, which breaks things.
Also, Zicheng Qu argues that avg_vruntime should be invariant under
reweight. IOW commit 6d71a9c61604 ("sched/fair: Fix EEVDF entity
placement bug causing scheduling lag") was wrong!
The issue reported in 6d71a9c61604 could possibly be explained by
rounding artifacts -- notably the extreme weight '2' is outside of the
range of avg_vruntime/sum_w_vruntime, since that uses
scale_load_down(). By scaling vruntime by the real weight, but
accounting it in vruntime with a factor 1024 more, the average moves
significantly.
Tested by reverting 66951e4860d3 ("sched/fair: Fix update_cfs_group()
vs DELAY_DEQUEUE") and tracing vruntime and vlag figures again.
Reported-by: Zicheng Qu <quzicheng@huawei.com>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
---
kernel/sched/fair.c | 154 +++++++++++++++++++++++++++++++++++++++++++---------
1 file changed, 129 insertions(+), 25 deletions(-)
--- a/kernel/sched/fair.c
+++ b/kernel/sched/fair.c
@@ -782,16 +782,21 @@ u64 avg_vruntime(struct cfs_rq *cfs_rq)
*
* XXX could add max_slice to the augmented data to track this.
*/
-static void update_entity_lag(struct cfs_rq *cfs_rq, struct sched_entity *se)
+static s64 entity_lag(u64 avruntime, struct sched_entity *se)
{
s64 vlag, limit;
- WARN_ON_ONCE(!se->on_rq);
-
- vlag = avg_vruntime(cfs_rq) - se->vruntime;
+ vlag = avruntime - se->vruntime;
limit = calc_delta_fair(max_t(u64, 2*se->slice, TICK_NSEC), se);
- se->vlag = clamp(vlag, -limit, limit);
+ return clamp(vlag, -limit, limit);
+}
+
+static void update_entity_lag(struct cfs_rq *cfs_rq, struct sched_entity *se)
+{
+ WARN_ON_ONCE(!se->on_rq);
+
+ se->vlag = entity_lag(avg_vruntime(cfs_rq), se);
}
/*
@@ -3839,23 +3844,135 @@ dequeue_load_avg(struct cfs_rq *cfs_rq,
se_weight(se) * -se->avg.load_sum);
}
-static void place_entity(struct cfs_rq *cfs_rq, struct sched_entity *se, int flags);
+static void rescale_entity(struct sched_entity *se, unsigned long weight,
+ u64 avruntime, bool rel_vprot)
+{
+ unsigned long old_weight = se->load.weight;
+
+ /*
+ * VRUNTIME
+ * --------
+ *
+ * COROLLARY #1: The virtual runtime of the entity needs to be
+ * adjusted if re-weight at !0-lag point.
+ *
+ * Proof: For contradiction assume this is not true, so we can
+ * re-weight without changing vruntime at !0-lag point.
+ *
+ * Weight VRuntime Avg-VRuntime
+ * before w v V
+ * after w' v' V'
+ *
+ * Since lag needs to be preserved through re-weight:
+ *
+ * lag = (V - v)*w = (V'- v')*w', where v = v'
+ * ==> V' = (V - v)*w/w' + v (1)
+ *
+ * Let W be the total weight of the entities before reweight,
+ * since V' is the new weighted average of entities:
+ *
+ * V' = (WV + w'v - wv) / (W + w' - w) (2)
+ *
+ * by using (1) & (2) we obtain:
+ *
+ * (WV + w'v - wv) / (W + w' - w) = (V - v)*w/w' + v
+ * ==> (WV-Wv+Wv+w'v-wv)/(W+w'-w) = (V - v)*w/w' + v
+ * ==> (WV - Wv)/(W + w' - w) + v = (V - v)*w/w' + v
+ * ==> (V - v)*W/(W + w' - w) = (V - v)*w/w' (3)
+ *
+ * Since we are doing at !0-lag point which means V != v, we
+ * can simplify (3):
+ *
+ * ==> W / (W + w' - w) = w / w'
+ * ==> Ww' = Ww + ww' - ww
+ * ==> W * (w' - w) = w * (w' - w)
+ * ==> W = w (re-weight indicates w' != w)
+ *
+ * So the cfs_rq contains only one entity, hence vruntime of
+ * the entity @v should always equal to the cfs_rq's weighted
+ * average vruntime @V, which means we will always re-weight
+ * at 0-lag point, thus breach assumption. Proof completed.
+ *
+ *
+ * COROLLARY #2: Re-weight does NOT affect weighted average
+ * vruntime of all the entities.
+ *
+ * Proof: According to corollary #1, Eq. (1) should be:
+ *
+ * (V - v)*w = (V' - v')*w'
+ * ==> v' = V' - (V - v)*w/w' (4)
+ *
+ * According to the weighted average formula, we have:
+ *
+ * V' = (WV - wv + w'v') / (W - w + w')
+ * = (WV - wv + w'(V' - (V - v)w/w')) / (W - w + w')
+ * = (WV - wv + w'V' - Vw + wv) / (W - w + w')
+ * = (WV + w'V' - Vw) / (W - w + w')
+ *
+ * ==> V'*(W - w + w') = WV + w'V' - Vw
+ * ==> V' * (W - w) = (W - w) * V (5)
+ *
+ * If the entity is the only one in the cfs_rq, then reweight
+ * always occurs at 0-lag point, so V won't change. Or else
+ * there are other entities, hence W != w, then Eq. (5) turns
+ * into V' = V. So V won't change in either case, proof done.
+ *
+ *
+ * So according to corollary #1 & #2, the effect of re-weight
+ * on vruntime should be:
+ *
+ * v' = V' - (V - v) * w / w' (4)
+ * = V - (V - v) * w / w'
+ * = V - vl * w / w'
+ * = V - vl'
+ */
+ se->vlag = div_s64(se->vlag * old_weight, weight);
+ if (avruntime)
+ se->vruntime = avruntime - se->vlag;
+
+ /*
+ * DEADLINE
+ * --------
+ *
+ * When the weight changes, the virtual time slope changes and
+ * we should adjust the relative virtual deadline accordingly.
+ *
+ * d' = v' + (d - v)*w/w'
+ * = V' - (V - v)*w/w' + (d - v)*w/w'
+ * = V - (V - v)*w/w' + (d - v)*w/w'
+ * = V + (d - V)*w/w'
+ */
+ if (se->rel_deadline) {
+ se->deadline = div_s64(se->deadline * old_weight, weight);
+ if (avruntime) {
+ se->rel_deadline = 0;
+ se->deadline += avruntime;
+ }
+ }
+
+ if (rel_vprot) {
+ se->vprot = div_s64(se->vprot * old_weight, weight);
+ if (avruntime)
+ se->vprot += avruntime;
+ }
+}
static void reweight_entity(struct cfs_rq *cfs_rq, struct sched_entity *se,
unsigned long weight)
{
bool curr = cfs_rq->curr == se;
bool rel_vprot = false;
- u64 vprot;
+ u64 avruntime = 0;
if (se->on_rq) {
/* commit outstanding execution time */
update_curr(cfs_rq);
- update_entity_lag(cfs_rq, se);
- se->deadline -= se->vruntime;
+ avruntime = avg_vruntime(cfs_rq);
+ se->vlag = entity_lag(avruntime, se);
+ se->deadline -= avruntime;
se->rel_deadline = 1;
if (curr && protect_slice(se)) {
- vprot = se->vprot - se->vruntime;
+ se->vprot -= avruntime;
rel_vprot = true;
}
@@ -3866,30 +3983,17 @@ static void reweight_entity(struct cfs_r
}
dequeue_load_avg(cfs_rq, se);
- /*
- * Because we keep se->vlag = V - v_i, while: lag_i = w_i*(V - v_i),
- * we need to scale se->vlag when w_i changes.
- */
- se->vlag = div_s64(se->vlag * se->load.weight, weight);
- if (se->rel_deadline)
- se->deadline = div_s64(se->deadline * se->load.weight, weight);
-
- if (rel_vprot)
- vprot = div_s64(vprot * se->load.weight, weight);
+ rescale_entity(se, weight, avruntime, rel_vprot);
update_load_set(&se->load, weight);
do {
u32 divider = get_pelt_divider(&se->avg);
-
se->avg.load_avg = div_u64(se_weight(se) * se->avg.load_sum, divider);
} while (0);
enqueue_load_avg(cfs_rq, se);
if (se->on_rq) {
- place_entity(cfs_rq, se, 0);
- if (rel_vprot)
- se->vprot = se->vruntime + vprot;
update_load_add(&cfs_rq->load, se->load.weight);
if (!curr)
__enqueue_entity(cfs_rq, se);
@@ -5247,7 +5351,7 @@ place_entity(struct cfs_rq *cfs_rq, stru
se->vruntime = vruntime - lag;
- if (se->rel_deadline) {
+ if (sched_feat(PLACE_REL_DEADLINE) && se->rel_deadline) {
se->deadline += se->vruntime;
se->rel_deadline = 0;
return;
^ permalink raw reply [flat|nested] 70+ messages in thread
* Re: [PATCH 1/4] sched/fair: Only set slice protection at pick time
2026-01-30 9:34 ` [PATCH 1/4] sched/fair: Only set slice protection at pick time Peter Zijlstra
@ 2026-01-30 15:52 ` Vincent Guittot
0 siblings, 0 replies; 70+ messages in thread
From: Vincent Guittot @ 2026-01-30 15:52 UTC (permalink / raw)
To: Peter Zijlstra
Cc: mingo, juri.lelli, dietmar.eggemann, rostedt, bsegall, mgorman,
vschneid, linux-kernel, wangtao554, quzicheng, kprateek.nayak,
wuyun.abel, dsmythies
On Fri, 30 Jan 2026 at 10:47, Peter Zijlstra <peterz@infradead.org> wrote:
>
> We should not (re)set slice protection in the sched_change pattern
> which calls put_prev_task() / set_next_task().
>
> Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Reviewed-by: Vincent Guittot <vincent.guittot@linaro.org>
> ---
> kernel/sched/fair.c | 11 ++++++-----
> 1 file changed, 6 insertions(+), 5 deletions(-)
>
> --- a/kernel/sched/fair.c
> +++ b/kernel/sched/fair.c
> @@ -5420,7 +5420,7 @@ dequeue_entity(struct cfs_rq *cfs_rq, st
> }
>
> static void
> -set_next_entity(struct cfs_rq *cfs_rq, struct sched_entity *se)
> +set_next_entity(struct cfs_rq *cfs_rq, struct sched_entity *se, bool first)
> {
> clear_buddies(cfs_rq, se);
>
> @@ -5435,7 +5435,8 @@ set_next_entity(struct cfs_rq *cfs_rq, s
> __dequeue_entity(cfs_rq, se);
> update_load_avg(cfs_rq, se, UPDATE_TG);
>
> - set_protect_slice(cfs_rq, se);
> + if (first)
> + set_protect_slice(cfs_rq, se);
> }
>
> update_stats_curr_start(cfs_rq, se);
> @@ -8958,13 +8959,13 @@ pick_next_task_fair(struct rq *rq, struc
> pse = parent_entity(pse);
> }
> if (se_depth >= pse_depth) {
> - set_next_entity(cfs_rq_of(se), se);
> + set_next_entity(cfs_rq_of(se), se, true);
> se = parent_entity(se);
> }
> }
>
> put_prev_entity(cfs_rq, pse);
> - set_next_entity(cfs_rq, se);
> + set_next_entity(cfs_rq, se, true);
>
> __set_next_task_fair(rq, p, true);
> }
> @@ -13578,7 +13579,7 @@ static void set_next_task_fair(struct rq
> for_each_sched_entity(se) {
> struct cfs_rq *cfs_rq = cfs_rq_of(se);
>
> - set_next_entity(cfs_rq, se);
> + set_next_entity(cfs_rq, se, first);
> /* ensure bandwidth has been allocated on our new cfs_rq */
> account_cfs_rq_runtime(cfs_rq, 0);
> }
>
>
^ permalink raw reply [flat|nested] 70+ messages in thread
* Re: [PATCH 2/4] sched/eevdf: Update se->vprot in reweight_entity()
2026-01-30 9:34 ` [PATCH 2/4] sched/eevdf: Update se->vprot in reweight_entity() Peter Zijlstra
@ 2026-01-30 16:20 ` Vincent Guittot
0 siblings, 0 replies; 70+ messages in thread
From: Vincent Guittot @ 2026-01-30 16:20 UTC (permalink / raw)
To: Peter Zijlstra
Cc: mingo, juri.lelli, dietmar.eggemann, rostedt, bsegall, mgorman,
vschneid, linux-kernel, wangtao554, quzicheng, kprateek.nayak,
wuyun.abel, dsmythies, Zhang Qiao
On Fri, 30 Jan 2026 at 10:47, Peter Zijlstra <peterz@infradead.org> wrote:
>
> From: Wang Tao <wangtao554@huawei.com>
>
> In the EEVDF framework with Run-to-Parity protection, `se->vprot` is an
> independent variable defining the virtual protection timestamp.
>
> When `reweight_entity()` is called (e.g., via nice/renice), it performs
> the following actions to preserve Lag consistency:
> 1. Scales `se->vlag` based on the new weight.
> 2. Calls `place_entity()`, which recalculates `se->vruntime` based on
> the new weight and scaled lag.
>
> However, the current implementation fails to update `se->vprot`, leading
> to mismatches between the task's actual runtime and its expected duration.
>
> Fixes: 63304558ba5d ("sched/eevdf: Curb wakeup-preemption")
> Suggested-by: Zhang Qiao <zhangqiao22@huawei.com>
> Signed-off-by: Wang Tao <wangtao554@huawei.com>
> Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Reviewed-by: Vincent Guittot <vincent.guittot@linaro.org>
> Link: https://patch.msgid.link/20260120123113.3518950-1-wangtao554@huawei.com
> ---
> kernel/sched/fair.c | 12 ++++++++++++
> 1 file changed, 12 insertions(+)
>
> --- a/kernel/sched/fair.c
> +++ b/kernel/sched/fair.c
> @@ -3790,6 +3790,8 @@ static void reweight_entity(struct cfs_r
> unsigned long weight)
> {
> bool curr = cfs_rq->curr == se;
> + bool rel_vprot = false;
> + u64 vprot;
>
> if (se->on_rq) {
> /* commit outstanding execution time */
> @@ -3797,6 +3799,11 @@ static void reweight_entity(struct cfs_r
> update_entity_lag(cfs_rq, se);
> se->deadline -= se->vruntime;
> se->rel_deadline = 1;
> + if (curr && protect_slice(se)) {
> + vprot = se->vprot - se->vruntime;
> + rel_vprot = true;
> + }
> +
> cfs_rq->nr_queued--;
> if (!curr)
> __dequeue_entity(cfs_rq, se);
> @@ -3812,6 +3819,9 @@ static void reweight_entity(struct cfs_r
> if (se->rel_deadline)
> se->deadline = div_s64(se->deadline * se->load.weight, weight);
>
> + if (rel_vprot)
> + vprot = div_s64(vprot * se->load.weight, weight);
> +
> update_load_set(&se->load, weight);
>
> do {
> @@ -3823,6 +3833,8 @@ static void reweight_entity(struct cfs_r
> enqueue_load_avg(cfs_rq, se);
> if (se->on_rq) {
> place_entity(cfs_rq, se, 0);
> + if (rel_vprot)
> + se->vprot = se->vruntime + vprot;
> update_load_add(&cfs_rq->load, se->load.weight);
> if (!curr)
> __enqueue_entity(cfs_rq, se);
>
>
^ permalink raw reply [flat|nested] 70+ messages in thread
* Re: [PATCH 4/4] sched/fair: Revert 6d71a9c61604 ("sched/fair: Fix EEVDF entity placement bug causing scheduling lag")
2026-01-30 9:34 ` [PATCH 4/4] sched/fair: Revert 6d71a9c61604 ("sched/fair: Fix EEVDF entity placement bug causing scheduling lag") Peter Zijlstra
@ 2026-01-31 1:47 ` Zhang Qiao
2026-01-31 15:21 ` Peter Zijlstra
0 siblings, 1 reply; 70+ messages in thread
From: Zhang Qiao @ 2026-01-31 1:47 UTC (permalink / raw)
To: Peter Zijlstra, mingo
Cc: juri.lelli, vincent.guittot, dietmar.eggemann, rostedt, bsegall,
mgorman, vschneid, linux-kernel, wangtao554, quzicheng,
kprateek.nayak, wuyun.abel, dsmythies, Hui Tang
Hi, peter
在 2026/1/30 17:34, Peter Zijlstra 写道:
> Zicheng Qu reported that, because avg_vruntime() always includes
> cfs_rq->curr, when ->on_rq, place_entity() doesn't work right.
>
> Specifically, the lag scaling in place_entity() relies on
> avg_vruntime() being the state *before* placement of the new entity.
> However in this case avg_vruntime() will actually already include the
> entity, which breaks things.
>
> Also, Zicheng Qu argues that avg_vruntime should be invariant under
> reweight. IOW commit 6d71a9c61604 ("sched/fair: Fix EEVDF entity
> placement bug causing scheduling lag") was wrong!
>
> The issue reported in 6d71a9c61604 could possibly be explained by
> rounding artifacts -- notably the extreme weight '2' is outside of the
> range of avg_vruntime/sum_w_vruntime, since that uses
> scale_load_down(). By scaling vruntime by the real weight, but
> accounting it in vruntime with a factor 1024 more, the average moves
> significantly.
>
> Tested by reverting 66951e4860d3 ("sched/fair: Fix update_cfs_group()
> vs DELAY_DEQUEUE") and tracing vruntime and vlag figures again.
>
> Reported-by: Zicheng Qu <quzicheng@huawei.com>
> Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
> ---
> kernel/sched/fair.c | 154 +++++++++++++++++++++++++++++++++++++++++++---------
> 1 file changed, 129 insertions(+), 25 deletions(-)
>
> --- a/kernel/sched/fair.c
> +++ b/kernel/sched/fair.c
> @@ -782,16 +782,21 @@ u64 avg_vruntime(struct cfs_rq *cfs_rq)
> *
> * XXX could add max_slice to the augmented data to track this.
> */
> -static void update_entity_lag(struct cfs_rq *cfs_rq, struct sched_entity *se)
> +static s64 entity_lag(u64 avruntime, struct sched_entity *se)
> {
> s64 vlag, limit;
>
> - WARN_ON_ONCE(!se->on_rq);
> -
> - vlag = avg_vruntime(cfs_rq) - se->vruntime;
> + vlag = avruntime - se->vruntime;
> limit = calc_delta_fair(max_t(u64, 2*se->slice, TICK_NSEC), se);
>
> - se->vlag = clamp(vlag, -limit, limit);
> + return clamp(vlag, -limit, limit);
> +}
> +
> +static void update_entity_lag(struct cfs_rq *cfs_rq, struct sched_entity *se)
> +{
> + WARN_ON_ONCE(!se->on_rq);
> +
> + se->vlag = entity_lag(avg_vruntime(cfs_rq), se);
> }
>
> /*
> @@ -3839,23 +3844,135 @@ dequeue_load_avg(struct cfs_rq *cfs_rq,
> se_weight(se) * -se->avg.load_sum);
> }
>
> -static void place_entity(struct cfs_rq *cfs_rq, struct sched_entity *se, int flags);
> +static void rescale_entity(struct sched_entity *se, unsigned long weight,
> + u64 avruntime, bool rel_vprot)
> +{
> + unsigned long old_weight = se->load.weight;
> +
> + /*
> + * VRUNTIME
> + * --------
> + *
> + * COROLLARY #1: The virtual runtime of the entity needs to be
> + * adjusted if re-weight at !0-lag point.
> + *
> + * Proof: For contradiction assume this is not true, so we can
> + * re-weight without changing vruntime at !0-lag point.
> + *
> + * Weight VRuntime Avg-VRuntime
> + * before w v V
> + * after w' v' V'
> + *
> + * Since lag needs to be preserved through re-weight:
> + *
> + * lag = (V - v)*w = (V'- v')*w', where v = v'
> + * ==> V' = (V - v)*w/w' + v (1)
> + *
> + * Let W be the total weight of the entities before reweight,
> + * since V' is the new weighted average of entities:
> + *
> + * V' = (WV + w'v - wv) / (W + w' - w) (2)
> + *
> + * by using (1) & (2) we obtain:
> + *
> + * (WV + w'v - wv) / (W + w' - w) = (V - v)*w/w' + v
> + * ==> (WV-Wv+Wv+w'v-wv)/(W+w'-w) = (V - v)*w/w' + v
> + * ==> (WV - Wv)/(W + w' - w) + v = (V - v)*w/w' + v
> + * ==> (V - v)*W/(W + w' - w) = (V - v)*w/w' (3)
> + *
> + * Since we are doing at !0-lag point which means V != v, we
> + * can simplify (3):
> + *
> + * ==> W / (W + w' - w) = w / w'
> + * ==> Ww' = Ww + ww' - ww
> + * ==> W * (w' - w) = w * (w' - w)
> + * ==> W = w (re-weight indicates w' != w)
> + *
> + * So the cfs_rq contains only one entity, hence vruntime of
> + * the entity @v should always equal to the cfs_rq's weighted
> + * average vruntime @V, which means we will always re-weight
> + * at 0-lag point, thus breach assumption. Proof completed.
> + *
> + *
> + * COROLLARY #2: Re-weight does NOT affect weighted average
> + * vruntime of all the entities.
> + *
> + * Proof: According to corollary #1, Eq. (1) should be:
> + *
> + * (V - v)*w = (V' - v')*w'
> + * ==> v' = V' - (V - v)*w/w' (4)
> + *
> + * According to the weighted average formula, we have:
> + *
> + * V' = (WV - wv + w'v') / (W - w + w')
> + * = (WV - wv + w'(V' - (V - v)w/w')) / (W - w + w')
> + * = (WV - wv + w'V' - Vw + wv) / (W - w + w')
> + * = (WV + w'V' - Vw) / (W - w + w')
> + *
> + * ==> V'*(W - w + w') = WV + w'V' - Vw
> + * ==> V' * (W - w) = (W - w) * V (5)
> + *
> + * If the entity is the only one in the cfs_rq, then reweight
> + * always occurs at 0-lag point, so V won't change. Or else
> + * there are other entities, hence W != w, then Eq. (5) turns
> + * into V' = V. So V won't change in either case, proof done.
> + *
> + *
> + * So according to corollary #1 & #2, the effect of re-weight
> + * on vruntime should be:
> + *
> + * v' = V' - (V - v) * w / w' (4)
> + * = V - (V - v) * w / w'
> + * = V - vl * w / w'
> + * = V - vl'
> + */
> + se->vlag = div_s64(se->vlag * old_weight, weight);
> + if (avruntime)
> + se->vruntime = avruntime - se->vlag;
> +
> + /*
> + * DEADLINE
> + * --------
> + *
> + * When the weight changes, the virtual time slope changes and
> + * we should adjust the relative virtual deadline accordingly.
> + *
> + * d' = v' + (d - v)*w/w'
> + * = V' - (V - v)*w/w' + (d - v)*w/w'
> + * = V - (V - v)*w/w' + (d - v)*w/w'
> + * = V + (d - V)*w/w'
> + */
> + if (se->rel_deadline) {
> + se->deadline = div_s64(se->deadline * old_weight, weight);
> + if (avruntime) {
> + se->rel_deadline = 0;
> + se->deadline += avruntime;
> + }
> + }
> +
> + if (rel_vprot) {
> + se->vprot = div_s64(se->vprot * old_weight, weight);
> + if (avruntime)
> + se->vprot += avruntime;
> + }
> +}
>
> static void reweight_entity(struct cfs_rq *cfs_rq, struct sched_entity *se,
> unsigned long weight)
> {
> bool curr = cfs_rq->curr == se;
> bool rel_vprot = false;
> - u64 vprot;
> + u64 avruntime = 0;
>
> if (se->on_rq) {
> /* commit outstanding execution time */
> update_curr(cfs_rq);
> - update_entity_lag(cfs_rq, se);
> - se->deadline -= se->vruntime;
> + avruntime = avg_vruntime(cfs_rq);
> + se->vlag = entity_lag(avruntime, se);
vlag is updated here. Considering vlag and vprot share the same union, updating
vlag will overwrite vprot. Is it right to call protect_slice() (which use vprot)
after this update?
> + se->deadline -= avruntime;
> se->rel_deadline = 1;
> if (curr && protect_slice(se)) {
> - vprot = se->vprot - se->vruntime;
> + se->vprot -= avruntime;
> rel_vprot = true;
> }
>
> @@ -3866,30 +3983,17 @@ static void reweight_entity(struct cfs_r
> }
> dequeue_load_avg(cfs_rq, se);
>
> - /*
> - * Because we keep se->vlag = V - v_i, while: lag_i = w_i*(V - v_i),
> - * we need to scale se->vlag when w_i changes.
> - */
> - se->vlag = div_s64(se->vlag * se->load.weight, weight);
> - if (se->rel_deadline)
> - se->deadline = div_s64(se->deadline * se->load.weight, weight);
> -
> - if (rel_vprot)
> - vprot = div_s64(vprot * se->load.weight, weight);
> + rescale_entity(se, weight, avruntime, rel_vprot);
>
> update_load_set(&se->load, weight);
>
> do {
> u32 divider = get_pelt_divider(&se->avg);
> -
> se->avg.load_avg = div_u64(se_weight(se) * se->avg.load_sum, divider);
> } while (0);
>
> enqueue_load_avg(cfs_rq, se);
> if (se->on_rq) {
> - place_entity(cfs_rq, se, 0);
> - if (rel_vprot)
> - se->vprot = se->vruntime + vprot;
> update_load_add(&cfs_rq->load, se->load.weight);
> if (!curr)
> __enqueue_entity(cfs_rq, se);
> @@ -5247,7 +5351,7 @@ place_entity(struct cfs_rq *cfs_rq, stru
>
> se->vruntime = vruntime - lag;
>
> - if (se->rel_deadline) {
> + if (sched_feat(PLACE_REL_DEADLINE) && se->rel_deadline) {
> se->deadline += se->vruntime;
> se->rel_deadline = 0;
> return;
>
>
>
> .
>
^ permalink raw reply [flat|nested] 70+ messages in thread
* Re: [PATCH 4/4] sched/fair: Revert 6d71a9c61604 ("sched/fair: Fix EEVDF entity placement bug causing scheduling lag")
2026-01-31 1:47 ` Zhang Qiao
@ 2026-01-31 15:21 ` Peter Zijlstra
2026-02-02 9:12 ` Peter Zijlstra
0 siblings, 1 reply; 70+ messages in thread
From: Peter Zijlstra @ 2026-01-31 15:21 UTC (permalink / raw)
To: Zhang Qiao
Cc: mingo, juri.lelli, vincent.guittot, dietmar.eggemann, rostedt,
bsegall, mgorman, vschneid, linux-kernel, wangtao554, quzicheng,
kprateek.nayak, wuyun.abel, dsmythies, Hui Tang
On Sat, Jan 31, 2026 at 09:47:07AM +0800, Zhang Qiao wrote:
> > if (se->on_rq) {
> > /* commit outstanding execution time */
> > update_curr(cfs_rq);
> > - update_entity_lag(cfs_rq, se);
> > - se->deadline -= se->vruntime;
> > + avruntime = avg_vruntime(cfs_rq);
> > + se->vlag = entity_lag(avruntime, se);
>
>
> vlag is updated here. Considering vlag and vprot share the same union, updating
> vlag will overwrite vprot. Is it right to call protect_slice() (which use vprot)
> after this update?
Oh you are quite right; I'm sure Ingo had a patch removing that union,
but clearly that's not been merged yet.
Sorry about that mistake; I'll make a new version on Monday.
Thanks!
^ permalink raw reply [flat|nested] 70+ messages in thread
* RE: [PATCH 0/4] sched: Various reweight_entity() fixes
2026-01-30 9:34 [PATCH 0/4] sched: Various reweight_entity() fixes Peter Zijlstra
` (3 preceding siblings ...)
2026-01-30 9:34 ` [PATCH 4/4] sched/fair: Revert 6d71a9c61604 ("sched/fair: Fix EEVDF entity placement bug causing scheduling lag") Peter Zijlstra
@ 2026-02-01 17:13 ` Doug Smythies
2026-02-03 6:45 ` K Prateek Nayak
` (3 subsequent siblings)
8 siblings, 0 replies; 70+ messages in thread
From: Doug Smythies @ 2026-02-01 17:13 UTC (permalink / raw)
To: 'Peter Zijlstra'
Cc: juri.lelli, vincent.guittot, dietmar.eggemann, rostedt, bsegall,
mgorman, vschneid, linux-kernel, wangtao554, quzicheng,
kprateek.nayak, wuyun.abel, Doug Smythies, mingo
Hi Peter,
Thank you for including me on this set of emails.
I assume I was copied on this patch set because I reported an issue a year ago,
and I see patch 4 of 4 reverts the fix from that time.
I also note that there is a pending update to patch 4 of 4. I will re-test then.
On 2026.01.30 01:35 Peter Zijlstra wrote:
> Two issues related to reweight_entity() were raised; poking at all that got me
> these patches.
>
> They're in queue.git/sched/core
Thanks. I tried to apply them to kernel 6.19-rc5, but patch 3 of 4 would not apply.
It took me awhile to figure out what you meant but got there in the end.
> and I spend most of yesterday staring at traces
> trying to find anything wrong. So far, so good.
>
> Please test.
Happy to.
There were 2 issues raised a year ago: One was extremely long CPU migration
times under specific conditions, thousands of times longer than reasonable;
The second was similar, but much much less in magnitude. The second issue
was hidden by the first but became apparent once the first was fixed.
For more background, readers are referred to the long email thread [1].
Testing of this patch set:
For those that don't want to read: Summary: all good.
The main diagnostic tool used here is turbostat, where the issues are shown via
anomalies in the time between samples. The test setup is an otherwise
very idle system with a 100.0% load applied. Command used:
sudo turbostat --quiet --Summary --show Busy%,Bzy_MHz,IRQ,PkgWatt,PkgTmp,TSC_MHz,Time_Of_Day_Seconds,usec --interval 1 --out
/dev/shm/turbo.log
The data is post processed and a histogram of the times between samples is created. 1 millisecond per histogram bin.
Step 1: Confirm where we left off a year ago:
The exact same kernel from a year ago, that we ended up happy with, was used.
doug@s19:~/tmp/peterz/6.19/turbo$ cat 613.his
Kernel: 6.13.0-stock
gov: powersave
HWP: enabled
1.000000, 23195
1.001000, 10897
1.002000, 49
1.003000, 23
1.004000, 21
1.005000, 9
Total: 34194 : Total >= 10 mSec: 0 ( 0.00 percent)
So, over 9 hours and never a nominal sample time exceeded by over 5 milliseconds.
Very good.
Step 2: Take a baseline sample before this patch set:
Mainline kernel 6.19-rc1 was used:
doug@s19:~/tmp/peterz/6.19/turbo$ cat rc1.his
Kernel: 6.19.0-rc1-stock
gov: powersave
HWP: enabled
1.000000, 19509
1.001000, 10430
1.002000, 32
1.003000, 19
1.004000, 24
1.005000, 13
1.006000, 9
1.007000, 4
1.008000, 3
1.009000, 4
1.010000, 6
1.011000, 2
1.012000, 1
1.013000, 4
1.014000, 10
1.015000, 10
1.016000, 7
1.017000, 10
1.018000, 20
1.019000, 12
1.020000, 5
1.021000, 3
1.022000, 1
1.023000, 2
1.024000, 2 <<< Clamped. Actually 26 and 25 milliseconds
Total: 30142 : Total >= 10 mSec: 95 ( 0.32 percent)
What!!!
Over 8 hours.
It seems something has regressed over the last year.
Our threshold of 10 milliseconds was rather arbitrary.
Step 3: This patch set and from Peter's git tree:
doug@s19:~/tmp/peterz/6.19/turbo$ cat 02.his
kernel: 6.19.0-rc1-pz
gov: powersave
HWP: enabled
1.000000, 19139
1.001000, 9532
1.002000, 19
1.003000, 17
1.004000, 8
1.005000, 3
1.006000, 2
1.009000, 1
Total: 28721 : Total >= 10 mSec: 0 ( 0.00 percent)
Just about 8 hours.
Never a time >= our arbitrary threshold of 10 milliseconds.
So, good.
I will redo this test with the revised patch 4 of 4 when it is available.
... Doug
[1] https://lore.kernel.org/lkml/005f01db5a44$3bb698e0$b323caa0$@telus.net/
^ permalink raw reply [flat|nested] 70+ messages in thread
* Re: [PATCH 4/4] sched/fair: Revert 6d71a9c61604 ("sched/fair: Fix EEVDF entity placement bug causing scheduling lag")
2026-01-31 15:21 ` Peter Zijlstra
@ 2026-02-02 9:12 ` Peter Zijlstra
2026-02-02 9:24 ` Peter Zijlstra
2026-02-02 11:23 ` Zhang Qiao
0 siblings, 2 replies; 70+ messages in thread
From: Peter Zijlstra @ 2026-02-02 9:12 UTC (permalink / raw)
To: Zhang Qiao
Cc: mingo, juri.lelli, vincent.guittot, dietmar.eggemann, rostedt,
bsegall, mgorman, vschneid, linux-kernel, wangtao554, quzicheng,
kprateek.nayak, wuyun.abel, dsmythies, Hui Tang
On Sat, Jan 31, 2026 at 04:21:39PM +0100, Peter Zijlstra wrote:
> On Sat, Jan 31, 2026 at 09:47:07AM +0800, Zhang Qiao wrote:
>
> > > if (se->on_rq) {
> > > /* commit outstanding execution time */
> > > update_curr(cfs_rq);
> > > - update_entity_lag(cfs_rq, se);
> > > - se->deadline -= se->vruntime;
> > > + avruntime = avg_vruntime(cfs_rq);
> > > + se->vlag = entity_lag(avruntime, se);
> >
> >
> > vlag is updated here. Considering vlag and vprot share the same union, updating
> > vlag will overwrite vprot. Is it right to call protect_slice() (which use vprot)
> > after this update?
>
> Oh you are quite right; I'm sure Ingo had a patch removing that union,
> but clearly that's not been merged yet.
>
> Sorry about that mistake; I'll make a new version on Monday.
After looking at things, I think the best option is to simply remove
that union.
The thing is, I can fix reweight to respect this union, but there are
more problems, notably the sched_change pattern will not only call
put_prev_task/set_next_task, it will actually dequeue/enqueue the thing
and therefore 'temporarily' use the vlag field, destroying the vprot
value.
And yes, we can fix all that, but I'm thinking that at that point the
union is more trouble than its worth.
^ permalink raw reply [flat|nested] 70+ messages in thread
* Re: [PATCH 4/4] sched/fair: Revert 6d71a9c61604 ("sched/fair: Fix EEVDF entity placement bug causing scheduling lag")
2026-02-02 9:12 ` Peter Zijlstra
@ 2026-02-02 9:24 ` Peter Zijlstra
2026-02-02 11:23 ` Zhang Qiao
1 sibling, 0 replies; 70+ messages in thread
From: Peter Zijlstra @ 2026-02-02 9:24 UTC (permalink / raw)
To: Zhang Qiao
Cc: mingo, juri.lelli, vincent.guittot, dietmar.eggemann, rostedt,
bsegall, mgorman, vschneid, linux-kernel, wangtao554, quzicheng,
kprateek.nayak, wuyun.abel, dsmythies, Hui Tang
On Mon, Feb 02, 2026 at 10:12:34AM +0100, Peter Zijlstra wrote:
> On Sat, Jan 31, 2026 at 04:21:39PM +0100, Peter Zijlstra wrote:
> > On Sat, Jan 31, 2026 at 09:47:07AM +0800, Zhang Qiao wrote:
> >
> > > > if (se->on_rq) {
> > > > /* commit outstanding execution time */
> > > > update_curr(cfs_rq);
> > > > - update_entity_lag(cfs_rq, se);
> > > > - se->deadline -= se->vruntime;
> > > > + avruntime = avg_vruntime(cfs_rq);
> > > > + se->vlag = entity_lag(avruntime, se);
> > >
> > >
> > > vlag is updated here. Considering vlag and vprot share the same union, updating
> > > vlag will overwrite vprot. Is it right to call protect_slice() (which use vprot)
> > > after this update?
> >
> > Oh you are quite right; I'm sure Ingo had a patch removing that union,
> > but clearly that's not been merged yet.
> >
> > Sorry about that mistake; I'll make a new version on Monday.
>
> After looking at things, I think the best option is to simply remove
> that union.
>
> The thing is, I can fix reweight to respect this union, but there are
> more problems, notably the sched_change pattern will not only call
> put_prev_task/set_next_task, it will actually dequeue/enqueue the thing
> and therefore 'temporarily' use the vlag field, destroying the vprot
> value.
>
> And yes, we can fix all that, but I'm thinking that at that point the
> union is more trouble than its worth.
>
And its already gone -- I managed to consistently look at the wrong
tree. So all should be good.
---
commit 80390ead2080071cbd6f427ff8deb94d10a4a50f
Author: Ingo Molnar <mingo@kernel.org>
Date: Wed Nov 26 05:31:28 2025 +0100
sched/fair: Separate se->vlag from se->vprot
There's no real space concerns here and keeping these fields
in a union makes reading (and tracing) the scheduler code harder.
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Link: https://patch.msgid.link/20251201064647.1851919-4-mingo@kernel.org
diff --git a/include/linux/sched.h b/include/linux/sched.h
index d395f2810fac..bf96a7d595e2 100644
--- a/include/linux/sched.h
+++ b/include/linux/sched.h
@@ -586,15 +586,10 @@ struct sched_entity {
u64 sum_exec_runtime;
u64 prev_sum_exec_runtime;
u64 vruntime;
- union {
- /*
- * When !@on_rq this field is vlag.
- * When cfs_rq->curr == se (which implies @on_rq)
- * this field is vprot. See protect_slice().
- */
- s64 vlag;
- u64 vprot;
- };
+ /* Approximated virtual lag: */
+ s64 vlag;
+ /* 'Protected' deadline, to give out minimum quantums: */
+ u64 vprot;
u64 slice;
u64 nr_migrations;
^ permalink raw reply related [flat|nested] 70+ messages in thread
* Re: [PATCH 4/4] sched/fair: Revert 6d71a9c61604 ("sched/fair: Fix EEVDF entity placement bug causing scheduling lag")
2026-02-02 9:12 ` Peter Zijlstra
2026-02-02 9:24 ` Peter Zijlstra
@ 2026-02-02 11:23 ` Zhang Qiao
1 sibling, 0 replies; 70+ messages in thread
From: Zhang Qiao @ 2026-02-02 11:23 UTC (permalink / raw)
To: Peter Zijlstra
Cc: mingo, juri.lelli, vincent.guittot, dietmar.eggemann, rostedt,
bsegall, mgorman, vschneid, linux-kernel, wangtao554, quzicheng,
kprateek.nayak, wuyun.abel, dsmythies, Hui Tang
在 2026/2/2 17:12, Peter Zijlstra 写道:
> On Sat, Jan 31, 2026 at 04:21:39PM +0100, Peter Zijlstra wrote:
>> On Sat, Jan 31, 2026 at 09:47:07AM +0800, Zhang Qiao wrote:
>>
>>>> if (se->on_rq) {
>>>> /* commit outstanding execution time */
>>>> update_curr(cfs_rq);
>>>> - update_entity_lag(cfs_rq, se);
>>>> - se->deadline -= se->vruntime;
>>>> + avruntime = avg_vruntime(cfs_rq);
>>>> + se->vlag = entity_lag(avruntime, se);
>>>
>>>
>>> vlag is updated here. Considering vlag and vprot share the same union, updating
>>> vlag will overwrite vprot. Is it right to call protect_slice() (which use vprot)
>>> after this update?
>>
>> Oh you are quite right; I'm sure Ingo had a patch removing that union,
>> but clearly that's not been merged yet.
>>
>> Sorry about that mistake; I'll make a new version on Monday.
>
> After looking at things, I think the best option is to simply remove
> that union.
>
Agreed. The union makes the code logic overly complex and error-prone.
> The thing is, I can fix reweight to respect this union, but there are
> more problems, notably the sched_change pattern will not only call
> put_prev_task/set_next_task, it will actually dequeue/enqueue the thing
> and therefore 'temporarily' use the vlag field, destroying the vprot
> value.
>
> And yes, we can fix all that, but I'm thinking that at that point the
> union is more trouble than its worth.
>
>
> .
>
^ permalink raw reply [flat|nested] 70+ messages in thread
* Re: [PATCH 0/4] sched: Various reweight_entity() fixes
2026-01-30 9:34 [PATCH 0/4] sched: Various reweight_entity() fixes Peter Zijlstra
` (4 preceding siblings ...)
2026-02-01 17:13 ` [PATCH 0/4] sched: Various reweight_entity() fixes Doug Smythies
@ 2026-02-03 6:45 ` K Prateek Nayak
2026-02-03 11:11 ` Peter Zijlstra
2026-02-14 7:20 ` Shubhang Kaushik
` (2 subsequent siblings)
8 siblings, 1 reply; 70+ messages in thread
From: K Prateek Nayak @ 2026-02-03 6:45 UTC (permalink / raw)
To: Peter Zijlstra, mingo
Cc: juri.lelli, vincent.guittot, dietmar.eggemann, rostedt, bsegall,
mgorman, vschneid, linux-kernel, wangtao554, quzicheng,
wuyun.abel, dsmythies
Hello Peter,
On 1/30/2026 3:04 PM, Peter Zijlstra wrote:
> Two issues related to reweight_entity() were raised; poking at all that got me
> these patches.
>
> They're in queue.git/sched/core and I spend most of yesterday staring at traces
> trying to find anything wrong. So far, so good.
>
> Please test.
I put this on top of tip:sched/urgent + tip:sched/core which contains Ingo's
cleanup of removing the union and at some point in the benchmark run I hit:
BUG: kernel NULL pointer dereference, address: 0000000000000051
#PF: supervisor read access in kernel mode
#PF: error_code(0x0000) - not-present page
PGD c153802067 P4D c1750e7067 PUD c16067e067 PMD 0
Oops: Oops: 0000 [#1] SMP NOPTI
CPU: 200 UID: 1000 PID: 92850 Comm: schbench Not tainted 6.19.0-rc6-peterz-eevdf-fix+ #4 PREEMPT(full)
Hardware name: ... (Zen4c server)
RIP: 0010:pick_task_fair+0x3c/0x130
Code: ...
RSP: 0000:ff5cc03f25ecfd58 EFLAGS: 00010046
RAX: 0000000000000000 RBX: ff3087d6eb032380 RCX: 00000000056ae402
RDX: fffe78b16a6ed620 RSI: fffe790e92f4c046 RDI: 00027caa24e6c3ee
RBP: 0000000000000000 R08: 0000000000000002 R09: 0000000000000002
R10: 0000086bfb248f00 R11: 0000000000000438 R12: ff3087d6eb032480
R13: ff5cc03f25ecfea0 R14: ff3087d6eb032380 R15: ff3087d6eb032380
FS: 00007f176438a640(0000) GS:ff3087d73d0e2000(0000) knlGS:0000000000000000
CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
CR2: 0000000000000051 CR3: 000000c0d275c048 CR4: 0000000000f71ef0
PKRU: 55555554
Call Trace:
<TASK>
pick_next_task_fair+0x46/0x7b0
? task_tick_fair+0xf1/0x8b0
? perf_event_task_tick+0x5e/0xc0
__pick_next_task+0x41/0x1d0
__schedule+0x26e/0x17a0
? srso_alias_return_thunk+0x5/0xfbef5
? timerqueue_add+0x9f/0xc0
? __hrtimer_run_queues+0x139/0x240
? ktime_get+0x3f/0xf0
? srso_alias_return_thunk+0x5/0xfbef5
? srso_alias_return_thunk+0x5/0xfbef5
? srso_alias_return_thunk+0x5/0xfbef5
? clockevents_program_event+0xaa/0x100
schedule+0x27/0xd0
irqentry_exit+0x2a8/0x610
? srso_alias_return_thunk+0x5/0xfbef5
? __irq_exit_rcu+0x3f/0xf0
asm_sysvec_apic_timer_interrupt+0x1a/0x20
RIP: 0033:0x7f17f2498e58
Code: ...
RSP: 002b:00007f1764389d48 EFLAGS: 00000202
RAX: 0000000000000010 RBX: 00000000000000c8 RCX: 00007f17f24e57f8
RDX: 0000000000000001 RSI: 0000000000000000 RDI: 0000000014cd2820
RBP: 0000000014cd2820 R08: 0000000000000000 R09: 0000000000000000
R10: 0000000000000000 R11: 0000000000000293 R12: 00007f1764389e00
R13: 00007f176439fed0 R14: 0000000000002a40 R15: 00007f17b414c778
</TASK>
Modules linked in: ...
CR2: 0000000000000051
---[ end trace 0000000000000000 ]---
RIP points to "se->sched_delayed" dereference in pick_task_fair():
$ scripts/faddr2line vmlinux pick_task_fair+0x3c/0x130
pick_task_fair+0x3c/0x130:
pick_next_entity at kernel/sched/fair.c:5648
(inlined by) pick_task_fair at kernel/sched/fair.c:9061
$ sed -n '5645,5651p' kernel/sched/fair.c
struct sched_entity *se;
se = pick_eevdf(cfs_rq);
if (se->sched_delayed) {
dequeue_entities(rq, se, DEQUEUE_SLEEP | DEQUEUE_DELAYED);
/*
* Must not reference @se again, see __block_task().
so something went sideways with the avg_vruntime calculation I presume.
I'm rerunning with the PARANOID_AVG feat now.
Just re-running the particular schbench variant hasn't crashed the kernel
in the half hour it has been running so I've re-triggered the same set of
benchmarks to see if flipping PARANOID_AVG makes any difference.
If you have a debug patch somewhere that you would like data on this run
from, please do let me know, else I plan on capturing the rq state at
the time of crash (cfs_rq walk, dumping all the vruntimes of all the
queued entities).
--
Thanks and Regards,
Prateek
^ permalink raw reply [flat|nested] 70+ messages in thread
* Re: [PATCH 0/4] sched: Various reweight_entity() fixes
2026-02-03 6:45 ` K Prateek Nayak
@ 2026-02-03 11:11 ` Peter Zijlstra
2026-02-03 12:19 ` K Prateek Nayak
0 siblings, 1 reply; 70+ messages in thread
From: Peter Zijlstra @ 2026-02-03 11:11 UTC (permalink / raw)
To: K Prateek Nayak
Cc: mingo, juri.lelli, vincent.guittot, dietmar.eggemann, rostedt,
bsegall, mgorman, vschneid, linux-kernel, wangtao554, quzicheng,
wuyun.abel, dsmythies
On Tue, Feb 03, 2026 at 12:15:56PM +0530, K Prateek Nayak wrote:
> Hello Peter,
>
> On 1/30/2026 3:04 PM, Peter Zijlstra wrote:
> > Two issues related to reweight_entity() were raised; poking at all that got me
> > these patches.
> >
> > They're in queue.git/sched/core and I spend most of yesterday staring at traces
> > trying to find anything wrong. So far, so good.
> >
> > Please test.
>
> I put this on top of tip:sched/urgent + tip:sched/core which contains Ingo's
> cleanup of removing the union and at some point in the benchmark run I hit:
>
> BUG: kernel NULL pointer dereference, address: 0000000000000051
:-(
>
> so something went sideways with the avg_vruntime calculation I presume.
> I'm rerunning with the PARANOID_AVG feat now.
>
> Just re-running the particular schbench variant hasn't crashed the kernel
> in the half hour it has been running so I've re-triggered the same set of
> benchmarks to see if flipping PARANOID_AVG makes any difference.
If you run with PARANOID_AVG, the condition ends up visible as:
grep shift /debug/sched/debug
If any of the fields are !0, you tripped an overflow.
Once its !0, you can't get it back to 0 (except perhaps if its cgroup
things, in which case you can destroy and re-create the cgroups I
suppose) other than reboot.
Anyway, if you can reproduce without PARANOID_AVG (or indeed have
tripped overflow) could you share the specific schbench invocation you
used?
I'm not sure I have valuable tracing patches, I just stick random
trace_printk()s in.
^ permalink raw reply [flat|nested] 70+ messages in thread
* Re: [PATCH 0/4] sched: Various reweight_entity() fixes
2026-02-03 11:11 ` Peter Zijlstra
@ 2026-02-03 12:19 ` K Prateek Nayak
2026-02-03 16:36 ` Doug Smythies
` (2 more replies)
0 siblings, 3 replies; 70+ messages in thread
From: K Prateek Nayak @ 2026-02-03 12:19 UTC (permalink / raw)
To: Peter Zijlstra
Cc: mingo, juri.lelli, vincent.guittot, dietmar.eggemann, rostedt,
bsegall, mgorman, vschneid, linux-kernel, wangtao554, quzicheng,
wuyun.abel, dsmythies
Hello Peter,
On 2/3/2026 4:41 PM, Peter Zijlstra wrote:
> On Tue, Feb 03, 2026 at 12:15:56PM +0530, K Prateek Nayak wrote:
>> Hello Peter,
>>
>> On 1/30/2026 3:04 PM, Peter Zijlstra wrote:
>>> Two issues related to reweight_entity() were raised; poking at all that got me
>>> these patches.
>>>
>>> They're in queue.git/sched/core and I spend most of yesterday staring at traces
>>> trying to find anything wrong. So far, so good.
>>>
>>> Please test.
>>
>> I put this on top of tip:sched/urgent + tip:sched/core which contains Ingo's
>> cleanup of removing the union and at some point in the benchmark run I hit:
>>
>> BUG: kernel NULL pointer dereference, address: 0000000000000051
>
> :-(
>
>>
>> so something went sideways with the avg_vruntime calculation I presume.
>> I'm rerunning with the PARANOID_AVG feat now.
>>
>> Just re-running the particular schbench variant hasn't crashed the kernel
>> in the half hour it has been running so I've re-triggered the same set of
>> benchmarks to see if flipping PARANOID_AVG makes any difference.
>
> If you run with PARANOID_AVG, the condition ends up visible as:
>
> grep shift /debug/sched/debug
>
> If any of the fields are !0, you tripped an overflow.
Yup I see a few !0 values. Some inching closer to the BUG_ON()
grep "shift.*: [^0]$" /sys/kernel/debug/sched/debug
.sum_shift : 4
.sum_shift : 3
.sum_shift : 5
.sum_shift : 1
.sum_shift : 2
.sum_shift : 3
>
> Once its !0, you can't get it back to 0 (except perhaps if its cgroup
> things, in which case you can destroy and re-create the cgroups I
> suppose) other than reboot.
>
> Anyway, if you can reproduce without PARANOID_AVG (or indeed have
> tripped overflow) could you share the specific schbench invocation you
> used?
This trips when I'm running a (very) old version of schbench at commit
e4aa540 ("Make sure rps isn't zero in auto_rps mode.")
I'm running the following on a 512 CPU server:
#!/bin/bash
DIR=$1
MESSENGERS=1
MAX_ITERS=2
SCHBENCH=./schbench
for i in 1 2 4 8 16 32 64 128 256 512 768 1024;
do
THISDIR=$DIR/$i-workers
if [ ! -d $THISDIR ]
then
mkdir -p $THISDIR
fi
for j in `seq 0 $MAX_ITERS`
do
echo "===== Worker $i : Iter $j ======";
$SCHBENCH -m $MESSENGERS -t $i |& tee $THISDIR/iter-$j.log;
sleep 2
done
done
Fails when it is running with 768 workers. Standalone runs didn't
fail - have to run a cumulative runner that runs sched-messaging,
stream, tbench, netperf, first before running schbench :-(
>
> I'm not sure I have valuable tracing patches, I just stick random
> trace_printk()s in.
I'll plop those in and update once the I get a log for sum_shift++.
--
Thanks and Regards,
Prateek
^ permalink raw reply [flat|nested] 70+ messages in thread
* RE: [PATCH 0/4] sched: Various reweight_entity() fixes
2026-02-03 12:19 ` K Prateek Nayak
@ 2026-02-03 16:36 ` Doug Smythies
2026-02-10 18:13 ` Peter Zijlstra
2026-02-04 10:15 ` K Prateek Nayak
2026-02-04 10:44 ` Peter Zijlstra
2 siblings, 1 reply; 70+ messages in thread
From: Doug Smythies @ 2026-02-03 16:36 UTC (permalink / raw)
To: 'K Prateek Nayak', 'Peter Zijlstra'
Cc: mingo, juri.lelli, vincent.guittot, dietmar.eggemann, rostedt,
bsegall, mgorman, vschneid, linux-kernel, wangtao554, quzicheng,
wuyun.abel, Doug Smythies
[-- Attachment #1: Type: text/plain, Size: 2922 bytes --]
Hi All,
On 2026.02.03 04:19 K Prateek Nayak wrote:
> On 2/3/2026 4:41 PM, Peter Zijlstra wrote:
>> On Tue, Feb 03, 2026 at 12:15:56PM +0530, K Prateek Nayak wrote:
>>> On 1/30/2026 3:04 PM, Peter Zijlstra wrote:
>>>> Two issues related to reweight_entity() were raised; poking at all that got me
>>>> these patches.
>>>>
>>>> They're in queue.git/sched/core and I spend most of yesterday staring at traces
>>>> trying to find anything wrong. So far, so good.
>>>>
>>>> Please test.
>>>
>>> I put this on top of tip:sched/urgent + tip:sched/core which contains Ingo's
>>> cleanup of removing the union and at some point in the benchmark run I hit:
>>>
>>> BUG: kernel NULL pointer dereference, address: 0000000000000051
... snip ...
> This trips when I'm running a (very) old version of schbench at commit
> e4aa540 ("Make sure rps isn't zero in auto_rps mode.")
>
> I'm running the following on a 512 CPU server:
>
> #!/bin/bash
>
> DIR=$1
> MESSENGERS=1
> MAX_ITERS=2
> SCHBENCH=./schbench
>
> for i in 1 2 4 8 16 32 64 128 256 512 768 1024;
> do
> THISDIR=$DIR/$i-workers
> if [ ! -d $THISDIR ]
> then
> mkdir -p $THISDIR
> fi
> for j in `seq 0 $MAX_ITERS`
> do
> echo "===== Worker $i : Iter $j ======";
> $SCHBENCH -m $MESSENGERS -t $i |& tee $THISDIR/iter-$j.log;
> sleep 2
> done
> done
>
> Fails when it is running with 768 workers. Standalone runs didn't
> fail - have to run a cumulative runner that runs sched-messaging,
> stream, tbench, netperf, first before running schbench :-(
Further to my email from the other day, where all was good [1],
I have continued to test, in particular the severe overload conditions
from [2].
Under heavy overload my test computer just hangs. My multiple
ssh sessions eventually terminate. I have left it for any hours, but
have to reset it in the end.
The first time there were no log entries at all, at least that I could
find.
The second time:
kernel: BUG: kernel NULL pointer dereference, address: 0000000000000051
kernel: #PF: supervisor read access in kernel mode
kernel: #PF: error_code(0x0000) - not-present page
kernel: PGD 0 P4D 0
kernel: Oops: Oops: 0000 [#1] SMP NOPTI
kernel: CPU: 11 UID: 1000 PID: 3597 Comm: yes Not tainted 6.19.0-rc1-pz #1 PREEMPT(full)
...
The entire relevant part is attached.
Conditions:
Greater than 12,500 X (yes > /dev/null) tasks
But less than 15,000 X ( yes > /dev/null) tasks
I have tested up to 20,000 X (yes > /dev/null) tasks
with previous kernels, including mainline 6.19-rc1.
I would not disagree if you say my operating conditions
are ridiculous.
System:
Processor: Intel(R) Core(TM) i5-10600K CPU @ 4.10GHz, 6 cores 12 CPUs.
CPU frequency scaling driver: intel_pstate; Governor powersave.
HWP: Enabled
[1] https://lore.kernel.org/lkml/000d01dc939e$0fc99fe0$2f5cdfa0$@telus.net/
[2] https://lore.kernel.org/lkml/002401dbb6bd$4527ec00$cf77c400$@telus.net/
... Doug
[-- Attachment #2: kern.log --]
[-- Type: application/octet-stream, Size: 67091 bytes --]
2026-02-02T16:13:33.017238-08:00 s19 kernel: BUG: kernel NULL pointer dereference, address: 0000000000000051
2026-02-02T16:13:33.017248-08:00 s19 kernel: #PF: supervisor read access in kernel mode
2026-02-02T16:13:33.017249-08:00 s19 kernel: #PF: error_code(0x0000) - not-present page
2026-02-02T16:13:33.017251-08:00 s19 kernel: PGD 0 P4D 0
2026-02-02T16:13:33.017382-08:00 s19 kernel: Oops: Oops: 0000 [#1] SMP NOPTI
2026-02-02T16:13:33.017384-08:00 s19 kernel: CPU: 11 UID: 1000 PID: 3597 Comm: yes Not tainted 6.19.0-rc1-pz #1 PREEMPT(full)
2026-02-02T16:13:33.017385-08:00 s19 kernel: Hardware name: ASUS System Product Name/PRIME Z490-A, BIOS 9902 09/15/2021
2026-02-02T16:13:33.017386-08:00 s19 kernel: RIP: 0010:pick_task_fair+0x3e/0x140
2026-02-02T16:13:33.017386-08:00 s19 kernel: Code: 53 48 89 fb 48 83 ec 08 8b 8f 10 01 00 00 85 c9 0f 84 96 00 00 00 4c 89 ef 45 31 e4 eb 27 66 90 be 01 00 00 00 e8 92 41 ff ff <80> 78 51 00 75 5e 48 85 c0 74 69 48 8b b8 b0 00 00 00 48 85 ff 0f
2026-02-02T16:13:33.017387-08:00 s19 kernel: RSP: 0018:ffffd095863ef7a8 EFLAGS: 00010046
2026-02-02T16:13:33.017388-08:00 s19 kernel: RAX: 0000000000000000 RBX: ffff89298e5b2f40 RCX: 0000000000000000
2026-02-02T16:13:33.017388-08:00 s19 kernel: RDX: 0000000000000000 RSI: 0000000000000000 RDI: 0000000000000000
2026-02-02T16:13:33.017389-08:00 s19 kernel: RBP: ffffd095863ef7c8 R08: 0000000000000000 R09: 0000000000000000
2026-02-02T16:13:33.017390-08:00 s19 kernel: R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
2026-02-02T16:13:33.017390-08:00 s19 kernel: R13: ffff89298e5b3040 R14: ffff89298e5b2f40 R15: 0000000000000000
2026-02-02T16:13:33.017391-08:00 s19 kernel: FS: 00007e443ac91740(0000) GS:ffff8929d1bd7000(0000) knlGS:0000000000000000
2026-02-02T16:13:33.017391-08:00 s19 kernel: CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
2026-02-02T16:13:33.017392-08:00 s19 kernel: CR2: 0000000000000051 CR3: 0000000147ece001 CR4: 00000000007726f0
2026-02-02T16:13:33.017392-08:00 s19 kernel: PKRU: 55555554
2026-02-02T16:13:33.017393-08:00 s19 kernel: Call Trace:
2026-02-02T16:13:33.017394-08:00 s19 kernel: <TASK>
2026-02-02T16:13:33.017394-08:00 s19 kernel: pick_next_task_fair+0x37/0x930
2026-02-02T16:13:33.017395-08:00 s19 kernel: __pick_next_task+0x44/0x1e0
2026-02-02T16:13:33.017395-08:00 s19 kernel: __schedule+0x1e6/0x1810
2026-02-02T16:13:33.017396-08:00 s19 kernel: ? aa_file_perm+0x6e/0x5d0
2026-02-02T16:13:33.017398-08:00 s19 kernel: message repeated 2 times: [ ? aa_file_perm+0x6e/0x5d0]
2026-02-02T16:13:33.017399-08:00 s19 kernel: ? show_vpd_pgb2+0x14/0x80
2026-02-02T16:13:33.017402-08:00 s19 kernel: ? aa_file_perm+0x6e/0x5d0
2026-02-02T16:13:33.017402-08:00 s19 kernel: preempt_schedule_irq+0x38/0x70
2026-02-02T16:13:33.017403-08:00 s19 kernel: raw_irqentry_exit_cond_resched+0x31/0x40
2026-02-02T16:13:33.017403-08:00 s19 kernel: irqentry_exit+0x34/0x710
2026-02-02T16:13:33.017404-08:00 s19 kernel: sysvec_apic_timer_interrupt+0x57/0xc0
2026-02-02T16:13:33.017404-08:00 s19 kernel: asm_sysvec_apic_timer_interrupt+0x1b/0x20
2026-02-02T16:13:33.017405-08:00 s19 kernel: RIP: 0010:vfs_write+0x2c1/0x480
2026-02-02T16:13:33.017406-08:00 s19 kernel: Code: 00 00 e8 2e 92 c2 05 49 89 c4 48 3d ef fd ff ff 0f 84 2f 01 00 00 48 85 c0 0f 8e 63 fe ff ff 48 8b 45 a8 49 89 06 41 8b 45 04 <25> 00 00 00 06 3d 00 00 00 02 74 57 49 8b 7d 48 4c 8b 4f 30 49 8b
2026-02-02T16:13:33.017406-08:00 s19 kernel: RSP: 0018:ffffd095863efa80 EFLAGS: 00000206
2026-02-02T16:13:33.017407-08:00 s19 kernel: RAX: 000000000c0c001e RBX: ffff8922879caa00 RCX: ffffd095863efb20
2026-02-02T16:13:33.017407-08:00 s19 kernel: RDX: 0000000000000000 RSI: 0000633d552d74a0 RDI: ffff892287eba840
2026-02-02T16:13:33.017408-08:00 s19 kernel: RBP: ffffd095863efb10 R08: 0000000000000000 R09: 0000000000000000
2026-02-02T16:13:33.017408-08:00 s19 kernel: R10: 0000000000002000 R11: 0000000000000000 R12: 0000000000002000
2026-02-02T16:13:33.017409-08:00 s19 kernel: R13: ffff892287eba840 R14: ffffd095863efb20 R15: 0000633d552d74a0
2026-02-02T16:13:33.017409-08:00 s19 kernel: ? ksys_write+0x71/0xf0
2026-02-02T16:13:33.017410-08:00 s19 kernel: ksys_write+0x71/0xf0
2026-02-02T16:13:33.017410-08:00 s19 kernel: __x64_sys_write+0x19/0x30
2026-02-02T16:13:33.017411-08:00 s19 kernel: x64_sys_call+0x259/0x26e0
2026-02-02T16:13:33.017411-08:00 s19 kernel: do_syscall_64+0x81/0x500
2026-02-02T16:13:33.017412-08:00 s19 kernel: ? vfs_write+0x324/0x480
2026-02-02T16:13:33.017413-08:00 s19 kernel: ? vfs_write+0x324/0x480
2026-02-02T16:13:33.017414-08:00 s19 kernel: ? ksys_write+0x71/0xf0
2026-02-02T16:13:33.017415-08:00 s19 kernel: message repeated 2 times: [ ? ksys_write+0x71/0xf0]
2026-02-02T16:13:33.017416-08:00 s19 kernel: ? __x64_sys_write+0x19/0x30
2026-02-02T16:13:33.017417-08:00 s19 kernel: ? x64_sys_call+0x259/0x26e0
2026-02-02T16:13:33.017417-08:00 s19 kernel: ? do_syscall_64+0xbf/0x500
2026-02-02T16:13:33.017418-08:00 s19 kernel: ? common_file_perm+0x6b/0x1a0
2026-02-02T16:13:33.017418-08:00 s19 kernel: ? vfs_write+0x324/0x480
2026-02-02T16:13:33.017420-08:00 s19 kernel: message repeated 2 times: [ ? vfs_write+0x324/0x480]
2026-02-02T16:13:33.017420-08:00 s19 kernel: ? ksys_write+0x71/0xf0
2026-02-02T16:13:33.017421-08:00 s19 kernel: ? ksys_write+0x71/0xf0
2026-02-02T16:13:33.017422-08:00 s19 kernel: ? __x64_sys_write+0x19/0x30
2026-02-02T16:13:33.017423-08:00 s19 kernel: ? x64_sys_call+0x259/0x26e0
2026-02-02T16:13:33.017423-08:00 s19 kernel: ? do_syscall_64+0xbf/0x500
2026-02-02T16:13:33.017424-08:00 s19 kernel: ? clear_bhb_loop+0x30/0x80
2026-02-02T16:13:33.017429-08:00 s19 kernel: ? clear_bhb_loop+0x30/0x80
2026-02-02T16:13:33.017430-08:00 s19 kernel: entry_SYSCALL_64_after_hwframe+0x76/0x7e
2026-02-02T16:13:33.017431-08:00 s19 kernel: RIP: 0033:0x7e443ab1c5a4
2026-02-02T16:13:33.017431-08:00 s19 kernel: Code: c7 00 16 00 00 00 b8 ff ff ff ff c3 66 2e 0f 1f 84 00 00 00 00 00 f3 0f 1e fa 80 3d a5 ea 0e 00 00 74 13 b8 01 00 00 00 0f 05 <48> 3d 00 f0 ff ff 77 54 c3 0f 1f 00 55 48 89 e5 48 83 ec 20 48 89
2026-02-02T16:13:33.017432-08:00 s19 kernel: RSP: 002b:00007ffe3db6c1f8 EFLAGS: 00000202 ORIG_RAX: 0000000000000001
2026-02-02T16:13:33.017433-08:00 s19 kernel: RAX: ffffffffffffffda RBX: 0000000000002000 RCX: 00007e443ab1c5a4
2026-02-02T16:13:33.017433-08:00 s19 kernel: RDX: 0000000000002000 RSI: 0000633d552d74a0 RDI: 0000000000000001
2026-02-02T16:13:33.017434-08:00 s19 kernel: RBP: 00007ffe3db6c250 R08: 00007e443ac03b20 R09: 0000000000000000
2026-02-02T16:13:33.017434-08:00 s19 kernel: R10: 0000000000000001 R11: 0000000000000202 R12: 0000000000002000
2026-02-02T16:13:33.017435-08:00 s19 kernel: R13: 0000633d552d74a0 R14: 0000000000002000 R15: 0000000000002000
2026-02-02T16:13:33.017435-08:00 s19 kernel: </TASK>
2026-02-02T16:13:33.017436-08:00 s19 kernel: Modules linked in: tls snd_hda_codec_intelhdmi snd_hda_codec_alc882 snd_hda_codec_realtek_lib qrtr snd_hda_codec_generic snd_hda_intel snd_sof_pci_intel_cnl snd_sof_intel_hda_generic soundwire_intel snd_sof_intel_hda_sdw_bpt snd_sof_intel_hda_common snd_soc_hdac_hda snd_sof_intel_hda_mlink snd_sof_intel_hda snd_hda_codec_hdmi soundwire_cadence snd_sof_pci intel_rapl_msr snd_sof_xtensa_dsp intel_rapl_common bridge intel_uncore_frequency snd_sof stp intel_uncore_frequency_common llc snd_sof_utils snd_soc_acpi_intel_match snd_soc_acpi_intel_sdca_quirks soundwire_generic_allocation cfg80211 snd_soc_sdw_utils snd_soc_acpi soundwire_bus snd_soc_sdca crc8 snd_soc_avs snd_soc_hda_codec snd_hda_ext_core intel_tcc_cooling x86_pkg_temp_thermal snd_hda_codec intel_powerclamp coretemp snd_hda_core snd_intel_dspcfg snd_intel_sdw_acpi snd_hwdep binfmt_misc kvm_intel cmdlinepart i915 snd_soc_core spi_nor snd_compress ee1004 mtd mei_hdcp mei_pxp ac97_bus drm_buddy snd_pcm_dmaengine kvm snd_pcm ttm irqbypass
2026-02-02T16:13:33.017437-08:00 s19 kernel: drm_display_helper i2c_i801 eeepc_wmi snd_timer rapl nls_iso8859_1 intel_cstate asus_wmi snd i2c_smbus platform_profile spi_intel_pci cec wmi_bmof i2c_mux mei_me soundcore intel_wmi_thunderbolt sparse_keymap mxm_wmi spi_intel rc_core mei i2c_algo_bit intel_pmc_core pmt_telemetry pmt_discovery pmt_class intel_pmc_ssram_telemetry intel_vsec acpi_pad acpi_tad joydev input_leds mac_hid sch_fq_codel dm_multipath msr nvme_fabrics efi_pstore nfnetlink dmi_sysfs ip_tables x_tables autofs4 btrfs blake2b libblake2b raid10 raid456 async_raid6_recov async_memcpy async_pq async_xor async_tx xor raid6_pq raid1 raid0 linear hid_generic usbhid hid nvme nvme_core nvme_keyring ghash_clmulni_intel nvme_auth intel_lpss_pci ahci igc intel_lpss hkdf libahci idma64 video wmi aesni_intel
2026-02-02T16:13:33.017438-08:00 s19 kernel: CR2: 0000000000000051
2026-02-02T16:13:33.017439-08:00 s19 kernel: ---[ end trace 0000000000000000 ]---
2026-02-02T16:13:33.017439-08:00 s19 kernel: watchdog: CPU5: Watchdog detected hard LOCKUP on cpu 5
2026-02-02T16:13:33.017440-08:00 s19 kernel: Modules linked in: tls snd_hda_codec_intelhdmi snd_hda_codec_alc882 snd_hda_codec_realtek_lib qrtr snd_hda_codec_generic snd_hda_intel snd_sof_pci_intel_cnl snd_sof_intel_hda_generic soundwire_intel snd_sof_intel_hda_sdw_bpt snd_sof_intel_hda_common snd_soc_hdac_hda snd_sof_intel_hda_mlink snd_sof_intel_hda snd_hda_codec_hdmi soundwire_cadence snd_sof_pci intel_rapl_msr snd_sof_xtensa_dsp intel_rapl_common bridge intel_uncore_frequency snd_sof stp intel_uncore_frequency_common llc snd_sof_utils snd_soc_acpi_intel_match snd_soc_acpi_intel_sdca_quirks soundwire_generic_allocation cfg80211 snd_soc_sdw_utils snd_soc_acpi soundwire_bus snd_soc_sdca crc8 snd_soc_avs snd_soc_hda_codec snd_hda_ext_core intel_tcc_cooling x86_pkg_temp_thermal snd_hda_codec intel_powerclamp coretemp snd_hda_core snd_intel_dspcfg snd_intel_sdw_acpi snd_hwdep binfmt_misc kvm_intel cmdlinepart i915 snd_soc_core spi_nor snd_compress ee1004 mtd mei_hdcp mei_pxp ac97_bus drm_buddy snd_pcm_dmaengine kvm snd_pcm ttm irqbypass
2026-02-02T16:13:33.017488-08:00 s19 kernel: drm_display_helper i2c_i801 eeepc_wmi snd_timer rapl nls_iso8859_1 intel_cstate asus_wmi snd i2c_smbus platform_profile spi_intel_pci cec wmi_bmof i2c_mux mei_me soundcore intel_wmi_thunderbolt sparse_keymap mxm_wmi spi_intel rc_core mei i2c_algo_bit intel_pmc_core pmt_telemetry pmt_discovery pmt_class intel_pmc_ssram_telemetry intel_vsec acpi_pad acpi_tad joydev input_leds mac_hid sch_fq_codel dm_multipath msr nvme_fabrics efi_pstore nfnetlink dmi_sysfs ip_tables x_tables autofs4 btrfs blake2b libblake2b raid10 raid456 async_raid6_recov async_memcpy async_pq async_xor async_tx xor raid6_pq raid1 raid0 linear hid_generic usbhid hid nvme nvme_core nvme_keyring ghash_clmulni_intel nvme_auth intel_lpss_pci ahci igc intel_lpss hkdf libahci idma64 video wmi aesni_intel
2026-02-02T16:13:33.017488-08:00 s19 kernel: CPU: 5 UID: 1000 PID: 15564 Comm: yes Tainted: G D 6.19.0-rc1-pz #1 PREEMPT(full)
2026-02-02T16:13:33.017489-08:00 s19 kernel: Tainted: [D]=DIE
2026-02-02T16:13:33.017489-08:00 s19 kernel: Hardware name: ASUS System Product Name/PRIME Z490-A, BIOS 9902 09/15/2021
2026-02-02T16:13:33.017490-08:00 s19 kernel: RIP: 0010:native_queued_spin_lock_slowpath+0x81/0x300
2026-02-02T16:13:33.017490-08:00 s19 kernel: Code: 00 00 f0 0f ba 2b 08 0f 92 c2 8b 03 0f b6 d2 c1 e2 08 30 e4 09 d0 3d ff 00 00 00 77 6c 85 c0 74 10 0f b6 03 84 c0 74 09 f3 90 <0f> b6 03 84 c0 75 f7 b8 01 00 00 00 66 89 03 5b 41 5c 41 5d 41 5e
2026-02-02T16:13:33.017491-08:00 s19 kernel: RSP: 0018:ffffd09580294d00 EFLAGS: 00000002
2026-02-02T16:13:33.017492-08:00 s19 kernel: RAX: 0000000000000001 RBX: ffff89298e5b2f88 RCX: 0000000000000000
2026-02-02T16:13:33.017492-08:00 s19 kernel: RDX: 0000000000000000 RSI: 0000000000000001 RDI: ffff89298e5b2f88
2026-02-02T16:13:33.017493-08:00 s19 kernel: RBP: ffffd09580294d28 R08: ffff89298e5b2f40 R09: 0000000000000000
2026-02-02T16:13:33.017493-08:00 s19 kernel: R10: 000000000000082a R11: 000000000000000c R12: 0000000000000400
2026-02-02T16:13:33.017494-08:00 s19 kernel: R13: ffffd09580294e78 R14: ffffffffbc9dbf40 R15: ffffffffbc9dbf40
2026-02-02T16:13:33.017494-08:00 s19 kernel: FS: 00007b6638d38740(0000) GS:ffff8929d18d7000(0000) knlGS:0000000000000000
2026-02-02T16:13:33.017495-08:00 s19 kernel: CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
2026-02-02T16:13:33.017495-08:00 s19 kernel: CR2: 000073fa8d0ee200 CR3: 00000001ec51c001 CR4: 00000000007726f0
2026-02-02T16:13:33.017496-08:00 s19 kernel: PKRU: 55555554
2026-02-02T16:13:33.017496-08:00 s19 kernel: Call Trace:
2026-02-02T16:13:33.017497-08:00 s19 kernel: <IRQ>
2026-02-02T16:13:33.017497-08:00 s19 kernel: _raw_spin_lock+0x3f/0x60
2026-02-02T16:13:33.017498-08:00 s19 kernel: raw_spin_rq_lock_nested+0x23/0xb0
2026-02-02T16:13:33.017498-08:00 s19 kernel: _raw_spin_rq_lock_irqsave+0x21/0x40
2026-02-02T16:13:33.017499-08:00 s19 kernel: sched_balance_rq+0x705/0x14d0
2026-02-02T16:13:33.017499-08:00 s19 kernel: sched_balance_domains+0x26f/0x3c0
2026-02-02T16:13:33.017500-08:00 s19 kernel: sched_balance_softirq+0x51/0x80
2026-02-02T16:13:33.017500-08:00 s19 kernel: handle_softirqs+0xe7/0x340
2026-02-02T16:13:33.017501-08:00 s19 kernel: __irq_exit_rcu+0x10e/0x130
2026-02-02T16:13:33.017502-08:00 s19 kernel: irq_exit_rcu+0xe/0x20
2026-02-02T16:13:33.017502-08:00 s19 kernel: sysvec_apic_timer_interrupt+0xa0/0xc0
2026-02-02T16:13:33.017503-08:00 s19 kernel: </IRQ>
2026-02-02T16:13:33.017503-08:00 s19 kernel: <TASK>
2026-02-02T16:13:33.017504-08:00 s19 kernel: asm_sysvec_apic_timer_interrupt+0x1b/0x20
2026-02-02T16:13:33.017504-08:00 s19 kernel: RIP: 0010:do_syscall_64+0x47/0x500
2026-02-02T16:13:33.017505-08:00 s19 kernel: Code: 00 00 48 83 c0 0f 25 f8 07 00 00 48 29 c4 48 8d 44 24 0f 48 83 e0 f0 4d 63 ee 0f 1f 44 00 00 0f 1f 44 00 00 fb 0f 1f 44 00 00 <65> 4c 8b 25 c9 d4 43 01 49 8b 54 24 08 f6 c2 bf 0f 85 e8 02 00 00
2026-02-02T16:13:33.017505-08:00 s19 kernel: RSP: 0018:ffffd095ad857ca0 EFLAGS: 00000286
2026-02-02T16:13:33.017506-08:00 s19 kernel: RAX: ffffd095ad857ca0 RBX: ffffd095ad857f48 RCX: 0000000000000000
2026-02-02T16:13:33.017506-08:00 s19 kernel: RDX: 0000000000000000 RSI: 0000000000000001 RDI: ffffd095ad857f48
2026-02-02T16:13:33.017507-08:00 s19 kernel: RBP: ffffd095ad857f38 R08: 0000000000000000 R09: 0000000000000000
2026-02-02T16:13:33.017507-08:00 s19 kernel: R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
2026-02-02T16:13:33.017508-08:00 s19 kernel: R13: 0000000000000001 R14: 0000000000000001 R15: 0000000000000000
2026-02-02T16:13:33.017508-08:00 s19 kernel: ? x64_sys_call+0x259/0x26e0
2026-02-02T16:13:33.017509-08:00 s19 kernel: ? do_syscall_64+0xbf/0x500
2026-02-02T16:13:33.017510-08:00 s19 kernel: ? vfs_write+0x324/0x480
2026-02-02T16:13:33.017510-08:00 s19 kernel: ? vfs_write+0x324/0x480
2026-02-02T16:13:33.017511-08:00 s19 kernel: ? ksys_write+0x71/0xf0
2026-02-02T16:13:33.017511-08:00 s19 kernel: ? __x64_sys_write+0x19/0x30
2026-02-02T16:13:33.017512-08:00 s19 kernel: ? x64_sys_call+0x259/0x26e0
2026-02-02T16:13:33.017513-08:00 s19 kernel: ? do_syscall_64+0xbf/0x500
2026-02-02T16:13:33.017513-08:00 s19 kernel: ? ksys_write+0x71/0xf0
2026-02-02T16:13:33.017514-08:00 s19 kernel: ? __x64_sys_write+0x19/0x30
2026-02-02T16:13:33.017514-08:00 s19 kernel: ? x64_sys_call+0x259/0x26e0
2026-02-02T16:13:33.017515-08:00 s19 kernel: ? do_syscall_64+0xbf/0x500
2026-02-02T16:13:33.017515-08:00 s19 kernel: ? ksys_write+0x71/0xf0
2026-02-02T16:13:33.017516-08:00 s19 kernel: ? __x64_sys_write+0x19/0x30
2026-02-02T16:13:33.017516-08:00 s19 kernel: ? x64_sys_call+0x259/0x26e0
2026-02-02T16:13:33.017517-08:00 s19 kernel: ? clear_bhb_loop+0x30/0x80
2026-02-02T16:13:33.017517-08:00 s19 kernel: ? clear_bhb_loop+0x30/0x80
2026-02-02T16:13:33.017518-08:00 s19 kernel: entry_SYSCALL_64_after_hwframe+0x76/0x7e
2026-02-02T16:13:33.017519-08:00 s19 kernel: RIP: 0033:0x7b6638b1c5a4
2026-02-02T16:13:33.017519-08:00 s19 kernel: Code: c7 00 16 00 00 00 b8 ff ff ff ff c3 66 2e 0f 1f 84 00 00 00 00 00 f3 0f 1e fa 80 3d a5 ea 0e 00 00 74 13 b8 01 00 00 00 0f 05 <48> 3d 00 f0 ff ff 77 54 c3 0f 1f 00 55 48 89 e5 48 83 ec 20 48 89
2026-02-02T16:13:33.017520-08:00 s19 kernel: RSP: 002b:00007ffc8d0f7d88 EFLAGS: 00000202 ORIG_RAX: 0000000000000001
2026-02-02T16:13:33.017521-08:00 s19 kernel: RAX: ffffffffffffffda RBX: 0000000000002000 RCX: 00007b6638b1c5a4
2026-02-02T16:13:33.017521-08:00 s19 kernel: RDX: 0000000000002000 RSI: 000056a0858e24a0 RDI: 0000000000000001
2026-02-02T16:13:33.017522-08:00 s19 kernel: RBP: 00007ffc8d0f7de0 R08: 00007b6638c03b20 R09: 0000000000000000
2026-02-02T16:13:33.017522-08:00 s19 kernel: R10: 0000000000000001 R11: 0000000000000202 R12: 0000000000002000
2026-02-02T16:13:33.017523-08:00 s19 kernel: R13: 000056a0858e24a0 R14: 0000000000002000 R15: 0000000000002000
2026-02-02T16:13:33.017523-08:00 s19 kernel: </TASK>
2026-02-02T16:13:33.017524-08:00 s19 kernel: watchdog: CPU11: Watchdog detected hard LOCKUP on cpu 11
2026-02-02T16:13:33.017524-08:00 s19 kernel: Modules linked in: tls snd_hda_codec_intelhdmi snd_hda_codec_alc882 snd_hda_codec_realtek_lib qrtr snd_hda_codec_generic snd_hda_intel snd_sof_pci_intel_cnl snd_sof_intel_hda_generic soundwire_intel snd_sof_intel_hda_sdw_bpt snd_sof_intel_hda_common snd_soc_hdac_hda snd_sof_intel_hda_mlink snd_sof_intel_hda snd_hda_codec_hdmi soundwire_cadence snd_sof_pci intel_rapl_msr snd_sof_xtensa_dsp intel_rapl_common bridge intel_uncore_frequency snd_sof stp intel_uncore_frequency_common llc snd_sof_utils snd_soc_acpi_intel_match snd_soc_acpi_intel_sdca_quirks soundwire_generic_allocation cfg80211 snd_soc_sdw_utils snd_soc_acpi soundwire_bus snd_soc_sdca crc8 snd_soc_avs snd_soc_hda_codec snd_hda_ext_core intel_tcc_cooling x86_pkg_temp_thermal snd_hda_codec intel_powerclamp coretemp snd_hda_core snd_intel_dspcfg snd_intel_sdw_acpi snd_hwdep binfmt_misc kvm_intel cmdlinepart i915 snd_soc_core spi_nor snd_compress ee1004 mtd mei_hdcp mei_pxp ac97_bus drm_buddy snd_pcm_dmaengine kvm snd_pcm ttm irqbypass
2026-02-02T16:13:33.017525-08:00 s19 kernel: drm_display_helper i2c_i801 eeepc_wmi snd_timer rapl nls_iso8859_1 intel_cstate asus_wmi snd i2c_smbus platform_profile spi_intel_pci cec wmi_bmof i2c_mux mei_me soundcore intel_wmi_thunderbolt sparse_keymap mxm_wmi spi_intel rc_core mei i2c_algo_bit intel_pmc_core pmt_telemetry pmt_discovery pmt_class intel_pmc_ssram_telemetry intel_vsec acpi_pad acpi_tad joydev input_leds mac_hid sch_fq_codel dm_multipath msr nvme_fabrics efi_pstore nfnetlink dmi_sysfs ip_tables x_tables autofs4 btrfs blake2b libblake2b raid10 raid456 async_raid6_recov async_memcpy async_pq async_xor async_tx xor raid6_pq raid1 raid0 linear hid_generic usbhid hid nvme nvme_core nvme_keyring ghash_clmulni_intel nvme_auth intel_lpss_pci ahci igc intel_lpss hkdf libahci idma64 video wmi aesni_intel
2026-02-02T16:13:33.017526-08:00 s19 kernel: CPU: 11 UID: 1000 PID: 3597 Comm: yes Tainted: G D 6.19.0-rc1-pz #1 PREEMPT(full)
2026-02-02T16:13:33.017526-08:00 s19 kernel: Tainted: [D]=DIE
2026-02-02T16:13:33.017527-08:00 s19 kernel: Hardware name: ASUS System Product Name/PRIME Z490-A, BIOS 9902 09/15/2021
2026-02-02T16:13:33.017527-08:00 s19 kernel: RIP: 0010:native_queued_spin_lock_slowpath+0x238/0x300
2026-02-02T16:13:33.017528-08:00 s19 kernel: Code: 41 c1 e5 10 c1 e0 12 45 89 ee 41 09 c6 44 89 f0 c1 e8 10 66 87 43 02 89 c2 c1 e2 10 81 fa ff ff 00 00 77 51 31 d2 eb 02 f3 90 <8b> 03 66 85 c0 75 f7 44 39 f0 0f 84 91 00 00 00 c6 03 01 48 85 d2
2026-02-02T16:13:33.017529-08:00 s19 kernel: RSP: 0018:ffffd095863eefe0 EFLAGS: 00000002
2026-02-02T16:13:33.017529-08:00 s19 kernel: RAX: 0000000000300101 RBX: ffff89298e5b2f88 RCX: ffffffffbc9dbf40
2026-02-02T16:13:33.017530-08:00 s19 kernel: RDX: 0000000000000000 RSI: 0000000000000101 RDI: ffff89298e5b2f88
2026-02-02T16:13:33.017530-08:00 s19 kernel: RBP: ffffd095863ef008 R08: 0000000000000000 R09: 000000000000000b
2026-02-02T16:13:33.017531-08:00 s19 kernel: R10: 0000000000000000 R11: 0000000000000000 R12: ffff89298e5b3e40
2026-02-02T16:13:33.017531-08:00 s19 kernel: R13: 0000000000000000 R14: 0000000000300000 R15: ffff89298e5b2f40
2026-02-02T16:13:33.017585-08:00 s19 kernel: FS: 00007e443ac91740(0000) GS:ffff8929d1bd7000(0000) knlGS:0000000000000000
2026-02-02T16:13:33.017585-08:00 s19 kernel: CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
2026-02-02T16:13:33.017586-08:00 s19 kernel: CR2: 0000000000000051 CR3: 0000000147ece001 CR4: 00000000007726f0
2026-02-02T16:13:33.017586-08:00 s19 kernel: PKRU: 55555554
2026-02-02T16:13:33.017587-08:00 s19 kernel: Call Trace:
2026-02-02T16:13:33.017588-08:00 s19 kernel: <TASK>
2026-02-02T16:13:33.017588-08:00 s19 kernel: _raw_spin_lock+0x3f/0x60
2026-02-02T16:13:33.017589-08:00 s19 kernel: raw_spin_rq_lock_nested+0x23/0xb0
2026-02-02T16:13:33.017589-08:00 s19 kernel: try_to_wake_up+0x272/0x780
2026-02-02T16:13:33.017590-08:00 s19 kernel: wake_up_process+0x15/0x30
2026-02-02T16:13:33.017590-08:00 s19 kernel: kick_pool+0x8c/0x1b0
2026-02-02T16:13:33.017591-08:00 s19 kernel: __queue_work+0x2f9/0x570
2026-02-02T16:13:33.017591-08:00 s19 kernel: queue_work_on+0x77/0x80
2026-02-02T16:13:33.017592-08:00 s19 kernel: drm_fb_helper_damage.part.0+0xb3/0xe0
2026-02-02T16:13:33.017592-08:00 s19 kernel: drm_fb_helper_damage_area+0x31/0x50
2026-02-02T16:13:33.017593-08:00 s19 kernel: intel_fbdev_defio_imageblit+0x2b/0x40 [i915]
2026-02-02T16:13:33.017594-08:00 s19 kernel: soft_cursor+0x198/0x240
2026-02-02T16:13:33.017594-08:00 s19 kernel: bit_cursor+0x3cd/0x670
2026-02-02T16:13:33.017595-08:00 s19 kernel: ? __pfx_bit_cursor+0x10/0x10
2026-02-02T16:13:33.017595-08:00 s19 kernel: fbcon_cursor+0x130/0x1b0
2026-02-02T16:13:33.017596-08:00 s19 kernel: hide_cursor+0x2f/0xd0
2026-02-02T16:13:33.017596-08:00 s19 kernel: vt_console_print+0x475/0x4f0
2026-02-02T16:13:33.017597-08:00 s19 kernel: ? nbcon_get_cpu_emergency_nesting+0xe/0x40
2026-02-02T16:13:33.017597-08:00 s19 kernel: console_flush_one_record+0x2a4/0x3b0
2026-02-02T16:13:33.017598-08:00 s19 kernel: console_unlock+0x7d/0x130
2026-02-02T16:13:33.017598-08:00 s19 kernel: vprintk_emit+0x386/0x3f0
2026-02-02T16:13:33.017599-08:00 s19 kernel: vprintk_default+0x1d/0x30
2026-02-02T16:13:33.017599-08:00 s19 kernel: vprintk+0x18/0x50
2026-02-02T16:13:33.017600-08:00 s19 kernel: _printk+0x5f/0x90
2026-02-02T16:13:33.017600-08:00 s19 kernel: oops_exit+0x26/0x50
2026-02-02T16:13:33.017601-08:00 s19 kernel: oops_end+0x6d/0xf0
2026-02-02T16:13:33.017601-08:00 s19 kernel: page_fault_oops+0x199/0x5c0
2026-02-02T16:13:33.017602-08:00 s19 kernel: ? update_load_avg+0x7b/0x250
2026-02-02T16:13:33.017602-08:00 s19 kernel: do_user_addr_fault+0x4af/0x8d0
2026-02-02T16:13:33.017603-08:00 s19 kernel: ? update_cfs_rq_load_avg+0x2e/0x230
2026-02-02T16:13:33.017603-08:00 s19 kernel: exc_page_fault+0x7f/0x1b0
2026-02-02T16:13:33.017604-08:00 s19 kernel: asm_exc_page_fault+0x27/0x30
2026-02-02T16:13:33.017604-08:00 s19 kernel: RIP: 0010:pick_task_fair+0x3e/0x140
2026-02-02T16:13:33.017605-08:00 s19 kernel: Code: 53 48 89 fb 48 83 ec 08 8b 8f 10 01 00 00 85 c9 0f 84 96 00 00 00 4c 89 ef 45 31 e4 eb 27 66 90 be 01 00 00 00 e8 92 41 ff ff <80> 78 51 00 75 5e 48 85 c0 74 69 48 8b b8 b0 00 00 00 48 85 ff 0f
2026-02-02T16:13:33.017606-08:00 s19 kernel: RSP: 0018:ffffd095863ef7a8 EFLAGS: 00010046
2026-02-02T16:13:33.017606-08:00 s19 kernel: RAX: 0000000000000000 RBX: ffff89298e5b2f40 RCX: 0000000000000000
2026-02-02T16:13:33.017607-08:00 s19 kernel: RDX: 0000000000000000 RSI: 0000000000000000 RDI: 0000000000000000
2026-02-02T16:13:33.017607-08:00 s19 kernel: RBP: ffffd095863ef7c8 R08: 0000000000000000 R09: 0000000000000000
2026-02-02T16:13:33.017608-08:00 s19 kernel: R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
2026-02-02T16:13:33.017608-08:00 s19 kernel: R13: ffff89298e5b3040 R14: ffff89298e5b2f40 R15: 0000000000000000
2026-02-02T16:13:33.017609-08:00 s19 kernel: ? pick_task_fair+0x3e/0x140
2026-02-02T16:13:33.017609-08:00 s19 kernel: pick_next_task_fair+0x37/0x930
2026-02-02T16:13:33.017610-08:00 s19 kernel: __pick_next_task+0x44/0x1e0
2026-02-02T16:13:33.017610-08:00 s19 kernel: __schedule+0x1e6/0x1810
2026-02-02T16:13:33.017611-08:00 s19 kernel: ? aa_file_perm+0x6e/0x5d0
2026-02-02T16:13:33.017612-08:00 s19 kernel: message repeated 2 times: [ ? aa_file_perm+0x6e/0x5d0]
2026-02-02T16:13:33.017613-08:00 s19 kernel: ? show_vpd_pgb2+0x14/0x80
2026-02-02T16:13:33.017614-08:00 s19 kernel: ? aa_file_perm+0x6e/0x5d0
2026-02-02T16:13:33.017615-08:00 s19 kernel: preempt_schedule_irq+0x38/0x70
2026-02-02T16:13:33.017615-08:00 s19 kernel: raw_irqentry_exit_cond_resched+0x31/0x40
2026-02-02T16:13:33.017616-08:00 s19 kernel: irqentry_exit+0x34/0x710
2026-02-02T16:13:33.017616-08:00 s19 kernel: sysvec_apic_timer_interrupt+0x57/0xc0
2026-02-02T16:13:33.017617-08:00 s19 kernel: asm_sysvec_apic_timer_interrupt+0x1b/0x20
2026-02-02T16:13:33.017617-08:00 s19 kernel: RIP: 0010:vfs_write+0x2c1/0x480
2026-02-02T16:13:33.017618-08:00 s19 kernel: Code: 00 00 e8 2e 92 c2 05 49 89 c4 48 3d ef fd ff ff 0f 84 2f 01 00 00 48 85 c0 0f 8e 63 fe ff ff 48 8b 45 a8 49 89 06 41 8b 45 04 <25> 00 00 00 06 3d 00 00 00 02 74 57 49 8b 7d 48 4c 8b 4f 30 49 8b
2026-02-02T16:13:33.017618-08:00 s19 kernel: RSP: 0018:ffffd095863efa80 EFLAGS: 00000206
2026-02-02T16:13:33.017619-08:00 s19 kernel: RAX: 000000000c0c001e RBX: ffff8922879caa00 RCX: ffffd095863efb20
2026-02-02T16:13:33.017619-08:00 s19 kernel: RDX: 0000000000000000 RSI: 0000633d552d74a0 RDI: ffff892287eba840
2026-02-02T16:13:33.017620-08:00 s19 kernel: RBP: ffffd095863efb10 R08: 0000000000000000 R09: 0000000000000000
2026-02-02T16:13:33.017620-08:00 s19 kernel: R10: 0000000000002000 R11: 0000000000000000 R12: 0000000000002000
2026-02-02T16:13:33.017621-08:00 s19 kernel: R13: ffff892287eba840 R14: ffffd095863efb20 R15: 0000633d552d74a0
2026-02-02T16:13:33.017621-08:00 s19 kernel: ? ksys_write+0x71/0xf0
2026-02-02T16:13:33.017622-08:00 s19 kernel: ksys_write+0x71/0xf0
2026-02-02T16:13:33.017622-08:00 s19 kernel: __x64_sys_write+0x19/0x30
2026-02-02T16:13:33.017623-08:00 s19 kernel: x64_sys_call+0x259/0x26e0
2026-02-02T16:13:33.017623-08:00 s19 kernel: do_syscall_64+0x81/0x500
2026-02-02T16:13:33.017624-08:00 s19 kernel: ? vfs_write+0x324/0x480
2026-02-02T16:13:33.017624-08:00 s19 kernel: ? vfs_write+0x324/0x480
2026-02-02T16:13:33.017625-08:00 s19 kernel: ? ksys_write+0x71/0xf0
2026-02-02T16:13:33.017627-08:00 s19 kernel: message repeated 2 times: [ ? ksys_write+0x71/0xf0]
2026-02-02T16:13:33.017628-08:00 s19 kernel: ? __x64_sys_write+0x19/0x30
2026-02-02T16:13:33.017629-08:00 s19 kernel: ? x64_sys_call+0x259/0x26e0
2026-02-02T16:13:33.017629-08:00 s19 kernel: ? do_syscall_64+0xbf/0x500
2026-02-02T16:13:33.017630-08:00 s19 kernel: ? common_file_perm+0x6b/0x1a0
2026-02-02T16:13:33.017630-08:00 s19 kernel: ? vfs_write+0x324/0x480
2026-02-02T16:13:33.017631-08:00 s19 kernel: message repeated 2 times: [ ? vfs_write+0x324/0x480]
2026-02-02T16:13:33.017632-08:00 s19 kernel: ? ksys_write+0x71/0xf0
2026-02-02T16:13:33.017633-08:00 s19 kernel: ? ksys_write+0x71/0xf0
2026-02-02T16:13:33.017634-08:00 s19 kernel: ? __x64_sys_write+0x19/0x30
2026-02-02T16:13:33.017634-08:00 s19 kernel: ? x64_sys_call+0x259/0x26e0
2026-02-02T16:13:33.017635-08:00 s19 kernel: ? do_syscall_64+0xbf/0x500
2026-02-02T16:13:33.017635-08:00 s19 kernel: ? clear_bhb_loop+0x30/0x80
2026-02-02T16:13:33.017636-08:00 s19 kernel: ? clear_bhb_loop+0x30/0x80
2026-02-02T16:13:33.017637-08:00 s19 kernel: entry_SYSCALL_64_after_hwframe+0x76/0x7e
2026-02-02T16:13:33.017637-08:00 s19 kernel: RIP: 0033:0x7e443ab1c5a4
2026-02-02T16:13:33.017638-08:00 s19 kernel: Code: c7 00 16 00 00 00 b8 ff ff ff ff c3 66 2e 0f 1f 84 00 00 00 00 00 f3 0f 1e fa 80 3d a5 ea 0e 00 00 74 13 b8 01 00 00 00 0f 05 <48> 3d 00 f0 ff ff 77 54 c3 0f 1f 00 55 48 89 e5 48 83 ec 20 48 89
2026-02-02T16:13:33.017639-08:00 s19 kernel: RSP: 002b:00007ffe3db6c1f8 EFLAGS: 00000202 ORIG_RAX: 0000000000000001
2026-02-02T16:13:33.017639-08:00 s19 kernel: RAX: ffffffffffffffda RBX: 0000000000002000 RCX: 00007e443ab1c5a4
2026-02-02T16:13:33.017640-08:00 s19 kernel: RDX: 0000000000002000 RSI: 0000633d552d74a0 RDI: 0000000000000001
2026-02-02T16:13:33.017640-08:00 s19 kernel: RBP: 00007ffe3db6c250 R08: 00007e443ac03b20 R09: 0000000000000000
2026-02-02T16:13:33.017641-08:00 s19 kernel: R10: 0000000000000001 R11: 0000000000000202 R12: 0000000000002000
2026-02-02T16:13:33.017641-08:00 s19 kernel: R13: 0000633d552d74a0 R14: 0000000000002000 R15: 0000000000002000
2026-02-02T16:13:33.017642-08:00 s19 kernel: </TASK>
2026-02-02T16:13:33.017642-08:00 s19 kernel: rcu: INFO: rcu_preempt detected stalls on CPUs/tasks:
2026-02-02T16:13:33.017643-08:00 s19 kernel: rcu: INFO: rcu_preempt detected expedited stalls on CPUs/tasks: { P12753 P6509 P5261 P15769 P8594 P5431 P10107 P14333 P6906 } 61514 jiffies s: 873 root: 0x0/T
2026-02-02T16:13:33.017643-08:00 s19 kernel: rcu: blocking rcu_node structures (internal RCU debug):
2026-02-02T16:15:23.234373-08:00 s19 kernel: watchdog: CPU0: Watchdog detected hard LOCKUP on cpu 0
2026-02-02T16:15:23.234414-08:00 s19 kernel: Modules linked in: tls snd_hda_codec_intelhdmi snd_hda_codec_alc882 snd_hda_codec_realtek_lib qrtr snd_hda_codec_generic snd_hda_intel snd_sof_pci_intel_cnl snd_sof_intel_hda_generic soundwire_intel snd_sof_intel_hda_sdw_bpt snd_sof_intel_hda_common snd_soc_hdac_hda snd_sof_intel_hda_mlink snd_sof_intel_hda snd_hda_codec_hdmi soundwire_cadence snd_sof_pci intel_rapl_msr snd_sof_xtensa_dsp intel_rapl_common bridge intel_uncore_frequency snd_sof stp intel_uncore_frequency_common llc snd_sof_utils snd_soc_acpi_intel_match snd_soc_acpi_intel_sdca_quirks soundwire_generic_allocation cfg80211 snd_soc_sdw_utils snd_soc_acpi soundwire_bus snd_soc_sdca crc8 snd_soc_avs snd_soc_hda_codec snd_hda_ext_core intel_tcc_cooling x86_pkg_temp_thermal snd_hda_codec intel_powerclamp coretemp snd_hda_core snd_intel_dspcfg snd_intel_sdw_acpi snd_hwdep binfmt_misc kvm_intel cmdlinepart i915 snd_soc_core spi_nor snd_compress ee1004 mtd mei_hdcp mei_pxp ac97_bus drm_buddy snd_pcm_dmaengine kvm snd_pcm ttm irqbypass
2026-02-02T16:15:23.234418-08:00 s19 kernel: drm_display_helper i2c_i801 eeepc_wmi snd_timer rapl nls_iso8859_1 intel_cstate asus_wmi snd i2c_smbus platform_profile spi_intel_pci cec wmi_bmof i2c_mux mei_me soundcore intel_wmi_thunderbolt sparse_keymap mxm_wmi spi_intel rc_core mei i2c_algo_bit intel_pmc_core pmt_telemetry pmt_discovery pmt_class intel_pmc_ssram_telemetry intel_vsec acpi_pad acpi_tad joydev input_leds mac_hid sch_fq_codel dm_multipath msr nvme_fabrics efi_pstore nfnetlink dmi_sysfs ip_tables x_tables autofs4 btrfs blake2b libblake2b raid10 raid456 async_raid6_recov async_memcpy async_pq async_xor async_tx xor raid6_pq raid1 raid0 linear hid_generic usbhid hid nvme nvme_core nvme_keyring ghash_clmulni_intel nvme_auth intel_lpss_pci ahci igc intel_lpss hkdf libahci idma64 video wmi aesni_intel
2026-02-02T16:15:23.234419-08:00 s19 kernel: CPU: 0 UID: 1000 PID: 4539 Comm: yes Tainted: G D 6.19.0-rc1-pz #1 PREEMPT(full)
2026-02-02T16:15:23.234420-08:00 s19 kernel: Tainted: [D]=DIE
2026-02-02T16:15:23.234420-08:00 s19 kernel: Hardware name: ASUS System Product Name/PRIME Z490-A, BIOS 9902 09/15/2021
2026-02-02T16:15:23.234421-08:00 s19 kernel: RIP: 0010:vprintk_emit+0x30f/0x3f0
2026-02-02T16:15:23.234421-08:00 s19 kernel: Code: 84 d5 00 00 00 65 4c 3b 35 16 52 58 02 0f 84 c7 00 00 00 48 c7 c7 28 6b a5 bc c6 05 05 ad 61 02 01 e8 15 26 16 01 eb 02 f3 90 <44> 0f b6 25 f4 ac 61 02 41 80 fc 01 0f 87 ac ca dc ff 41 83 e4 01
2026-02-02T16:15:23.234422-08:00 s19 kernel: RSP: 0018:ffffd09580003cc0 EFLAGS: 00000002
2026-02-02T16:15:23.234422-08:00 s19 kernel: RAX: 0000000000000000 RBX: 0000000000000035 RCX: 0000000000000000
2026-02-02T16:15:23.234423-08:00 s19 kernel: RDX: 0000000000000000 RSI: 0000000000000000 RDI: 0000000000000000
2026-02-02T16:15:23.234423-08:00 s19 kernel: RBP: ffffd09580003d18 R08: 0000000000000000 R09: 0000000000000000
2026-02-02T16:15:23.234424-08:00 s19 kernel: R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000001
2026-02-02T16:15:23.234425-08:00 s19 kernel: R13: 0000000000000046 R14: ffff8922879caa00 R15: ffff89298e0219c0
2026-02-02T16:15:23.234425-08:00 s19 kernel: FS: 00007a4931c5b740(0000) GS:ffff8929d1657000(0000) knlGS:0000000000000000
2026-02-02T16:15:23.234426-08:00 s19 kernel: CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
2026-02-02T16:15:23.234426-08:00 s19 kernel: CR2: 00005e6c5c0456c8 CR3: 00000001529ed001 CR4: 00000000007726f0
2026-02-02T16:15:23.234427-08:00 s19 kernel: PKRU: 55555554
2026-02-02T16:15:23.234427-08:00 s19 kernel: Call Trace:
2026-02-02T16:15:23.234428-08:00 s19 kernel: <IRQ>
2026-02-02T16:15:23.234428-08:00 s19 kernel: vprintk_default+0x1d/0x30
2026-02-02T16:15:23.234429-08:00 s19 kernel: vprintk+0x18/0x50
2026-02-02T16:15:23.234429-08:00 s19 kernel: _printk+0x5f/0x90
2026-02-02T16:15:23.234430-08:00 s19 kernel: rcu_sched_clock_irq+0xb8a/0x1800
2026-02-02T16:15:23.234430-08:00 s19 kernel: ? update_cfs_rq_load_avg+0x2e/0x230
2026-02-02T16:15:23.234431-08:00 s19 kernel: ? __cgroup_account_cputime_field+0x41/0x80
2026-02-02T16:15:23.234431-08:00 s19 kernel: ? account_system_index_time+0x9a/0xd0
2026-02-02T16:15:23.234432-08:00 s19 kernel: ? tmigr_requires_handle_remote+0x8c/0x110
2026-02-02T16:15:23.234432-08:00 s19 kernel: update_process_times+0x72/0xd0
2026-02-02T16:15:23.234433-08:00 s19 kernel: tick_nohz_handler+0x97/0x1b0
2026-02-02T16:15:23.234433-08:00 s19 kernel: ? __pfx_tick_nohz_handler+0x10/0x10
2026-02-02T16:15:23.234434-08:00 s19 kernel: __hrtimer_run_queues+0x109/0x240
2026-02-02T16:15:23.234434-08:00 s19 kernel: hrtimer_interrupt+0xfd/0x260
2026-02-02T16:15:23.234435-08:00 s19 kernel: __sysvec_apic_timer_interrupt+0x56/0x130
2026-02-02T16:15:23.234436-08:00 s19 kernel: sysvec_apic_timer_interrupt+0x9b/0xc0
2026-02-02T16:15:23.234436-08:00 s19 kernel: </IRQ>
2026-02-02T16:15:23.234437-08:00 s19 kernel: <TASK>
2026-02-02T16:15:23.234437-08:00 s19 kernel: asm_sysvec_apic_timer_interrupt+0x1b/0x20
2026-02-02T16:15:23.234438-08:00 s19 kernel: RIP: 0010:vfs_write+0x2e0/0x480
2026-02-02T16:15:23.234438-08:00 s19 kernel: Code: 48 8b 45 a8 49 89 06 41 8b 45 04 25 00 00 00 06 3d 00 00 00 02 74 57 49 8b 7d 48 4c 8b 4f 30 49 8b 41 28 48 8b 80 b8 03 00 00 <48> 85 c0 74 3f 48 8b 40 08 48 85 c0 74 36 41 0f b7 01 49 8d 75 40
2026-02-02T16:15:23.234439-08:00 s19 kernel: RSP: 0018:ffffd0958814fb90 EFLAGS: 00000206
2026-02-02T16:15:23.234439-08:00 s19 kernel: RAX: ffff8922538a76e0 RBX: ffff892292845400 RCX: ffffd0958814fc30
2026-02-02T16:15:23.234440-08:00 s19 kernel: RDX: 0000000000000000 RSI: 00005ec7f3eb54a0 RDI: ffff8922405ad480
2026-02-02T16:15:23.234440-08:00 s19 kernel: RBP: ffffd0958814fc20 R08: 0000000000000000 R09: ffff892241aba798
2026-02-02T16:15:23.234686-08:00 s19 kernel: R10: 0000000000002000 R11: 0000000000000000 R12: 0000000000002000
2026-02-02T16:15:23.234688-08:00 s19 kernel: R13: ffff8922929dec00 R14: ffffd0958814fc30 R15: 00005ec7f3eb54a0
2026-02-02T16:15:23.234689-08:00 s19 kernel: ksys_write+0x71/0xf0
2026-02-02T16:15:23.234689-08:00 s19 kernel: __x64_sys_write+0x19/0x30
2026-02-02T16:15:23.234690-08:00 s19 kernel: x64_sys_call+0x259/0x26e0
2026-02-02T16:15:23.234690-08:00 s19 kernel: do_syscall_64+0x81/0x500
2026-02-02T16:15:23.234691-08:00 s19 kernel: ? vfs_write+0x324/0x480
2026-02-02T16:15:23.234691-08:00 s19 kernel: ? vfs_write+0x324/0x480
2026-02-02T16:15:23.234693-08:00 s19 kernel: ? __x64_sys_write+0x19/0x30
2026-02-02T16:15:23.234694-08:00 s19 kernel: ? ksys_write+0x71/0xf0
2026-02-02T16:15:23.234695-08:00 s19 kernel: ? __x64_sys_write+0x19/0x30
2026-02-02T16:15:23.234695-08:00 s19 kernel: ? x64_sys_call+0x259/0x26e0
2026-02-02T16:15:23.234696-08:00 s19 kernel: ? do_syscall_64+0xbf/0x500
2026-02-02T16:15:23.234696-08:00 s19 kernel: ? vfs_write+0x324/0x480
2026-02-02T16:15:23.234697-08:00 s19 kernel: ? vfs_write+0x324/0x480
2026-02-02T16:15:23.234698-08:00 s19 kernel: ? ksys_write+0x71/0xf0
2026-02-02T16:15:23.234698-08:00 s19 kernel: ? ksys_write+0x71/0xf0
2026-02-02T16:15:23.234699-08:00 s19 kernel: ? __x64_sys_write+0x19/0x30
2026-02-02T16:15:23.234700-08:00 s19 kernel: ? x64_sys_call+0x259/0x26e0
2026-02-02T16:15:23.234700-08:00 s19 kernel: ? do_syscall_64+0xbf/0x500
2026-02-02T16:15:23.234701-08:00 s19 kernel: ? clear_bhb_loop+0x30/0x80
2026-02-02T16:15:23.234701-08:00 s19 kernel: ? clear_bhb_loop+0x30/0x80
2026-02-02T16:15:23.234702-08:00 s19 kernel: entry_SYSCALL_64_after_hwframe+0x76/0x7e
2026-02-02T16:15:23.234703-08:00 s19 kernel: RIP: 0033:0x7a4931b1c5a4
2026-02-02T16:15:23.234703-08:00 s19 kernel: Code: c7 00 16 00 00 00 b8 ff ff ff ff c3 66 2e 0f 1f 84 00 00 00 00 00 f3 0f 1e fa 80 3d a5 ea 0e 00 00 74 13 b8 01 00 00 00 0f 05 <48> 3d 00 f0 ff ff 77 54 c3 0f 1f 00 55 48 89 e5 48 83 ec 20 48 89
2026-02-02T16:15:23.234704-08:00 s19 kernel: RSP: 002b:00007ffd835d42d8 EFLAGS: 00000202 ORIG_RAX: 0000000000000001
2026-02-02T16:15:23.234704-08:00 s19 kernel: RAX: ffffffffffffffda RBX: 0000000000002000 RCX: 00007a4931b1c5a4
2026-02-02T16:15:23.234705-08:00 s19 kernel: RDX: 0000000000002000 RSI: 00005ec7f3eb54a0 RDI: 0000000000000001
2026-02-02T16:15:23.234706-08:00 s19 kernel: RBP: 00007ffd835d4330 R08: 00007a4931c03b20 R09: 0000000000000000
2026-02-02T16:15:23.234706-08:00 s19 kernel: R10: 0000000000000001 R11: 0000000000000202 R12: 0000000000002000
2026-02-02T16:15:23.234707-08:00 s19 kernel: R13: 00005ec7f3eb54a0 R14: 0000000000002000 R15: 0000000000002000
2026-02-02T16:15:23.234707-08:00 s19 kernel: </TASK>
2026-02-02T16:15:23.234708-08:00 s19 kernel: watchdog: BUG: soft lockup - CPU#6 stuck for 23s! [systemd-network:841]
2026-02-02T16:15:23.234708-08:00 s19 kernel: Modules linked in: tls snd_hda_codec_intelhdmi snd_hda_codec_alc882 snd_hda_codec_realtek_lib qrtr snd_hda_codec_generic snd_hda_intel snd_sof_pci_intel_cnl snd_sof_intel_hda_generic soundwire_intel snd_sof_intel_hda_sdw_bpt snd_sof_intel_hda_common snd_soc_hdac_hda snd_sof_intel_hda_mlink snd_sof_intel_hda snd_hda_codec_hdmi soundwire_cadence snd_sof_pci intel_rapl_msr snd_sof_xtensa_dsp intel_rapl_common bridge intel_uncore_frequency snd_sof stp intel_uncore_frequency_common llc snd_sof_utils snd_soc_acpi_intel_match snd_soc_acpi_intel_sdca_quirks soundwire_generic_allocation cfg80211 snd_soc_sdw_utils snd_soc_acpi soundwire_bus snd_soc_sdca crc8 snd_soc_avs snd_soc_hda_codec snd_hda_ext_core intel_tcc_cooling x86_pkg_temp_thermal snd_hda_codec intel_powerclamp coretemp snd_hda_core snd_intel_dspcfg snd_intel_sdw_acpi snd_hwdep binfmt_misc kvm_intel cmdlinepart i915 snd_soc_core spi_nor snd_compress ee1004 mtd mei_hdcp mei_pxp ac97_bus drm_buddy snd_pcm_dmaengine kvm snd_pcm ttm irqbypass
2026-02-02T16:15:23.234742-08:00 s19 kernel: drm_display_helper i2c_i801 eeepc_wmi snd_timer rapl nls_iso8859_1 intel_cstate asus_wmi snd i2c_smbus platform_profile spi_intel_pci cec wmi_bmof i2c_mux mei_me soundcore intel_wmi_thunderbolt sparse_keymap mxm_wmi spi_intel rc_core mei i2c_algo_bit intel_pmc_core pmt_telemetry pmt_discovery pmt_class intel_pmc_ssram_telemetry intel_vsec acpi_pad acpi_tad joydev input_leds mac_hid sch_fq_codel dm_multipath msr nvme_fabrics efi_pstore nfnetlink dmi_sysfs ip_tables x_tables autofs4 btrfs blake2b libblake2b raid10 raid456 async_raid6_recov async_memcpy async_pq async_xor async_tx xor raid6_pq raid1 raid0 linear hid_generic usbhid hid nvme nvme_core nvme_keyring ghash_clmulni_intel nvme_auth intel_lpss_pci ahci igc intel_lpss hkdf libahci idma64 video wmi aesni_intel
2026-02-02T16:15:23.234743-08:00 s19 kernel: CPU: 6 UID: 998 PID: 841 Comm: systemd-network Tainted: G D 6.19.0-rc1-pz #1 PREEMPT(full)
2026-02-02T16:15:23.234743-08:00 s19 kernel: Tainted: [D]=DIE
2026-02-02T16:15:23.234744-08:00 s19 kernel: Hardware name: ASUS System Product Name/PRIME Z490-A, BIOS 9902 09/15/2021
2026-02-02T16:15:23.234744-08:00 s19 kernel: RIP: 0010:smp_call_function_many_cond+0x12c/0x590
2026-02-02T16:15:23.234745-08:00 s19 kernel: Code: 36 4c 63 e0 49 8b 5d 00 49 81 fc 00 20 00 00 0f 83 43 04 00 00 4a 03 1c e5 e0 50 d9 bb 8b 53 08 48 89 de 83 e2 01 74 0a f3 90 <8b> 4e 08 83 e1 01 75 f6 83 c0 01 eb b0 48 83 c4 50 5b 41 5c 41 5d
2026-02-02T16:15:23.234746-08:00 s19 kernel: RSP: 0018:ffffd09582a4b808 EFLAGS: 00000202
2026-02-02T16:15:23.234746-08:00 s19 kernel: RAX: 0000000000000000 RBX: ffff89298e03c900 RCX: 0000000000000001
2026-02-02T16:15:23.234747-08:00 s19 kernel: RDX: 0000000000000001 RSI: ffff89298e03c900 RDI: 0000000000000000
2026-02-02T16:15:23.234747-08:00 s19 kernel: RBP: ffffd09582a4b880 R08: 0000000000000000 R09: 0000000000000000
2026-02-02T16:15:23.234748-08:00 s19 kernel: R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
2026-02-02T16:15:23.234748-08:00 s19 kernel: R13: ffff89298e334300 R14: 0000000000000006 R15: 0000000000000006
2026-02-02T16:15:23.234749-08:00 s19 kernel: FS: 0000000000000000(0000) GS:ffff8929d1957000(0000) knlGS:0000000000000000
2026-02-02T16:15:23.234749-08:00 s19 kernel: CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
2026-02-02T16:15:23.234750-08:00 s19 kernel: CR2: 000070f72bb90030 CR3: 0000000174642006 CR4: 00000000007726f0
2026-02-02T16:15:23.234750-08:00 s19 kernel: PKRU: 55555554
2026-02-02T16:15:23.234751-08:00 s19 kernel: Call Trace:
2026-02-02T16:15:23.234751-08:00 s19 kernel: <TASK>
2026-02-02T16:15:23.234752-08:00 s19 kernel: ? __pfx_flush_tlb_func+0x10/0x10
2026-02-02T16:15:23.234753-08:00 s19 kernel: on_each_cpu_cond_mask+0x24/0x60
2026-02-02T16:15:23.234753-08:00 s19 kernel: native_flush_tlb_multi+0x73/0x170
2026-02-02T16:15:23.234754-08:00 s19 kernel: flush_tlb_mm_range+0x2d8/0x790
2026-02-02T16:15:23.234754-08:00 s19 kernel: tlb_finish_mmu+0x12f/0x1b0
2026-02-02T16:15:23.234755-08:00 s19 kernel: exit_mmap+0x192/0x3f0
2026-02-02T16:15:23.234755-08:00 s19 kernel: __mmput+0x41/0x150
2026-02-02T16:15:23.234756-08:00 s19 kernel: mmput+0x31/0x40
2026-02-02T16:15:23.234756-08:00 s19 kernel: do_exit+0x276/0xa40
2026-02-02T16:15:23.234757-08:00 s19 kernel: ? collect_signal+0xb0/0x150
2026-02-02T16:15:23.234757-08:00 s19 kernel: do_group_exit+0x34/0x90
2026-02-02T16:15:23.234758-08:00 s19 kernel: get_signal+0x926/0x950
2026-02-02T16:15:23.234758-08:00 s19 kernel: arch_do_signal_or_restart+0x41/0x240
2026-02-02T16:15:23.234759-08:00 s19 kernel: exit_to_user_mode_loop+0x8e/0x520
2026-02-02T16:15:23.234759-08:00 s19 kernel: do_syscall_64+0x2ab/0x500
2026-02-02T16:15:23.234760-08:00 s19 kernel: ? __do_sys_gettid+0x1a/0x30
2026-02-02T16:15:23.234760-08:00 s19 kernel: ? x64_sys_call+0x72d/0x26e0
2026-02-02T16:15:23.234761-08:00 s19 kernel: ? do_syscall_64+0xbf/0x500
2026-02-02T16:15:23.234761-08:00 s19 kernel: ? __x64_sys_close+0x3e/0x90
2026-02-02T16:15:23.234762-08:00 s19 kernel: ? x64_sys_call+0x1b7c/0x26e0
2026-02-02T16:15:23.234763-08:00 s19 kernel: ? do_syscall_64+0xbf/0x500
2026-02-02T16:15:23.234763-08:00 s19 kernel: ? __sys_sendmsg+0x8c/0x100
2026-02-02T16:15:23.234764-08:00 s19 kernel: ? __x64_sys_sendmsg+0x1d/0x30
2026-02-02T16:15:23.234764-08:00 s19 kernel: ? x64_sys_call+0x25cc/0x26e0
2026-02-02T16:15:23.234765-08:00 s19 kernel: ? do_syscall_64+0xbf/0x500
2026-02-02T16:15:23.234765-08:00 s19 kernel: ? __do_sys_gettid+0x1a/0x30
2026-02-02T16:15:23.234766-08:00 s19 kernel: ? x64_sys_call+0x72d/0x26e0
2026-02-02T16:15:23.234766-08:00 s19 kernel: ? do_syscall_64+0xbf/0x500
2026-02-02T16:15:23.234767-08:00 s19 kernel: ? clear_bhb_loop+0x30/0x80
2026-02-02T16:15:23.234767-08:00 s19 kernel: ? clear_bhb_loop+0x30/0x80
2026-02-02T16:15:23.234768-08:00 s19 kernel: entry_SYSCALL_64_after_hwframe+0x76/0x7e
2026-02-02T16:15:23.234769-08:00 s19 kernel: RIP: 0033:0x7fca8d52a037
2026-02-02T16:15:23.234769-08:00 s19 kernel: Code: Unable to access opcode bytes at 0x7fca8d52a00d.
2026-02-02T16:15:23.234770-08:00 s19 kernel: RSP: 002b:00007ffd2688e2f8 EFLAGS: 00000202 ORIG_RAX: 00000000000000e8
2026-02-02T16:15:23.234770-08:00 s19 kernel: RAX: fffffffffffffffc RBX: 0000000000000022 RCX: 00007fca8d52a037
2026-02-02T16:15:23.234771-08:00 s19 kernel: RDX: 0000000000000022 RSI: 000064ecd6897d00 RDI: 0000000000000005
2026-02-02T16:15:23.234771-08:00 s19 kernel: RBP: 00007ffd2688e410 R08: 0000000000000000 R09: 0000000000000005
2026-02-02T16:15:23.234772-08:00 s19 kernel: R10: 00000000ffffffff R11: 0000000000000202 R12: 000064ecd6897d00
2026-02-02T16:15:23.234772-08:00 s19 kernel: R13: 0000000000000018 R14: 000064ecd6873c70 R15: ffffffffffffffff
2026-02-02T16:15:23.234773-08:00 s19 kernel: </TASK>
2026-02-02T16:15:51.234381-08:00 s19 kernel: watchdog: BUG: soft lockup - CPU#6 stuck for 49s! [systemd-network:841]
2026-02-02T16:15:51.234617-08:00 s19 kernel: Modules linked in: tls snd_hda_codec_intelhdmi snd_hda_codec_alc882 snd_hda_codec_realtek_lib qrtr snd_hda_codec_generic snd_hda_intel snd_sof_pci_intel_cnl snd_sof_intel_hda_generic soundwire_intel snd_sof_intel_hda_sdw_bpt snd_sof_intel_hda_common snd_soc_hdac_hda snd_sof_intel_hda_mlink snd_sof_intel_hda snd_hda_codec_hdmi soundwire_cadence snd_sof_pci intel_rapl_msr snd_sof_xtensa_dsp intel_rapl_common bridge intel_uncore_frequency snd_sof stp intel_uncore_frequency_common llc snd_sof_utils snd_soc_acpi_intel_match snd_soc_acpi_intel_sdca_quirks soundwire_generic_allocation cfg80211 snd_soc_sdw_utils snd_soc_acpi soundwire_bus snd_soc_sdca crc8 snd_soc_avs snd_soc_hda_codec snd_hda_ext_core intel_tcc_cooling x86_pkg_temp_thermal snd_hda_codec intel_powerclamp coretemp snd_hda_core snd_intel_dspcfg snd_intel_sdw_acpi snd_hwdep binfmt_misc kvm_intel cmdlinepart i915 snd_soc_core spi_nor snd_compress ee1004 mtd mei_hdcp mei_pxp ac97_bus drm_buddy snd_pcm_dmaengine kvm snd_pcm ttm irqbypass
2026-02-02T16:15:51.234623-08:00 s19 kernel: drm_display_helper i2c_i801 eeepc_wmi snd_timer rapl nls_iso8859_1 intel_cstate asus_wmi snd i2c_smbus platform_profile spi_intel_pci cec wmi_bmof i2c_mux mei_me soundcore intel_wmi_thunderbolt sparse_keymap mxm_wmi spi_intel rc_core mei i2c_algo_bit intel_pmc_core pmt_telemetry pmt_discovery pmt_class intel_pmc_ssram_telemetry intel_vsec acpi_pad acpi_tad joydev input_leds mac_hid sch_fq_codel dm_multipath msr nvme_fabrics efi_pstore nfnetlink dmi_sysfs ip_tables x_tables autofs4 btrfs blake2b libblake2b raid10 raid456 async_raid6_recov async_memcpy async_pq async_xor async_tx xor raid6_pq raid1 raid0 linear hid_generic usbhid hid nvme nvme_core nvme_keyring ghash_clmulni_intel nvme_auth intel_lpss_pci ahci igc intel_lpss hkdf libahci idma64 video wmi aesni_intel
2026-02-02T16:15:51.234624-08:00 s19 kernel: CPU: 6 UID: 998 PID: 841 Comm: systemd-network Tainted: G D L 6.19.0-rc1-pz #1 PREEMPT(full)
2026-02-02T16:15:51.234624-08:00 s19 kernel: Tainted: [D]=DIE, [L]=SOFTLOCKUP
2026-02-02T16:15:51.234625-08:00 s19 kernel: Hardware name: ASUS System Product Name/PRIME Z490-A, BIOS 9902 09/15/2021
2026-02-02T16:15:51.234626-08:00 s19 kernel: RIP: 0010:smp_call_function_many_cond+0x12c/0x590
2026-02-02T16:15:51.234626-08:00 s19 kernel: Code: 36 4c 63 e0 49 8b 5d 00 49 81 fc 00 20 00 00 0f 83 43 04 00 00 4a 03 1c e5 e0 50 d9 bb 8b 53 08 48 89 de 83 e2 01 74 0a f3 90 <8b> 4e 08 83 e1 01 75 f6 83 c0 01 eb b0 48 83 c4 50 5b 41 5c 41 5d
2026-02-02T16:15:51.234627-08:00 s19 kernel: RSP: 0018:ffffd09582a4b808 EFLAGS: 00000202
2026-02-02T16:15:51.234627-08:00 s19 kernel: RAX: 0000000000000000 RBX: ffff89298e03c900 RCX: 0000000000000001
2026-02-02T16:15:51.234628-08:00 s19 kernel: RDX: 0000000000000001 RSI: ffff89298e03c900 RDI: 0000000000000000
2026-02-02T16:15:51.234629-08:00 s19 kernel: RBP: ffffd09582a4b880 R08: 0000000000000000 R09: 0000000000000000
2026-02-02T16:15:51.234629-08:00 s19 kernel: R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
2026-02-02T16:15:51.234630-08:00 s19 kernel: R13: ffff89298e334300 R14: 0000000000000006 R15: 0000000000000006
2026-02-02T16:15:51.234630-08:00 s19 kernel: FS: 0000000000000000(0000) GS:ffff8929d1957000(0000) knlGS:0000000000000000
2026-02-02T16:15:51.234631-08:00 s19 kernel: CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
2026-02-02T16:15:51.234632-08:00 s19 kernel: CR2: 000070f72bb90030 CR3: 0000000174642006 CR4: 00000000007726f0
2026-02-02T16:15:51.234632-08:00 s19 kernel: PKRU: 55555554
2026-02-02T16:15:51.234633-08:00 s19 kernel: Call Trace:
2026-02-02T16:15:51.234633-08:00 s19 kernel: <TASK>
2026-02-02T16:15:51.234634-08:00 s19 kernel: ? __pfx_flush_tlb_func+0x10/0x10
2026-02-02T16:15:51.234634-08:00 s19 kernel: on_each_cpu_cond_mask+0x24/0x60
2026-02-02T16:15:51.234635-08:00 s19 kernel: native_flush_tlb_multi+0x73/0x170
2026-02-02T16:15:51.234635-08:00 s19 kernel: flush_tlb_mm_range+0x2d8/0x790
2026-02-02T16:15:51.234636-08:00 s19 kernel: tlb_finish_mmu+0x12f/0x1b0
2026-02-02T16:15:51.234636-08:00 s19 kernel: exit_mmap+0x192/0x3f0
2026-02-02T16:15:51.234637-08:00 s19 kernel: __mmput+0x41/0x150
2026-02-02T16:15:51.234637-08:00 s19 kernel: mmput+0x31/0x40
2026-02-02T16:15:51.234638-08:00 s19 kernel: do_exit+0x276/0xa40
2026-02-02T16:15:51.234638-08:00 s19 kernel: ? collect_signal+0xb0/0x150
2026-02-02T16:15:51.234639-08:00 s19 kernel: do_group_exit+0x34/0x90
2026-02-02T16:15:51.234639-08:00 s19 kernel: get_signal+0x926/0x950
2026-02-02T16:15:51.234640-08:00 s19 kernel: arch_do_signal_or_restart+0x41/0x240
2026-02-02T16:15:51.234640-08:00 s19 kernel: exit_to_user_mode_loop+0x8e/0x520
2026-02-02T16:15:51.234641-08:00 s19 kernel: do_syscall_64+0x2ab/0x500
2026-02-02T16:15:51.234641-08:00 s19 kernel: ? __do_sys_gettid+0x1a/0x30
2026-02-02T16:15:51.234642-08:00 s19 kernel: ? x64_sys_call+0x72d/0x26e0
2026-02-02T16:15:51.234642-08:00 s19 kernel: ? do_syscall_64+0xbf/0x500
2026-02-02T16:15:51.234643-08:00 s19 kernel: ? __x64_sys_close+0x3e/0x90
2026-02-02T16:15:51.234643-08:00 s19 kernel: ? x64_sys_call+0x1b7c/0x26e0
2026-02-02T16:15:51.234644-08:00 s19 kernel: ? do_syscall_64+0xbf/0x500
2026-02-02T16:15:51.234644-08:00 s19 kernel: ? __sys_sendmsg+0x8c/0x100
2026-02-02T16:15:51.234645-08:00 s19 kernel: ? __x64_sys_sendmsg+0x1d/0x30
2026-02-02T16:15:51.234646-08:00 s19 kernel: ? x64_sys_call+0x25cc/0x26e0
2026-02-02T16:15:51.234646-08:00 s19 kernel: ? do_syscall_64+0xbf/0x500
2026-02-02T16:15:51.234647-08:00 s19 kernel: ? __do_sys_gettid+0x1a/0x30
2026-02-02T16:15:51.234647-08:00 s19 kernel: ? x64_sys_call+0x72d/0x26e0
2026-02-02T16:15:51.234648-08:00 s19 kernel: ? do_syscall_64+0xbf/0x500
2026-02-02T16:15:51.234648-08:00 s19 kernel: ? clear_bhb_loop+0x30/0x80
2026-02-02T16:15:51.234649-08:00 s19 kernel: ? clear_bhb_loop+0x30/0x80
2026-02-02T16:15:51.234650-08:00 s19 kernel: entry_SYSCALL_64_after_hwframe+0x76/0x7e
2026-02-02T16:15:51.234651-08:00 s19 kernel: RIP: 0033:0x7fca8d52a037
2026-02-02T16:15:51.234652-08:00 s19 kernel: Code: Unable to access opcode bytes at 0x7fca8d52a00d.
2026-02-02T16:15:51.234652-08:00 s19 kernel: RSP: 002b:00007ffd2688e2f8 EFLAGS: 00000202 ORIG_RAX: 00000000000000e8
2026-02-02T16:15:51.234653-08:00 s19 kernel: RAX: fffffffffffffffc RBX: 0000000000000022 RCX: 00007fca8d52a037
2026-02-02T16:15:51.234653-08:00 s19 kernel: RDX: 0000000000000022 RSI: 000064ecd6897d00 RDI: 0000000000000005
2026-02-02T16:15:51.234654-08:00 s19 kernel: RBP: 00007ffd2688e410 R08: 0000000000000000 R09: 0000000000000005
2026-02-02T16:15:51.234654-08:00 s19 kernel: R10: 00000000ffffffff R11: 0000000000000202 R12: 000064ecd6897d00
2026-02-02T16:15:51.234655-08:00 s19 kernel: R13: 0000000000000018 R14: 000064ecd6873c70 R15: ffffffffffffffff
2026-02-02T16:15:51.234656-08:00 s19 kernel: </TASK>
2026-02-02T16:16:19.234349-08:00 s19 kernel: watchdog: BUG: soft lockup - CPU#6 stuck for 75s! [systemd-network:841]
2026-02-02T16:16:19.234390-08:00 s19 kernel: Modules linked in: tls snd_hda_codec_intelhdmi snd_hda_codec_alc882 snd_hda_codec_realtek_lib qrtr snd_hda_codec_generic snd_hda_intel snd_sof_pci_intel_cnl snd_sof_intel_hda_generic soundwire_intel snd_sof_intel_hda_sdw_bpt snd_sof_intel_hda_common snd_soc_hdac_hda snd_sof_intel_hda_mlink snd_sof_intel_hda snd_hda_codec_hdmi soundwire_cadence snd_sof_pci intel_rapl_msr snd_sof_xtensa_dsp intel_rapl_common bridge intel_uncore_frequency snd_sof stp intel_uncore_frequency_common llc snd_sof_utils snd_soc_acpi_intel_match snd_soc_acpi_intel_sdca_quirks soundwire_generic_allocation cfg80211 snd_soc_sdw_utils snd_soc_acpi soundwire_bus snd_soc_sdca crc8 snd_soc_avs snd_soc_hda_codec snd_hda_ext_core intel_tcc_cooling x86_pkg_temp_thermal snd_hda_codec intel_powerclamp coretemp snd_hda_core snd_intel_dspcfg snd_intel_sdw_acpi snd_hwdep binfmt_misc kvm_intel cmdlinepart i915 snd_soc_core spi_nor snd_compress ee1004 mtd mei_hdcp mei_pxp ac97_bus drm_buddy snd_pcm_dmaengine kvm snd_pcm ttm irqbypass
2026-02-02T16:16:19.234392-08:00 s19 kernel: drm_display_helper i2c_i801 eeepc_wmi snd_timer rapl nls_iso8859_1 intel_cstate asus_wmi snd i2c_smbus platform_profile spi_intel_pci cec wmi_bmof i2c_mux mei_me soundcore intel_wmi_thunderbolt sparse_keymap mxm_wmi spi_intel rc_core mei i2c_algo_bit intel_pmc_core pmt_telemetry pmt_discovery pmt_class intel_pmc_ssram_telemetry intel_vsec acpi_pad acpi_tad joydev input_leds mac_hid sch_fq_codel dm_multipath msr nvme_fabrics efi_pstore nfnetlink dmi_sysfs ip_tables x_tables autofs4 btrfs blake2b libblake2b raid10 raid456 async_raid6_recov async_memcpy async_pq async_xor async_tx xor raid6_pq raid1 raid0 linear hid_generic usbhid hid nvme nvme_core nvme_keyring ghash_clmulni_intel nvme_auth intel_lpss_pci ahci igc intel_lpss hkdf libahci idma64 video wmi aesni_intel
2026-02-02T16:16:19.234393-08:00 s19 kernel: CPU: 6 UID: 998 PID: 841 Comm: systemd-network Tainted: G D L 6.19.0-rc1-pz #1 PREEMPT(full)
2026-02-02T16:16:19.234393-08:00 s19 kernel: Tainted: [D]=DIE, [L]=SOFTLOCKUP
2026-02-02T16:16:19.234394-08:00 s19 kernel: Hardware name: ASUS System Product Name/PRIME Z490-A, BIOS 9902 09/15/2021
2026-02-02T16:16:19.234394-08:00 s19 kernel: RIP: 0010:smp_call_function_many_cond+0x12c/0x590
2026-02-02T16:16:19.234395-08:00 s19 kernel: Code: 36 4c 63 e0 49 8b 5d 00 49 81 fc 00 20 00 00 0f 83 43 04 00 00 4a 03 1c e5 e0 50 d9 bb 8b 53 08 48 89 de 83 e2 01 74 0a f3 90 <8b> 4e 08 83 e1 01 75 f6 83 c0 01 eb b0 48 83 c4 50 5b 41 5c 41 5d
2026-02-02T16:16:19.234396-08:00 s19 kernel: RSP: 0018:ffffd09582a4b808 EFLAGS: 00000202
2026-02-02T16:16:19.234396-08:00 s19 kernel: RAX: 0000000000000000 RBX: ffff89298e03c900 RCX: 0000000000000001
2026-02-02T16:16:19.234397-08:00 s19 kernel: RDX: 0000000000000001 RSI: ffff89298e03c900 RDI: 0000000000000000
2026-02-02T16:16:19.234398-08:00 s19 kernel: RBP: ffffd09582a4b880 R08: 0000000000000000 R09: 0000000000000000
2026-02-02T16:16:19.234398-08:00 s19 kernel: R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
2026-02-02T16:16:19.234399-08:00 s19 kernel: R13: ffff89298e334300 R14: 0000000000000006 R15: 0000000000000006
2026-02-02T16:16:19.234399-08:00 s19 kernel: FS: 0000000000000000(0000) GS:ffff8929d1957000(0000) knlGS:0000000000000000
2026-02-02T16:16:19.234400-08:00 s19 kernel: CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
2026-02-02T16:16:19.234400-08:00 s19 kernel: CR2: 000070f72bb90030 CR3: 0000000174642006 CR4: 00000000007726f0
2026-02-02T16:16:19.234401-08:00 s19 kernel: PKRU: 55555554
2026-02-02T16:16:19.234401-08:00 s19 kernel: Call Trace:
2026-02-02T16:16:19.234402-08:00 s19 kernel: <TASK>
2026-02-02T16:16:19.234402-08:00 s19 kernel: ? __pfx_flush_tlb_func+0x10/0x10
2026-02-02T16:16:19.234403-08:00 s19 kernel: on_each_cpu_cond_mask+0x24/0x60
2026-02-02T16:16:19.234404-08:00 s19 kernel: native_flush_tlb_multi+0x73/0x170
2026-02-02T16:16:19.234404-08:00 s19 kernel: flush_tlb_mm_range+0x2d8/0x790
2026-02-02T16:16:19.234405-08:00 s19 kernel: tlb_finish_mmu+0x12f/0x1b0
2026-02-02T16:16:19.234405-08:00 s19 kernel: exit_mmap+0x192/0x3f0
2026-02-02T16:16:19.234406-08:00 s19 kernel: __mmput+0x41/0x150
2026-02-02T16:16:19.234406-08:00 s19 kernel: mmput+0x31/0x40
2026-02-02T16:16:19.234407-08:00 s19 kernel: do_exit+0x276/0xa40
2026-02-02T16:16:19.234407-08:00 s19 kernel: ? collect_signal+0xb0/0x150
2026-02-02T16:16:19.234408-08:00 s19 kernel: do_group_exit+0x34/0x90
2026-02-02T16:16:19.234408-08:00 s19 kernel: get_signal+0x926/0x950
2026-02-02T16:16:19.234409-08:00 s19 kernel: arch_do_signal_or_restart+0x41/0x240
2026-02-02T16:16:19.234409-08:00 s19 kernel: exit_to_user_mode_loop+0x8e/0x520
2026-02-02T16:16:19.234410-08:00 s19 kernel: do_syscall_64+0x2ab/0x500
2026-02-02T16:16:19.234410-08:00 s19 kernel: ? __do_sys_gettid+0x1a/0x30
2026-02-02T16:16:19.234411-08:00 s19 kernel: ? x64_sys_call+0x72d/0x26e0
2026-02-02T16:16:19.234412-08:00 s19 kernel: ? do_syscall_64+0xbf/0x500
2026-02-02T16:16:19.234412-08:00 s19 kernel: ? __x64_sys_close+0x3e/0x90
2026-02-02T16:16:19.234413-08:00 s19 kernel: ? x64_sys_call+0x1b7c/0x26e0
2026-02-02T16:16:19.234413-08:00 s19 kernel: ? do_syscall_64+0xbf/0x500
2026-02-02T16:16:19.234414-08:00 s19 kernel: ? __sys_sendmsg+0x8c/0x100
2026-02-02T16:16:19.234414-08:00 s19 kernel: ? __x64_sys_sendmsg+0x1d/0x30
2026-02-02T16:16:19.234415-08:00 s19 kernel: ? x64_sys_call+0x25cc/0x26e0
2026-02-02T16:16:19.234415-08:00 s19 kernel: ? do_syscall_64+0xbf/0x500
2026-02-02T16:16:19.234416-08:00 s19 kernel: ? __do_sys_gettid+0x1a/0x30
2026-02-02T16:16:19.234416-08:00 s19 kernel: ? x64_sys_call+0x72d/0x26e0
2026-02-02T16:16:19.234417-08:00 s19 kernel: ? do_syscall_64+0xbf/0x500
2026-02-02T16:16:19.234417-08:00 s19 kernel: ? clear_bhb_loop+0x30/0x80
2026-02-02T16:16:19.234418-08:00 s19 kernel: ? clear_bhb_loop+0x30/0x80
2026-02-02T16:16:19.234419-08:00 s19 kernel: entry_SYSCALL_64_after_hwframe+0x76/0x7e
2026-02-02T16:16:19.234420-08:00 s19 kernel: RIP: 0033:0x7fca8d52a037
2026-02-02T16:16:19.234420-08:00 s19 kernel: Code: Unable to access opcode bytes at 0x7fca8d52a00d.
2026-02-02T16:16:19.234421-08:00 s19 kernel: RSP: 002b:00007ffd2688e2f8 EFLAGS: 00000202 ORIG_RAX: 00000000000000e8
2026-02-02T16:16:19.234422-08:00 s19 kernel: RAX: fffffffffffffffc RBX: 0000000000000022 RCX: 00007fca8d52a037
2026-02-02T16:16:19.234422-08:00 s19 kernel: RDX: 0000000000000022 RSI: 000064ecd6897d00 RDI: 0000000000000005
2026-02-02T16:16:19.234423-08:00 s19 kernel: RBP: 00007ffd2688e410 R08: 0000000000000000 R09: 0000000000000005
2026-02-02T16:16:19.234423-08:00 s19 kernel: R10: 00000000ffffffff R11: 0000000000000202 R12: 000064ecd6897d00
2026-02-02T16:16:19.234424-08:00 s19 kernel: R13: 0000000000000018 R14: 000064ecd6873c70 R15: ffffffffffffffff
2026-02-02T16:16:19.234424-08:00 s19 kernel: </TASK>
2026-02-02T16:16:33.241297-08:00 s19 kernel: rcu: INFO: rcu_preempt detected expedited stalls on CPUs/tasks: { P12753 P6509 P5261 P15769 P8594 P5431 P10107 P14333 P6906 } 241738 jiffies s: 873 root: 0x0/T
2026-02-02T16:16:33.241336-08:00 s19 kernel: rcu: blocking rcu_node structures (internal RCU debug):
2026-02-02T16:16:47.234360-08:00 s19 kernel: watchdog: BUG: soft lockup - CPU#6 stuck for 101s! [systemd-network:841]
2026-02-02T16:16:47.234400-08:00 s19 kernel: Modules linked in: tls snd_hda_codec_intelhdmi snd_hda_codec_alc882 snd_hda_codec_realtek_lib qrtr snd_hda_codec_generic snd_hda_intel snd_sof_pci_intel_cnl snd_sof_intel_hda_generic soundwire_intel snd_sof_intel_hda_sdw_bpt snd_sof_intel_hda_common snd_soc_hdac_hda snd_sof_intel_hda_mlink snd_sof_intel_hda snd_hda_codec_hdmi soundwire_cadence snd_sof_pci intel_rapl_msr snd_sof_xtensa_dsp intel_rapl_common bridge intel_uncore_frequency snd_sof stp intel_uncore_frequency_common llc snd_sof_utils snd_soc_acpi_intel_match snd_soc_acpi_intel_sdca_quirks soundwire_generic_allocation cfg80211 snd_soc_sdw_utils snd_soc_acpi soundwire_bus snd_soc_sdca crc8 snd_soc_avs snd_soc_hda_codec snd_hda_ext_core intel_tcc_cooling x86_pkg_temp_thermal snd_hda_codec intel_powerclamp coretemp snd_hda_core snd_intel_dspcfg snd_intel_sdw_acpi snd_hwdep binfmt_misc kvm_intel cmdlinepart i915 snd_soc_core spi_nor snd_compress ee1004 mtd mei_hdcp mei_pxp ac97_bus drm_buddy snd_pcm_dmaengine kvm snd_pcm ttm irqbypass
2026-02-02T16:16:47.234402-08:00 s19 kernel: drm_display_helper i2c_i801 eeepc_wmi snd_timer rapl nls_iso8859_1 intel_cstate asus_wmi snd i2c_smbus platform_profile spi_intel_pci cec wmi_bmof i2c_mux mei_me soundcore intel_wmi_thunderbolt sparse_keymap mxm_wmi spi_intel rc_core mei i2c_algo_bit intel_pmc_core pmt_telemetry pmt_discovery pmt_class intel_pmc_ssram_telemetry intel_vsec acpi_pad acpi_tad joydev input_leds mac_hid sch_fq_codel dm_multipath msr nvme_fabrics efi_pstore nfnetlink dmi_sysfs ip_tables x_tables autofs4 btrfs blake2b libblake2b raid10 raid456 async_raid6_recov async_memcpy async_pq async_xor async_tx xor raid6_pq raid1 raid0 linear hid_generic usbhid hid nvme nvme_core nvme_keyring ghash_clmulni_intel nvme_auth intel_lpss_pci ahci igc intel_lpss hkdf libahci idma64 video wmi aesni_intel
2026-02-02T16:16:47.234403-08:00 s19 kernel: CPU: 6 UID: 998 PID: 841 Comm: systemd-network Tainted: G D L 6.19.0-rc1-pz #1 PREEMPT(full)
2026-02-02T16:16:47.234404-08:00 s19 kernel: Tainted: [D]=DIE, [L]=SOFTLOCKUP
2026-02-02T16:16:47.234405-08:00 s19 kernel: Hardware name: ASUS System Product Name/PRIME Z490-A, BIOS 9902 09/15/2021
2026-02-02T16:16:47.234405-08:00 s19 kernel: RIP: 0010:smp_call_function_many_cond+0x12c/0x590
2026-02-02T16:16:47.234406-08:00 s19 kernel: Code: 36 4c 63 e0 49 8b 5d 00 49 81 fc 00 20 00 00 0f 83 43 04 00 00 4a 03 1c e5 e0 50 d9 bb 8b 53 08 48 89 de 83 e2 01 74 0a f3 90 <8b> 4e 08 83 e1 01 75 f6 83 c0 01 eb b0 48 83 c4 50 5b 41 5c 41 5d
2026-02-02T16:16:47.234407-08:00 s19 kernel: RSP: 0018:ffffd09582a4b808 EFLAGS: 00000202
2026-02-02T16:16:47.234407-08:00 s19 kernel: RAX: 0000000000000000 RBX: ffff89298e03c900 RCX: 0000000000000001
2026-02-02T16:16:47.234408-08:00 s19 kernel: RDX: 0000000000000001 RSI: ffff89298e03c900 RDI: 0000000000000000
2026-02-02T16:16:47.234408-08:00 s19 kernel: RBP: ffffd09582a4b880 R08: 0000000000000000 R09: 0000000000000000
2026-02-02T16:16:47.234409-08:00 s19 kernel: R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
2026-02-02T16:16:47.234410-08:00 s19 kernel: R13: ffff89298e334300 R14: 0000000000000006 R15: 0000000000000006
2026-02-02T16:16:47.234410-08:00 s19 kernel: FS: 0000000000000000(0000) GS:ffff8929d1957000(0000) knlGS:0000000000000000
2026-02-02T16:16:47.234411-08:00 s19 kernel: CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
2026-02-02T16:16:47.234411-08:00 s19 kernel: CR2: 000070f72bb90030 CR3: 0000000174642006 CR4: 00000000007726f0
2026-02-02T16:16:47.234412-08:00 s19 kernel: PKRU: 55555554
2026-02-02T16:16:47.234412-08:00 s19 kernel: Call Trace:
2026-02-02T16:16:47.234413-08:00 s19 kernel: <TASK>
2026-02-02T16:16:47.234413-08:00 s19 kernel: ? __pfx_flush_tlb_func+0x10/0x10
2026-02-02T16:16:47.234414-08:00 s19 kernel: on_each_cpu_cond_mask+0x24/0x60
2026-02-02T16:16:47.234414-08:00 s19 kernel: native_flush_tlb_multi+0x73/0x170
2026-02-02T16:16:47.234415-08:00 s19 kernel: flush_tlb_mm_range+0x2d8/0x790
2026-02-02T16:16:47.234416-08:00 s19 kernel: tlb_finish_mmu+0x12f/0x1b0
2026-02-02T16:16:47.234416-08:00 s19 kernel: exit_mmap+0x192/0x3f0
2026-02-02T16:16:47.234417-08:00 s19 kernel: __mmput+0x41/0x150
2026-02-02T16:16:47.234417-08:00 s19 kernel: mmput+0x31/0x40
2026-02-02T16:16:47.234418-08:00 s19 kernel: do_exit+0x276/0xa40
2026-02-02T16:16:47.234418-08:00 s19 kernel: ? collect_signal+0xb0/0x150
2026-02-02T16:16:47.234419-08:00 s19 kernel: do_group_exit+0x34/0x90
2026-02-02T16:16:47.234419-08:00 s19 kernel: get_signal+0x926/0x950
2026-02-02T16:16:47.234420-08:00 s19 kernel: arch_do_signal_or_restart+0x41/0x240
2026-02-02T16:16:47.234420-08:00 s19 kernel: exit_to_user_mode_loop+0x8e/0x520
2026-02-02T16:16:47.234421-08:00 s19 kernel: do_syscall_64+0x2ab/0x500
2026-02-02T16:16:47.234421-08:00 s19 kernel: ? __do_sys_gettid+0x1a/0x30
2026-02-02T16:16:47.234422-08:00 s19 kernel: ? x64_sys_call+0x72d/0x26e0
2026-02-02T16:16:47.234422-08:00 s19 kernel: ? do_syscall_64+0xbf/0x500
2026-02-02T16:16:47.234423-08:00 s19 kernel: ? __x64_sys_close+0x3e/0x90
2026-02-02T16:16:47.234423-08:00 s19 kernel: ? x64_sys_call+0x1b7c/0x26e0
2026-02-02T16:16:47.234424-08:00 s19 kernel: ? do_syscall_64+0xbf/0x500
2026-02-02T16:16:47.234424-08:00 s19 kernel: ? __sys_sendmsg+0x8c/0x100
2026-02-02T16:16:47.234425-08:00 s19 kernel: ? __x64_sys_sendmsg+0x1d/0x30
2026-02-02T16:16:47.234425-08:00 s19 kernel: ? x64_sys_call+0x25cc/0x26e0
2026-02-02T16:16:47.234426-08:00 s19 kernel: ? do_syscall_64+0xbf/0x500
2026-02-02T16:16:47.234426-08:00 s19 kernel: ? __do_sys_gettid+0x1a/0x30
2026-02-02T16:16:47.234427-08:00 s19 kernel: ? x64_sys_call+0x72d/0x26e0
2026-02-02T16:16:47.234427-08:00 s19 kernel: ? do_syscall_64+0xbf/0x500
2026-02-02T16:16:47.234431-08:00 s19 kernel: ? clear_bhb_loop+0x30/0x80
2026-02-02T16:16:47.234432-08:00 s19 kernel: ? clear_bhb_loop+0x30/0x80
2026-02-02T16:16:47.234433-08:00 s19 kernel: entry_SYSCALL_64_after_hwframe+0x76/0x7e
2026-02-02T16:16:47.234434-08:00 s19 kernel: RIP: 0033:0x7fca8d52a037
2026-02-02T16:16:47.234434-08:00 s19 kernel: Code: Unable to access opcode bytes at 0x7fca8d52a00d.
2026-02-02T16:16:47.234435-08:00 s19 kernel: RSP: 002b:00007ffd2688e2f8 EFLAGS: 00000202 ORIG_RAX: 00000000000000e8
2026-02-02T16:16:47.234436-08:00 s19 kernel: RAX: fffffffffffffffc RBX: 0000000000000022 RCX: 00007fca8d52a037
2026-02-02T16:16:47.234436-08:00 s19 kernel: RDX: 0000000000000022 RSI: 000064ecd6897d00 RDI: 0000000000000005
2026-02-02T16:16:47.234437-08:00 s19 kernel: RBP: 00007ffd2688e410 R08: 0000000000000000 R09: 0000000000000005
2026-02-02T16:16:47.234437-08:00 s19 kernel: R10: 00000000ffffffff R11: 0000000000000202 R12: 000064ecd6897d00
2026-02-02T16:16:47.234438-08:00 s19 kernel: R13: 0000000000000018 R14: 000064ecd6873c70 R15: ffffffffffffffff
2026-02-02T16:16:47.234438-08:00 s19 kernel: </TASK>
2026-02-02T19:58:31.230818-08:00 s19 kernel: Linux version 6.19.0-rc1-pz (doug@s19) (gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0, GNU ld (GNU Binutils for Ubuntu) 2.42) #1 SMP PREEMPT_DYNAMIC Fri Jan 30 11:33:51 PST 2026
2026-02-02T19:58:31.230822-08:00 s19 kernel: Command line: BOOT_IMAGE=/boot/vmlinuz-6.19.0-rc1-pz root=UUID=823b5f2c-38f5-4b05-92f6-6cb77b157c8a ro ipv6.disable=1 consoleblank=300 msr.allow_writes=on cpuidle.governor=teo
^ permalink raw reply [flat|nested] 70+ messages in thread
* Re: [PATCH 0/4] sched: Various reweight_entity() fixes
2026-02-03 12:19 ` K Prateek Nayak
2026-02-03 16:36 ` Doug Smythies
@ 2026-02-04 10:15 ` K Prateek Nayak
2026-02-09 15:47 ` Peter Zijlstra
2026-02-04 10:44 ` Peter Zijlstra
2 siblings, 1 reply; 70+ messages in thread
From: K Prateek Nayak @ 2026-02-04 10:15 UTC (permalink / raw)
To: Peter Zijlstra
Cc: mingo, juri.lelli, vincent.guittot, dietmar.eggemann, rostedt,
bsegall, mgorman, vschneid, linux-kernel, wangtao554, quzicheng,
wuyun.abel, dsmythies
[-- Attachment #1: Type: text/plain, Size: 6512 bytes --]
Hello Peter,
On 2/3/2026 5:49 PM, K Prateek Nayak wrote:
>> I'm not sure I have valuable tracing patches, I just stick random
>> trace_printk()s in.
>
> I'll plop those in and update once the I get a log for sum_shift++.
Here is one set of log:
# schbench enqueue
schbench-103551 [255] ... : place_entity: Placed se: weight(1048576) vruntime(722711379921) vlag(2140867) deadline(722714179921) curr?(0)
schbench-103551 [255] ... : place_entity: Placed on cfs_rq: depth(0) weight(4194304) nr_queued(4) sum_w_vruntime(0) sum_weight(3145728) zero_vruntime(722714445432) sum_shift(0) avg_vruntime(722714056004)
schbench-103551 [255] ... : __enqueue_entity: Enqueue cfs_rq: depth(0) weight(5242880) nr_queued(5) sum_w_vruntime(663820959744) sum_weight(4194304) zero_vruntime(722713520787) sum_shift(0) avg_vruntime(722713520787)
# Couple of reweight while running
schbench-103551 [255] ... : reweight_entity: Reweight before se: weight(3459) vruntime(701806887728588) vlag(0) deadline(701807851411101) curr?(1)
schbench-103551 [255] ... : reweight_entity: Before cfs_rq: depth(-1) weight(3459) nr_queued(1) sum_w_vruntime(0) sum_weight(0) zero_vruntime(701164930256050) sum_shift(0) avg_vruntime(701806887728588)
schbench-103551 [255] ... : reweight_entity: Reweight after se: weight(3505) vruntime(701806939248075) vlag(0) deadline(701807839439774) curr?(1)
schbench-103551 [255] ... : reweight_entity: After cfs_rq: depth(-1) weight(3505) nr_queued(1) sum_w_vruntime(0) sum_weight(0) zero_vruntime(701164930256050) sum_shift(0) avg_vruntime(701806939248075)
schbench-103551 [255] ... : reweight_entity: Reweight before se: weight(3505) vruntime(701808246440736) vlag(0) deadline(701809202174069) curr?(1)
schbench-103551 [255] ... : reweight_entity: Before cfs_rq: depth(-1) weight(3505) nr_queued(1) sum_w_vruntime(0) sum_weight(0) zero_vruntime(701164930256050) sum_shift(0) avg_vruntime(701808246440736)
schbench-103551 [255] ... : reweight_entity: Reweight after se: weight(3513) vruntime(701808246440736) vlag(0) deadline(701809199997619) curr?(1)
schbench-103551 [255] ... : reweight_entity: After cfs_rq: depth(-1) weight(3513) nr_queued(1) sum_w_vruntime(0) sum_weight(0) zero_vruntime(701164930256050) sum_shift(0) avg_vruntime(701808246440736)
# put_prev_entity?
schbench-103551 [255] ... : __enqueue_entity: Enqueue cfs_rq: depth(0) weight(5242880) nr_queued(5) sum_w_vruntime(-2130969624576) sum_weight(5242880) zero_vruntime(722714695180) sum_shift(0) avg_vruntime(722714695180)
# set_next_entity?
schbench-103551 [255] ... : __dequeue_entity: Dequeue cfs_rq: depth(0) weight(5242880) nr_queued(5) sum_w_vruntime(0) sum_weight(4194304) zero_vruntime(722715015932) sum_shift(0) avg_vruntime(722715015932)
# More reweight
<...>-102371 [255] ... : reweight_entity: Reweight before se: weight(3513) vruntime(701809611552543) vlag(0) deadline(701810567285876) curr?(1)
<...>-102371 [255] ... : reweight_entity: Before cfs_rq: depth(-1) weight(3513) nr_queued(1) sum_w_vruntime(0) sum_weight(0) zero_vruntime(701164930256050) sum_shift(0) avg_vruntime(701809611552543)
<...>-102371 [255] ... : reweight_entity: Reweight after se: weight(3508) vruntime(701809611552543) vlag(0) deadline(701810568648095) curr?(1)
<...>-102371 [255] ... : reweight_entity: After cfs_rq: depth(-1) weight(3508) nr_queued(1) sum_w_vruntime(0) sum_weight(0) zero_vruntime(701164930256050) sum_shift(0) avg_vruntime(701809611552543)
<...>-102371 [255] ... : place_entity: Placed se: weight(90891264) vruntime(701808975077099) vlag(24732) deadline(701808975109401) curr?(0)
<...>-102371 [255] ... : place_entity: Placed on cfs_rq: depth(-1) weight(3508) nr_queued(1) sum_w_vruntime(0) sum_weight(0) zero_vruntime(701164930256050) sum_shift(0) avg_vruntime(701809615900788)
# Overflow on enqueue
<...>-102371 [255] ... : __enqueue_entity: Overflowed cfs_rq:
<...>-102371 [255] ... : dump_h_overflow_cfs_rq: cfs_rq: depth(0) weight(90894772) nr_queued(2) sum_w_vruntime(0) sum_weight(0) zero_vruntime(701164930256050) sum_shift(0) avg_vruntime(701809615900788)
<...>-102371 [255] ... : dump_h_overflow_entity: se: weight(3508) vruntime(701809615900788) slice(2800000) deadline(701810568648095) curr?(1) task?(1) <-------- cfs_rq->curr
<...>-102371 [255] ... : __enqueue_entity: Overflowed se:
<...>-102371 [255] ... : dump_h_overflow_entity: se: weight(90891264) vruntime(701808975077099) slice(2800000) deadline(701808975109401) curr?(0) task?(0) <-------- new se
# Botched attempt at dumping the whole hierarchy
<...>-102371 [255] ... : __enqueue_entity: Overflowed hierarchy from root:
<...>-102371 [255] ... : dump_h_overflow_cfs_rq: cfs_rq: depth(0) weight(90894772) nr_queued(2) sum_w_vruntime(0) sum_weight(0) zero_vruntime(701164930256050) sum_shift(0) avg_vruntime(701809615900788)
<...>-102371 [255] ... : dump_h_overflow_entity: se: weight(3508) vruntime(701809615900788) slice(2800000) deadline(701810568648095) curr?(1) task?(1)
<...>-102371 [255] ... : dump_h_overflow_cfs_rq: cfs_rq: depth(1) weight(5242880) nr_queued(5) sum_w_vruntime(0) sum_weight(4194304) zero_vruntime(722715015932) sum_shift(0) avg_vruntime(722715086591)
<...>-102371 [255] ... : dump_h_overflow_entity: se: weight(1048576) vruntime(722715369227) slice(2800000) deadline(722718169227) curr?(1) task?(0)
<...>-102371 [255] ... : dump_h_overflow_entity: se: weight(1048576) vruntime(722713453675) slice(2800000) deadline(722716247576) curr?(1) task?(0)
<...>-102371 [255] ... : dump_h_overflow_entity: se: weight(1048576) vruntime(722713498238) slice(2800000) deadline(722716290797) curr?(1) task?(0)
<...>-102371 [255] ... : dump_h_overflow_entity: se: weight(1048576) vruntime(722716384383) slice(2800000) deadline(722719172114) curr?(1) task?(0)
<...>-102371 [255] ... : dump_h_overflow_entity: se: weight(1048576) vruntime(722716727432) slice(2800000) deadline(722719517387) curr?(1) task?(0)
Attached is the debug patch. that can be used to interpret this data more.
per-CPU padding is just a variable to add padding for higher depths when
printing the hierarchy.
--
Thanks and Regards,
Prateek
[-- Attachment #2: 0001-sched-fair-Debug-multiplication-overflow.patch --]
[-- Type: text/plain, Size: 7203 bytes --]
From 8fe3036b04a3a529dc500a9c880e23bcfd1daa42 Mon Sep 17 00:00:00 2001
From: "Gautham R. Shenoy" <gautham.shenoy@amd.com>
Date: Wed, 4 Feb 2026 10:08:07 +0000
Subject: [PATCH] sched/fair: Debug multiplication overflow
Read the trace buffer whn dmesg says:
EEVDF: Overflow (mul)!
EEVDF: Overflow CPU/<X>
per_cpu/cpu<X>/trace should have all the information.
Not-signed-off-by: K Prateek Nayak <kprateek.nayak@amd.com>
---
kernel/sched/fair.c | 83 +++++++++++++++++++++++++++++++++++++++++++--
1 file changed, 81 insertions(+), 2 deletions(-)
diff --git a/kernel/sched/fair.c b/kernel/sched/fair.c
index 6f1a86f7969a..15d521f795ff 100644
--- a/kernel/sched/fair.c
+++ b/kernel/sched/fair.c
@@ -670,6 +670,53 @@ __sum_w_vruntime_add(struct cfs_rq *cfs_rq, struct sched_entity *se)
cfs_rq->sum_weight += weight;
}
+static DEFINE_PER_CPU(char[100], dump_padding);
+u64 avg_vruntime(struct cfs_rq *cfs_rq);
+
+static void dump_h_overflow_entity(struct sched_entity *se, int depth, bool curr)
+{
+ char *padding = *this_cpu_ptr(&dump_padding);
+
+ padding[depth] = '\0';
+ trace_printk("%sse: weight(%lu) vruntime(%llu) slice(%llu) deadline(%llu) curr?(%d) task?(%d)\n",
+ padding, se->load.weight, se->vruntime, se->slice, se->deadline, curr, !entity_is_task(se));
+}
+
+static void dump_h_overflow_cfs_rq(struct cfs_rq *cfs_rq, int depth, bool rec)
+{
+ struct rb_node *left = rb_first_cached(&cfs_rq->tasks_timeline);
+ char *padding = *this_cpu_ptr(&dump_padding);
+
+ padding[depth] = '\0';
+ trace_printk("%scfs_rq: depth(%d) weight(%lu) nr_queued(%u) sum_w_vruntime(%lld) sum_weight(%llu) zero_vruntime(%llu) sum_shift(%u) avg_vruntime(%llu)\n",
+ padding, depth, cfs_rq->load.weight, cfs_rq->nr_queued, cfs_rq->sum_w_vruntime, cfs_rq->sum_weight, cfs_rq->zero_vruntime, cfs_rq->sum_shift, avg_vruntime(cfs_rq));
+
+ if (cfs_rq->curr)
+ dump_h_overflow_entity(cfs_rq->curr, depth, true);
+
+ while (left) {
+ dump_h_overflow_entity(__node_2_se(left), depth, true);
+ left = rb_next(left);
+ }
+
+ if (rec) {
+ padding[depth] = ' ';
+ if (cfs_rq->curr && !entity_is_task(cfs_rq->curr))
+ dump_h_overflow_cfs_rq(group_cfs_rq(cfs_rq->curr), depth + 1, true);
+
+ left = rb_first_cached(&cfs_rq->tasks_timeline);
+ while (left) {
+ struct sched_entity *se = __node_2_se(left);
+
+ if (!entity_is_task(se))
+ dump_h_overflow_cfs_rq(group_cfs_rq(se), depth + 1, true);
+ left = rb_next(left);
+ }
+ }
+
+ padding[depth] = '\0';
+}
+
static void
sum_w_vruntime_add_paranoid(struct cfs_rq *cfs_rq, struct sched_entity *se)
{
@@ -680,17 +727,32 @@ sum_w_vruntime_add_paranoid(struct cfs_rq *cfs_rq, struct sched_entity *se)
weight = avg_vruntime_weight(cfs_rq, se->load.weight);
key = entity_key(cfs_rq, se);
- if (check_mul_overflow(key, weight, &key))
+ if (check_mul_overflow(key, weight, &key)) {
+ pr_warn("EEVDF: Overflow (mul)!\n");
+ pr_warn("EEVDF: Overflow CPU/%d\n", smp_processor_id());
goto overflow;
+ }
- if (check_add_overflow(cfs_rq->sum_w_vruntime, key, &tmp))
+ if (check_add_overflow(cfs_rq->sum_w_vruntime, key, &tmp)) {
+ pr_warn("EEVDF: Overflow (add)!\n");
+ pr_warn("EEVDF: Overflow CPU/%d\n", smp_processor_id());
goto overflow;
+ }
cfs_rq->sum_w_vruntime = tmp;
cfs_rq->sum_weight += weight;
return;
overflow:
+ trace_printk("Overflowed cfs_rq:\n");
+ dump_h_overflow_cfs_rq(cfs_rq, 0, false);
+
+ trace_printk("Overflowed se:\n");
+ dump_h_overflow_entity(se, 0, se == cfs_rq->curr);
+
+ trace_printk("Overflowed hierarchy from root:\n");
+ dump_h_overflow_cfs_rq(&rq_of(cfs_rq)->cfs, 0, true);
+
/*
* There's gotta be a limit -- if we're still failing at this point
* there's really nothing much to be done about things.
@@ -921,6 +983,8 @@ static void __enqueue_entity(struct cfs_rq *cfs_rq, struct sched_entity *se)
se->min_slice = se->slice;
rb_add_augmented_cached(&se->run_node, &cfs_rq->tasks_timeline,
__entity_less, &min_vruntime_cb);
+ trace_printk("Enqueue cfs_rq: depth(%d) weight(%lu) nr_queued(%u) sum_w_vruntime(%lld) sum_weight(%llu) zero_vruntime(%llu) sum_shift(%u) avg_vruntime(%llu)\n",
+ se->depth - 1, cfs_rq->load.weight, cfs_rq->nr_queued, cfs_rq->sum_w_vruntime, cfs_rq->sum_weight, cfs_rq->zero_vruntime, cfs_rq->sum_shift, avg_vruntime(cfs_rq));
}
static void __dequeue_entity(struct cfs_rq *cfs_rq, struct sched_entity *se)
@@ -929,6 +993,8 @@ static void __dequeue_entity(struct cfs_rq *cfs_rq, struct sched_entity *se)
&min_vruntime_cb);
sum_w_vruntime_sub(cfs_rq, se);
update_zero_vruntime(cfs_rq);
+ trace_printk("Dequeue cfs_rq: depth(%d) weight(%lu) nr_queued(%u) sum_w_vruntime(%lld) sum_weight(%llu) zero_vruntime(%llu) sum_shift(%u) avg_vruntime(%llu)\n",
+ se->depth - 1, cfs_rq->load.weight, cfs_rq->nr_queued, cfs_rq->sum_w_vruntime, cfs_rq->sum_weight, cfs_rq->zero_vruntime, cfs_rq->sum_shift, avg_vruntime(cfs_rq));
}
struct sched_entity *__pick_root_entity(struct cfs_rq *cfs_rq)
@@ -3963,6 +4029,10 @@ static void reweight_entity(struct cfs_rq *cfs_rq, struct sched_entity *se,
bool rel_vprot = false;
u64 avruntime = 0;
+ trace_printk("Reweight before se: weight(%lu) vruntime(%llu) vlag(%lld) deadline(%llu) curr?(%d)\n",
+ se->load.weight, se->vruntime, se->vlag, se->deadline, se == cfs_rq->curr);
+ trace_printk("Before cfs_rq: depth(%d) weight(%lu) nr_queued(%u) sum_w_vruntime(%lld) sum_weight(%llu) zero_vruntime(%llu) sum_shift(%u) avg_vruntime(%llu)\n",
+ se->depth - 1, cfs_rq->load.weight, cfs_rq->nr_queued, cfs_rq->sum_w_vruntime, cfs_rq->sum_weight, cfs_rq->zero_vruntime, cfs_rq->sum_shift, avg_vruntime(cfs_rq));
if (se->on_rq) {
/* commit outstanding execution time */
update_curr(cfs_rq);
@@ -3998,6 +4068,10 @@ static void reweight_entity(struct cfs_rq *cfs_rq, struct sched_entity *se,
__enqueue_entity(cfs_rq, se);
cfs_rq->nr_queued++;
}
+ trace_printk("Reweight after se: weight(%lu) vruntime(%llu) vlag(%lld) deadline(%llu) curr?(%d)\n",
+ se->load.weight, se->vruntime, se->vlag, se->deadline, se == cfs_rq->curr);
+ trace_printk("After cfs_rq: depth(%d) weight(%lu) nr_queued(%u) sum_w_vruntime(%lld) sum_weight(%llu) zero_vruntime(%llu) sum_shift(%u) avg_vruntime(%llu)\n",
+ se->depth - 1, cfs_rq->load.weight, cfs_rq->nr_queued, cfs_rq->sum_w_vruntime, cfs_rq->sum_weight, cfs_rq->zero_vruntime, cfs_rq->sum_shift, avg_vruntime(cfs_rq));
}
static void reweight_task_fair(struct rq *rq, struct task_struct *p,
@@ -5367,6 +5441,11 @@ place_entity(struct cfs_rq *cfs_rq, struct sched_entity *se, int flags)
* EEVDF: vd_i = ve_i + r_i/w_i
*/
se->deadline = se->vruntime + vslice;
+
+ trace_printk("Placed se: weight(%lu) vruntime(%llu) vlag(%lld) deadline(%llu) curr?(%d)\n",
+ se->load.weight, se->vruntime, se->vlag, se->deadline, se == cfs_rq->curr);
+ trace_printk("Placed on cfs_rq: depth(%d) weight(%lu) nr_queued(%u) sum_w_vruntime(%lld) sum_weight(%llu) zero_vruntime(%llu) sum_shift(%u) avg_vruntime(%llu)\n",
+ se->depth - 1, cfs_rq->load.weight, cfs_rq->nr_queued, cfs_rq->sum_w_vruntime, cfs_rq->sum_weight, cfs_rq->zero_vruntime, cfs_rq->sum_shift, avg_vruntime(cfs_rq));
}
static void check_enqueue_throttle(struct cfs_rq *cfs_rq);
--
2.34.1
^ permalink raw reply related [flat|nested] 70+ messages in thread
* Re: [PATCH 0/4] sched: Various reweight_entity() fixes
2026-02-03 12:19 ` K Prateek Nayak
2026-02-03 16:36 ` Doug Smythies
2026-02-04 10:15 ` K Prateek Nayak
@ 2026-02-04 10:44 ` Peter Zijlstra
2 siblings, 0 replies; 70+ messages in thread
From: Peter Zijlstra @ 2026-02-04 10:44 UTC (permalink / raw)
To: K Prateek Nayak
Cc: mingo, juri.lelli, vincent.guittot, dietmar.eggemann, rostedt,
bsegall, mgorman, vschneid, linux-kernel, wangtao554, quzicheng,
wuyun.abel, dsmythies
On Tue, Feb 03, 2026 at 05:49:16PM +0530, K Prateek Nayak wrote:
> > If any of the fields are !0, you tripped an overflow.
>
> Yup I see a few !0 values. Some inching closer to the BUG_ON()
>
> grep "shift.*: [^0]$" /sys/kernel/debug/sched/debug
> .sum_shift : 4
> .sum_shift : 3
> .sum_shift : 5
> .sum_shift : 1
> .sum_shift : 2
> .sum_shift : 3
Whee. Clearly I have some work to do ;-) I'll go prod at this.
Thanks!
^ permalink raw reply [flat|nested] 70+ messages in thread
* Re: [PATCH 0/4] sched: Various reweight_entity() fixes
2026-02-04 10:15 ` K Prateek Nayak
@ 2026-02-09 15:47 ` Peter Zijlstra
2026-02-09 16:52 ` K Prateek Nayak
` (3 more replies)
0 siblings, 4 replies; 70+ messages in thread
From: Peter Zijlstra @ 2026-02-09 15:47 UTC (permalink / raw)
To: K Prateek Nayak
Cc: mingo, juri.lelli, vincent.guittot, dietmar.eggemann, rostedt,
bsegall, mgorman, vschneid, linux-kernel, wangtao554, quzicheng,
wuyun.abel, dsmythies
On Wed, Feb 04, 2026 at 03:45:58PM +0530, K Prateek Nayak wrote:
> # Overflow on enqueue
>
> <...>-102371 [255] ... : __enqueue_entity: Overflowed cfs_rq:
> <...>-102371 [255] ... : dump_h_overflow_cfs_rq: cfs_rq: depth(0) weight(90894772) nr_queued(2) sum_w_vruntime(0) sum_weight(0) zero_vruntime(701164930256050) sum_shift(0) avg_vruntime(701809615900788)
> <...>-102371 [255] ... : dump_h_overflow_entity: se: weight(3508) vruntime(701809615900788) slice(2800000) deadline(701810568648095) curr?(1) task?(1) <-------- cfs_rq->curr
> <...>-102371 [255] ... : __enqueue_entity: Overflowed se:
> <...>-102371 [255] ... : dump_h_overflow_entity: se: weight(90891264) vruntime(701808975077099) slice(2800000) deadline(701808975109401) curr?(0) task?(0) <-------- new se
So I spend a whole time trying to reproduce the splat, but alas.
That said, I did spot something 'funny' in the above, note that
zero_vruntime and avg_vruntime/curr->vruntime are significantly apart.
That is not something that should happen. zero_vruntime is supposed to
closely track avg_vruntime.
That lead me to hypothesise that there is a problem tracking
zero_vruntime when there is but a single runnable task, and sure
enough, I could reproduce that, albeit not at such a scale as to lead to
such problems (probably too much noise on my machine).
I ended up with the below; and I've already pushed out a fresh
queue/sched/core. Could you please test again?
---
Subject: sched/fair: Fix zero_vruntime tracking
From: Peter Zijlstra <peterz@infradead.org>
Date: Mon Feb 9 15:28:16 CET 2026
It turns out that zero_vruntime tracking is broken when there is but a single
task running. Current update paths are through __{en,de}queue_entity(), and
when there is but a single task, pick_next_task() will always return that one
task, and put_prev_set_next_task() will end up in neither function.
This can cause entity_key() to grow indefinitely large and cause overflows,
leading to much pain and suffering.
Furtermore, doing update_zero_vruntime() from __{de,en}queue_entity(), which
are called from {set_next,put_prev}_entity() has problems because:
- set_next_entity() calls __dequeue_entity() before it does cfs_rq->curr = se.
This means the avg_vruntime() will see the removal but not current, missing
the entity for accounting.
- put_prev_entity() calls __enqueue_entity() before it does cfs_rq->curr =
NULL. This means the avg_vruntime() will see the addition *and* current,
leading to double accounting.
Both cases are incorrect.
Noting that avg_vruntime is already called on each {en,de}queue, remove the
explicit avg_vruntime() calls (which removes an extra 64bit division for each
{en,de}queue) and have avg_vruntime() update zero_vruntime itself.
Additionally, have the tick call avg_vruntime() -- discarding the result, but
for the side-effect of updating zero_vruntime.
While there, optimize avg_vruntime() by noting that the average of one value is
rather trivial to compute.
Test case:
# taskset -c -p 1 $$
# taskset -c 2 bash -c 'while :; do :; done&'
# cat /sys/kernel/debug/sched/debug | awk '/^cpu#/ {P=0} /^cpu#2,/ {P=1} {if (P) print $0}' | grep -e zero_vruntime -e "^>"
PRE:
.zero_vruntime : 31316.407903
>R bash 487 50787.345112 E 50789.145972 2.800000 50780.298364 16 120 0.000000 0.000000 0.000000 /
.zero_vruntime : 382548.253179
>R bash 487 427275.204288 E 427276.003584 2.800000 427268.157540 23 120 0.000000 0.000000 0.000000 /
POST:
.zero_vruntime : 17259.709467
>R bash 526 17259.709467 E 17262.509467 2.800000 16915.031624 9 120 0.000000 0.000000 0.000000 /
.zero_vruntime : 18702.723356
>R bash 526 18702.723356 E 18705.523356 2.800000 18358.045513 9 120 0.000000 0.000000 0.000000 /
Fixes: 79f3f9bedd14 ("sched/eevdf: Fix min_vruntime vs avg_vruntime")
Reported-by: K Prateek Nayak <kprateek.nayak@amd.com>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
---
kernel/sched/fair.c | 81 +++++++++++++++++++++++++++++++++++-----------------
1 file changed, 55 insertions(+), 26 deletions(-)
--- a/kernel/sched/fair.c
+++ b/kernel/sched/fair.c
@@ -589,6 +589,21 @@ static inline bool entity_before(const s
return vruntime_cmp(a->deadline, "<", b->deadline);
}
+/*
+ * Per avg_vruntime() below, cfs_rq::zero_vruntime is only slightly stale
+ * and this value should be no more than two lag bounds. Which puts it in the
+ * general order of:
+ *
+ * (slice + TICK_NSEC) << NICE_0_LOAD_SHIFT
+ *
+ * which is around 44 bits in size (on 64bit); that is 20 for
+ * NICE_0_LOAD_SHIFT, another 20 for NSEC_PER_MSEC and then a handful for
+ * however many msec the actual slice+tick ends up begin.
+ *
+ * (disregarding the actual divide-by-weight part makes for the worst case
+ * weight of 2, which nicely cancels vs the fuzz in zero_vruntime not actually
+ * being the zero-lag point).
+ */
static inline s64 entity_key(struct cfs_rq *cfs_rq, struct sched_entity *se)
{
return vruntime_op(se->vruntime, "-", cfs_rq->zero_vruntime);
@@ -676,39 +691,60 @@ sum_w_vruntime_sub(struct cfs_rq *cfs_rq
}
static inline
-void sum_w_vruntime_update(struct cfs_rq *cfs_rq, s64 delta)
+void update_zero_vruntime(struct cfs_rq *cfs_rq, s64 delta)
{
/*
* v' = v + d ==> sum_w_vruntime' = sum_runtime - d*sum_weight
*/
cfs_rq->sum_w_vruntime -= cfs_rq->sum_weight * delta;
+ cfs_rq->zero_vruntime += delta;
}
/*
- * Specifically: avg_runtime() + 0 must result in entity_eligible() := true
+ * Specifically: avg_vruntime() + 0 must result in entity_eligible() := true
* For this to be so, the result of this function must have a left bias.
+ *
+ * Called in:
+ * - place_entity() -- before enqueue
+ * - update_entity_lag() -- before dequeue
+ * - entity_tick()
+ *
+ * This means it is one entry 'behind' but that puts it close enough to where
+ * the bound on entity_key() is at most two lag bounds.
*/
u64 avg_vruntime(struct cfs_rq *cfs_rq)
{
struct sched_entity *curr = cfs_rq->curr;
- s64 avg = cfs_rq->sum_w_vruntime;
- long load = cfs_rq->sum_weight;
+ s64 delta = 0, runtime = cfs_rq->sum_w_vruntime;
+ long weight = cfs_rq->sum_weight;
- if (curr && curr->on_rq) {
- unsigned long weight = scale_load_down(curr->load.weight);
+ if (curr && !curr->on_rq)
+ curr = NULL;
- avg += entity_key(cfs_rq, curr) * weight;
- load += weight;
- }
+ if (weight) {
+ if (curr) {
+ unsigned long w = scale_load_down(curr->load.weight);
+
+ runtime += entity_key(cfs_rq, curr) * w;
+ weight += w;
+ }
- if (load) {
/* sign flips effective floor / ceiling */
- if (avg < 0)
- avg -= (load - 1);
- avg = div_s64(avg, load);
+ if (runtime < 0)
+ runtime -= (weight - 1);
+
+ delta = div_s64(runtime, weight);
+
+ } else if (curr) {
+ /*
+ * When there is but one element, it is the average.
+ */
+ delta = curr->vruntime - cfs_rq->zero_vruntime;
}
- return cfs_rq->zero_vruntime + avg;
+ update_zero_vruntime(cfs_rq, delta);
+
+ return cfs_rq->zero_vruntime;
}
/*
@@ -777,16 +813,6 @@ int entity_eligible(struct cfs_rq *cfs_r
return vruntime_eligible(cfs_rq, se->vruntime);
}
-static void update_zero_vruntime(struct cfs_rq *cfs_rq)
-{
- u64 vruntime = avg_vruntime(cfs_rq);
- s64 delta = vruntime_op(vruntime, "-", cfs_rq->zero_vruntime);
-
- sum_w_vruntime_update(cfs_rq, delta);
-
- cfs_rq->zero_vruntime = vruntime;
-}
-
static inline u64 cfs_rq_min_slice(struct cfs_rq *cfs_rq)
{
struct sched_entity *root = __pick_root_entity(cfs_rq);
@@ -856,7 +882,6 @@ RB_DECLARE_CALLBACKS(static, min_vruntim
static void __enqueue_entity(struct cfs_rq *cfs_rq, struct sched_entity *se)
{
sum_w_vruntime_add(cfs_rq, se);
- update_zero_vruntime(cfs_rq);
se->min_vruntime = se->vruntime;
se->min_slice = se->slice;
rb_add_augmented_cached(&se->run_node, &cfs_rq->tasks_timeline,
@@ -868,7 +893,6 @@ static void __dequeue_entity(struct cfs_
rb_erase_augmented_cached(&se->run_node, &cfs_rq->tasks_timeline,
&min_vruntime_cb);
sum_w_vruntime_sub(cfs_rq, se);
- update_zero_vruntime(cfs_rq);
}
struct sched_entity *__pick_root_entity(struct cfs_rq *cfs_rq)
@@ -5524,6 +5548,11 @@ entity_tick(struct cfs_rq *cfs_rq, struc
update_load_avg(cfs_rq, curr, UPDATE_TG);
update_cfs_group(curr);
+ /*
+ * Pulls along cfs_rq::zero_vruntime.
+ */
+ avg_vruntime(cfs_rq);
+
#ifdef CONFIG_SCHED_HRTICK
/*
* queued ticks are scheduled to match the slice, so don't bother
^ permalink raw reply [flat|nested] 70+ messages in thread
* Re: [PATCH 0/4] sched: Various reweight_entity() fixes
2026-02-09 15:47 ` Peter Zijlstra
@ 2026-02-09 16:52 ` K Prateek Nayak
2026-02-10 5:16 ` K Prateek Nayak
` (2 subsequent siblings)
3 siblings, 0 replies; 70+ messages in thread
From: K Prateek Nayak @ 2026-02-09 16:52 UTC (permalink / raw)
To: Peter Zijlstra
Cc: mingo, juri.lelli, vincent.guittot, dietmar.eggemann, rostedt,
bsegall, mgorman, vschneid, linux-kernel, wangtao554, quzicheng,
wuyun.abel, dsmythies
Hello Peter,
On 2/9/2026 9:17 PM, Peter Zijlstra wrote:
> On Wed, Feb 04, 2026 at 03:45:58PM +0530, K Prateek Nayak wrote:
>
>> # Overflow on enqueue
>>
>> <...>-102371 [255] ... : __enqueue_entity: Overflowed cfs_rq:
>> <...>-102371 [255] ... : dump_h_overflow_cfs_rq: cfs_rq: depth(0) weight(90894772) nr_queued(2) sum_w_vruntime(0) sum_weight(0) zero_vruntime(701164930256050) sum_shift(0) avg_vruntime(701809615900788)
>> <...>-102371 [255] ... : dump_h_overflow_entity: se: weight(3508) vruntime(701809615900788) slice(2800000) deadline(701810568648095) curr?(1) task?(1) <-------- cfs_rq->curr
>> <...>-102371 [255] ... : __enqueue_entity: Overflowed se:
>> <...>-102371 [255] ... : dump_h_overflow_entity: se: weight(90891264) vruntime(701808975077099) slice(2800000) deadline(701808975109401) curr?(0) task?(0) <-------- new se
>
> So I spend a whole time trying to reproduce the splat, but alas.
>
> That said, I did spot something 'funny' in the above, note that
> zero_vruntime and avg_vruntime/curr->vruntime are significantly apart.
> That is not something that should happen. zero_vruntime is supposed to
> closely track avg_vruntime.
>
> That lead me to hypothesise that there is a problem tracking
> zero_vruntime when there is but a single runnable task, and sure
> enough, I could reproduce that, albeit not at such a scale as to lead to
> such problems (probably too much noise on my machine).
>
> I ended up with the below; and I've already pushed out a fresh
> queue/sched/core. Could you please test again?
Thank you for looking into this. I'll merge this onto tip:sched/urgent
and take it for a spin overnight like last time with PARANOID_AVG and
see if the sum_shifts increment this time around.
Will report back tomorrow on the status.
As for the patch itself, I'll take a look at it tomorrow - limited by my
drowsiness at the moment :-)
--
Thanks and Regards,
Prateek
^ permalink raw reply [flat|nested] 70+ messages in thread
* Re: [PATCH 0/4] sched: Various reweight_entity() fixes
2026-02-09 15:47 ` Peter Zijlstra
2026-02-09 16:52 ` K Prateek Nayak
@ 2026-02-10 5:16 ` K Prateek Nayak
2026-02-10 10:29 ` Peter Zijlstra
2026-02-10 15:41 ` Doug Smythies
2026-02-10 20:52 ` Vincent Guittot
3 siblings, 1 reply; 70+ messages in thread
From: K Prateek Nayak @ 2026-02-10 5:16 UTC (permalink / raw)
To: Peter Zijlstra
Cc: mingo, juri.lelli, vincent.guittot, dietmar.eggemann, rostedt,
bsegall, mgorman, vschneid, linux-kernel, wangtao554, quzicheng,
wuyun.abel, dsmythies
Hello Peter,
On 2/9/2026 9:17 PM, Peter Zijlstra wrote:
> I ended up with the below; and I've already pushed out a fresh
> queue/sched/core. Could you please test again?
I haven't seen any "sum_shifts" turning non-zero on the overnight runs,
even with the larger workloads, so feel free to include:
Tested-by: K Prateek Nayak <kprateek.nayak@amd.com>
The overall patch looks good. I only have couple of cosmetic nits
inlined below:
[..snip..]
> u64 avg_vruntime(struct cfs_rq *cfs_rq)
> {
> struct sched_entity *curr = cfs_rq->curr;
> - s64 avg = cfs_rq->sum_w_vruntime;
> - long load = cfs_rq->sum_weight;
> + s64 delta = 0, runtime = cfs_rq->sum_w_vruntime;
nit.
"runtime" is only ever used in "weight" != 0 case so perhaps it can be
moved there to preserve the reverse x-mas (or this whole line can be
moved up top).
> + long weight = cfs_rq->sum_weight;
>
> - if (curr && curr->on_rq) {
> - unsigned long weight = scale_load_down(curr->load.weight);
> + if (curr && !curr->on_rq)
> + curr = NULL;
>
> - avg += entity_key(cfs_rq, curr) * weight;
> - load += weight;
> - }
> + if (weight) {
> + if (curr) {
> + unsigned long w = scale_load_down(curr->load.weight);
> +
> + runtime += entity_key(cfs_rq, curr) * w;
> + weight += w;
> + }
>
> - if (load) {
> /* sign flips effective floor / ceiling */
> - if (avg < 0)
> - avg -= (load - 1);
> - avg = div_s64(avg, load);
> + if (runtime < 0)
> + runtime -= (weight - 1);
> +
> + delta = div_s64(runtime, weight);
> +
nit. Is this empty line necessary?
> + } else if (curr) {
> + /*
> + * When there is but one element, it is the average.
> + */
> + delta = curr->vruntime - cfs_rq->zero_vruntime;
> }
>
> - return cfs_rq->zero_vruntime + avg;
> + update_zero_vruntime(cfs_rq, delta);
> +
> + return cfs_rq->zero_vruntime;
> }
>
> /*
--
Thanks and Regards,
Prateek
^ permalink raw reply [flat|nested] 70+ messages in thread
* Re: [PATCH 0/4] sched: Various reweight_entity() fixes
2026-02-10 5:16 ` K Prateek Nayak
@ 2026-02-10 10:29 ` Peter Zijlstra
0 siblings, 0 replies; 70+ messages in thread
From: Peter Zijlstra @ 2026-02-10 10:29 UTC (permalink / raw)
To: K Prateek Nayak
Cc: mingo, juri.lelli, vincent.guittot, dietmar.eggemann, rostedt,
bsegall, mgorman, vschneid, linux-kernel, wangtao554, quzicheng,
wuyun.abel, dsmythies
On Tue, Feb 10, 2026 at 10:46:28AM +0530, K Prateek Nayak wrote:
> Hello Peter,
>
> On 2/9/2026 9:17 PM, Peter Zijlstra wrote:
> > I ended up with the below; and I've already pushed out a fresh
> > queue/sched/core. Could you please test again?
>
> I haven't seen any "sum_shifts" turning non-zero on the overnight runs,
> even with the larger workloads, so feel free to include:
>
> Tested-by: K Prateek Nayak <kprateek.nayak@amd.com>
Awesome, thanks!
>
> The overall patch looks good. I only have couple of cosmetic nits
> inlined below:
>
> [..snip..]
>
> > u64 avg_vruntime(struct cfs_rq *cfs_rq)
> > {
> > struct sched_entity *curr = cfs_rq->curr;
> > - s64 avg = cfs_rq->sum_w_vruntime;
> > - long load = cfs_rq->sum_weight;
> > + s64 delta = 0, runtime = cfs_rq->sum_w_vruntime;
>
> nit.
>
> "runtime" is only ever used in "weight" != 0 case so perhaps it can be
> moved there to preserve the reverse x-mas (or this whole line can be
> moved up top).
Indeed!
> > + long weight = cfs_rq->sum_weight;
> >
> > - if (curr && curr->on_rq) {
> > - unsigned long weight = scale_load_down(curr->load.weight);
> > + if (curr && !curr->on_rq)
> > + curr = NULL;
> >
> > - avg += entity_key(cfs_rq, curr) * weight;
> > - load += weight;
> > - }
> > + if (weight) {
> > + if (curr) {
> > + unsigned long w = scale_load_down(curr->load.weight);
> > +
> > + runtime += entity_key(cfs_rq, curr) * w;
> > + weight += w;
> > + }
> >
> > - if (load) {
> > /* sign flips effective floor / ceiling */
> > - if (avg < 0)
> > - avg -= (load - 1);
> > - avg = div_s64(avg, load);
> > + if (runtime < 0)
> > + runtime -= (weight - 1);
> > +
> > + delta = div_s64(runtime, weight);
> > +
>
> nit. Is this empty line necessary?
Not really, but somehow I always find myself ending a block with an
empty line when there's an else statement following.
I'll get rid of it :-)
^ permalink raw reply [flat|nested] 70+ messages in thread
* RE: [PATCH 0/4] sched: Various reweight_entity() fixes
2026-02-09 15:47 ` Peter Zijlstra
2026-02-09 16:52 ` K Prateek Nayak
2026-02-10 5:16 ` K Prateek Nayak
@ 2026-02-10 15:41 ` Doug Smythies
2026-02-10 18:09 ` K Prateek Nayak
2026-02-10 18:52 ` Peter Zijlstra
2026-02-10 20:52 ` Vincent Guittot
3 siblings, 2 replies; 70+ messages in thread
From: Doug Smythies @ 2026-02-10 15:41 UTC (permalink / raw)
To: 'Peter Zijlstra', 'K Prateek Nayak'
Cc: mingo, juri.lelli, vincent.guittot, dietmar.eggemann, rostedt,
bsegall, mgorman, vschneid, linux-kernel, wangtao554, quzicheng,
wuyun.abel, Doug Smythies
On 2026.02.09.07:47 Peter Zijlstra wrote:
> On Wed, Feb 04, 2026 at 03:45:58PM +0530, K Prateek Nayak wrote:
>
>> # Overflow on enqueue
>>
>> <...>-102371 [255] ... : __enqueue_entity: Overflowed cfs_rq:
>> <...>-102371 [255] ... : dump_h_overflow_cfs_rq: cfs_rq: depth(0) weight(90894772) nr_queued(2) sum_w_vruntime(0)
sum_weight(0) zero_vruntime(701164930256050) sum_shift(0) avg_vruntime(701809615900788)
>> <...>-102371 [255] ... : dump_h_overflow_entity: se: weight(3508) vruntime(701809615900788) slice(2800000)
deadline(701810568648095) curr?(1) task?(1) <-------- cfs_rq->curr
>> <...>-102371 [255] ... : __enqueue_entity: Overflowed se:
>> <...>-102371 [255] ... : dump_h_overflow_entity: se: weight(90891264) vruntime(701808975077099) slice(2800000)
deadline(701808975109401) curr?(0) task?(0) <-------- new se
>
> So I spend a whole time trying to reproduce the splat, but alas.
>
> That said, I did spot something 'funny' in the above, note that
> zero_vruntime and avg_vruntime/curr->vruntime are significantly apart.
> That is not something that should happen. zero_vruntime is supposed to
> closely track avg_vruntime.
>
> That lead me to hypothesise that there is a problem tracking
> zero_vruntime when there is but a single runnable task, and sure
> enough, I could reproduce that, albeit not at such a scale as to lead to
> such problems (probably too much noise on my machine).
>
> I ended up with the below; and I've already pushed out a fresh
> queue/sched/core. Could you please test again?
I tested this "V2". The CPU migration times test results are not good.
We expect the sample time to not deviate from the nominal 1 second
by more than 10 milliseconds for this test. The test ran for about
13 hours and 41 minutes (49,243 samples). Histogram of times:
kernel: 6.19.0-rc8-pz-v2
gov: powersave
HWP: enabled
1.000, 29206
1.001, 19598
1.002, 19
1.003, 15
1.004, 32
1.005, 25
1.006, 3
1.007, 3
1.008, 5
1.009, 5
1.010, 13
1.011, 14
1.012, 13
1.013, 6
1.014, 10
1.015, 16
1.016, 54
1.017, 116
1.018, 57
1.019, 7
1.020, 2
1.021, 1
1.023, 2
1.024, 4
1.025, 7
1.026, 1
1.027, 1
1.028, 1
1.029, 1
1.030, 2
1.037, 1
Total: 49240 : Total >= 10 mSec: 329 ( 0.67 percent)
For reference previous test results are copied and pasted below.
Step 1: Confirm where we left off a year ago:
The exact same kernel from a year ago, that we ended up happy with, was used.
doug@s19:~/tmp/peterz/6.19/turbo$ cat 613.his
Kernel: 6.13.0-stock
gov: powersave
HWP: enabled
1.000000, 23195
1.001000, 10897
1.002000, 49
1.003000, 23
1.004000, 21
1.005000, 9
Total: 34194 : Total >= 10 mSec: 0 ( 0.00 percent)
So, over 9 hours and never a nominal sample time exceeded by over 5 milliseconds.
Very good.
Step 2: Take a baseline sample before this patch set:
Mainline kernel 6.19-rc1 was used:
doug@s19:~/tmp/peterz/6.19/turbo$ cat rc1.his
Kernel: 6.19.0-rc1-stock
gov: powersave
HWP: enabled
1.000000, 19509
1.001000, 10430
1.002000, 32
1.003000, 19
1.004000, 24
1.005000, 13
1.006000, 9
1.007000, 4
1.008000, 3
1.009000, 4
1.010000, 6
1.011000, 2
1.012000, 1
1.013000, 4
1.014000, 10
1.015000, 10
1.016000, 7
1.017000, 10
1.018000, 20
1.019000, 12
1.020000, 5
1.021000, 3
1.022000, 1
1.023000, 2
1.024000, 2 <<< Clamped. Actually 26 and 25 milliseconds
Total: 30142 : Total >= 10 mSec: 95 ( 0.32 percent)
What!!!
Over 8 hours.
It seems something has regressed over the last year.
Our threshold of 10 milliseconds was rather arbitrary.
Step 3: This patch set [V1] and from Peter's git tree:
doug@s19:~/tmp/peterz/6.19/turbo$ cat 02.his
kernel: 6.19.0-rc1-pz
gov: powersave
HWP: enabled
1.000000, 19139
1.001000, 9532
1.002000, 19
1.003000, 17
1.004000, 8
1.005000, 3
1.006000, 2
1.009000, 1
Total: 28721 : Total >= 10 mSec: 0 ( 0.00 percent)
Just about 8 hours.
Never a time >= our arbitrary threshold of 10 milliseconds.
So, good.
My test computer also hung under the heavy heavy load test,
albeit at a higher load than before.
There was no log information that I could find after the re-boot.
References:
https://lore.kernel.org/lkml/000d01dc939e$0fc99fe0$2f5cdfa0$@telus.net/
https://lore.kernel.org/lkml/005f01db5a44$3bb698e0$b323caa0$@telus.net/
https://lore.kernel.org/lkml/004a01dc952b$471c94a0$d555bde0$@telus.net/
^ permalink raw reply [flat|nested] 70+ messages in thread
* Re: [PATCH 0/4] sched: Various reweight_entity() fixes
2026-02-10 15:41 ` Doug Smythies
@ 2026-02-10 18:09 ` K Prateek Nayak
2026-02-10 18:35 ` Peter Zijlstra
2026-02-11 23:09 ` Doug Smythies
2026-02-10 18:52 ` Peter Zijlstra
1 sibling, 2 replies; 70+ messages in thread
From: K Prateek Nayak @ 2026-02-10 18:09 UTC (permalink / raw)
To: Doug Smythies, 'Peter Zijlstra'
Cc: mingo, juri.lelli, vincent.guittot, dietmar.eggemann, rostedt,
bsegall, mgorman, vschneid, linux-kernel, wangtao554, quzicheng,
wuyun.abel
Hello Doug,
On 2/10/2026 9:11 PM, Doug Smythies wrote:
> My test computer also hung under the heavy heavy load test,
> albeit at a higher load than before.
> There was no log information that I could find after the re-boot.
Could you run the same scenario with PARANOID_AVG:
echo PARANOID_AVG > /sys/kernel/debug/sched/features
and once you are past the point when the system would have usually
hung, can check if the "sum_shifts" reported for cfs_rq in the
debugfs have changed to some non-zero value:
grep "shift.*: [^0]$" /sys/kernel/debug/sched/debug
I'm assuming this is the same "yes" x 12500 copies bomb that failed.
Let me see if I can reproduce this on my setup by leaving it going
overnight on a limited cpuset.
Since you mentioned there is some bound to the number of copies when
the hang is observed, can you please share your system details and
the number of CPUs it has?
--
Thanks and Regards,
Prateek
^ permalink raw reply [flat|nested] 70+ messages in thread
* Re: [PATCH 0/4] sched: Various reweight_entity() fixes
2026-02-03 16:36 ` Doug Smythies
@ 2026-02-10 18:13 ` Peter Zijlstra
2026-02-11 5:51 ` Doug Smythies
0 siblings, 1 reply; 70+ messages in thread
From: Peter Zijlstra @ 2026-02-10 18:13 UTC (permalink / raw)
To: Doug Smythies
Cc: 'K Prateek Nayak', mingo, juri.lelli, vincent.guittot,
dietmar.eggemann, rostedt, bsegall, mgorman, vschneid,
linux-kernel, wangtao554, quzicheng, wuyun.abel
On Tue, Feb 03, 2026 at 08:36:41AM -0800, Doug Smythies wrote:
> Further to my email from the other day, where all was good [1],
> I have continued to test, in particular the severe overload conditions
> from [2].
> Conditions:
> Greater than 12,500 X (yes > /dev/null) tasks
> But less than 15,000 X ( yes > /dev/null) tasks
>
> I have tested up to 20,000 X (yes > /dev/null) tasks
> with previous kernels, including mainline 6.19-rc1.
>
> I would not disagree if you say my operating conditions
> are ridiculous.
They absolutely are; however!, people do crazy things so I doubt you are
alone.
> System:
> Processor: Intel(R) Core(TM) i5-10600K CPU @ 4.10GHz, 6 cores 12 CPUs.
> CPU frequency scaling driver: intel_pstate; Governor powersave.
Right, so I was too lazy to find a matching test machine, but instead
used taskset to limit myself to 6 cores/12 threads and let it rip.
# taskset -c -p 0-5,24-29 $$
# for ((i=0; i<20000; i++)) do yes > /dev/null & done
... a *LONG* while later ...
And I have reached 15k.
... this is *SLOW* ...
So I reached 20000 and figured what the heck and went for another 5k.
Eventually I managed to reach 21160, and then boom.
It is one of those pick_next_task_fair() NULL pointer derefs that are so
very indicative of math overflow.
I'll try and have a poke, if only this were a faster thing ;-)
^ permalink raw reply [flat|nested] 70+ messages in thread
* Re: [PATCH 0/4] sched: Various reweight_entity() fixes
2026-02-10 18:09 ` K Prateek Nayak
@ 2026-02-10 18:35 ` Peter Zijlstra
2026-02-10 20:04 ` K Prateek Nayak
2026-02-11 23:09 ` Doug Smythies
1 sibling, 1 reply; 70+ messages in thread
From: Peter Zijlstra @ 2026-02-10 18:35 UTC (permalink / raw)
To: K Prateek Nayak
Cc: Doug Smythies, mingo, juri.lelli, vincent.guittot,
dietmar.eggemann, rostedt, bsegall, mgorman, vschneid,
linux-kernel, wangtao554, quzicheng, wuyun.abel
On Tue, Feb 10, 2026 at 11:39:14PM +0530, K Prateek Nayak wrote:
> Since you mentioned there is some bound to the number of copies when
> the hang is observed, can you please share your system details and
> the number of CPUs it has?
He had that information in another email, 6 cores/12 threads.
For me, I got to 21160 spread over 12 threads when it went boom. That
translates to aroun 1763 per CPU. Which is a fairly silly number of
active tasks, but it *should* work.
It's a bit tedious to reproduce, but I'll prod at it some too.
^ permalink raw reply [flat|nested] 70+ messages in thread
* Re: [PATCH 0/4] sched: Various reweight_entity() fixes
2026-02-10 15:41 ` Doug Smythies
2026-02-10 18:09 ` K Prateek Nayak
@ 2026-02-10 18:52 ` Peter Zijlstra
1 sibling, 0 replies; 70+ messages in thread
From: Peter Zijlstra @ 2026-02-10 18:52 UTC (permalink / raw)
To: Doug Smythies
Cc: 'K Prateek Nayak', mingo, juri.lelli, vincent.guittot,
dietmar.eggemann, rostedt, bsegall, mgorman, vschneid,
linux-kernel, wangtao554, quzicheng, wuyun.abel
On Tue, Feb 10, 2026 at 07:41:58AM -0800, Doug Smythies wrote:
> On 2026.02.09.07:47 Peter Zijlstra wrote:
> > On Wed, Feb 04, 2026 at 03:45:58PM +0530, K Prateek Nayak wrote:
> >
> >> # Overflow on enqueue
> >>
> >> <...>-102371 [255] ... : __enqueue_entity: Overflowed cfs_rq:
> >> <...>-102371 [255] ... : dump_h_overflow_cfs_rq: cfs_rq: depth(0) weight(90894772) nr_queued(2) sum_w_vruntime(0)
> sum_weight(0) zero_vruntime(701164930256050) sum_shift(0) avg_vruntime(701809615900788)
> >> <...>-102371 [255] ... : dump_h_overflow_entity: se: weight(3508) vruntime(701809615900788) slice(2800000)
> deadline(701810568648095) curr?(1) task?(1) <-------- cfs_rq->curr
> >> <...>-102371 [255] ... : __enqueue_entity: Overflowed se:
> >> <...>-102371 [255] ... : dump_h_overflow_entity: se: weight(90891264) vruntime(701808975077099) slice(2800000)
> deadline(701808975109401) curr?(0) task?(0) <-------- new se
> >
> > So I spend a whole time trying to reproduce the splat, but alas.
> >
> > That said, I did spot something 'funny' in the above, note that
> > zero_vruntime and avg_vruntime/curr->vruntime are significantly apart.
> > That is not something that should happen. zero_vruntime is supposed to
> > closely track avg_vruntime.
> >
> > That lead me to hypothesise that there is a problem tracking
> > zero_vruntime when there is but a single runnable task, and sure
> > enough, I could reproduce that, albeit not at such a scale as to lead to
> > such problems (probably too much noise on my machine).
> >
> > I ended up with the below; and I've already pushed out a fresh
> > queue/sched/core. Could you please test again?
>
> I tested this "V2". The CPU migration times test results are not good.
> We expect the sample time to not deviate from the nominal 1 second
> by more than 10 milliseconds for this test. The test ran for about
> 13 hours and 41 minutes (49,243 samples). Histogram of times:
>
> It seems something has regressed over the last year.
> Our threshold of 10 milliseconds was rather arbitrary.
Moo.. I'll go dig out that benchmark too.
^ permalink raw reply [flat|nested] 70+ messages in thread
* Re: [PATCH 0/4] sched: Various reweight_entity() fixes
2026-02-10 18:35 ` Peter Zijlstra
@ 2026-02-10 20:04 ` K Prateek Nayak
2026-02-11 6:28 ` K Prateek Nayak
0 siblings, 1 reply; 70+ messages in thread
From: K Prateek Nayak @ 2026-02-10 20:04 UTC (permalink / raw)
To: Peter Zijlstra
Cc: Doug Smythies, mingo, juri.lelli, vincent.guittot,
dietmar.eggemann, rostedt, bsegall, mgorman, vschneid,
linux-kernel, wangtao554, quzicheng, wuyun.abel
On 2/11/2026 12:05 AM, Peter Zijlstra wrote:
> On Tue, Feb 10, 2026 at 11:39:14PM +0530, K Prateek Nayak wrote:
>
>
>> Since you mentioned there is some bound to the number of copies when
>> the hang is observed, can you please share your system details and
>> the number of CPUs it has?
>
> He had that information in another email, 6 cores/12 threads.
Ah! My bad. should have dug deeper.
>
> For me, I got to 21160 spread over 12 threads when it went boom. That
> translates to aroun 1763 per CPU. Which is a fairly silly number of
> active tasks, but it *should* work.
>
> It's a bit tedious to reproduce, but I'll prod at it some too.
My machine hasn't cracked yet with 30k instances. I'll too will prod
more tomorrow.
--
Thanks and Regards,
Prateek
^ permalink raw reply [flat|nested] 70+ messages in thread
* Re: [PATCH 0/4] sched: Various reweight_entity() fixes
2026-02-09 15:47 ` Peter Zijlstra
` (2 preceding siblings ...)
2026-02-10 15:41 ` Doug Smythies
@ 2026-02-10 20:52 ` Vincent Guittot
2026-02-11 5:21 ` Doug Smythies
2026-02-11 8:48 ` Peter Zijlstra
3 siblings, 2 replies; 70+ messages in thread
From: Vincent Guittot @ 2026-02-10 20:52 UTC (permalink / raw)
To: Peter Zijlstra
Cc: K Prateek Nayak, mingo, juri.lelli, dietmar.eggemann, rostedt,
bsegall, mgorman, vschneid, linux-kernel, wangtao554, quzicheng,
wuyun.abel, dsmythies
On Mon, 9 Feb 2026 at 16:47, Peter Zijlstra <peterz@infradead.org> wrote:
>
> On Wed, Feb 04, 2026 at 03:45:58PM +0530, K Prateek Nayak wrote:
>
> > # Overflow on enqueue
> >
> > <...>-102371 [255] ... : __enqueue_entity: Overflowed cfs_rq:
> > <...>-102371 [255] ... : dump_h_overflow_cfs_rq: cfs_rq: depth(0) weight(90894772) nr_queued(2) sum_w_vruntime(0) sum_weight(0) zero_vruntime(701164930256050) sum_shift(0) avg_vruntime(701809615900788)
> > <...>-102371 [255] ... : dump_h_overflow_entity: se: weight(3508) vruntime(701809615900788) slice(2800000) deadline(701810568648095) curr?(1) task?(1) <-------- cfs_rq->curr
> > <...>-102371 [255] ... : __enqueue_entity: Overflowed se:
> > <...>-102371 [255] ... : dump_h_overflow_entity: se: weight(90891264) vruntime(701808975077099) slice(2800000) deadline(701808975109401) curr?(0) task?(0) <-------- new se
>
> So I spend a whole time trying to reproduce the splat, but alas.
>
> That said, I did spot something 'funny' in the above, note that
> zero_vruntime and avg_vruntime/curr->vruntime are significantly apart.
> That is not something that should happen. zero_vruntime is supposed to
> closely track avg_vruntime.
>
> That lead me to hypothesise that there is a problem tracking
> zero_vruntime when there is but a single runnable task, and sure
> enough, I could reproduce that, albeit not at such a scale as to lead to
> such problems (probably too much noise on my machine).
>
> I ended up with the below; and I've already pushed out a fresh
> queue/sched/core. Could you please test again?
>
> ---
> Subject: sched/fair: Fix zero_vruntime tracking
> From: Peter Zijlstra <peterz@infradead.org>
> Date: Mon Feb 9 15:28:16 CET 2026
>
> It turns out that zero_vruntime tracking is broken when there is but a single
> task running. Current update paths are through __{en,de}queue_entity(), and
> when there is but a single task, pick_next_task() will always return that one
> task, and put_prev_set_next_task() will end up in neither function.
>
> This can cause entity_key() to grow indefinitely large and cause overflows,
> leading to much pain and suffering.
>
> Furtermore, doing update_zero_vruntime() from __{de,en}queue_entity(), which
> are called from {set_next,put_prev}_entity() has problems because:
>
> - set_next_entity() calls __dequeue_entity() before it does cfs_rq->curr = se.
> This means the avg_vruntime() will see the removal but not current, missing
> the entity for accounting.
>
> - put_prev_entity() calls __enqueue_entity() before it does cfs_rq->curr =
> NULL. This means the avg_vruntime() will see the addition *and* current,
> leading to double accounting.
>
> Both cases are incorrect.
>
> Noting that avg_vruntime is already called on each {en,de}queue, remove the
> explicit avg_vruntime() calls (which removes an extra 64bit division for each
> {en,de}queue) and have avg_vruntime() update zero_vruntime itself.
>
> Additionally, have the tick call avg_vruntime() -- discarding the result, but
> for the side-effect of updating zero_vruntime.
>
> While there, optimize avg_vruntime() by noting that the average of one value is
> rather trivial to compute.
>
> Test case:
> # taskset -c -p 1 $$
> # taskset -c 2 bash -c 'while :; do :; done&'
> # cat /sys/kernel/debug/sched/debug | awk '/^cpu#/ {P=0} /^cpu#2,/ {P=1} {if (P) print $0}' | grep -e zero_vruntime -e "^>"
>
> PRE:
> .zero_vruntime : 31316.407903
> >R bash 487 50787.345112 E 50789.145972 2.800000 50780.298364 16 120 0.000000 0.000000 0.000000 /
> .zero_vruntime : 382548.253179
> >R bash 487 427275.204288 E 427276.003584 2.800000 427268.157540 23 120 0.000000 0.000000 0.000000 /
>
> POST:
> .zero_vruntime : 17259.709467
> >R bash 526 17259.709467 E 17262.509467 2.800000 16915.031624 9 120 0.000000 0.000000 0.000000 /
> .zero_vruntime : 18702.723356
> >R bash 526 18702.723356 E 18705.523356 2.800000 18358.045513 9 120 0.000000 0.000000 0.000000 /
>
> Fixes: 79f3f9bedd14 ("sched/eevdf: Fix min_vruntime vs avg_vruntime")
> Reported-by: K Prateek Nayak <kprateek.nayak@amd.com>
> Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Hi Peter,
This patch w/ the patchset on top of tip/sched/core create regressions
for hackbench (tbench doesn't seem to be impacted) on my dragonboard
rb5
All hackbench tests are regressing. Some results below
hackbench 1 group process socket
0.579(+/-1.3%) vs 0.697-+/-2.7%) : -20%
hackbench 8 group process socket
0.650(+/-1%) vs 2.361(+/-8.8%) : -263%
hackbench 1 group thread pipe
0.885(+/-1.6%) vs 0.969-+/-1.4%) : -10%
hackbench 8 group thread pipe
0.689(+/-3.2%) vs 1.916(+/-6.7%) : -178%
The regression starts with patch 3
I haven't found the root cause and will look more deeply tomorrow
> ---
> kernel/sched/fair.c | 81 +++++++++++++++++++++++++++++++++++-----------------
> 1 file changed, 55 insertions(+), 26 deletions(-)
>
> --- a/kernel/sched/fair.c
> +++ b/kernel/sched/fair.c
> @@ -589,6 +589,21 @@ static inline bool entity_before(const s
> return vruntime_cmp(a->deadline, "<", b->deadline);
> }
>
> +/*
> + * Per avg_vruntime() below, cfs_rq::zero_vruntime is only slightly stale
> + * and this value should be no more than two lag bounds. Which puts it in the
> + * general order of:
> + *
> + * (slice + TICK_NSEC) << NICE_0_LOAD_SHIFT
> + *
> + * which is around 44 bits in size (on 64bit); that is 20 for
> + * NICE_0_LOAD_SHIFT, another 20 for NSEC_PER_MSEC and then a handful for
> + * however many msec the actual slice+tick ends up begin.
> + *
> + * (disregarding the actual divide-by-weight part makes for the worst case
> + * weight of 2, which nicely cancels vs the fuzz in zero_vruntime not actually
> + * being the zero-lag point).
> + */
> static inline s64 entity_key(struct cfs_rq *cfs_rq, struct sched_entity *se)
> {
> return vruntime_op(se->vruntime, "-", cfs_rq->zero_vruntime);
> @@ -676,39 +691,60 @@ sum_w_vruntime_sub(struct cfs_rq *cfs_rq
> }
>
> static inline
> -void sum_w_vruntime_update(struct cfs_rq *cfs_rq, s64 delta)
> +void update_zero_vruntime(struct cfs_rq *cfs_rq, s64 delta)
> {
> /*
> * v' = v + d ==> sum_w_vruntime' = sum_runtime - d*sum_weight
> */
> cfs_rq->sum_w_vruntime -= cfs_rq->sum_weight * delta;
> + cfs_rq->zero_vruntime += delta;
> }
>
> /*
> - * Specifically: avg_runtime() + 0 must result in entity_eligible() := true
> + * Specifically: avg_vruntime() + 0 must result in entity_eligible() := true
> * For this to be so, the result of this function must have a left bias.
> + *
> + * Called in:
> + * - place_entity() -- before enqueue
> + * - update_entity_lag() -- before dequeue
> + * - entity_tick()
> + *
> + * This means it is one entry 'behind' but that puts it close enough to where
> + * the bound on entity_key() is at most two lag bounds.
> */
> u64 avg_vruntime(struct cfs_rq *cfs_rq)
> {
> struct sched_entity *curr = cfs_rq->curr;
> - s64 avg = cfs_rq->sum_w_vruntime;
> - long load = cfs_rq->sum_weight;
> + s64 delta = 0, runtime = cfs_rq->sum_w_vruntime;
> + long weight = cfs_rq->sum_weight;
>
> - if (curr && curr->on_rq) {
> - unsigned long weight = scale_load_down(curr->load.weight);
> + if (curr && !curr->on_rq)
> + curr = NULL;
>
> - avg += entity_key(cfs_rq, curr) * weight;
> - load += weight;
> - }
> + if (weight) {
> + if (curr) {
> + unsigned long w = scale_load_down(curr->load.weight);
> +
> + runtime += entity_key(cfs_rq, curr) * w;
> + weight += w;
> + }
>
> - if (load) {
> /* sign flips effective floor / ceiling */
> - if (avg < 0)
> - avg -= (load - 1);
> - avg = div_s64(avg, load);
> + if (runtime < 0)
> + runtime -= (weight - 1);
> +
> + delta = div_s64(runtime, weight);
> +
> + } else if (curr) {
> + /*
> + * When there is but one element, it is the average.
> + */
> + delta = curr->vruntime - cfs_rq->zero_vruntime;
> }
>
> - return cfs_rq->zero_vruntime + avg;
> + update_zero_vruntime(cfs_rq, delta);
> +
> + return cfs_rq->zero_vruntime;
> }
>
> /*
> @@ -777,16 +813,6 @@ int entity_eligible(struct cfs_rq *cfs_r
> return vruntime_eligible(cfs_rq, se->vruntime);
> }
>
> -static void update_zero_vruntime(struct cfs_rq *cfs_rq)
> -{
> - u64 vruntime = avg_vruntime(cfs_rq);
> - s64 delta = vruntime_op(vruntime, "-", cfs_rq->zero_vruntime);
> -
> - sum_w_vruntime_update(cfs_rq, delta);
> -
> - cfs_rq->zero_vruntime = vruntime;
> -}
> -
> static inline u64 cfs_rq_min_slice(struct cfs_rq *cfs_rq)
> {
> struct sched_entity *root = __pick_root_entity(cfs_rq);
> @@ -856,7 +882,6 @@ RB_DECLARE_CALLBACKS(static, min_vruntim
> static void __enqueue_entity(struct cfs_rq *cfs_rq, struct sched_entity *se)
> {
> sum_w_vruntime_add(cfs_rq, se);
> - update_zero_vruntime(cfs_rq);
> se->min_vruntime = se->vruntime;
> se->min_slice = se->slice;
> rb_add_augmented_cached(&se->run_node, &cfs_rq->tasks_timeline,
> @@ -868,7 +893,6 @@ static void __dequeue_entity(struct cfs_
> rb_erase_augmented_cached(&se->run_node, &cfs_rq->tasks_timeline,
> &min_vruntime_cb);
> sum_w_vruntime_sub(cfs_rq, se);
> - update_zero_vruntime(cfs_rq);
> }
>
> struct sched_entity *__pick_root_entity(struct cfs_rq *cfs_rq)
> @@ -5524,6 +5548,11 @@ entity_tick(struct cfs_rq *cfs_rq, struc
> update_load_avg(cfs_rq, curr, UPDATE_TG);
> update_cfs_group(curr);
>
> + /*
> + * Pulls along cfs_rq::zero_vruntime.
> + */
> + avg_vruntime(cfs_rq);
> +
> #ifdef CONFIG_SCHED_HRTICK
> /*
> * queued ticks are scheduled to match the slice, so don't bother
^ permalink raw reply [flat|nested] 70+ messages in thread
* RE: [PATCH 0/4] sched: Various reweight_entity() fixes
2026-02-10 20:52 ` Vincent Guittot
@ 2026-02-11 5:21 ` Doug Smythies
2026-02-11 8:49 ` Vincent Guittot
2026-02-11 8:48 ` Peter Zijlstra
1 sibling, 1 reply; 70+ messages in thread
From: Doug Smythies @ 2026-02-11 5:21 UTC (permalink / raw)
To: 'Vincent Guittot', 'Peter Zijlstra'
Cc: 'K Prateek Nayak', mingo, juri.lelli, dietmar.eggemann,
rostedt, bsegall, mgorman, vschneid, linux-kernel, wangtao554,
quzicheng, wuyun.abel, Doug Smythies
On 2026.02.10 12:52 Vincent Guittot wrote:
> On Mon, 9 Feb 2026 at 16:47, Peter Zijlstra <peterz@infradead.org> wrote:
>> On Wed, Feb 04, 2026 at 03:45:58PM +0530, K Prateek Nayak wrote:
>
... delete ...
> This patch w/ the patchset on top of tip/sched/core create regressions
> for hackbench (tbench doesn't seem to be impacted) on my dragonboard
> rb5
> All hackbench tests are regressing. Some results below
...
> hackbench 8 group process socket
> 0.650(+/-1%) vs 2.361(+/-8.8%) : -263%
...
Very interesting.
I only know of the Phoronix version of hackbench.
I ran what I believe to be a similar scenario to yours:
10 test runs each (the default is 3):
Kernel 6.19-rc8: 23.228 seconds average, deviation 0.39%
Kernel 6.19-rc8-pz-v2: 85.755 seconds average, deviation 3.33%
269% regression. (very similar to Vicent's results)
System:
Processor: Intel(R) Core(TM) i5-10600K CPU @ 4.10GHz, 6 cores 12 CPUs.
CPU frequency scaling driver: intel_pstate.
CPU frequency scaling governor: powersave.
HWP: enabled.
idle governor teo.
^ permalink raw reply [flat|nested] 70+ messages in thread
* RE: [PATCH 0/4] sched: Various reweight_entity() fixes
2026-02-10 18:13 ` Peter Zijlstra
@ 2026-02-11 5:51 ` Doug Smythies
0 siblings, 0 replies; 70+ messages in thread
From: Doug Smythies @ 2026-02-11 5:51 UTC (permalink / raw)
To: 'Peter Zijlstra'
Cc: 'K Prateek Nayak', mingo, juri.lelli, vincent.guittot,
dietmar.eggemann, rostedt, bsegall, mgorman, vschneid,
linux-kernel, wangtao554, quzicheng, Doug Smythies
[-- Attachment #1: Type: text/plain, Size: 1898 bytes --]
On 2026.02.10 10:13 Peter Zijlstra wrote:
> On Tue, Feb 03, 2026 at 08:36:41AM -0800, Doug Smythies wrote:
>
>> Further to my email from the other day, where all was good [1],
>> I have continued to test, in particular the severe overload conditions
>> from [2].
>
>> Conditions:
>> Greater than 12,500 X (yes > /dev/null) tasks
>> But less than 15,000 X ( yes > /dev/null) tasks
>>
>> I have tested up to 20,000 X (yes > /dev/null) tasks
>> with previous kernels, including mainline 6.19-rc1.
>>
>> I would not disagree if you say my operating conditions
>> are ridiculous.
>
> They absolutely are; however!, people do crazy things so I doubt you are
> alone.
>
>> System:
>> Processor: Intel(R) Core(TM) i5-10600K CPU @ 4.10GHz, 6 cores 12 CPUs.
>> CPU frequency scaling driver: intel_pstate; Governor powersave.
>
> Right, so I was too lazy to find a matching test machine, but instead
> used taskset to limit myself to 6 cores/12 threads and let it rip.
>
> # taskset -c -p 0-5,24-29 $$
> # for ((i=0; i<20000; i++)) do yes > /dev/null & done
>
> ... a *LONG* while later ...
>
> And I have reached 15k.
>
> ... this is *SLOW* ...
Thanks for trying it.
And yes it gets very slow. I should have warned readers.
With the first version of this patch set it took my computer 20 minutes
to spin out 18,000 tasks. A graph is attached.
Note that more typically I could not get to 18,000 tasks. I don't know a
predictable way to create the hang.
By the way, I had no issue with 80,000 tasks, if they contained some
regular sleep time. A graph is attached. The load average was 79,400.
> So I reached 20000 and figured what the heck and went for another 5k.
>
> Eventually I managed to reach 21160, and then boom.
>
> It is one of those pick_next_task_fair() NULL pointer derefs that are so
> very indicative of math overflow.
>
> I'll try and have a poke, if only this were a faster thing ;-)
[-- Attachment #2: pz-tasks.png --]
[-- Type: image/png, Size: 17326 bytes --]
[-- Attachment #3: tasks-80000.png --]
[-- Type: image/png, Size: 25273 bytes --]
^ permalink raw reply [flat|nested] 70+ messages in thread
* Re: [PATCH 0/4] sched: Various reweight_entity() fixes
2026-02-10 20:04 ` K Prateek Nayak
@ 2026-02-11 6:28 ` K Prateek Nayak
2026-02-11 8:50 ` K Prateek Nayak
0 siblings, 1 reply; 70+ messages in thread
From: K Prateek Nayak @ 2026-02-11 6:28 UTC (permalink / raw)
To: Peter Zijlstra
Cc: Doug Smythies, mingo, juri.lelli, vincent.guittot,
dietmar.eggemann, rostedt, bsegall, mgorman, vschneid,
linux-kernel, wangtao554, quzicheng, wuyun.abel
[-- Attachment #1: Type: text/plain, Size: 1603 bytes --]
On 2/11/2026 1:34 AM, K Prateek Nayak wrote:
> My machine hasn't cracked yet with 30k instances. I'll too will prod
> more tomorrow.
So it did crack after a while and turns out it is not a result of
overflow but some other weirdness. I'll leave the full log below but
when I see pick returning NULL, the cfs_rq looks like:
(Note: All logs have curr?(1) which is incorrect. The first "se"
after the "cfs_rq" log is likely the actual "cfs_rq->curr".)
cfs_rq of overflow:
cfs_rq: depth(0) weight(2150629376) nr_queued(2051) sum_w_vruntime(5064132716358795264) sum_weight(2149580800) zero_vruntime(18446744071726874277) sum_shift(0) avg_vruntime(18446744071726874277)
se: weight(1048576) vruntime(18446744069623207599) slice(2800000) deadline(18446744069626004775) curr?(1) task?(0)
^^^
This is likely the curr since I print it first and it has a very
different vruntime compared to others.
se: weight(1048576) vruntime(373218199) slice(2800000) deadline(373446702) curr?(1) task?(0)
se: weight(1048576) vruntime(371876685) slice(2800000) deadline(373815965) curr?(1) task?(0)
se: weight(1048576) vruntime(372314317) slice(2800000) deadline(373817932) curr?(1) task?(0)
se: weight(1048576) vruntime(371022075) slice(2800000) deadline(373819151) curr?(1) task?(0)
... few thousand more se but they have similar vruntime, slice, deadline
I'll go back and fix my debug patch to give a full view of series of
events that leads to this but in the meantime I've added the full log
below if someone wants to take a look.
--
Thanks and Regards,
Prateek
[-- Attachment #2: crash.log --]
[-- Type: text/plain, Size: 478751 bytes --]
[ 3597.125611][T52604] cfs_rq of overflow:
[ 3597.129895][T52604] cfs_rq: depth(0) weight(2150629376) nr_queued(2051) sum_w_vruntime(5064132716358795264) sum_weight(2149580800) zero_vruntime(18446744071726874277) sum_shift(0) avg_vruntime(18446744071726874277)
[ 3597.151144][T52604] se: weight(1048576) vruntime(18446744069623207599) slice(2800000) deadline(18446744069626004775) curr?(1) task?(0)
[ 3597.164633][T52604] se: weight(1048576) vruntime(373218199) slice(2800000) deadline(373446702) curr?(1) task?(0)
[ 3597.175988][T52604] se: weight(1048576) vruntime(371876685) slice(2800000) deadline(373815965) curr?(1) task?(0)
[ 3597.187344][T52604] se: weight(1048576) vruntime(372314317) slice(2800000) deadline(373817932) curr?(1) task?(0)
[ 3597.198702][T52604] se: weight(1048576) vruntime(371022075) slice(2800000) deadline(373819151) curr?(1) task?(0)
[ 3597.210058][T52604] se: weight(1048576) vruntime(371021926) slice(2800000) deadline(373819933) curr?(1) task?(0)
[ 3597.221415][T52604] se: weight(1048576) vruntime(371024680) slice(2800000) deadline(373820994) curr?(1) task?(0)
[ 3597.232772][T52604] se: weight(1048576) vruntime(371025329) slice(2800000) deadline(373822054) curr?(1) task?(0)
[ 3597.244129][T52604] se: weight(1048576) vruntime(371025579) slice(2800000) deadline(373823416) curr?(1) task?(0)
[ 3597.255484][T52604] se: weight(1048576) vruntime(371029988) slice(2800000) deadline(373824850) curr?(1) task?(0)
[ 3597.266840][T52604] se: weight(1048576) vruntime(371026685) slice(2800000) deadline(373824923) curr?(1) task?(0)
[ 3597.278195][T52604] se: weight(1048576) vruntime(371028210) slice(2800000) deadline(373825326) curr?(1) task?(0)
[ 3597.289554][T52604] se: weight(1048576) vruntime(371027706) slice(2800000) deadline(373825413) curr?(1) task?(0)
[ 3597.300914][T52604] se: weight(1048576) vruntime(372171878) slice(2800000) deadline(373826550) curr?(1) task?(0)
[ 3597.312264][T52604] se: weight(1048576) vruntime(371030162) slice(2800000) deadline(373826987) curr?(1) task?(0)
[ 3597.323620][T52604] se: weight(1048576) vruntime(371031553) slice(2800000) deadline(373827607) curr?(1) task?(0)
[ 3597.334968][T52604] se: weight(1048576) vruntime(371046374) slice(2800000) deadline(373829839) curr?(1) task?(0)
[ 3597.346320][T52604] se: weight(1048576) vruntime(372141770) slice(2800000) deadline(373830273) curr?(1) task?(0)
[ 3597.357676][T52604] se: weight(1048576) vruntime(371034528) slice(2800000) deadline(373832655) curr?(1) task?(0)
[ 3597.369035][T52604] se: weight(1048576) vruntime(371035278) slice(2800000) deadline(373833104) curr?(1) task?(0)
[ 3597.380394][T52604] se: weight(1048576) vruntime(371035992) slice(2800000) deadline(373833889) curr?(1) task?(0)
[ 3597.391752][T52604] se: weight(1048576) vruntime(371037150) slice(2800000) deadline(373833925) curr?(1) task?(0)
[ 3597.403111][T52604] se: weight(1048576) vruntime(371039526) slice(2800000) deadline(373834158) curr?(1) task?(0)
[ 3597.414468][T52604] se: weight(1048576) vruntime(371039175) slice(2800000) deadline(373836601) curr?(1) task?(0)
[ 3597.425823][T52604] se: weight(1048576) vruntime(371041584) slice(2800000) deadline(373839471) curr?(1) task?(0)
[ 3597.437180][T52604] se: weight(1048576) vruntime(371042368) slice(2800000) deadline(373839774) curr?(1) task?(0)
[ 3597.448539][T52604] se: weight(1048576) vruntime(372223233) slice(2800000) deadline(373839798) curr?(1) task?(0)
[ 3597.459896][T52604] se: weight(1048576) vruntime(372179775) slice(2800000) deadline(373841918) curr?(1) task?(0)
[ 3597.471256][T52604] se: weight(1048576) vruntime(371044163) slice(2800000) deadline(373842191) curr?(1) task?(0)
[ 3597.482614][T52604] se: weight(1048576) vruntime(371044711) slice(2800000) deadline(373842878) curr?(1) task?(0)
[ 3597.493970][T52604] se: weight(1048576) vruntime(371045850) slice(2800000) deadline(373843486) curr?(1) task?(0)
[ 3597.505327][T52604] se: weight(1048576) vruntime(371049649) slice(2800000) deadline(373845513) curr?(1) task?(0)
[ 3597.516684][T52604] se: weight(1048576) vruntime(372282218) slice(2800000) deadline(373846896) curr?(1) task?(0)
[ 3597.528039][T52604] se: weight(1048576) vruntime(371054889) slice(2800000) deadline(373851814) curr?(1) task?(0)
[ 3597.539398][T52604] se: weight(1048576) vruntime(371055983) slice(2800000) deadline(373852628) curr?(1) task?(0)
[ 3597.550749][T52604] se: weight(1048576) vruntime(371055796) slice(2800000) deadline(373853522) curr?(1) task?(0)
[ 3597.562106][T52604] se: weight(1048576) vruntime(371059157) slice(2800000) deadline(373856944) curr?(1) task?(0)
[ 3597.573462][T52604] se: weight(1048576) vruntime(371062493) slice(2800000) deadline(373858307) curr?(1) task?(0)
[ 3597.584811][T52604] se: weight(1048576) vruntime(371061297) slice(2800000) deadline(373858593) curr?(1) task?(0)
[ 3597.596165][T52604] se: weight(1048576) vruntime(372227534) slice(2800000) deadline(373860944) curr?(1) task?(0)
[ 3597.607521][T52604] se: weight(1048576) vruntime(371064327) slice(2800000) deadline(373861553) curr?(1) task?(0)
[ 3597.618881][T52604] se: weight(1048576) vruntime(371068680) slice(2800000) deadline(373862561) curr?(1) task?(0)
[ 3597.630239][T52604] se: weight(1048576) vruntime(372350717) slice(2800000) deadline(373862975) curr?(1) task?(0)
[ 3597.641600][T52604] se: weight(1048576) vruntime(372210581) slice(2800000) deadline(373864201) curr?(1) task?(0)
[ 3597.652957][T52604] se: weight(1048576) vruntime(371069448) slice(2800000) deadline(373867135) curr?(1) task?(0)
[ 3597.664314][T52604] se: weight(1048576) vruntime(372199129) slice(2800000) deadline(373867662) curr?(1) task?(0)
[ 3597.675669][T52604] se: weight(1048576) vruntime(372210583) slice(2800000) deadline(373869762) curr?(1) task?(0)
[ 3597.687025][T52604] se: weight(1048576) vruntime(372173321) slice(2800000) deadline(373870426) curr?(1) task?(0)
[ 3597.698380][T52604] se: weight(1048576) vruntime(371076345) slice(2800000) deadline(373872049) curr?(1) task?(0)
[ 3597.709739][T52604] se: weight(1048576) vruntime(371076179) slice(2800000) deadline(373872153) curr?(1) task?(0)
[ 3597.721099][T52604] se: weight(1048576) vruntime(371075876) slice(2800000) deadline(373873983) curr?(1) task?(0)
[ 3597.732458][T52604] se: weight(1048576) vruntime(372191684) slice(2800000) deadline(373880657) curr?(1) task?(0)
[ 3597.743813][T52604] se: weight(1048576) vruntime(371085624) slice(2800000) deadline(373880937) curr?(1) task?(0)
[ 3597.755171][T52604] se: weight(1048576) vruntime(371087860) slice(2800000) deadline(373881180) curr?(1) task?(0)
[ 3597.766524][T52604] se: weight(1048576) vruntime(371090613) slice(2800000) deadline(373885446) curr?(1) task?(0)
[ 3597.777880][T52604] se: weight(1048576) vruntime(372229600) slice(2800000) deadline(373887607) curr?(1) task?(0)
[ 3597.789241][T52604] se: weight(1048576) vruntime(371090183) slice(2800000) deadline(373887859) curr?(1) task?(0)
[ 3597.800599][T52604] se: weight(1048576) vruntime(372250986) slice(2800000) deadline(373889865) curr?(1) task?(0)
[ 3597.811958][T52604] se: weight(1048576) vruntime(371094367) slice(2800000) deadline(373890782) curr?(1) task?(0)
[ 3597.823314][T52604] se: weight(1048576) vruntime(371092582) slice(2800000) deadline(373890889) curr?(1) task?(0)
[ 3597.834672][T52604] se: weight(1048576) vruntime(372390457) slice(2800000) deadline(373892871) curr?(1) task?(0)
[ 3597.846025][T52604] se: weight(1048576) vruntime(372192864) slice(2800000) deadline(373893965) curr?(1) task?(0)
[ 3597.857382][T52604] se: weight(1048576) vruntime(371098935) slice(2800000) deadline(373894148) curr?(1) task?(0)
[ 3597.868739][T52604] se: weight(1048576) vruntime(371097802) slice(2800000) deadline(373896079) curr?(1) task?(0)
[ 3597.880095][T52604] se: weight(1048576) vruntime(372213677) slice(2800000) deadline(373897302) curr?(1) task?(0)
[ 3597.891455][T52604] se: weight(1048576) vruntime(371103092) slice(2800000) deadline(373897564) curr?(1) task?(0)
[ 3597.902814][T52604] se: weight(1048576) vruntime(371102930) slice(2800000) deadline(373898163) curr?(1) task?(0)
[ 3597.914170][T52604] se: weight(1048576) vruntime(372255292) slice(2800000) deadline(373898727) curr?(1) task?(0)
[ 3597.925526][T52604] se: weight(1048576) vruntime(371103333) slice(2800000) deadline(373899377) curr?(1) task?(0)
[ 3597.936882][T52604] se: weight(1048576) vruntime(372266409) slice(2800000) deadline(373902073) curr?(1) task?(0)
[ 3597.948239][T52604] se: weight(1048576) vruntime(371108369) slice(2800000) deadline(373902731) curr?(1) task?(0)
[ 3597.959599][T52604] se: weight(1048576) vruntime(371109158) slice(2800000) deadline(373907135) curr?(1) task?(0)
[ 3597.970958][T52604] se: weight(1048576) vruntime(372341244) slice(2800000) deadline(373907333) curr?(1) task?(0)
[ 3597.982315][T52604] se: weight(1048576) vruntime(371113217) slice(2800000) deadline(373910884) curr?(1) task?(0)
[ 3597.993671][T52604] se: weight(1048576) vruntime(371117746) slice(2800000) deadline(373911637) curr?(1) task?(0)
[ 3598.005027][T52604] se: weight(1048576) vruntime(371114165) slice(2800000) deadline(373911921) curr?(1) task?(0)
[ 3598.016381][T52604] se: weight(1048576) vruntime(372433446) slice(2800000) deadline(373914488) curr?(1) task?(0)
[ 3598.027738][T52604] se: weight(1048576) vruntime(372289884) slice(2800000) deadline(373914871) curr?(1) task?(0)
[ 3598.039096][T52604] se: weight(1048576) vruntime(371120196) slice(2800000) deadline(373916180) curr?(1) task?(0)
[ 3598.050453][T52604] se: weight(1048576) vruntime(371125494) slice(2800000) deadline(373919986) curr?(1) task?(0)
[ 3598.061814][T52604] se: weight(1048576) vruntime(371123799) slice(2800000) deadline(373920023) curr?(1) task?(0)
[ 3598.073171][T52604] se: weight(1048576) vruntime(372227536) slice(2800000) deadline(373922048) curr?(1) task?(0)
[ 3598.084530][T52604] se: weight(1048576) vruntime(371129084) slice(2800000) deadline(373927221) curr?(1) task?(0)
[ 3598.095885][T52604] se: weight(1048576) vruntime(372253139) slice(2800000) deadline(373927420) curr?(1) task?(0)
[ 3598.107241][T52604] se: weight(1048576) vruntime(372268082) slice(2800000) deadline(373928052) curr?(1) task?(0)
[ 3598.118591][T52604] se: weight(1048576) vruntime(371132576) slice(2800000) deadline(373930142) curr?(1) task?(0)
[ 3598.129948][T52604] se: weight(1048576) vruntime(371134600) slice(2800000) deadline(373930634) curr?(1) task?(0)
[ 3598.141308][T52604] se: weight(1048576) vruntime(371135697) slice(2800000) deadline(373931621) curr?(1) task?(0)
[ 3598.152665][T52604] se: weight(1048576) vruntime(371138991) slice(2800000) deadline(373932842) curr?(1) task?(0)
[ 3598.164021][T52604] se: weight(1048576) vruntime(371142897) slice(2800000) deadline(373936608) curr?(1) task?(0)
[ 3598.175379][T52604] se: weight(1048576) vruntime(371145007) slice(2800000) deadline(373941682) curr?(1) task?(0)
[ 3598.186734][T52604] se: weight(1048576) vruntime(372316423) slice(2800000) deadline(373944906) curr?(1) task?(0)
[ 3598.198091][T52604] se: weight(1048576) vruntime(372275832) slice(2800000) deadline(373946728) curr?(1) task?(0)
[ 3598.209450][T52604] se: weight(1048576) vruntime(372311778) slice(2800000) deadline(373953430) curr?(1) task?(0)
[ 3598.220809][T52604] se: weight(1048576) vruntime(371163824) slice(2800000) deadline(373958446) curr?(1) task?(0)
[ 3598.232169][T52604] se: weight(1048576) vruntime(372327574) slice(2800000) deadline(373959252) curr?(1) task?(0)
[ 3598.243524][T52604] se: weight(1048576) vruntime(371161963) slice(2800000) deadline(373960090) curr?(1) task?(0)
[ 3598.254881][T52604] se: weight(1048576) vruntime(371165225) slice(2800000) deadline(373960398) curr?(1) task?(0)
[ 3598.266235][T52604] se: weight(1048576) vruntime(371165692) slice(2800000) deadline(373962938) curr?(1) task?(0)
[ 3598.277592][T52604] se: weight(1048576) vruntime(371167198) slice(2800000) deadline(373964574) curr?(1) task?(0)
[ 3598.288950][T52604] se: weight(1048576) vruntime(371171540) slice(2800000) deadline(373965671) curr?(1) task?(0)
[ 3598.300305][T52604] se: weight(1048576) vruntime(371169750) slice(2800000) deadline(373967176) curr?(1) task?(0)
[ 3598.311666][T52604] se: weight(1048576) vruntime(372280071) slice(2800000) deadline(373968253) curr?(1) task?(0)
[ 3598.323024][T52604] se: weight(1048576) vruntime(371172546) slice(2800000) deadline(373969782) curr?(1) task?(0)
[ 3598.334381][T52604] se: weight(1048576) vruntime(371175396) slice(2800000) deadline(373970899) curr?(1) task?(0)
[ 3598.345737][T52604] se: weight(1048576) vruntime(372364499) slice(2800000) deadline(373971670) curr?(1) task?(0)
[ 3598.357092][T52604] se: weight(1048576) vruntime(372296634) slice(2800000) deadline(373972268) curr?(1) task?(0)
[ 3598.368447][T52604] se: weight(1048576) vruntime(371182174) slice(2800000) deadline(373977918) curr?(1) task?(0)
[ 3598.379805][T52604] se: weight(1048576) vruntime(372348147) slice(2800000) deadline(373977922) curr?(1) task?(0)
[ 3598.391165][T52604] se: weight(1048576) vruntime(372387732) slice(2800000) deadline(373979209) curr?(1) task?(0)
[ 3598.402514][T52604] se: weight(1048576) vruntime(371187382) slice(2800000) deadline(373983787) curr?(1) task?(0)
[ 3598.413869][T52604] se: weight(1048576) vruntime(371186600) slice(2800000) deadline(373984126) curr?(1) task?(0)
[ 3598.425226][T52604] se: weight(1048576) vruntime(371192352) slice(2800000) deadline(373987605) curr?(1) task?(0)
[ 3598.436581][T52604] se: weight(1048576) vruntime(371190264) slice(2800000) deadline(373988631) curr?(1) task?(0)
[ 3598.447937][T52604] se: weight(1048576) vruntime(371190716) slice(2800000) deadline(373988733) curr?(1) task?(0)
[ 3598.459296][T52604] se: weight(1048576) vruntime(371192203) slice(2800000) deadline(373990361) curr?(1) task?(0)
[ 3598.470653][T52604] se: weight(1048576) vruntime(372438545) slice(2800000) deadline(373990944) curr?(1) task?(0)
[ 3598.482014][T52604] se: weight(1048576) vruntime(371196889) slice(2800000) deadline(373991151) curr?(1) task?(0)
[ 3598.493370][T52604] se: weight(1048576) vruntime(371197429) slice(2800000) deadline(373991790) curr?(1) task?(0)
[ 3598.504728][T52604] se: weight(1048576) vruntime(371196312) slice(2800000) deadline(373994429) curr?(1) task?(0)
[ 3598.516083][T52604] se: weight(1048576) vruntime(371196839) slice(2800000) deadline(373994756) curr?(1) task?(0)
[ 3598.527440][T52604] se: weight(1048576) vruntime(371202264) slice(2800000) deadline(373996306) curr?(1) task?(0)
[ 3598.538799][T52604] se: weight(1048576) vruntime(371200600) slice(2800000) deadline(373996844) curr?(1) task?(0)
[ 3598.550157][T52604] se: weight(1048576) vruntime(371200438) slice(2800000) deadline(373997173) curr?(1) task?(0)
[ 3598.561518][T52604] se: weight(1048576) vruntime(371202397) slice(2800000) deadline(373997179) curr?(1) task?(0)
[ 3598.572876][T52604] se: weight(1048576) vruntime(372469448) slice(2800000) deadline(374001106) curr?(1) task?(0)
[ 3598.584232][T52604] se: weight(1048576) vruntime(371207359) slice(2800000) deadline(374003624) curr?(1) task?(0)
[ 3598.595591][T52604] se: weight(1048576) vruntime(371209275) slice(2800000) deadline(374005970) curr?(1) task?(0)
[ 3598.606947][T52604] se: weight(1048576) vruntime(371210563) slice(2800000) deadline(374006828) curr?(1) task?(0)
[ 3598.618303][T52604] se: weight(1048576) vruntime(371213262) slice(2800000) deadline(374009206) curr?(1) task?(0)
[ 3598.629661][T52604] se: weight(1048576) vruntime(371214786) slice(2800000) deadline(374009427) curr?(1) task?(0)
[ 3598.641021][T52604] se: weight(1048576) vruntime(371215257) slice(2800000) deadline(374012443) curr?(1) task?(0)
[ 3598.652380][T52604] se: weight(1048576) vruntime(371215980) slice(2800000) deadline(374012855) curr?(1) task?(0)
[ 3598.663735][T52604] se: weight(1048576) vruntime(372376392) slice(2800000) deadline(374018235) curr?(1) task?(0)
[ 3598.675093][T52604] se: weight(1048576) vruntime(372332287) slice(2800000) deadline(374019157) curr?(1) task?(0)
[ 3598.686449][T52604] se: weight(1048576) vruntime(371222589) slice(2800000) deadline(374020676) curr?(1) task?(0)
[ 3598.697807][T52604] se: weight(1048576) vruntime(371224461) slice(2800000) deadline(374020906) curr?(1) task?(0)
[ 3598.709164][T52604] se: weight(1048576) vruntime(371225829) slice(2800000) deadline(374021262) curr?(1) task?(0)
[ 3598.720520][T52604] se: weight(1048576) vruntime(371224654) slice(2800000) deadline(374021279) curr?(1) task?(0)
[ 3598.731872][T52604] se: weight(1048576) vruntime(371227176) slice(2800000) deadline(374024973) curr?(1) task?(0)
[ 3598.743231][T52604] se: weight(1048576) vruntime(371230688) slice(2800000) deadline(374027393) curr?(1) task?(0)
[ 3598.754587][T52604] se: weight(1048576) vruntime(371233164) slice(2800000) deadline(374029087) curr?(1) task?(0)
[ 3598.765943][T52604] se: weight(1048576) vruntime(371234462) slice(2800000) deadline(374029254) curr?(1) task?(0)
[ 3598.777298][T52604] se: weight(1048576) vruntime(371234433) slice(2800000) deadline(374029415) curr?(1) task?(0)
[ 3598.788653][T52604] se: weight(1048576) vruntime(372492128) slice(2800000) deadline(374030466) curr?(1) task?(0)
[ 3598.800012][T52604] se: weight(1048576) vruntime(371234896) slice(2800000) deadline(374031220) curr?(1) task?(0)
[ 3598.811363][T52604] se: weight(1048576) vruntime(372633890) slice(2800000) deadline(374032758) curr?(1) task?(0)
[ 3598.822721][T52604] se: weight(1048576) vruntime(371237507) slice(2800000) deadline(374033020) curr?(1) task?(0)
[ 3598.834077][T52604] se: weight(1048576) vruntime(372403282) slice(2800000) deadline(374033066) curr?(1) task?(0)
[ 3598.845433][T52604] se: weight(1048576) vruntime(371238101) slice(2800000) deadline(374034285) curr?(1) task?(0)
[ 3598.856786][T52604] se: weight(1048576) vruntime(372445812) slice(2800000) deadline(374034816) curr?(1) task?(0)
[ 3598.868142][T52604] se: weight(1048576) vruntime(371239704) slice(2800000) deadline(374035859) curr?(1) task?(0)
[ 3598.879501][T52604] se: weight(1048576) vruntime(371240850) slice(2800000) deadline(374036063) curr?(1) task?(0)
[ 3598.890859][T52604] se: weight(1048576) vruntime(371239653) slice(2800000) deadline(374036889) curr?(1) task?(0)
[ 3598.902218][T52604] se: weight(1048576) vruntime(371246248) slice(2800000) deadline(374042172) curr?(1) task?(0)
[ 3598.913575][T52604] se: weight(1048576) vruntime(371248126) slice(2800000) deadline(374042487) curr?(1) task?(0)
[ 3598.924924][T52604] se: weight(1048576) vruntime(371249485) slice(2800000) deadline(374042675) curr?(1) task?(0)
[ 3598.936277][T52604] se: weight(1048576) vruntime(372389035) slice(2800000) deadline(374046111) curr?(1) task?(0)
[ 3598.947632][T52604] se: weight(1048576) vruntime(372580223) slice(2800000) deadline(374048897) curr?(1) task?(0)
[ 3598.958990][T52604] se: weight(1048576) vruntime(371253730) slice(2800000) deadline(374049584) curr?(1) task?(0)
[ 3598.970347][T52604] se: weight(1048576) vruntime(372443869) slice(2800000) deadline(374049828) curr?(1) task?(0)
[ 3598.981709][T52604] se: weight(1048576) vruntime(371255437) slice(2800000) deadline(374051120) curr?(1) task?(0)
[ 3598.993067][T52604] se: weight(1048576) vruntime(372527799) slice(2800000) deadline(374051365) curr?(1) task?(0)
[ 3599.004423][T52604] se: weight(1048576) vruntime(372376394) slice(2800000) deadline(374054491) curr?(1) task?(0)
[ 3599.015779][T52604] se: weight(1048576) vruntime(371259778) slice(2800000) deadline(374054921) curr?(1) task?(0)
[ 3599.027135][T52604] se: weight(1048576) vruntime(371262143) slice(2800000) deadline(374057977) curr?(1) task?(0)
[ 3599.038491][T52604] se: weight(1048576) vruntime(371261880) slice(2800000) deadline(374058875) curr?(1) task?(0)
[ 3599.049848][T52604] se: weight(1048576) vruntime(372358832) slice(2800000) deadline(374059183) curr?(1) task?(0)
[ 3599.061205][T52604] se: weight(1048576) vruntime(372415982) slice(2800000) deadline(374060629) curr?(1) task?(0)
[ 3599.072564][T52604] se: weight(1048576) vruntime(372471551) slice(2800000) deadline(374062087) curr?(1) task?(0)
[ 3599.083920][T52604] se: weight(1048576) vruntime(371270431) slice(2800000) deadline(374065343) curr?(1) task?(0)
[ 3599.095276][T52604] se: weight(1048576) vruntime(372452901) slice(2800000) deadline(374065991) curr?(1) task?(0)
[ 3599.106632][T52604] se: weight(1048576) vruntime(371273057) slice(2800000) deadline(374068880) curr?(1) task?(0)
[ 3599.117989][T52604] se: weight(1048576) vruntime(372440504) slice(2800000) deadline(374072132) curr?(1) task?(0)
[ 3599.129346][T52604] se: weight(1048576) vruntime(371275839) slice(2800000) deadline(374073275) curr?(1) task?(0)
[ 3599.140703][T52604] se: weight(1048576) vruntime(371277955) slice(2800000) deadline(374073579) curr?(1) task?(0)
[ 3599.152064][T52604] se: weight(1048576) vruntime(371280325) slice(2800000) deadline(374076569) curr?(1) task?(0)
[ 3599.163423][T52604] se: weight(1048576) vruntime(371283377) slice(2800000) deadline(374078870) curr?(1) task?(0)
[ 3599.174780][T52604] se: weight(1048576) vruntime(371288760) slice(2800000) deadline(374083392) curr?(1) task?(0)
[ 3599.186136][T52604] se: weight(1048576) vruntime(371291912) slice(2800000) deadline(374084350) curr?(1) task?(0)
[ 3599.197491][T52604] se: weight(1048576) vruntime(372515851) slice(2800000) deadline(374085775) curr?(1) task?(0)
[ 3599.208848][T52604] se: weight(1048576) vruntime(371291204) slice(2800000) deadline(374086026) curr?(1) task?(0)
[ 3599.220206][T52604] se: weight(1048576) vruntime(371292612) slice(2800000) deadline(374087705) curr?(1) task?(0)
[ 3599.231565][T52604] se: weight(1048576) vruntime(371296151) slice(2800000) deadline(374091974) curr?(1) task?(0)
[ 3599.242923][T52604] se: weight(1048576) vruntime(372417793) slice(2800000) deadline(374092074) curr?(1) task?(0)
[ 3599.254279][T52604] se: weight(1048576) vruntime(372488502) slice(2800000) deadline(374093249) curr?(1) task?(0)
[ 3599.265635][T52604] se: weight(1048576) vruntime(372427080) slice(2800000) deadline(374094511) curr?(1) task?(0)
[ 3599.276988][T52604] se: weight(1048576) vruntime(372394771) slice(2800000) deadline(374096043) curr?(1) task?(0)
[ 3599.288344][T52604] se: weight(1048576) vruntime(371298899) slice(2800000) deadline(374096486) curr?(1) task?(0)
[ 3599.299704][T52604] se: weight(1048576) vruntime(371310987) slice(2800000) deadline(374096866) curr?(1) task?(0)
[ 3599.311060][T52604] se: weight(1048576) vruntime(371303698) slice(2800000) deadline(374099471) curr?(1) task?(0)
[ 3599.322420][T52604] se: weight(1048576) vruntime(371303422) slice(2800000) deadline(374100548) curr?(1) task?(0)
[ 3599.333778][T52604] se: weight(1048576) vruntime(372722925) slice(2800000) deadline(374101974) curr?(1) task?(0)
[ 3599.345136][T52604] se: weight(1048576) vruntime(371306142) slice(2800000) deadline(374102947) curr?(1) task?(0)
[ 3599.356490][T52604] se: weight(1048576) vruntime(372505449) slice(2800000) deadline(374103836) curr?(1) task?(0)
[ 3599.367846][T52604] se: weight(1048576) vruntime(371308727) slice(2800000) deadline(374105512) curr?(1) task?(0)
[ 3599.379204][T52604] se: weight(1048576) vruntime(371309967) slice(2800000) deadline(374105951) curr?(1) task?(0)
[ 3599.390560][T52604] se: weight(1048576) vruntime(371310425) slice(2800000) deadline(374106750) curr?(1) task?(0)
[ 3599.401911][T52604] se: weight(1048576) vruntime(372450045) slice(2800000) deadline(374107521) curr?(1) task?(0)
[ 3599.413270][T52604] se: weight(1048576) vruntime(371316041) slice(2800000) deadline(374111063) curr?(1) task?(0)
[ 3599.424627][T52604] se: weight(1048576) vruntime(371314426) slice(2800000) deadline(374111131) curr?(1) task?(0)
[ 3599.435985][T52604] se: weight(1048576) vruntime(372529916) slice(2800000) deadline(374111629) curr?(1) task?(0)
[ 3599.447341][T52604] se: weight(1048576) vruntime(371316062) slice(2800000) deadline(374112286) curr?(1) task?(0)
[ 3599.458697][T52604] se: weight(1048576) vruntime(371319341) slice(2800000) deadline(374112911) curr?(1) task?(0)
[ 3599.470055][T52604] se: weight(1048576) vruntime(372498748) slice(2800000) deadline(374113030) curr?(1) task?(0)
[ 3599.481412][T52604] se: weight(1048576) vruntime(371320790) slice(2800000) deadline(374117976) curr?(1) task?(0)
[ 3599.492774][T52604] se: weight(1048576) vruntime(372514265) slice(2800000) deadline(374118151) curr?(1) task?(0)
[ 3599.504128][T52604] se: weight(1048576) vruntime(371322522) slice(2800000) deadline(374120279) curr?(1) task?(0)
[ 3599.515487][T52604] se: weight(1048576) vruntime(372548474) slice(2800000) deadline(374122404) curr?(1) task?(0)
[ 3599.526840][T52604] se: weight(1048576) vruntime(371327225) slice(2800000) deadline(374123720) curr?(1) task?(0)
[ 3599.538197][T52604] se: weight(1048576) vruntime(371329205) slice(2800000) deadline(374125540) curr?(1) task?(0)
[ 3599.549553][T52604] se: weight(1048576) vruntime(371333352) slice(2800000) deadline(374128585) curr?(1) task?(0)
[ 3599.560908][T52604] se: weight(1048576) vruntime(372478550) slice(2800000) deadline(374130849) curr?(1) task?(0)
[ 3599.572270][T52604] se: weight(1048576) vruntime(371333899) slice(2800000) deadline(374130985) curr?(1) task?(0)
[ 3599.583629][T52604] se: weight(1048576) vruntime(371336955) slice(2800000) deadline(374131447) curr?(1) task?(0)
[ 3599.594985][T52604] se: weight(1048576) vruntime(371334628) slice(2800000) deadline(374131523) curr?(1) task?(0)
[ 3599.606340][T52604] se: weight(1048576) vruntime(372565889) slice(2800000) deadline(374131868) curr?(1) task?(0)
[ 3599.617696][T52604] se: weight(1048576) vruntime(371335930) slice(2800000) deadline(374134278) curr?(1) task?(0)
[ 3599.629051][T52604] se: weight(1048576) vruntime(371340086) slice(2800000) deadline(374136070) curr?(1) task?(0)
[ 3599.640410][T52604] se: weight(1048576) vruntime(371340113) slice(2800000) deadline(374137449) curr?(1) task?(0)
[ 3599.651762][T52604] se: weight(1048576) vruntime(372589095) slice(2800000) deadline(374138699) curr?(1) task?(0)
[ 3599.663120][T52604] se: weight(1048576) vruntime(372550020) slice(2800000) deadline(374139785) curr?(1) task?(0)
[ 3599.674475][T52604] se: weight(1048576) vruntime(371345075) slice(2800000) deadline(374140268) curr?(1) task?(0)
[ 3599.685833][T52604] se: weight(1048576) vruntime(371347041) slice(2800000) deadline(374140772) curr?(1) task?(0)
[ 3599.697187][T52604] se: weight(1048576) vruntime(371345931) slice(2800000) deadline(374140974) curr?(1) task?(0)
[ 3599.708544][T52604] se: weight(1048576) vruntime(371346620) slice(2800000) deadline(374142564) curr?(1) task?(0)
[ 3599.719902][T52604] se: weight(1048576) vruntime(372484897) slice(2800000) deadline(374143605) curr?(1) task?(0)
[ 3599.731258][T52604] se: weight(1048576) vruntime(372518054) slice(2800000) deadline(374143944) curr?(1) task?(0)
[ 3599.742617][T52604] se: weight(1048576) vruntime(371352858) slice(2800000) deadline(374149092) curr?(1) task?(0)
[ 3599.753972][T52604] se: weight(1048576) vruntime(372668344) slice(2800000) deadline(374149346) curr?(1) task?(0)
[ 3599.765328][T52604] se: weight(1048576) vruntime(371354563) slice(2800000) deadline(374152129) curr?(1) task?(0)
[ 3599.776682][T52604] se: weight(1048576) vruntime(371360630) slice(2800000) deadline(374155763) curr?(1) task?(0)
[ 3599.788039][T52604] se: weight(1048576) vruntime(371366268) slice(2800000) deadline(374160429) curr?(1) task?(0)
[ 3599.799389][T52604] se: weight(1048576) vruntime(372625443) slice(2800000) deadline(374160615) curr?(1) task?(0)
[ 3599.810747][T52604] se: weight(1048576) vruntime(372514266) slice(2800000) deadline(374164010) curr?(1) task?(0)
[ 3599.822108][T52604] se: weight(1048576) vruntime(372772616) slice(2800000) deadline(374169581) curr?(1) task?(0)
[ 3599.833467][T52604] se: weight(1048576) vruntime(371371491) slice(2800000) deadline(374169839) curr?(1) task?(0)
[ 3599.844823][T52604] se: weight(1048576) vruntime(371373173) slice(2800000) deadline(374171100) curr?(1) task?(0)
[ 3599.856180][T52604] se: weight(1048576) vruntime(371377825) slice(2800000) deadline(374173579) curr?(1) task?(0)
[ 3599.867534][T52604] se: weight(1048576) vruntime(372570928) slice(2800000) deadline(374176296) curr?(1) task?(0)
[ 3599.878889][T52604] se: weight(1048576) vruntime(371381727) slice(2800000) deadline(374178122) curr?(1) task?(0)
[ 3599.890249][T52604] se: weight(1048576) vruntime(371384123) slice(2800000) deadline(374180367) curr?(1) task?(0)
[ 3599.901606][T52604] se: weight(1048576) vruntime(371386368) slice(2800000) deadline(374182512) curr?(1) task?(0)
[ 3599.912956][T52604] se: weight(1048576) vruntime(372578752) slice(2800000) deadline(374182637) curr?(1) task?(0)
[ 3599.924312][T52604] se: weight(1048576) vruntime(372621466) slice(2800000) deadline(374184371) curr?(1) task?(0)
[ 3599.935670][T52604] se: weight(1048576) vruntime(372510083) slice(2800000) deadline(374185666) curr?(1) task?(0)
[ 3599.947025][T52604] se: weight(1048576) vruntime(371391483) slice(2800000) deadline(374185694) curr?(1) task?(0)
[ 3599.958381][T52604] se: weight(1048576) vruntime(371390387) slice(2800000) deadline(374187143) curr?(1) task?(0)
[ 3599.969738][T52604] se: weight(1048576) vruntime(371393946) slice(2800000) deadline(374187998) curr?(1) task?(0)
[ 3599.981095][T52604] se: weight(1048576) vruntime(372620607) slice(2800000) deadline(374191143) curr?(1) task?(0)
[ 3599.992455][T52604] se: weight(1048576) vruntime(371397204) slice(2800000) deadline(374193188) curr?(1) task?(0)
[ 3600.003814][T52604] se: weight(1048576) vruntime(371403350) slice(2800000) deadline(374196940) curr?(1) task?(0)
[ 3600.015164][T52604] se: weight(1048576) vruntime(372740334) slice(2800000) deadline(374197600) curr?(1) task?(0)
[ 3600.026520][T52604] se: weight(1048576) vruntime(371402326) slice(2800000) deadline(374198420) curr?(1) task?(0)
[ 3600.037876][T52604] se: weight(1048576) vruntime(371401190) slice(2800000) deadline(374199117) curr?(1) task?(0)
[ 3600.049231][T52604] se: weight(1048576) vruntime(371407333) slice(2800000) deadline(374201945) curr?(1) task?(0)
[ 3600.060589][T52604] se: weight(1048576) vruntime(371408806) slice(2800000) deadline(374203678) curr?(1) task?(0)
[ 3600.071948][T52604] se: weight(1048576) vruntime(371408712) slice(2800000) deadline(374204766) curr?(1) task?(0)
[ 3600.083307][T52604] se: weight(1048576) vruntime(371415829) slice(2800000) deadline(374212063) curr?(1) task?(0)
[ 3600.094664][T52604] se: weight(1048576) vruntime(372582111) slice(2800000) deadline(374212688) curr?(1) task?(0)
[ 3600.106020][T52604] se: weight(1048576) vruntime(372547501) slice(2800000) deadline(374212909) curr?(1) task?(0)
[ 3600.117373][T52604] se: weight(1048576) vruntime(371417375) slice(2800000) deadline(374214740) curr?(1) task?(0)
[ 3600.128729][T52604] se: weight(1048576) vruntime(371421565) slice(2800000) deadline(374217228) curr?(1) task?(0)
[ 3600.140087][T52604] se: weight(1048576) vruntime(371424912) slice(2800000) deadline(374219133) curr?(1) task?(0)
[ 3600.151445][T52604] se: weight(1048576) vruntime(372620608) slice(2800000) deadline(374219156) curr?(1) task?(0)
[ 3600.162804][T52604] se: weight(1048576) vruntime(371425619) slice(2800000) deadline(374221964) curr?(1) task?(0)
[ 3600.174160][T52604] se: weight(1048576) vruntime(372713486) slice(2800000) deadline(374225053) curr?(1) task?(0)
[ 3600.185517][T52604] se: weight(1048576) vruntime(371434965) slice(2800000) deadline(374231330) curr?(1) task?(0)
[ 3600.196871][T52604] se: weight(1048576) vruntime(372591104) slice(2800000) deadline(374231455) curr?(1) task?(0)
[ 3600.208227][T52604] se: weight(1048576) vruntime(372760206) slice(2800000) deadline(374231573) curr?(1) task?(0)
[ 3600.219576][T52604] se: weight(1048576) vruntime(371434914) slice(2800000) deadline(374232560) curr?(1) task?(0)
[ 3600.230934][T52604] se: weight(1048576) vruntime(371437927) slice(2800000) deadline(374233370) curr?(1) task?(0)
[ 3600.242295][T52604] se: weight(1048576) vruntime(371446094) slice(2800000) deadline(374243601) curr?(1) task?(0)
[ 3600.253653][T52604] se: weight(1048576) vruntime(371449564) slice(2800000) deadline(374244507) curr?(1) task?(0)
[ 3600.265010][T52604] se: weight(1048576) vruntime(371449941) slice(2800000) deadline(374244583) curr?(1) task?(0)
[ 3600.276367][T52604] se: weight(1048576) vruntime(371452685) slice(2800000) deadline(374247547) curr?(1) task?(0)
[ 3600.287721][T52604] se: weight(1048576) vruntime(371454765) slice(2800000) deadline(374253013) curr?(1) task?(0)
[ 3600.299078][T52604] se: weight(1048576) vruntime(371460207) slice(2800000) deadline(374257783) curr?(1) task?(0)
[ 3600.310438][T52604] se: weight(1048576) vruntime(371460632) slice(2800000) deadline(374258288) curr?(1) task?(0)
[ 3600.321796][T52604] se: weight(1048576) vruntime(371462906) slice(2800000) deadline(374260152) curr?(1) task?(0)
[ 3600.333145][T52604] se: weight(1048576) vruntime(371464018) slice(2800000) deadline(374261143) curr?(1) task?(0)
[ 3600.344500][T52604] se: weight(1048576) vruntime(371464759) slice(2800000) deadline(374262475) curr?(1) task?(0)
[ 3600.355848][T52604] se: weight(1048576) vruntime(371466777) slice(2800000) deadline(374262630) curr?(1) task?(0)
[ 3600.367200][T52604] se: weight(1048576) vruntime(371467188) slice(2800000) deadline(374263312) curr?(1) task?(0)
[ 3600.378556][T52604] se: weight(1048576) vruntime(372563769) slice(2800000) deadline(374264289) curr?(1) task?(0)
[ 3600.389912][T52604] se: weight(1048576) vruntime(371472492) slice(2800000) deadline(374266653) curr?(1) task?(0)
[ 3600.401269][T52604] se: weight(1048576) vruntime(372616690) slice(2800000) deadline(374266685) curr?(1) task?(0)
[ 3600.412628][T52604] se: weight(1048576) vruntime(371472732) slice(2800000) deadline(374267024) curr?(1) task?(0)
[ 3600.423986][T52604] se: weight(1048576) vruntime(371475780) slice(2800000) deadline(374270541) curr?(1) task?(0)
[ 3600.435344][T52604] se: weight(1048576) vruntime(371478752) slice(2800000) deadline(374273825) curr?(1) task?(0)
[ 3600.446700][T52604] se: weight(1048576) vruntime(371478242) slice(2800000) deadline(374274706) curr?(1) task?(0)
[ 3600.458055][T52604] se: weight(1048576) vruntime(371478736) slice(2800000) deadline(374274971) curr?(1) task?(0)
[ 3600.469410][T52604] se: weight(1048576) vruntime(372645889) slice(2800000) deadline(374275544) curr?(1) task?(0)
[ 3600.480770][T52604] se: weight(1048576) vruntime(371479763) slice(2800000) deadline(374275767) curr?(1) task?(0)
[ 3600.492121][T52604] se: weight(1048576) vruntime(372644444) slice(2800000) deadline(374277874) curr?(1) task?(0)
[ 3600.503479][T52604] se: weight(1048576) vruntime(372664050) slice(2800000) deadline(374278622) curr?(1) task?(0)
[ 3600.514836][T52604] se: weight(1048576) vruntime(371483120) slice(2800000) deadline(374278864) curr?(1) task?(0)
[ 3600.526194][T52604] se: weight(1048576) vruntime(371483305) slice(2800000) deadline(374279530) curr?(1) task?(0)
[ 3600.537547][T52604] se: weight(1048576) vruntime(371484103) slice(2800000) deadline(374279877) curr?(1) task?(0)
[ 3600.548903][T52604] se: weight(1048576) vruntime(371485211) slice(2800000) deadline(374280334) curr?(1) task?(0)
[ 3600.560262][T52604] se: weight(1048576) vruntime(371486826) slice(2800000) deadline(374280897) curr?(1) task?(0)
[ 3600.571620][T52604] se: weight(1048576) vruntime(372645891) slice(2800000) deadline(374281175) curr?(1) task?(0)
[ 3600.582980][T52604] se: weight(1048576) vruntime(371486746) slice(2800000) deadline(374281458) curr?(1) task?(0)
[ 3600.594336][T52604] se: weight(1048576) vruntime(371490551) slice(2800000) deadline(374286946) curr?(1) task?(0)
[ 3600.605693][T52604] se: weight(1048576) vruntime(371489419) slice(2800000) deadline(374287366) curr?(1) task?(0)
[ 3600.617048][T52604] se: weight(1048576) vruntime(371492180) slice(2800000) deadline(374287593) curr?(1) task?(0)
[ 3600.628405][T52604] se: weight(1048576) vruntime(371492225) slice(2800000) deadline(374287638) curr?(1) task?(0)
[ 3600.639755][T52604] se: weight(1048576) vruntime(371492330) slice(2800000) deadline(374288354) curr?(1) task?(0)
[ 3600.651112][T52604] se: weight(1048576) vruntime(371494333) slice(2800000) deadline(374289986) curr?(1) task?(0)
[ 3600.662472][T52604] se: weight(1048576) vruntime(371495933) slice(2800000) deadline(374293269) curr?(1) task?(0)
[ 3600.673830][T52604] se: weight(1048576) vruntime(371496485) slice(2800000) deadline(374293901) curr?(1) task?(0)
[ 3600.685187][T52604] se: weight(1048576) vruntime(371499100) slice(2800000) deadline(374295314) curr?(1) task?(0)
[ 3600.696544][T52604] se: weight(1048576) vruntime(371500473) slice(2800000) deadline(374295886) curr?(1) task?(0)
[ 3600.707898][T52604] se: weight(1048576) vruntime(371500424) slice(2800000) deadline(374296107) curr?(1) task?(0)
[ 3600.719254][T52604] se: weight(1048576) vruntime(372661437) slice(2800000) deadline(374299414) curr?(1) task?(0)
[ 3600.730612][T52604] se: weight(1048576) vruntime(371501912) slice(2800000) deadline(374299608) curr?(1) task?(0)
[ 3600.741972][T52604] se: weight(1048576) vruntime(371507428) slice(2800000) deadline(374300808) curr?(1) task?(0)
[ 3600.753329][T52604] se: weight(1048576) vruntime(371505049) slice(2800000) deadline(374301193) curr?(1) task?(0)
[ 3600.764685][T52604] se: weight(1048576) vruntime(371506433) slice(2800000) deadline(374302497) curr?(1) task?(0)
[ 3600.776042][T52604] se: weight(1048576) vruntime(371510120) slice(2800000) deadline(374304231) curr?(1) task?(0)
[ 3600.787395][T52604] se: weight(1048576) vruntime(372693008) slice(2800000) deadline(374304706) curr?(1) task?(0)
[ 3600.798751][T52604] se: weight(1048576) vruntime(371509266) slice(2800000) deadline(374305341) curr?(1) task?(0)
[ 3600.810100][T52604] se: weight(1048576) vruntime(371510134) slice(2800000) deadline(374305837) curr?(1) task?(0)
[ 3600.821458][T52604] se: weight(1048576) vruntime(371509701) slice(2800000) deadline(374306055) curr?(1) task?(0)
[ 3600.832819][T52604] se: weight(1048576) vruntime(371511633) slice(2800000) deadline(374306235) curr?(1) task?(0)
[ 3600.844179][T52604] se: weight(1048576) vruntime(371511057) slice(2800000) deadline(374306850) curr?(1) task?(0)
[ 3600.855538][T52604] se: weight(1048576) vruntime(371512746) slice(2800000) deadline(374307388) curr?(1) task?(0)
[ 3600.866892][T52604] se: weight(1048576) vruntime(371512439) slice(2800000) deadline(374309925) curr?(1) task?(0)
[ 3600.878247][T52604] se: weight(1048576) vruntime(371515074) slice(2800000) deadline(374310707) curr?(1) task?(0)
[ 3600.889603][T52604] se: weight(1048576) vruntime(372682129) slice(2800000) deadline(374312524) curr?(1) task?(0)
[ 3600.900963][T52604] se: weight(1048576) vruntime(371517144) slice(2800000) deadline(374313338) curr?(1) task?(0)
[ 3600.912322][T52604] se: weight(1048576) vruntime(371518247) slice(2800000) deadline(374314111) curr?(1) task?(0)
[ 3600.923681][T52604] se: weight(1048576) vruntime(371520462) slice(2800000) deadline(374316617) curr?(1) task?(0)
[ 3600.935038][T52604] se: weight(1048576) vruntime(371520895) slice(2800000) deadline(374317019) curr?(1) task?(0)
[ 3600.946395][T52604] se: weight(1048576) vruntime(371522217) slice(2800000) deadline(374319192) curr?(1) task?(0)
[ 3600.957747][T52604] se: weight(1048576) vruntime(371524542) slice(2800000) deadline(374320596) curr?(1) task?(0)
[ 3600.969104][T52604] se: weight(1048576) vruntime(371526683) slice(2800000) deadline(374323468) curr?(1) task?(0)
[ 3600.980464][T52604] se: weight(1048576) vruntime(371528244) slice(2800000) deadline(374324128) curr?(1) task?(0)
[ 3600.991822][T52604] se: weight(1048576) vruntime(372650770) slice(2800000) deadline(374324380) curr?(1) task?(0)
[ 3601.003180][T52604] se: weight(1048576) vruntime(372946143) slice(2800000) deadline(374325351) curr?(1) task?(0)
[ 3601.014536][T52604] se: weight(1048576) vruntime(371531420) slice(2800000) deadline(374327504) curr?(1) task?(0)
[ 3601.025892][T52604] se: weight(1048576) vruntime(372679692) slice(2800000) deadline(374327975) curr?(1) task?(0)
[ 3601.037246][T52604] se: weight(1048576) vruntime(371538452) slice(2800000) deadline(374332063) curr?(1) task?(0)
[ 3601.048603][T52604] se: weight(1048576) vruntime(371538639) slice(2800000) deadline(374336416) curr?(1) task?(0)
[ 3601.059961][T52604] se: weight(1048576) vruntime(372672554) slice(2800000) deadline(374338583) curr?(1) task?(0)
[ 3601.071318][T52604] se: weight(1048576) vruntime(372753243) slice(2800000) deadline(374339232) curr?(1) task?(0)
[ 3601.082678][T52604] se: weight(1048576) vruntime(371541966) slice(2800000) deadline(374340144) curr?(1) task?(0)
[ 3601.094037][T52604] se: weight(1048576) vruntime(371544195) slice(2800000) deadline(374342112) curr?(1) task?(0)
[ 3601.105393][T52604] se: weight(1048576) vruntime(371548274) slice(2800000) deadline(374344759) curr?(1) task?(0)
[ 3601.116750][T52604] se: weight(1048576) vruntime(371550159) slice(2800000) deadline(374346023) curr?(1) task?(0)
[ 3601.128105][T52604] se: weight(1048576) vruntime(372738159) slice(2800000) deadline(374346953) curr?(1) task?(0)
[ 3601.139462][T52604] se: weight(1048576) vruntime(372703297) slice(2800000) deadline(374349106) curr?(1) task?(0)
[ 3601.150810][T52604] se: weight(1048576) vruntime(371554521) slice(2800000) deadline(374351927) curr?(1) task?(0)
[ 3601.162169][T52604] se: weight(1048576) vruntime(372736319) slice(2800000) deadline(374353665) curr?(1) task?(0)
[ 3601.173527][T52604] se: weight(1048576) vruntime(371560539) slice(2800000) deadline(374356993) curr?(1) task?(0)
[ 3601.184885][T52604] se: weight(1048576) vruntime(371562436) slice(2800000) deadline(374357219) curr?(1) task?(0)
[ 3601.196240][T52604] se: weight(1048576) vruntime(372744263) slice(2800000) deadline(374357863) curr?(1) task?(0)
[ 3601.207593][T52604] se: weight(1048576) vruntime(372695518) slice(2800000) deadline(374358182) curr?(1) task?(0)
[ 3601.218950][T52604] se: weight(1048576) vruntime(371561702) slice(2800000) deadline(374359819) curr?(1) task?(0)
[ 3601.230308][T52604] se: weight(1048576) vruntime(371564952) slice(2800000) deadline(374361206) curr?(1) task?(0)
[ 3601.241665][T52604] se: weight(1048576) vruntime(371569152) slice(2800000) deadline(374363773) curr?(1) task?(0)
[ 3601.253026][T52604] se: weight(1048576) vruntime(371567687) slice(2800000) deadline(374364062) curr?(1) task?(0)
[ 3601.264384][T52604] se: weight(1048576) vruntime(371572134) slice(2800000) deadline(374367046) curr?(1) task?(0)
[ 3601.275743][T52604] se: weight(1048576) vruntime(372762312) slice(2800000) deadline(374367560) curr?(1) task?(0)
[ 3601.287097][T52604] se: weight(1048576) vruntime(371575676) slice(2800000) deadline(374370357) curr?(1) task?(0)
[ 3601.298453][T52604] se: weight(1048576) vruntime(371585041) slice(2800000) deadline(374370920) curr?(1) task?(0)
[ 3601.309808][T52604] se: weight(1048576) vruntime(372762314) slice(2800000) deadline(374376495) curr?(1) task?(0)
[ 3601.321166][T52604] se: weight(1048576) vruntime(372810217) slice(2800000) deadline(374377628) curr?(1) task?(0)
[ 3601.332526][T52604] se: weight(1048576) vruntime(372954243) slice(2800000) deadline(374377939) curr?(1) task?(0)
[ 3601.343885][T52604] se: weight(1048576) vruntime(372757820) slice(2800000) deadline(374378500) curr?(1) task?(0)
[ 3601.355240][T52604] se: weight(1048576) vruntime(372717679) slice(2800000) deadline(374379021) curr?(1) task?(0)
[ 3601.366589][T52604] se: weight(1048576) vruntime(371585571) slice(2800000) deadline(374381305) curr?(1) task?(0)
[ 3601.377943][T52604] se: weight(1048576) vruntime(371586888) slice(2800000) deadline(374385065) curr?(1) task?(0)
[ 3601.389299][T52604] se: weight(1048576) vruntime(372780797) slice(2800000) deadline(374386656) curr?(1) task?(0)
[ 3601.400659][T52604] se: weight(1048576) vruntime(371590356) slice(2800000) deadline(374386761) curr?(1) task?(0)
[ 3601.412019][T52604] se: weight(1048576) vruntime(372803605) slice(2800000) deadline(374393169) curr?(1) task?(0)
[ 3601.423377][T52604] se: weight(1048576) vruntime(372758910) slice(2800000) deadline(374394754) curr?(1) task?(0)
[ 3601.434733][T52604] se: weight(1048576) vruntime(371602099) slice(2800000) deadline(374397011) curr?(1) task?(0)
[ 3601.446091][T52604] se: weight(1048576) vruntime(371602528) slice(2800000) deadline(374399374) curr?(1) task?(0)
[ 3601.457445][T52604] se: weight(1048576) vruntime(371607955) slice(2800000) deadline(374404069) curr?(1) task?(0)
[ 3601.468802][T52604] se: weight(1048576) vruntime(371609266) slice(2800000) deadline(374404158) curr?(1) task?(0)
[ 3601.480160][T52604] se: weight(1048576) vruntime(371612145) slice(2800000) deadline(374408390) curr?(1) task?(0)
[ 3601.491517][T52604] se: weight(1048576) vruntime(371613261) slice(2800000) deadline(374409215) curr?(1) task?(0)
[ 3601.502878][T52604] se: weight(1048576) vruntime(372782663) slice(2800000) deadline(374410235) curr?(1) task?(0)
[ 3601.514237][T52604] se: weight(1048576) vruntime(372830063) slice(2800000) deadline(374411646) curr?(1) task?(0)
[ 3601.525592][T52604] se: weight(1048576) vruntime(372722925) slice(2800000) deadline(374411838) curr?(1) task?(0)
[ 3601.536948][T52604] se: weight(1048576) vruntime(372784680) slice(2800000) deadline(374413353) curr?(1) task?(0)
[ 3601.548303][T52604] se: weight(1048576) vruntime(371617602) slice(2800000) deadline(374414007) curr?(1) task?(0)
[ 3601.559659][T52604] se: weight(1048576) vruntime(372758910) slice(2800000) deadline(374415335) curr?(1) task?(0)
[ 3601.571018][T52604] se: weight(1048576) vruntime(371623422) slice(2800000) deadline(374419696) curr?(1) task?(0)
[ 3601.582376][T52604] se: weight(1048576) vruntime(371626710) slice(2800000) deadline(374421201) curr?(1) task?(0)
[ 3601.593735][T52604] se: weight(1048576) vruntime(371627466) slice(2800000) deadline(374421928) curr?(1) task?(0)
[ 3601.605093][T52604] se: weight(1048576) vruntime(371628837) slice(2800000) deadline(374425312) curr?(1) task?(0)
[ 3601.616449][T52604] se: weight(1048576) vruntime(371632441) slice(2800000) deadline(374428786) curr?(1) task?(0)
[ 3601.627804][T52604] se: weight(1048576) vruntime(372805104) slice(2800000) deadline(374430843) curr?(1) task?(0)
[ 3601.639160][T52604] se: weight(1048576) vruntime(371639342) slice(2800000) deadline(374435005) curr?(1) task?(0)
[ 3601.650508][T52604] se: weight(1048576) vruntime(371639346) slice(2800000) deadline(374435681) curr?(1) task?(0)
[ 3601.661865][T52604] se: weight(1048576) vruntime(371640455) slice(2800000) deadline(374438472) curr?(1) task?(0)
[ 3601.673225][T52604] se: weight(1048576) vruntime(371645539) slice(2800000) deadline(374441213) curr?(1) task?(0)
[ 3601.684585][T52604] se: weight(1048576) vruntime(371646878) slice(2800000) deadline(374441640) curr?(1) task?(0)
[ 3601.695944][T52604] se: weight(1048576) vruntime(372791278) slice(2800000) deadline(374443506) curr?(1) task?(0)
[ 3601.707299][T52604] se: weight(1048576) vruntime(372828480) slice(2800000) deadline(374444815) curr?(1) task?(0)
[ 3601.718655][T52604] se: weight(1048576) vruntime(371647797) slice(2800000) deadline(374445884) curr?(1) task?(0)
[ 3601.730011][T52604] se: weight(1048576) vruntime(371650519) slice(2800000) deadline(374447254) curr?(1) task?(0)
[ 3601.741370][T52604] se: weight(1048576) vruntime(371650611) slice(2800000) deadline(374447827) curr?(1) task?(0)
[ 3601.752721][T52604] se: weight(1048576) vruntime(371653840) slice(2800000) deadline(374450255) curr?(1) task?(0)
[ 3601.764077][T52604] se: weight(1048576) vruntime(372805105) slice(2800000) deadline(374451074) curr?(1) task?(0)
[ 3601.775434][T52604] se: weight(1048576) vruntime(371658699) slice(2800000) deadline(374452650) curr?(1) task?(0)
[ 3601.786791][T52604] se: weight(1048576) vruntime(371656921) slice(2800000) deadline(374452925) curr?(1) task?(0)
[ 3601.798145][T52604] se: weight(1048576) vruntime(371659098) slice(2800000) deadline(374454120) curr?(1) task?(0)
[ 3601.809502][T52604] se: weight(1048576) vruntime(371657422) slice(2800000) deadline(374455409) curr?(1) task?(0)
[ 3601.820861][T52604] se: weight(1048576) vruntime(372914592) slice(2800000) deadline(374455483) curr?(1) task?(0)
[ 3601.832217][T52604] se: weight(1048576) vruntime(371659708) slice(2800000) deadline(374457375) curr?(1) task?(0)
[ 3601.843576][T52604] se: weight(1048576) vruntime(371664183) slice(2800000) deadline(374458274) curr?(1) task?(0)
[ 3601.854934][T52604] se: weight(1048576) vruntime(371663182) slice(2800000) deadline(374459226) curr?(1) task?(0)
[ 3601.866293][T52604] se: weight(1048576) vruntime(371667988) slice(2800000) deadline(374463601) curr?(1) task?(0)
[ 3601.877647][T52604] se: weight(1048576) vruntime(371667533) slice(2800000) deadline(374463808) curr?(1) task?(0)
[ 3601.889003][T52604] se: weight(1048576) vruntime(371672136) slice(2800000) deadline(374466478) curr?(1) task?(0)
[ 3601.900360][T52604] se: weight(1048576) vruntime(372855226) slice(2800000) deadline(374467144) curr?(1) task?(0)
[ 3601.911716][T52604] se: weight(1048576) vruntime(372830061) slice(2800000) deadline(374468088) curr?(1) task?(0)
[ 3601.923077][T52604] se: weight(1048576) vruntime(371672711) slice(2800000) deadline(374468856) curr?(1) task?(0)
[ 3601.934436][T52604] se: weight(1048576) vruntime(371674279) slice(2800000) deadline(374471985) curr?(1) task?(0)
[ 3601.945792][T52604] se: weight(1048576) vruntime(371677977) slice(2800000) deadline(374472629) curr?(1) task?(0)
[ 3601.957148][T52604] se: weight(1048576) vruntime(371677335) slice(2800000) deadline(374473490) curr?(1) task?(0)
[ 3601.968505][T52604] se: weight(1048576) vruntime(371678704) slice(2800000) deadline(374474749) curr?(1) task?(0)
[ 3601.979861][T52604] se: weight(1048576) vruntime(372811549) slice(2800000) deadline(374475074) curr?(1) task?(0)
[ 3601.991220][T52604] se: weight(1048576) vruntime(371681331) slice(2800000) deadline(374476003) curr?(1) task?(0)
[ 3602.002578][T52604] se: weight(1048576) vruntime(371680763) slice(2800000) deadline(374478660) curr?(1) task?(0)
[ 3602.013936][T52604] se: weight(1048576) vruntime(371682970) slice(2800000) deadline(374480326) curr?(1) task?(0)
[ 3602.025293][T52604] se: weight(1048576) vruntime(371685150) slice(2800000) deadline(374480514) curr?(1) task?(0)
[ 3602.036650][T52604] se: weight(1048576) vruntime(372816271) slice(2800000) deadline(374481750) curr?(1) task?(0)
[ 3602.048003][T52604] se: weight(1048576) vruntime(371684298) slice(2800000) deadline(374481765) curr?(1) task?(0)
[ 3602.059359][T52604] se: weight(1048576) vruntime(371686390) slice(2800000) deadline(374484206) curr?(1) task?(0)
[ 3602.070707][T52604] se: weight(1048576) vruntime(371689397) slice(2800000) deadline(374484400) curr?(1) task?(0)
[ 3602.082064][T52604] se: weight(1048576) vruntime(371693439) slice(2800000) deadline(374487140) curr?(1) task?(0)
[ 3602.093424][T52604] se: weight(1048576) vruntime(371690162) slice(2800000) deadline(374488039) curr?(1) task?(0)
[ 3602.104784][T52604] se: weight(1048576) vruntime(372856696) slice(2800000) deadline(374488233) curr?(1) task?(0)
[ 3602.116140][T52604] se: weight(1048576) vruntime(372873071) slice(2800000) deadline(374489165) curr?(1) task?(0)
[ 3602.127494][T52604] se: weight(1048576) vruntime(371692125) slice(2800000) deadline(374490042) curr?(1) task?(0)
[ 3602.138851][T52604] se: weight(1048576) vruntime(371695111) slice(2800000) deadline(374490564) curr?(1) task?(0)
[ 3602.150207][T52604] se: weight(1048576) vruntime(372844705) slice(2800000) deadline(374490634) curr?(1) task?(0)
[ 3602.161564][T52604] se: weight(1048576) vruntime(371694739) slice(2800000) deadline(374490723) curr?(1) task?(0)
[ 3602.172924][T52604] se: weight(1048576) vruntime(371696483) slice(2800000) deadline(374491155) curr?(1) task?(0)
[ 3602.184282][T52604] se: weight(1048576) vruntime(372795736) slice(2800000) deadline(374491660) curr?(1) task?(0)
[ 3602.195637][T52604] se: weight(1048576) vruntime(371696571) slice(2800000) deadline(374492225) curr?(1) task?(0)
[ 3602.206994][T52604] se: weight(1048576) vruntime(371699822) slice(2800000) deadline(374494043) curr?(1) task?(0)
[ 3602.218348][T52604] se: weight(1048576) vruntime(371698387) slice(2800000) deadline(374494181) curr?(1) task?(0)
[ 3602.229706][T52604] se: weight(1048576) vruntime(371699221) slice(2800000) deadline(374494574) curr?(1) task?(0)
[ 3602.241064][T52604] se: weight(1048576) vruntime(371699891) slice(2800000) deadline(374495334) curr?(1) task?(0)
[ 3602.252422][T52604] se: weight(1048576) vruntime(371702171) slice(2800000) deadline(374497333) curr?(1) task?(0)
[ 3602.263781][T52604] se: weight(1048576) vruntime(371699784) slice(2800000) deadline(374497450) curr?(1) task?(0)
[ 3602.275138][T52604] se: weight(1048576) vruntime(371702159) slice(2800000) deadline(374498564) curr?(1) task?(0)
[ 3602.286488][T52604] se: weight(1048576) vruntime(371702528) slice(2800000) deadline(374499874) curr?(1) task?(0)
[ 3602.297841][T52604] se: weight(1048576) vruntime(371707357) slice(2800000) deadline(374501628) curr?(1) task?(0)
[ 3602.309199][T52604] se: weight(1048576) vruntime(372910491) slice(2800000) deadline(374502670) curr?(1) task?(0)
[ 3602.320556][T52604] se: weight(1048576) vruntime(371708079) slice(2800000) deadline(374502820) curr?(1) task?(0)
[ 3602.331911][T52604] se: weight(1048576) vruntime(372886065) slice(2800000) deadline(374503521) curr?(1) task?(0)
[ 3602.343272][T52604] se: weight(1048576) vruntime(372886065) slice(2800000) deadline(374504152) curr?(1) task?(0)
[ 3602.354630][T52604] se: weight(1048576) vruntime(371708202) slice(2800000) deadline(374505117) curr?(1) task?(0)
[ 3602.365987][T52604] se: weight(1048576) vruntime(371710083) slice(2800000) deadline(374505436) curr?(1) task?(0)
[ 3602.377342][T52604] se: weight(1048576) vruntime(371710231) slice(2800000) deadline(374507698) curr?(1) task?(0)
[ 3602.388697][T52604] se: weight(1048576) vruntime(371711759) slice(2800000) deadline(374508013) curr?(1) task?(0)
[ 3602.400053][T52604] se: weight(1048576) vruntime(371716728) slice(2800000) deadline(374511840) curr?(1) task?(0)
[ 3602.411404][T52604] se: weight(1048576) vruntime(371715215) slice(2800000) deadline(374512521) curr?(1) task?(0)
[ 3602.422763][T52604] se: weight(1048576) vruntime(371716614) slice(2800000) deadline(374512578) curr?(1) task?(0)
[ 3602.434121][T52604] se: weight(1048576) vruntime(371718594) slice(2800000) deadline(374512636) curr?(1) task?(0)
[ 3602.445478][T52604] se: weight(1048576) vruntime(371717110) slice(2800000) deadline(374513374) curr?(1) task?(0)
[ 3602.456835][T52604] se: weight(1048576) vruntime(371718391) slice(2800000) deadline(374514465) curr?(1) task?(0)
[ 3602.468189][T52604] se: weight(1048576) vruntime(371719768) slice(2800000) deadline(374514820) curr?(1) task?(0)
[ 3602.479545][T52604] se: weight(1048576) vruntime(371721955) slice(2800000) deadline(374514944) curr?(1) task?(0)
[ 3602.490895][T52604] se: weight(1048576) vruntime(372862149) slice(2800000) deadline(374515529) curr?(1) task?(0)
[ 3602.502252][T52604] se: weight(1048576) vruntime(371719819) slice(2800000) deadline(374515753) curr?(1) task?(0)
[ 3602.513611][T52604] se: weight(1048576) vruntime(371722443) slice(2800000) deadline(374516795) curr?(1) task?(0)
[ 3602.524969][T52604] se: weight(1048576) vruntime(372924302) slice(2800000) deadline(374516821) curr?(1) task?(0)
[ 3602.536327][T52604] se: weight(1048576) vruntime(371722059) slice(2800000) deadline(374517922) curr?(1) task?(0)
[ 3602.547682][T52604] se: weight(1048576) vruntime(371724021) slice(2800000) deadline(374520216) curr?(1) task?(0)
[ 3602.559037][T52604] se: weight(1048576) vruntime(372997347) slice(2800000) deadline(374520852) curr?(1) task?(0)
[ 3602.570393][T52604] se: weight(1048576) vruntime(372873071) slice(2800000) deadline(374521564) curr?(1) task?(0)
[ 3602.581752][T52604] se: weight(1048576) vruntime(371729752) slice(2800000) deadline(374524874) curr?(1) task?(0)
[ 3602.593103][T52604] se: weight(1048576) vruntime(371729613) slice(2800000) deadline(374526889) curr?(1) task?(0)
[ 3602.604453][T52604] se: weight(1048576) vruntime(371729947) slice(2800000) deadline(374527854) curr?(1) task?(0)
[ 3602.615810][T52604] se: weight(1048576) vruntime(371730281) slice(2800000) deadline(374527857) curr?(1) task?(0)
[ 3602.627169][T52604] se: weight(1048576) vruntime(371734116) slice(2800000) deadline(374528758) curr?(1) task?(0)
[ 3602.638523][T52604] se: weight(1048576) vruntime(372848788) slice(2800000) deadline(374530701) curr?(1) task?(0)
[ 3602.649880][T52604] se: weight(1048576) vruntime(372879157) slice(2800000) deadline(374531766) curr?(1) task?(0)
[ 3602.661238][T52604] se: weight(1048576) vruntime(371736527) slice(2800000) deadline(374534454) curr?(1) task?(0)
[ 3602.672596][T52604] se: weight(1048576) vruntime(371737040) slice(2800000) deadline(374534927) curr?(1) task?(0)
[ 3602.683956][T52604] se: weight(1048576) vruntime(372922821) slice(2800000) deadline(374536682) curr?(1) task?(0)
[ 3602.695313][T52604] se: weight(1048576) vruntime(373095261) slice(2800000) deadline(374539007) curr?(1) task?(0)
[ 3602.706671][T52604] se: weight(1048576) vruntime(371742670) slice(2800000) deadline(374539616) curr?(1) task?(0)
[ 3602.718024][T52604] se: weight(1048576) vruntime(371743772) slice(2800000) deadline(374539976) curr?(1) task?(0)
[ 3602.729383][T52604] se: weight(1048576) vruntime(372874694) slice(2800000) deadline(374540182) curr?(1) task?(0)
[ 3602.740740][T52604] se: weight(1048576) vruntime(373005820) slice(2800000) deadline(374541153) curr?(1) task?(0)
[ 3602.752096][T52604] se: weight(1048576) vruntime(371745313) slice(2800000) deadline(374541537) curr?(1) task?(0)
[ 3602.763448][T52604] se: weight(1048576) vruntime(371748581) slice(2800000) deadline(374541861) curr?(1) task?(0)
[ 3602.774806][T52604] se: weight(1048576) vruntime(372933044) slice(2800000) deadline(374542659) curr?(1) task?(0)
[ 3602.786161][T52604] se: weight(1048576) vruntime(371747970) slice(2800000) deadline(374543333) curr?(1) task?(0)
[ 3602.797517][T52604] se: weight(1048576) vruntime(371749986) slice(2800000) deadline(374546000) curr?(1) task?(0)
[ 3602.808872][T52604] se: weight(1048576) vruntime(371752137) slice(2800000) deadline(374548321) curr?(1) task?(0)
[ 3602.820228][T52604] se: weight(1048576) vruntime(371755713) slice(2800000) deadline(374551717) curr?(1) task?(0)
[ 3602.831578][T52604] se: weight(1048576) vruntime(371757874) slice(2800000) deadline(374553888) curr?(1) task?(0)
[ 3602.842936][T52604] se: weight(1048576) vruntime(371762982) slice(2800000) deadline(374557204) curr?(1) task?(0)
[ 3602.854295][T52604] se: weight(1048576) vruntime(372933043) slice(2800000) deadline(374557260) curr?(1) task?(0)
[ 3602.865652][T52604] se: weight(1048576) vruntime(373037970) slice(2800000) deadline(374557469) curr?(1) task?(0)
[ 3602.877010][T52604] se: weight(1048576) vruntime(371759735) slice(2800000) deadline(374557502) curr?(1) task?(0)
[ 3602.888364][T52604] se: weight(1048576) vruntime(371763333) slice(2800000) deadline(374558495) curr?(1) task?(0)
[ 3602.899721][T52604] se: weight(1048576) vruntime(371762321) slice(2800000) deadline(374560127) curr?(1) task?(0)
[ 3602.911078][T52604] se: weight(1048576) vruntime(371765970) slice(2800000) deadline(374562115) curr?(1) task?(0)
[ 3602.922434][T52604] se: weight(1048576) vruntime(371765888) slice(2800000) deadline(374564195) curr?(1) task?(0)
[ 3602.933793][T52604] se: weight(1048576) vruntime(371772418) slice(2800000) deadline(374566729) curr?(1) task?(0)
[ 3602.945152][T52604] se: weight(1048576) vruntime(372935182) slice(2800000) deadline(374568142) curr?(1) task?(0)
[ 3602.956510][T52604] se: weight(1048576) vruntime(371771762) slice(2800000) deadline(374568968) curr?(1) task?(0)
[ 3602.967865][T52604] se: weight(1048576) vruntime(371777089) slice(2800000) deadline(374572702) curr?(1) task?(0)
[ 3602.979220][T52604] se: weight(1048576) vruntime(371778323) slice(2800000) deadline(374574076) curr?(1) task?(0)
[ 3602.990577][T52604] se: weight(1048576) vruntime(371779964) slice(2800000) deadline(374576148) curr?(1) task?(0)
[ 3603.001935][T52604] se: weight(1048576) vruntime(372937517) slice(2800000) deadline(374578709) curr?(1) task?(0)
[ 3603.013295][T52604] se: weight(1048576) vruntime(373022682) slice(2800000) deadline(374579578) curr?(1) task?(0)
[ 3603.024645][T52604] se: weight(1048576) vruntime(371783537) slice(2800000) deadline(374579621) curr?(1) task?(0)
[ 3603.036001][T52604] se: weight(1048576) vruntime(373022683) slice(2800000) deadline(374581601) curr?(1) task?(0)
[ 3603.047360][T52604] se: weight(1048576) vruntime(372949984) slice(2800000) deadline(374586138) curr?(1) task?(0)
[ 3603.058713][T52604] se: weight(1048576) vruntime(372990721) slice(2800000) deadline(374594056) curr?(1) task?(0)
[ 3603.070071][T52604] se: weight(1048576) vruntime(372975808) slice(2800000) deadline(374598432) curr?(1) task?(0)
[ 3603.081430][T52604] se: weight(1048576) vruntime(372948130) slice(2800000) deadline(374603984) curr?(1) task?(0)
[ 3603.092789][T52604] se: weight(1048576) vruntime(371811151) slice(2800000) deadline(374606594) curr?(1) task?(0)
[ 3603.104148][T52604] se: weight(1048576) vruntime(373002457) slice(2800000) deadline(374607244) curr?(1) task?(0)
[ 3603.115504][T52604] se: weight(1048576) vruntime(371809692) slice(2800000) deadline(374607578) curr?(1) task?(0)
[ 3603.126861][T52604] se: weight(1048576) vruntime(371814565) slice(2800000) deadline(374609557) curr?(1) task?(0)
[ 3603.138215][T52604] se: weight(1048576) vruntime(371815128) slice(2800000) deadline(374610531) curr?(1) task?(0)
[ 3603.149571][T52604] se: weight(1048576) vruntime(371818059) slice(2800000) deadline(374612531) curr?(1) task?(0)
[ 3603.160927][T52604] se: weight(1048576) vruntime(373063017) slice(2800000) deadline(374612912) curr?(1) task?(0)
[ 3603.172284][T52604] se: weight(1048576) vruntime(373145549) slice(2800000) deadline(374616115) curr?(1) task?(0)
[ 3603.183646][T52604] se: weight(1048576) vruntime(371820774) slice(2800000) deadline(374618690) curr?(1) task?(0)
[ 3603.195005][T52604] se: weight(1048576) vruntime(371824205) slice(2800000) deadline(374622503) curr?(1) task?(0)
[ 3603.206361][T52604] se: weight(1048576) vruntime(371829894) slice(2800000) deadline(374624717) curr?(1) task?(0)
[ 3603.217719][T52604] se: weight(1048576) vruntime(373089260) slice(2800000) deadline(374625104) curr?(1) task?(0)
[ 3603.229074][T52604] se: weight(1048576) vruntime(372983491) slice(2800000) deadline(374625563) curr?(1) task?(0)
[ 3603.240431][T52604] se: weight(1048576) vruntime(371828112) slice(2800000) deadline(374625728) curr?(1) task?(0)
[ 3603.251789][T52604] se: weight(1048576) vruntime(371833792) slice(2800000) deadline(374630807) curr?(1) task?(0)
[ 3603.263148][T52604] se: weight(1048576) vruntime(371836078) slice(2800000) deadline(374633775) curr?(1) task?(0)
[ 3603.274506][T52604] se: weight(1048576) vruntime(372969694) slice(2800000) deadline(374638568) curr?(1) task?(0)
[ 3603.285862][T52604] se: weight(1048576) vruntime(371840505) slice(2800000) deadline(374638762) curr?(1) task?(0)
[ 3603.297217][T52604] se: weight(1048576) vruntime(372983492) slice(2800000) deadline(374651674) curr?(1) task?(0)
[ 3603.308570][T52604] se: weight(1048576) vruntime(373152180) slice(2800000) deadline(374656786) curr?(1) task?(0)
[ 3603.319926][T52604] se: weight(1048576) vruntime(371862827) slice(2800000) deadline(374660513) curr?(1) task?(0)
[ 3603.331285][T52604] se: weight(1048576) vruntime(373123210) slice(2800000) deadline(374662108) curr?(1) task?(0)
[ 3603.342641][T52604] se: weight(1048576) vruntime(371867328) slice(2800000) deadline(374662230) curr?(1) task?(0)
[ 3603.354000][T52604] se: weight(1048576) vruntime(373003968) slice(2800000) deadline(374663257) curr?(1) task?(0)
[ 3603.365359][T52604] se: weight(1048576) vruntime(373059556) slice(2800000) deadline(374663893) curr?(1) task?(0)
[ 3603.376716][T52604] se: weight(1048576) vruntime(371870719) slice(2800000) deadline(374667053) curr?(1) task?(0)
[ 3603.388069][T52604] se: weight(1048576) vruntime(371871155) slice(2800000) deadline(374667099) curr?(1) task?(0)
[ 3603.399426][T52604] se: weight(1048576) vruntime(371873432) slice(2800000) deadline(374669576) curr?(1) task?(0)
[ 3603.410782][T52604] se: weight(1048576) vruntime(373019688) slice(2800000) deadline(374670334) curr?(1) task?(0)
[ 3603.422141][T52604] se: weight(1048576) vruntime(373063017) slice(2800000) deadline(374674054) curr?(1) task?(0)
[ 3603.433493][T52604] se: weight(1048576) vruntime(373026861) slice(2800000) deadline(374674602) curr?(1) task?(0)
[ 3603.444851][T52604] se: weight(1048576) vruntime(371878689) slice(2800000) deadline(374675163) curr?(1) task?(0)
[ 3603.456207][T52604] se: weight(1048576) vruntime(371881367) slice(2800000) deadline(374676840) curr?(1) task?(0)
[ 3603.467555][T52604] se: weight(1048576) vruntime(371880408) slice(2800000) deadline(374677814) curr?(1) task?(0)
[ 3603.478907][T52604] se: weight(1048576) vruntime(371885080) slice(2800000) deadline(374678670) curr?(1) task?(0)
[ 3603.490264][T52604] se: weight(1048576) vruntime(371883325) slice(2800000) deadline(374679670) curr?(1) task?(0)
[ 3603.501621][T52604] se: weight(1048576) vruntime(371889832) slice(2800000) deadline(374684595) curr?(1) task?(0)
[ 3603.512980][T52604] se: weight(1048576) vruntime(371889474) slice(2800000) deadline(374685428) curr?(1) task?(0)
[ 3603.524341][T52604] se: weight(1048576) vruntime(371889491) slice(2800000) deadline(374687278) curr?(1) task?(0)
[ 3603.535698][T52604] se: weight(1048576) vruntime(373040579) slice(2800000) deadline(374691605) curr?(1) task?(0)
[ 3603.547054][T52604] se: weight(1048576) vruntime(372995791) slice(2800000) deadline(374691976) curr?(1) task?(0)
[ 3603.558408][T52604] se: weight(1048576) vruntime(373046610) slice(2800000) deadline(374692779) curr?(1) task?(0)
[ 3603.569764][T52604] se: weight(1048576) vruntime(373028290) slice(2800000) deadline(374694699) curr?(1) task?(0)
[ 3603.581123][T52604] se: weight(1048576) vruntime(373068917) slice(2800000) deadline(374695988) curr?(1) task?(0)
[ 3603.592480][T52604] se: weight(1048576) vruntime(371900127) slice(2800000) deadline(374696522) curr?(1) task?(0)
[ 3603.603842][T52604] se: weight(1048576) vruntime(373171970) slice(2800000) deadline(374700592) curr?(1) task?(0)
[ 3603.615200][T52604] se: weight(1048576) vruntime(371906135) slice(2800000) deadline(374702109) curr?(1) task?(0)
[ 3603.626557][T52604] se: weight(1048576) vruntime(371906120) slice(2800000) deadline(374702154) curr?(1) task?(0)
[ 3603.637913][T52604] se: weight(1048576) vruntime(371907029) slice(2800000) deadline(374705106) curr?(1) task?(0)
[ 3603.649267][T52604] se: weight(1048576) vruntime(373177328) slice(2800000) deadline(374713973) curr?(1) task?(0)
[ 3603.660623][T52604] se: weight(1048576) vruntime(371917232) slice(2800000) deadline(374713997) curr?(1) task?(0)
[ 3603.671982][T52604] se: weight(1048576) vruntime(371919117) slice(2800000) deadline(374714530) curr?(1) task?(0)
[ 3603.683340][T52604] se: weight(1048576) vruntime(371919392) slice(2800000) deadline(374714695) curr?(1) task?(0)
[ 3603.694698][T52604] se: weight(1048576) vruntime(371919767) slice(2800000) deadline(374717313) curr?(1) task?(0)
[ 3603.706056][T52604] se: weight(1048576) vruntime(373093262) slice(2800000) deadline(374720683) curr?(1) task?(0)
[ 3603.717413][T52604] se: weight(1048576) vruntime(371926128) slice(2800000) deadline(374723564) curr?(1) task?(0)
[ 3603.728767][T52604] se: weight(1048576) vruntime(371929617) slice(2800000) deadline(374725180) curr?(1) task?(0)
[ 3603.740123][T52604] se: weight(1048576) vruntime(373068917) slice(2800000) deadline(374728386) curr?(1) task?(0)
[ 3603.751483][T52604] se: weight(1048576) vruntime(371932503) slice(2800000) deadline(374728527) curr?(1) task?(0)
[ 3603.762840][T52604] se: weight(1048576) vruntime(371933916) slice(2800000) deadline(374730171) curr?(1) task?(0)
[ 3603.774200][T52604] se: weight(1048576) vruntime(373171969) slice(2800000) deadline(374731519) curr?(1) task?(0)
[ 3603.785556][T52604] se: weight(1048576) vruntime(373080380) slice(2800000) deadline(374732308) curr?(1) task?(0)
[ 3603.796913][T52604] se: weight(1048576) vruntime(371934935) slice(2800000) deadline(374732422) curr?(1) task?(0)
[ 3603.808268][T52604] se: weight(1048576) vruntime(373111186) slice(2800000) deadline(374733690) curr?(1) task?(0)
[ 3603.819623][T52604] se: weight(1048576) vruntime(373106680) slice(2800000) deadline(374737536) curr?(1) task?(0)
[ 3603.830979][T52604] se: weight(1048576) vruntime(371941432) slice(2800000) deadline(374738899) curr?(1) task?(0)
[ 3603.842337][T52604] se: weight(1048576) vruntime(371940918) slice(2800000) deadline(374738905) curr?(1) task?(0)
[ 3603.853689][T52604] se: weight(1048576) vruntime(371945957) slice(2800000) deadline(374739388) curr?(1) task?(0)
[ 3603.865047][T52604] se: weight(1048576) vruntime(371946554) slice(2800000) deadline(374742387) curr?(1) task?(0)
[ 3603.876403][T52604] se: weight(1048576) vruntime(373121216) slice(2800000) deadline(374746324) curr?(1) task?(0)
[ 3603.887751][T52604] se: weight(1048576) vruntime(371953174) slice(2800000) deadline(374749138) curr?(1) task?(0)
[ 3603.899103][T52604] se: weight(1048576) vruntime(371953325) slice(2800000) deadline(374749530) curr?(1) task?(0)
[ 3603.910460][T52604] se: weight(1048576) vruntime(371956024) slice(2800000) deadline(374752259) curr?(1) task?(0)
[ 3603.921820][T52604] se: weight(1048576) vruntime(373077445) slice(2800000) deadline(374756263) curr?(1) task?(0)
[ 3603.933177][T52604] se: weight(1048576) vruntime(373133175) slice(2800000) deadline(374757702) curr?(1) task?(0)
[ 3603.944536][T52604] se: weight(1048576) vruntime(371962996) slice(2800000) deadline(374757818) curr?(1) task?(0)
[ 3603.955891][T52604] se: weight(1048576) vruntime(371967013) slice(2800000) deadline(374762116) curr?(1) task?(0)
[ 3603.967249][T52604] se: weight(1048576) vruntime(371966606) slice(2800000) deadline(374763281) curr?(1) task?(0)
[ 3603.978602][T52604] se: weight(1048576) vruntime(371967269) slice(2800000) deadline(374765056) curr?(1) task?(0)
[ 3603.989960][T52604] se: weight(1048576) vruntime(373108583) slice(2800000) deadline(374765758) curr?(1) task?(0)
[ 3604.001318][T52604] se: weight(1048576) vruntime(373143687) slice(2800000) deadline(374768284) curr?(1) task?(0)
[ 3604.012674][T52604] se: weight(1048576) vruntime(373158556) slice(2800000) deadline(374777915) curr?(1) task?(0)
[ 3604.024035][T52604] se: weight(1048576) vruntime(371984446) slice(2800000) deadline(374782032) curr?(1) task?(0)
[ 3604.035392][T52604] se: weight(1048576) vruntime(373142269) slice(2800000) deadline(374783531) curr?(1) task?(0)
[ 3604.046749][T52604] se: weight(1048576) vruntime(371988696) slice(2800000) deadline(374784349) curr?(1) task?(0)
[ 3604.058105][T52604] se: weight(1048576) vruntime(373138673) slice(2800000) deadline(374785343) curr?(1) task?(0)
[ 3604.069461][T52604] se: weight(1048576) vruntime(371992222) slice(2800000) deadline(374786453) curr?(1) task?(0)
[ 3604.080817][T52604] se: weight(1048576) vruntime(371991999) slice(2800000) deadline(374787763) curr?(1) task?(0)
[ 3604.092176][T52604] se: weight(1048576) vruntime(373169103) slice(2800000) deadline(374789303) curr?(1) task?(0)
[ 3604.103536][T52604] se: weight(1048576) vruntime(371997012) slice(2800000) deadline(374791473) curr?(1) task?(0)
[ 3604.114894][T52604] se: weight(1048576) vruntime(372000366) slice(2800000) deadline(374796560) curr?(1) task?(0)
[ 3604.126250][T52604] se: weight(1048576) vruntime(372001870) slice(2800000) deadline(374799777) curr?(1) task?(0)
[ 3604.137607][T52604] se: weight(1048576) vruntime(372003576) slice(2800000) deadline(374800061) curr?(1) task?(0)
[ 3604.148961][T52604] se: weight(1048576) vruntime(372014981) slice(2800000) deadline(374811155) curr?(1) task?(0)
[ 3604.160318][T52604] se: weight(1048576) vruntime(372016317) slice(2800000) deadline(374812532) curr?(1) task?(0)
[ 3604.171677][T52604] se: weight(1048576) vruntime(373167514) slice(2800000) deadline(374813413) curr?(1) task?(0)
[ 3604.183034][T52604] se: weight(1048576) vruntime(372024845) slice(2800000) deadline(374819106) curr?(1) task?(0)
[ 3604.194393][T52604] se: weight(1048576) vruntime(372029972) slice(2800000) deadline(374827168) curr?(1) task?(0)
[ 3604.205750][T52604] se: weight(1048576) vruntime(372030933) slice(2800000) deadline(374827307) curr?(1) task?(0)
[ 3604.217107][T52604] se: weight(1048576) vruntime(372034641) slice(2800000) deadline(374830535) curr?(1) task?(0)
[ 3604.228462][T52604] se: weight(1048576) vruntime(372040377) slice(2800000) deadline(374836451) curr?(1) task?(0)
[ 3604.239818][T52604] se: weight(1048576) vruntime(372048824) slice(2800000) deadline(374845048) curr?(1) task?(0)
[ 3604.251175][T52604] se: weight(1048576) vruntime(372054793) slice(2800000) deadline(374850196) curr?(1) task?(0)
[ 3604.262534][T52604] se: weight(1048576) vruntime(373165820) slice(2800000) deadline(374850277) curr?(1) task?(0)
[ 3604.273893][T52604] se: weight(1048576) vruntime(372056041) slice(2800000) deadline(374852066) curr?(1) task?(0)
[ 3604.285250][T52604] se: weight(1048576) vruntime(373162068) slice(2800000) deadline(374852764) curr?(1) task?(0)
[ 3604.296607][T52604] se: weight(1048576) vruntime(372063299) slice(2800000) deadline(374858241) curr?(1) task?(0)
[ 3604.307964][T52604] se: weight(1048576) vruntime(372060155) slice(2800000) deadline(374860155) curr?(1) task?(0)
[ 3604.319317][T52604] se: weight(1048576) vruntime(372081444) slice(2800000) deadline(374879310) curr?(1) task?(0)
[ 3604.330673][T52604] se: weight(1048576) vruntime(372083874) slice(2800000) deadline(374880229) curr?(1) task?(0)
[ 3604.342032][T52604] se: weight(1048576) vruntime(372092589) slice(2800000) deadline(374890036) curr?(1) task?(0)
[ 3604.353390][T52604] se: weight(1048576) vruntime(372097272) slice(2800000) deadline(374893476) curr?(1) task?(0)
[ 3604.364749][T52604] se: weight(1048576) vruntime(372098618) slice(2800000) deadline(374894843) curr?(1) task?(0)
[ 3604.376107][T52604] se: weight(1048576) vruntime(372095306) slice(2800000) deadline(374895306) curr?(1) task?(0)
[ 3604.387464][T52604] se: weight(1048576) vruntime(372103450) slice(2800000) deadline(374896700) curr?(1) task?(0)
[ 3604.398819][T52604] se: weight(1048576) vruntime(372102829) slice(2800000) deadline(374897030) curr?(1) task?(0)
[ 3604.410177][T52604] se: weight(1048576) vruntime(372102325) slice(2800000) deadline(374898249) curr?(1) task?(0)
[ 3604.421534][T52604] se: weight(1048576) vruntime(372105241) slice(2800000) deadline(374901366) curr?(1) task?(0)
[ 3604.432891][T52604] se: weight(1048576) vruntime(372103662) slice(2800000) deadline(374901708) curr?(1) task?(0)
[ 3604.444252][T52604] se: weight(1048576) vruntime(372110916) slice(2800000) deadline(374909234) curr?(1) task?(0)
[ 3604.455610][T52604] se: weight(1048576) vruntime(372115817) slice(2800000) deadline(374911861) curr?(1) task?(0)
[ 3604.466967][T52604] se: weight(1048576) vruntime(372118503) slice(2800000) deadline(374913826) curr?(1) task?(0)
[ 3604.478325][T52604] se: weight(1048576) vruntime(372120550) slice(2800000) deadline(374914200) curr?(1) task?(0)
[ 3604.489681][T52604] se: weight(1048576) vruntime(372117645) slice(2800000) deadline(374914230) curr?(1) task?(0)
[ 3604.501037][T52604] se: weight(1048576) vruntime(372128248) slice(2800000) deadline(374924403) curr?(1) task?(0)
[ 3604.512396][T52604] se: weight(1048576) vruntime(372132844) slice(2800000) deadline(374929228) curr?(1) task?(0)
[ 3604.523746][T52604] se: weight(1048576) vruntime(372138037) slice(2800000) deadline(374933330) curr?(1) task?(0)
[ 3604.535103][T52604] se: weight(1048576) vruntime(372139893) slice(2800000) deadline(374934214) curr?(1) task?(0)
[ 3604.546458][T52604] se: weight(1048576) vruntime(372141170) slice(2800000) deadline(374935462) curr?(1) task?(0)
[ 3604.557814][T52604] se: weight(1048576) vruntime(372141465) slice(2800000) deadline(374936718) curr?(1) task?(0)
[ 3604.569167][T52604] se: weight(1048576) vruntime(372144271) slice(2800000) deadline(374939324) curr?(1) task?(0)
[ 3604.580524][T52604] se: weight(1048576) vruntime(372143706) slice(2800000) deadline(374939860) curr?(1) task?(0)
[ 3604.591885][T52604] se: weight(1048576) vruntime(372148180) slice(2800000) deadline(374944394) curr?(1) task?(0)
[ 3604.603242][T52604] se: weight(1048576) vruntime(372155132) slice(2800000) deadline(374949924) curr?(1) task?(0)
[ 3604.614602][T52604] se: weight(1048576) vruntime(372156281) slice(2800000) deadline(374950362) curr?(1) task?(0)
[ 3604.625958][T52604] se: weight(1048576) vruntime(372154701) slice(2800000) deadline(374950635) curr?(1) task?(0)
[ 3604.637315][T52604] se: weight(1048576) vruntime(372155908) slice(2800000) deadline(374953615) curr?(1) task?(0)
[ 3604.648670][T52604] se: weight(1048576) vruntime(372161382) slice(2800000) deadline(374957416) curr?(1) task?(0)
[ 3604.660025][T52604] se: weight(1048576) vruntime(372162445) slice(2800000) deadline(374958479) curr?(1) task?(0)
[ 3604.671381][T52604] se: weight(1048576) vruntime(372162283) slice(2800000) deadline(374958597) curr?(1) task?(0)
[ 3604.682738][T52604] se: weight(1048576) vruntime(372166629) slice(2800000) deadline(374962602) curr?(1) task?(0)
[ 3604.694100][T52604] se: weight(1048576) vruntime(372170549) slice(2800000) deadline(374966893) curr?(1) task?(0)
[ 3604.705457][T52604] se: weight(1048576) vruntime(372172020) slice(2800000) deadline(374967544) curr?(1) task?(0)
[ 3604.716813][T52604] se: weight(1048576) vruntime(372174293) slice(2800000) deadline(374968314) curr?(1) task?(0)
[ 3604.728170][T52604] se: weight(1048576) vruntime(372173602) slice(2800000) deadline(374968695) curr?(1) task?(0)
[ 3604.739523][T52604] se: weight(1048576) vruntime(372174395) slice(2800000) deadline(374968827) curr?(1) task?(0)
[ 3604.750880][T52604] se: weight(1048576) vruntime(372173550) slice(2800000) deadline(374971558) curr?(1) task?(0)
[ 3604.762239][T52604] se: weight(1048576) vruntime(372176902) slice(2800000) deadline(374976902) curr?(1) task?(0)
[ 3604.773598][T52604] se: weight(1048576) vruntime(372181763) slice(2800000) deadline(374977045) curr?(1) task?(0)
[ 3604.784956][T52604] se: weight(1048576) vruntime(372182067) slice(2800000) deadline(374978061) curr?(1) task?(0)
[ 3604.796313][T52604] se: weight(1048576) vruntime(372184095) slice(2800000) deadline(374978807) curr?(1) task?(0)
[ 3604.807670][T52604] se: weight(1048576) vruntime(372182927) slice(2800000) deadline(374979592) curr?(1) task?(0)
[ 3604.819023][T52604] se: weight(1048576) vruntime(372184412) slice(2800000) deadline(374980226) curr?(1) task?(0)
[ 3604.830379][T52604] se: weight(1048576) vruntime(372182937) slice(2800000) deadline(374981134) curr?(1) task?(0)
[ 3604.841729][T52604] se: weight(1048576) vruntime(372191814) slice(2800000) deadline(374986936) curr?(1) task?(0)
[ 3604.853086][T52604] se: weight(1048576) vruntime(372195062) slice(2800000) deadline(374990786) curr?(1) task?(0)
[ 3604.864447][T52604] se: weight(1048576) vruntime(372200568) slice(2800000) deadline(374997244) curr?(1) task?(0)
[ 3604.875805][T52604] se: weight(1048576) vruntime(372200451) slice(2800000) deadline(374997276) curr?(1) task?(0)
[ 3604.887162][T52604] se: weight(1048576) vruntime(372201487) slice(2800000) deadline(374999304) curr?(1) task?(0)
[ 3604.898519][T52604] se: weight(1048576) vruntime(372203076) slice(2800000) deadline(375001414) curr?(1) task?(0)
[ 3604.909874][T52604] se: weight(1048576) vruntime(372206970) slice(2800000) deadline(375003124) curr?(1) task?(0)
[ 3604.921229][T52604] se: weight(1048576) vruntime(372208973) slice(2800000) deadline(375004917) curr?(1) task?(0)
[ 3604.932587][T52604] se: weight(1048576) vruntime(372209128) slice(2800000) deadline(375004932) curr?(1) task?(0)
[ 3604.943947][T52604] se: weight(1048576) vruntime(372210445) slice(2800000) deadline(375006690) curr?(1) task?(0)
[ 3604.955295][T52604] se: weight(1048576) vruntime(372211903) slice(2800000) deadline(375007877) curr?(1) task?(0)
[ 3604.966651][T52604] se: weight(1048576) vruntime(372214219) slice(2800000) deadline(375009342) curr?(1) task?(0)
[ 3604.978001][T52604] se: weight(1048576) vruntime(372214722) slice(2800000) deadline(375009504) curr?(1) task?(0)
[ 3604.989356][T52604] se: weight(1048576) vruntime(372212952) slice(2800000) deadline(375010087) curr?(1) task?(0)
[ 3605.000711][T52604] se: weight(1048576) vruntime(372216497) slice(2800000) deadline(375013863) curr?(1) task?(0)
[ 3605.012070][T52604] se: weight(1048576) vruntime(372219853) slice(2800000) deadline(375014665) curr?(1) task?(0)
[ 3605.023427][T52604] se: weight(1048576) vruntime(372218560) slice(2800000) deadline(375016006) curr?(1) task?(0)
[ 3605.034787][T52604] se: weight(1048576) vruntime(372219704) slice(2800000) deadline(375017241) curr?(1) task?(0)
[ 3605.046143][T52604] se: weight(1048576) vruntime(372231572) slice(2800000) deadline(375020876) curr?(1) task?(0)
[ 3605.057500][T52604] se: weight(1048576) vruntime(372223738) slice(2800000) deadline(375021916) curr?(1) task?(0)
[ 3605.068855][T52604] se: weight(1048576) vruntime(372224575) slice(2800000) deadline(375022172) curr?(1) task?(0)
[ 3605.080212][T52604] se: weight(1048576) vruntime(372225610) slice(2800000) deadline(375022536) curr?(1) task?(0)
[ 3605.091569][T52604] se: weight(1048576) vruntime(372225845) slice(2800000) deadline(375023892) curr?(1) task?(0)
[ 3605.102926][T52604] se: weight(1048576) vruntime(372229970) slice(2800000) deadline(375026404) curr?(1) task?(0)
[ 3605.114286][T52604] se: weight(1048576) vruntime(372231764) slice(2800000) deadline(375028329) curr?(1) task?(0)
[ 3605.125645][T52604] se: weight(1048576) vruntime(372231404) slice(2800000) deadline(375028930) curr?(1) task?(0)
[ 3605.137002][T52604] se: weight(1048576) vruntime(372233708) slice(2800000) deadline(375028961) curr?(1) task?(0)
[ 3605.148361][T52604] se: weight(1048576) vruntime(372236187) slice(2800000) deadline(375030267) curr?(1) task?(0)
[ 3605.159714][T52604] se: weight(1048576) vruntime(372235920) slice(2800000) deadline(375031493) curr?(1) task?(0)
[ 3605.171071][T52604] se: weight(1048576) vruntime(372236281) slice(2800000) deadline(375032254) curr?(1) task?(0)
[ 3605.182430][T52604] se: weight(1048576) vruntime(372235237) slice(2800000) deadline(375032934) curr?(1) task?(0)
[ 3605.193788][T52604] se: weight(1048576) vruntime(372237747) slice(2800000) deadline(375033681) curr?(1) task?(0)
[ 3605.205148][T52604] se: weight(1048576) vruntime(372236897) slice(2800000) deadline(375035104) curr?(1) task?(0)
[ 3605.216503][T52604] se: weight(1048576) vruntime(372240749) slice(2800000) deadline(375036493) curr?(1) task?(0)
[ 3605.227862][T52604] se: weight(1048576) vruntime(372239489) slice(2800000) deadline(375036614) curr?(1) task?(0)
[ 3605.239216][T52604] se: weight(1048576) vruntime(372240778) slice(2800000) deadline(375038545) curr?(1) task?(0)
[ 3605.250572][T52604] se: weight(1048576) vruntime(372244521) slice(2800000) deadline(375038652) curr?(1) task?(0)
[ 3605.261929][T52604] se: weight(1048576) vruntime(372243942) slice(2800000) deadline(375042159) curr?(1) task?(0)
[ 3605.273285][T52604] se: weight(1048576) vruntime(372247231) slice(2800000) deadline(375043326) curr?(1) task?(0)
[ 3605.284647][T52604] se: weight(1048576) vruntime(372252222) slice(2800000) deadline(375044520) curr?(1) task?(0)
[ 3605.295997][T52604] se: weight(1048576) vruntime(372246381) slice(2800000) deadline(375046381) curr?(1) task?(0)
[ 3605.307353][T52604] se: weight(1048576) vruntime(372251699) slice(2800000) deadline(375047723) curr?(1) task?(0)
[ 3605.318708][T52604] se: weight(1048576) vruntime(372252672) slice(2800000) deadline(375049647) curr?(1) task?(0)
[ 3605.330065][T52604] se: weight(1048576) vruntime(372255337) slice(2800000) deadline(375051251) curr?(1) task?(0)
[ 3605.341421][T52604] se: weight(1048576) vruntime(372251426) slice(2800000) deadline(375051426) curr?(1) task?(0)
[ 3605.352780][T52604] se: weight(1048576) vruntime(372254276) slice(2800000) deadline(375052373) curr?(1) task?(0)
[ 3605.364130][T52604] se: weight(1048576) vruntime(372256522) slice(2800000) deadline(375054890) curr?(1) task?(0)
[ 3605.375488][T52604] se: weight(1048576) vruntime(372266731) slice(2800000) deadline(375061082) curr?(1) task?(0)
[ 3605.386844][T52604] se: weight(1048576) vruntime(372264788) slice(2800000) deadline(375062625) curr?(1) task?(0)
[ 3605.398201][T52604] se: weight(1048576) vruntime(372266691) slice(2800000) deadline(375063587) curr?(1) task?(0)
[ 3605.409554][T52604] se: weight(1048576) vruntime(372270924) slice(2800000) deadline(375066878) curr?(1) task?(0)
[ 3605.420912][T52604] se: weight(1048576) vruntime(372271392) slice(2800000) deadline(375067276) curr?(1) task?(0)
[ 3605.432270][T52604] se: weight(1048576) vruntime(372274163) slice(2800000) deadline(375069456) curr?(1) task?(0)
[ 3605.443628][T52604] se: weight(1048576) vruntime(372275182) slice(2800000) deadline(375073239) curr?(1) task?(0)
[ 3605.454987][T52604] se: weight(1048576) vruntime(372273315) slice(2800000) deadline(375073315) curr?(1) task?(0)
[ 3605.466344][T52604] se: weight(1048576) vruntime(372283267) slice(2800000) deadline(375076197) curr?(1) task?(0)
[ 3605.477700][T52604] se: weight(1048576) vruntime(372278713) slice(2800000) deadline(375076640) curr?(1) task?(0)
[ 3605.489054][T52604] se: weight(1048576) vruntime(372279819) slice(2800000) deadline(375076975) curr?(1) task?(0)
[ 3605.500411][T52604] se: weight(1048576) vruntime(372286269) slice(2800000) deadline(375079919) curr?(1) task?(0)
[ 3605.511761][T52604] se: weight(1048576) vruntime(372284255) slice(2800000) deadline(375081631) curr?(1) task?(0)
[ 3605.523118][T52604] se: weight(1048576) vruntime(372288257) slice(2800000) deadline(375085453) curr?(1) task?(0)
[ 3605.534469][T52604] se: weight(1048576) vruntime(372291370) slice(2800000) deadline(375086062) curr?(1) task?(0)
[ 3605.545826][T52604] se: weight(1048576) vruntime(372289211) slice(2800000) deadline(375086607) curr?(1) task?(0)
[ 3605.557181][T52604] se: weight(1048576) vruntime(372290295) slice(2800000) deadline(375086639) curr?(1) task?(0)
[ 3605.568530][T52604] se: weight(1048576) vruntime(372293769) slice(2800000) deadline(375091375) curr?(1) task?(0)
[ 3605.579883][T52604] se: weight(1048576) vruntime(372298436) slice(2800000) deadline(375095061) curr?(1) task?(0)
[ 3605.591239][T52604] se: weight(1048576) vruntime(372301231) slice(2800000) deadline(375097946) curr?(1) task?(0)
[ 3605.602600][T52604] se: weight(1048576) vruntime(372300642) slice(2800000) deadline(375098548) curr?(1) task?(0)
[ 3605.613959][T52604] se: weight(1048576) vruntime(372305118) slice(2800000) deadline(375102374) curr?(1) task?(0)
[ 3605.625318][T52604] se: weight(1048576) vruntime(372307759) slice(2800000) deadline(375103502) curr?(1) task?(0)
[ 3605.636675][T52604] se: weight(1048576) vruntime(372311293) slice(2800000) deadline(375105053) curr?(1) task?(0)
[ 3605.648023][T52604] se: weight(1048576) vruntime(372313102) slice(2800000) deadline(375108765) curr?(1) task?(0)
[ 3605.659378][T52604] se: weight(1048576) vruntime(372313348) slice(2800000) deadline(375109392) curr?(1) task?(0)
[ 3605.670733][T52604] se: weight(1048576) vruntime(372313852) slice(2800000) deadline(375109936) curr?(1) task?(0)
[ 3605.682090][T52604] se: weight(1048576) vruntime(372315329) slice(2800000) deadline(375111494) curr?(1) task?(0)
[ 3605.693447][T52604] se: weight(1048576) vruntime(372324402) slice(2800000) deadline(375120286) curr?(1) task?(0)
[ 3605.704808][T52604] se: weight(1048576) vruntime(372324289) slice(2800000) deadline(375120393) curr?(1) task?(0)
[ 3605.716166][T52604] se: weight(1048576) vruntime(372329710) slice(2800000) deadline(375125754) curr?(1) task?(0)
[ 3605.727521][T52604] se: weight(1048576) vruntime(372329188) slice(2800000) deadline(375127005) curr?(1) task?(0)
[ 3605.738878][T52604] se: weight(1048576) vruntime(372333417) slice(2800000) deadline(375129291) curr?(1) task?(0)
[ 3605.750234][T52604] se: weight(1048576) vruntime(372335578) slice(2800000) deadline(375130550) curr?(1) task?(0)
[ 3605.761590][T52604] se: weight(1048576) vruntime(372338042) slice(2800000) deadline(375131282) curr?(1) task?(0)
[ 3605.772948][T52604] se: weight(1048576) vruntime(372336565) slice(2800000) deadline(375131788) curr?(1) task?(0)
[ 3605.784308][T52604] se: weight(1048576) vruntime(372338249) slice(2800000) deadline(375134153) curr?(1) task?(0)
[ 3605.795657][T52604] se: weight(1048576) vruntime(372339767) slice(2800000) deadline(375134439) curr?(1) task?(0)
[ 3605.807013][T52604] se: weight(1048576) vruntime(372344041) slice(2800000) deadline(375139724) curr?(1) task?(0)
[ 3605.818370][T52604] se: weight(1048576) vruntime(372345954) slice(2800000) deadline(375140966) curr?(1) task?(0)
[ 3605.829723][T52604] se: weight(1048576) vruntime(372346973) slice(2800000) deadline(375143218) curr?(1) task?(0)
[ 3605.841080][T52604] se: weight(1048576) vruntime(372350480) slice(2800000) deadline(375145453) curr?(1) task?(0)
[ 3605.852438][T52604] se: weight(1048576) vruntime(372349619) slice(2800000) deadline(375145563) curr?(1) task?(0)
[ 3605.863794][T52604] se: weight(1048576) vruntime(372349703) slice(2800000) deadline(375146428) curr?(1) task?(0)
[ 3605.875154][T52604] se: weight(1048576) vruntime(372354125) slice(2800000) deadline(375147886) curr?(1) task?(0)
[ 3605.886510][T52604] se: weight(1048576) vruntime(372356757) slice(2800000) deadline(375153212) curr?(1) task?(0)
[ 3605.897868][T52604] se: weight(1048576) vruntime(372356771) slice(2800000) deadline(375153566) curr?(1) task?(0)
[ 3605.909223][T52604] se: weight(1048576) vruntime(372358629) slice(2800000) deadline(375153631) curr?(1) task?(0)
[ 3605.920578][T52604] se: weight(1048576) vruntime(372357550) slice(2800000) deadline(375154986) curr?(1) task?(0)
[ 3605.931937][T52604] se: weight(1048576) vruntime(372358392) slice(2800000) deadline(375155949) curr?(1) task?(0)
[ 3605.943294][T52604] se: weight(1048576) vruntime(372360768) slice(2800000) deadline(375156832) curr?(1) task?(0)
[ 3605.954655][T52604] se: weight(1048576) vruntime(372362490) slice(2800000) deadline(375160096) curr?(1) task?(0)
[ 3605.966013][T52604] se: weight(1048576) vruntime(372361640) slice(2800000) deadline(375161640) curr?(1) task?(0)
[ 3605.977370][T52604] se: weight(1048576) vruntime(372363329) slice(2800000) deadline(375163329) curr?(1) task?(0)
[ 3605.988728][T52604] se: weight(1048576) vruntime(372370471) slice(2800000) deadline(375167466) curr?(1) task?(0)
[ 3606.000083][T52604] se: weight(1048576) vruntime(372375091) slice(2800000) deadline(375168371) curr?(1) task?(0)
[ 3606.011439][T52604] se: weight(1048576) vruntime(372374971) slice(2800000) deadline(375169572) curr?(1) task?(0)
[ 3606.022789][T52604] se: weight(1048576) vruntime(372371028) slice(2800000) deadline(375171028) curr?(1) task?(0)
[ 3606.034147][T52604] se: weight(1048576) vruntime(372378483) slice(2800000) deadline(375174236) curr?(1) task?(0)
[ 3606.045507][T52604] se: weight(1048576) vruntime(372378542) slice(2800000) deadline(375174656) curr?(1) task?(0)
[ 3606.056863][T52604] se: weight(1048576) vruntime(372378982) slice(2800000) deadline(375174775) curr?(1) task?(0)
[ 3606.068211][T52604] se: weight(1048576) vruntime(372380253) slice(2800000) deadline(375175045) curr?(1) task?(0)
[ 3606.079565][T52604] se: weight(1048576) vruntime(372379586) slice(2800000) deadline(375175109) curr?(1) task?(0)
[ 3606.090921][T52604] se: weight(1048576) vruntime(372381391) slice(2800000) deadline(375176183) curr?(1) task?(0)
[ 3606.102279][T52604] se: weight(1048576) vruntime(372380825) slice(2800000) deadline(375177469) curr?(1) task?(0)
[ 3606.113636][T52604] se: weight(1048576) vruntime(372384394) slice(2800000) deadline(375182171) curr?(1) task?(0)
[ 3606.124997][T52604] se: weight(1048576) vruntime(372384832) slice(2800000) deadline(375182408) curr?(1) task?(0)
[ 3606.136355][T52604] se: weight(1048576) vruntime(372383260) slice(2800000) deadline(375183260) curr?(1) task?(0)
[ 3606.147711][T52604] se: weight(1048576) vruntime(372386783) slice(2800000) deadline(375184500) curr?(1) task?(0)
[ 3606.159068][T52604] se: weight(1048576) vruntime(372388513) slice(2800000) deadline(375185238) curr?(1) task?(0)
[ 3606.170424][T52604] se: weight(1048576) vruntime(372396369) slice(2800000) deadline(375194336) curr?(1) task?(0)
[ 3606.181780][T52604] se: weight(1048576) vruntime(372400050) slice(2800000) deadline(375198077) curr?(1) task?(0)
[ 3606.193138][T52604] se: weight(1048576) vruntime(372403353) slice(2800000) deadline(375199147) curr?(1) task?(0)
[ 3606.204497][T52604] se: weight(1048576) vruntime(372406100) slice(2800000) deadline(375200972) curr?(1) task?(0)
[ 3606.215856][T52604] se: weight(1048576) vruntime(372403206) slice(2800000) deadline(375200973) curr?(1) task?(0)
[ 3606.227213][T52604] se: weight(1048576) vruntime(372408608) slice(2800000) deadline(375204742) curr?(1) task?(0)
[ 3606.238562][T52604] se: weight(1048576) vruntime(372410620) slice(2800000) deadline(375206564) curr?(1) task?(0)
[ 3606.249915][T52604] se: weight(1048576) vruntime(372412031) slice(2800000) deadline(375208246) curr?(1) task?(0)
[ 3606.261273][T52604] se: weight(1048576) vruntime(372416147) slice(2800000) deadline(375210779) curr?(1) task?(0)
[ 3606.272631][T52604] se: weight(1048576) vruntime(372417770) slice(2800000) deadline(375211731) curr?(1) task?(0)
[ 3606.283988][T52604] se: weight(1048576) vruntime(372414440) slice(2800000) deadline(375212747) curr?(1) task?(0)
[ 3606.295346][T52604] se: weight(1048576) vruntime(372417540) slice(2800000) deadline(375215526) curr?(1) task?(0)
[ 3606.306703][T52604] se: weight(1048576) vruntime(372424907) slice(2800000) deadline(375220160) curr?(1) task?(0)
[ 3606.318059][T52604] se: weight(1048576) vruntime(372425025) slice(2800000) deadline(375221821) curr?(1) task?(0)
[ 3606.329413][T52604] se: weight(1048576) vruntime(372426679) slice(2800000) deadline(375222773) curr?(1) task?(0)
[ 3606.340769][T52604] se: weight(1048576) vruntime(372430037) slice(2800000) deadline(375225010) curr?(1) task?(0)
[ 3606.352126][T52604] se: weight(1048576) vruntime(372429414) slice(2800000) deadline(375225718) curr?(1) task?(0)
[ 3606.363484][T52604] se: weight(1048576) vruntime(372430797) slice(2800000) deadline(375226700) curr?(1) task?(0)
[ 3606.374845][T52604] se: weight(1048576) vruntime(372433263) slice(2800000) deadline(375229377) curr?(1) task?(0)
[ 3606.386204][T52604] se: weight(1048576) vruntime(372436816) slice(2800000) deadline(375232340) curr?(1) task?(0)
[ 3606.397561][T52604] se: weight(1048576) vruntime(372439017) slice(2800000) deadline(375233148) curr?(1) task?(0)
[ 3606.408917][T52604] se: weight(1048576) vruntime(372439893) slice(2800000) deadline(375238070) curr?(1) task?(0)
[ 3606.420272][T52604] se: weight(1048576) vruntime(372445558) slice(2800000) deadline(375239920) curr?(1) task?(0)
[ 3606.431628][T52604] se: weight(1048576) vruntime(372449158) slice(2800000) deadline(375244922) curr?(1) task?(0)
[ 3606.442977][T52604] se: weight(1048576) vruntime(372449714) slice(2800000) deadline(375246710) curr?(1) task?(0)
[ 3606.454337][T52604] se: weight(1048576) vruntime(372450154) slice(2800000) deadline(375248010) curr?(1) task?(0)
[ 3606.465695][T52604] se: weight(1048576) vruntime(372453092) slice(2800000) deadline(375249556) curr?(1) task?(0)
[ 3606.477050][T52604] se: weight(1048576) vruntime(372461959) slice(2800000) deadline(375258013) curr?(1) task?(0)
[ 3606.488408][T52604] se: weight(1048576) vruntime(372462514) slice(2800000) deadline(375259249) curr?(1) task?(0)
[ 3606.499763][T52604] se: weight(1048576) vruntime(372463606) slice(2800000) deadline(375259410) curr?(1) task?(0)
[ 3606.511120][T52604] se: weight(1048576) vruntime(372463276) slice(2800000) deadline(375261523) curr?(1) task?(0)
[ 3606.522475][T52604] se: weight(1048576) vruntime(372468590) slice(2800000) deadline(375263763) curr?(1) task?(0)
[ 3606.533832][T52604] se: weight(1048576) vruntime(372466519) slice(2800000) deadline(375263915) curr?(1) task?(0)
[ 3606.545194][T52604] se: weight(1048576) vruntime(372468787) slice(2800000) deadline(375265682) curr?(1) task?(0)
[ 3606.556553][T52604] se: weight(1048576) vruntime(372471232) slice(2800000) deadline(375267257) curr?(1) task?(0)
[ 3606.567901][T52604] se: weight(1048576) vruntime(372471009) slice(2800000) deadline(375268986) curr?(1) task?(0)
[ 3606.579257][T52604] se: weight(1048576) vruntime(372473058) slice(2800000) deadline(375271255) curr?(1) task?(0)
[ 3606.590612][T52604] se: weight(1048576) vruntime(372476539) slice(2800000) deadline(375274105) curr?(1) task?(0)
[ 3606.601967][T52604] se: weight(1048576) vruntime(372479303) slice(2800000) deadline(375277520) curr?(1) task?(0)
[ 3606.613327][T52604] se: weight(1048576) vruntime(372482424) slice(2800000) deadline(375278708) curr?(1) task?(0)
[ 3606.624685][T52604] se: weight(1048576) vruntime(372485788) slice(2800000) deadline(375283014) curr?(1) task?(0)
[ 3606.636043][T52604] se: weight(1048576) vruntime(372487019) slice(2800000) deadline(375283854) curr?(1) task?(0)
[ 3606.647401][T52604] se: weight(1048576) vruntime(372495978) slice(2800000) deadline(375293665) curr?(1) task?(0)
[ 3606.658758][T52604] se: weight(1048576) vruntime(372497347) slice(2800000) deadline(375295124) curr?(1) task?(0)
[ 3606.670112][T52604] se: weight(1048576) vruntime(372500482) slice(2800000) deadline(375297598) curr?(1) task?(0)
[ 3606.681468][T52604] se: weight(1048576) vruntime(372503639) slice(2800000) deadline(375301846) curr?(1) task?(0)
[ 3606.692827][T52604] se: weight(1048576) vruntime(372506929) slice(2800000) deadline(375302152) curr?(1) task?(0)
[ 3606.704186][T52604] se: weight(1048576) vruntime(372510746) slice(2800000) deadline(375306971) curr?(1) task?(0)
[ 3606.715544][T52604] se: weight(1048576) vruntime(372511357) slice(2800000) deadline(375307161) curr?(1) task?(0)
[ 3606.726902][T52604] se: weight(1048576) vruntime(372520556) slice(2800000) deadline(375317201) curr?(1) task?(0)
[ 3606.738260][T52604] se: weight(1048576) vruntime(372523398) slice(2800000) deadline(375317309) curr?(1) task?(0)
[ 3606.749615][T52604] se: weight(1048576) vruntime(372525154) slice(2800000) deadline(375323040) curr?(1) task?(0)
[ 3606.760972][T52604] se: weight(1048576) vruntime(372531207) slice(2800000) deadline(375327541) curr?(1) task?(0)
[ 3606.772331][T52604] se: weight(1048576) vruntime(372537131) slice(2800000) deadline(375333556) curr?(1) task?(0)
[ 3606.783689][T52604] se: weight(1048576) vruntime(372554696) slice(2800000) deadline(375349338) curr?(1) task?(0)
[ 3606.795051][T52604] se: weight(1048576) vruntime(372555560) slice(2800000) deadline(375350853) curr?(1) task?(0)
[ 3606.806409][T52604] se: weight(1048576) vruntime(372563467) slice(2800000) deadline(375359181) curr?(1) task?(0)
[ 3606.817765][T52604] se: weight(1048576) vruntime(372569003) slice(2800000) deadline(375363675) curr?(1) task?(0)
[ 3606.829123][T52604] se: weight(1048576) vruntime(372570679) slice(2800000) deadline(375369037) curr?(1) task?(0)
[ 3606.840476][T52604] se: weight(1048576) vruntime(372571911) slice(2800000) deadline(375370038) curr?(1) task?(0)
[ 3606.851832][T52604] se: weight(1048576) vruntime(372574690) slice(2800000) deadline(375370474) curr?(1) task?(0)
[ 3606.863191][T52604] se: weight(1048576) vruntime(372577541) slice(2800000) deadline(375373735) curr?(1) task?(0)
[ 3606.874550][T52604] se: weight(1048576) vruntime(372579763) slice(2800000) deadline(375375346) curr?(1) task?(0)
[ 3606.885909][T52604] se: weight(1048576) vruntime(372582376) slice(2800000) deadline(375375867) curr?(1) task?(0)
[ 3606.897267][T52604] se: weight(1048576) vruntime(372576015) slice(2800000) deadline(375376015) curr?(1) task?(0)
[ 3606.908624][T52604] se: weight(1048576) vruntime(372579240) slice(2800000) deadline(375377457) curr?(1) task?(0)
[ 3606.919979][T52604] se: weight(1048576) vruntime(372582224) slice(2800000) deadline(375378558) curr?(1) task?(0)
[ 3606.931336][T52604] se: weight(1048576) vruntime(372583209) slice(2800000) deadline(375379643) curr?(1) task?(0)
[ 3606.942693][T52604] se: weight(1048576) vruntime(372585526) slice(2800000) deadline(375381019) curr?(1) task?(0)
[ 3606.954051][T52604] se: weight(1048576) vruntime(372587407) slice(2800000) deadline(375384552) curr?(1) task?(0)
[ 3606.965412][T52604] se: weight(1048576) vruntime(372588744) slice(2800000) deadline(375384918) curr?(1) task?(0)
[ 3606.976772][T52604] se: weight(1048576) vruntime(372592811) slice(2800000) deadline(375388815) curr?(1) task?(0)
[ 3606.988129][T52604] se: weight(1048576) vruntime(372591223) slice(2800000) deadline(375388969) curr?(1) task?(0)
[ 3606.999482][T52604] se: weight(1048576) vruntime(372595144) slice(2800000) deadline(375389346) curr?(1) task?(0)
[ 3607.010839][T52604] se: weight(1048576) vruntime(372593617) slice(2800000) deadline(375391214) curr?(1) task?(0)
[ 3607.022193][T52604] se: weight(1048576) vruntime(372598627) slice(2800000) deadline(375393439) curr?(1) task?(0)
[ 3607.033552][T52604] se: weight(1048576) vruntime(372598886) slice(2800000) deadline(375394890) curr?(1) task?(0)
[ 3607.044904][T52604] se: weight(1048576) vruntime(372602885) slice(2800000) deadline(375399730) curr?(1) task?(0)
[ 3607.056254][T52604] se: weight(1048576) vruntime(372601836) slice(2800000) deadline(375399753) curr?(1) task?(0)
[ 3607.067610][T52604] se: weight(1048576) vruntime(372605421) slice(2800000) deadline(375402957) curr?(1) task?(0)
[ 3607.078958][T52604] se: weight(1048576) vruntime(372607213) slice(2800000) deadline(375403848) curr?(1) task?(0)
[ 3607.090310][T52604] se: weight(1048576) vruntime(372608664) slice(2800000) deadline(375405068) curr?(1) task?(0)
[ 3607.101667][T52604] se: weight(1048576) vruntime(372609463) slice(2800000) deadline(375407320) curr?(1) task?(0)
[ 3607.113027][T52604] se: weight(1048576) vruntime(372611283) slice(2800000) deadline(375408439) curr?(1) task?(0)
[ 3607.124383][T52604] se: weight(1048576) vruntime(372615488) slice(2800000) deadline(375412764) curr?(1) task?(0)
[ 3607.135744][T52604] se: weight(1048576) vruntime(372618046) slice(2800000) deadline(375416003) curr?(1) task?(0)
[ 3607.147101][T52604] se: weight(1048576) vruntime(372627335) slice(2800000) deadline(375421666) curr?(1) task?(0)
[ 3607.158459][T52604] se: weight(1048576) vruntime(372626267) slice(2800000) deadline(375423873) curr?(1) task?(0)
[ 3607.169815][T52604] se: weight(1048576) vruntime(372627733) slice(2800000) deadline(375424018) curr?(1) task?(0)
[ 3607.181171][T52604] se: weight(1048576) vruntime(372630713) slice(2800000) deadline(375428400) curr?(1) task?(0)
[ 3607.192520][T52604] se: weight(1048576) vruntime(372639178) slice(2800000) deadline(375436264) curr?(1) task?(0)
[ 3607.203878][T52604] se: weight(1048576) vruntime(372642294) slice(2800000) deadline(375438819) curr?(1) task?(0)
[ 3607.215239][T52604] se: weight(1048576) vruntime(372644981) slice(2800000) deadline(375441866) curr?(1) task?(0)
[ 3607.226598][T52604] se: weight(1048576) vruntime(372646365) slice(2800000) deadline(375441959) curr?(1) task?(0)
[ 3607.237955][T52604] se: weight(1048576) vruntime(372652641) slice(2800000) deadline(375450037) curr?(1) task?(0)
[ 3607.249312][T52604] se: weight(1048576) vruntime(372660132) slice(2800000) deadline(375456727) curr?(1) task?(0)
[ 3607.260668][T52604] se: weight(1048576) vruntime(372663408) slice(2800000) deadline(375460393) curr?(1) task?(0)
[ 3607.272023][T52604] se: weight(1048576) vruntime(372662800) slice(2800000) deadline(375460487) curr?(1) task?(0)
[ 3607.283375][T52604] se: weight(1048576) vruntime(372666384) slice(2800000) deadline(375464011) curr?(1) task?(0)
[ 3607.294734][T52604] se: weight(1048576) vruntime(372667098) slice(2800000) deadline(375464084) curr?(1) task?(0)
[ 3607.306093][T52604] se: weight(1048576) vruntime(372665836) slice(2800000) deadline(375465836) curr?(1) task?(0)
[ 3607.317448][T52604] se: weight(1048576) vruntime(372669104) slice(2800000) deadline(375466320) curr?(1) task?(0)
[ 3607.328805][T52604] se: weight(1048576) vruntime(372668610) slice(2800000) deadline(375466426) curr?(1) task?(0)
[ 3607.340159][T52604] se: weight(1048576) vruntime(372671554) slice(2800000) deadline(375468359) curr?(1) task?(0)
[ 3607.351515][T52604] se: weight(1048576) vruntime(372673697) slice(2800000) deadline(375470212) curr?(1) task?(0)
[ 3607.362864][T52604] se: weight(1048576) vruntime(372673990) slice(2800000) deadline(375470355) curr?(1) task?(0)
[ 3607.374220][T52604] se: weight(1048576) vruntime(372676956) slice(2800000) deadline(375473852) curr?(1) task?(0)
[ 3607.385581][T52604] se: weight(1048576) vruntime(372676239) slice(2800000) deadline(375474256) curr?(1) task?(0)
[ 3607.396940][T52604] se: weight(1048576) vruntime(372684044) slice(2800000) deadline(375479618) curr?(1) task?(0)
[ 3607.408298][T52604] se: weight(1048576) vruntime(372680289) slice(2800000) deadline(375480289) curr?(1) task?(0)
[ 3607.419653][T52604] se: weight(1048576) vruntime(372683548) slice(2800000) deadline(375480794) curr?(1) task?(0)
[ 3607.431009][T52604] se: weight(1048576) vruntime(372683128) slice(2800000) deadline(375483128) curr?(1) task?(0)
[ 3607.442366][T52604] se: weight(1048576) vruntime(372685450) slice(2800000) deadline(375483337) curr?(1) task?(0)
[ 3607.453727][T52604] se: weight(1048576) vruntime(372686748) slice(2800000) deadline(375484715) curr?(1) task?(0)
[ 3607.465086][T52604] se: weight(1048576) vruntime(372697600) slice(2800000) deadline(375495506) curr?(1) task?(0)
[ 3607.476444][T52604] se: weight(1048576) vruntime(372699810) slice(2800000) deadline(375496145) curr?(1) task?(0)
[ 3607.487801][T52604] se: weight(1048576) vruntime(372700754) slice(2800000) deadline(375496478) curr?(1) task?(0)
[ 3607.499160][T52604] se: weight(1048576) vruntime(372701096) slice(2800000) deadline(375496569) curr?(1) task?(0)
[ 3607.510512][T52604] se: weight(1048576) vruntime(372699250) slice(2800000) deadline(375496586) curr?(1) task?(0)
[ 3607.521869][T52604] se: weight(1048576) vruntime(372700836) slice(2800000) deadline(375497661) curr?(1) task?(0)
[ 3607.533229][T52604] se: weight(1048576) vruntime(372701633) slice(2800000) deadline(375498759) curr?(1) task?(0)
[ 3607.544586][T52604] se: weight(1048576) vruntime(372704012) slice(2800000) deadline(375501138) curr?(1) task?(0)
[ 3607.555945][T52604] se: weight(1048576) vruntime(372706921) slice(2800000) deadline(375501653) curr?(1) task?(0)
[ 3607.567300][T52604] se: weight(1048576) vruntime(372704459) slice(2800000) deadline(375504459) curr?(1) task?(0)
[ 3607.578658][T52604] se: weight(1048576) vruntime(372710844) slice(2800000) deadline(375507549) curr?(1) task?(0)
[ 3607.590014][T52604] se: weight(1048576) vruntime(372713203) slice(2800000) deadline(375508456) curr?(1) task?(0)
[ 3607.601370][T52604] se: weight(1048576) vruntime(372713951) slice(2800000) deadline(375508503) curr?(1) task?(0)
[ 3607.612719][T52604] se: weight(1048576) vruntime(372711253) slice(2800000) deadline(375508609) curr?(1) task?(0)
[ 3607.624079][T52604] se: weight(1048576) vruntime(372714952) slice(2800000) deadline(375509774) curr?(1) task?(0)
[ 3607.635440][T52604] se: weight(1048576) vruntime(372713451) slice(2800000) deadline(375511518) curr?(1) task?(0)
[ 3607.646800][T52604] se: weight(1048576) vruntime(372714449) slice(2800000) deadline(375514449) curr?(1) task?(0)
[ 3607.658156][T52604] se: weight(1048576) vruntime(372719308) slice(2800000) deadline(375515272) curr?(1) task?(0)
[ 3607.669513][T52604] se: weight(1048576) vruntime(372716267) slice(2800000) deadline(375516267) curr?(1) task?(0)
[ 3607.680867][T52604] se: weight(1048576) vruntime(372718972) slice(2800000) deadline(375517149) curr?(1) task?(0)
[ 3607.692222][T52604] se: weight(1048576) vruntime(372722820) slice(2800000) deadline(375517672) curr?(1) task?(0)
[ 3607.703581][T52604] se: weight(1048576) vruntime(372723599) slice(2800000) deadline(375519453) curr?(1) task?(0)
[ 3607.714939][T52604] se: weight(1048576) vruntime(372722409) slice(2800000) deadline(375519855) curr?(1) task?(0)
[ 3607.726288][T52604] se: weight(1048576) vruntime(372723909) slice(2800000) deadline(375520173) curr?(1) task?(0)
[ 3607.737646][T52604] se: weight(1048576) vruntime(372722971) slice(2800000) deadline(375520267) curr?(1) task?(0)
[ 3607.749005][T52604] se: weight(1048576) vruntime(372724595) slice(2800000) deadline(375520449) curr?(1) task?(0)
[ 3607.760357][T52604] se: weight(1048576) vruntime(372730328) slice(2800000) deadline(375524049) curr?(1) task?(0)
[ 3607.771715][T52604] se: weight(1048576) vruntime(372728891) slice(2800000) deadline(375526468) curr?(1) task?(0)
[ 3607.783071][T52604] se: weight(1048576) vruntime(372732088) slice(2800000) deadline(375526920) curr?(1) task?(0)
[ 3607.794430][T52604] se: weight(1048576) vruntime(372730654) slice(2800000) deadline(375527389) curr?(1) task?(0)
[ 3607.805790][T52604] se: weight(1048576) vruntime(372737114) slice(2800000) deadline(375530444) curr?(1) task?(0)
[ 3607.817149][T52604] se: weight(1048576) vruntime(372735211) slice(2800000) deadline(375532036) curr?(1) task?(0)
[ 3607.828508][T52604] se: weight(1048576) vruntime(372737113) slice(2800000) deadline(375532857) curr?(1) task?(0)
[ 3607.839864][T52604] se: weight(1048576) vruntime(372737141) slice(2800000) deadline(375533175) curr?(1) task?(0)
[ 3607.851219][T52604] se: weight(1048576) vruntime(372740653) slice(2800000) deadline(375536727) curr?(1) task?(0)
[ 3607.862575][T52604] se: weight(1048576) vruntime(372743768) slice(2800000) deadline(375539992) curr?(1) task?(0)
[ 3607.873934][T52604] se: weight(1048576) vruntime(372745812) slice(2800000) deadline(375541265) curr?(1) task?(0)
[ 3607.885293][T52604] se: weight(1048576) vruntime(372748028) slice(2800000) deadline(375541989) curr?(1) task?(0)
[ 3607.896651][T52604] se: weight(1048576) vruntime(372749213) slice(2800000) deadline(375545137) curr?(1) task?(0)
[ 3607.908008][T52604] se: weight(1048576) vruntime(372752255) slice(2800000) deadline(375547879) curr?(1) task?(0)
[ 3607.919367][T52604] se: weight(1048576) vruntime(372754412) slice(2800000) deadline(375552659) curr?(1) task?(0)
[ 3607.930721][T52604] se: weight(1048576) vruntime(372763408) slice(2800000) deadline(375558661) curr?(1) task?(0)
[ 3607.942078][T52604] se: weight(1048576) vruntime(372764679) slice(2800000) deadline(375560503) curr?(1) task?(0)
[ 3607.953439][T52604] se: weight(1048576) vruntime(372764954) slice(2800000) deadline(375560767) curr?(1) task?(0)
[ 3607.964796][T52604] se: weight(1048576) vruntime(372765024) slice(2800000) deadline(375560958) curr?(1) task?(0)
[ 3607.976155][T52604] se: weight(1048576) vruntime(372769457) slice(2800000) deadline(375564710) curr?(1) task?(0)
[ 3607.987513][T52604] se: weight(1048576) vruntime(372767524) slice(2800000) deadline(375565000) curr?(1) task?(0)
[ 3607.998870][T52604] se: weight(1048576) vruntime(372772078) slice(2800000) deadline(375565769) curr?(1) task?(0)
[ 3608.010225][T52604] se: weight(1048576) vruntime(372767998) slice(2800000) deadline(375567998) curr?(1) task?(0)
[ 3608.021580][T52604] se: weight(1048576) vruntime(372773243) slice(2800000) deadline(375568806) curr?(1) task?(0)
[ 3608.032938][T52604] se: weight(1048576) vruntime(372774460) slice(2800000) deadline(375570024) curr?(1) task?(0)
[ 3608.044296][T52604] se: weight(1048576) vruntime(372773797) slice(2800000) deadline(375570712) curr?(1) task?(0)
[ 3608.055658][T52604] se: weight(1048576) vruntime(372776671) slice(2800000) deadline(375572234) curr?(1) task?(0)
[ 3608.067016][T52604] se: weight(1048576) vruntime(372780480) slice(2800000) deadline(375576815) curr?(1) task?(0)
[ 3608.078373][T52604] se: weight(1048576) vruntime(372780853) slice(2800000) deadline(375577799) curr?(1) task?(0)
[ 3608.089730][T52604] se: weight(1048576) vruntime(372781616) slice(2800000) deadline(375579482) curr?(1) task?(0)
[ 3608.101086][T52604] se: weight(1048576) vruntime(372783568) slice(2800000) deadline(375579532) curr?(1) task?(0)
[ 3608.112441][T52604] se: weight(1048576) vruntime(372785551) slice(2800000) deadline(375580463) curr?(1) task?(0)
[ 3608.123791][T52604] se: weight(1048576) vruntime(372786546) slice(2800000) deadline(375582980) curr?(1) task?(0)
[ 3608.135149][T52604] se: weight(1048576) vruntime(372789394) slice(2800000) deadline(375585718) curr?(1) task?(0)
[ 3608.146507][T52604] se: weight(1048576) vruntime(372793517) slice(2800000) deadline(375587888) curr?(1) task?(0)
[ 3608.157862][T52604] se: weight(1048576) vruntime(372804177) slice(2800000) deadline(375589375) curr?(1) task?(0)
[ 3608.169211][T52604] se: weight(1048576) vruntime(372791748) slice(2800000) deadline(375591748) curr?(1) task?(0)
[ 3608.180563][T52604] se: weight(1048576) vruntime(372795409) slice(2800000) deadline(375593677) curr?(1) task?(0)
[ 3608.191921][T52604] se: weight(1048576) vruntime(372798337) slice(2800000) deadline(375596234) curr?(1) task?(0)
[ 3608.203278][T52604] se: weight(1048576) vruntime(372800462) slice(2800000) deadline(375596316) curr?(1) task?(0)
[ 3608.214636][T52604] se: weight(1048576) vruntime(372799280) slice(2800000) deadline(375596787) curr?(1) task?(0)
[ 3608.225996][T52604] se: weight(1048576) vruntime(372801211) slice(2800000) deadline(375596884) curr?(1) task?(0)
[ 3608.237356][T52604] se: weight(1048576) vruntime(372802374) slice(2800000) deadline(375598338) curr?(1) task?(0)
[ 3608.248714][T52604] se: weight(1048576) vruntime(372806878) slice(2800000) deadline(375600489) curr?(1) task?(0)
[ 3608.260070][T52604] se: weight(1048576) vruntime(372806462) slice(2800000) deadline(375601364) curr?(1) task?(0)
[ 3608.271427][T52604] se: weight(1048576) vruntime(372807825) slice(2800000) deadline(375604009) curr?(1) task?(0)
[ 3608.282782][T52604] se: weight(1048576) vruntime(372807627) slice(2800000) deadline(375604021) curr?(1) task?(0)
[ 3608.294142][T52604] se: weight(1048576) vruntime(372810892) slice(2800000) deadline(375607246) curr?(1) task?(0)
[ 3608.305502][T52604] se: weight(1048576) vruntime(372814407) slice(2800000) deadline(375609119) curr?(1) task?(0)
[ 3608.316861][T52604] se: weight(1048576) vruntime(372814790) slice(2800000) deadline(375609172) curr?(1) task?(0)
[ 3608.328217][T52604] se: weight(1048576) vruntime(372815154) slice(2800000) deadline(375611168) curr?(1) task?(0)
[ 3608.339574][T52604] se: weight(1048576) vruntime(372816047) slice(2800000) deadline(375611260) curr?(1) task?(0)
[ 3608.350928][T52604] se: weight(1048576) vruntime(372815734) slice(2800000) deadline(375613110) curr?(1) task?(0)
[ 3608.362286][T52604] se: weight(1048576) vruntime(372822208) slice(2800000) deadline(375618563) curr?(1) task?(0)
[ 3608.373645][T52604] se: weight(1048576) vruntime(372823809) slice(2800000) deadline(375619763) curr?(1) task?(0)
[ 3608.385003][T52604] se: weight(1048576) vruntime(372823681) slice(2800000) deadline(375620036) curr?(1) task?(0)
[ 3608.396363][T52604] se: weight(1048576) vruntime(372823090) slice(2800000) deadline(375621358) curr?(1) task?(0)
[ 3608.407719][T52604] se: weight(1048576) vruntime(372824218) slice(2800000) deadline(375621895) curr?(1) task?(0)
[ 3608.419078][T52604] se: weight(1048576) vruntime(372827596) slice(2800000) deadline(375623650) curr?(1) task?(0)
[ 3608.430432][T52604] se: weight(1048576) vruntime(372831123) slice(2800000) deadline(375626286) curr?(1) task?(0)
[ 3608.441787][T52604] se: weight(1048576) vruntime(372831553) slice(2800000) deadline(375627457) curr?(1) task?(0)
[ 3608.453146][T52604] se: weight(1048576) vruntime(372830605) slice(2800000) deadline(375627951) curr?(1) task?(0)
[ 3608.464504][T52604] se: weight(1048576) vruntime(372831442) slice(2800000) deadline(375628087) curr?(1) task?(0)
[ 3608.475865][T52604] se: weight(1048576) vruntime(372836020) slice(2800000) deadline(375628759) curr?(1) task?(0)
[ 3608.487215][T52604] se: weight(1048576) vruntime(372832722) slice(2800000) deadline(375629016) curr?(1) task?(0)
[ 3608.498570][T52604] se: weight(1048576) vruntime(372839789) slice(2800000) deadline(375634271) curr?(1) task?(0)
[ 3608.509927][T52604] se: weight(1048576) vruntime(372839292) slice(2800000) deadline(375635256) curr?(1) task?(0)
[ 3608.521284][T52604] se: weight(1048576) vruntime(372842047) slice(2800000) deadline(375638101) curr?(1) task?(0)
[ 3608.532639][T52604] se: weight(1048576) vruntime(372844543) slice(2800000) deadline(375641418) curr?(1) task?(0)
[ 3608.543997][T52604] se: weight(1048576) vruntime(372846531) slice(2800000) deadline(375641864) curr?(1) task?(0)
[ 3608.555356][T52604] se: weight(1048576) vruntime(372844747) slice(2800000) deadline(375643025) curr?(1) task?(0)
[ 3608.566716][T52604] se: weight(1048576) vruntime(372850775) slice(2800000) deadline(375645347) curr?(1) task?(0)
[ 3608.578073][T52604] se: weight(1048576) vruntime(372849137) slice(2800000) deadline(375647054) curr?(1) task?(0)
[ 3608.589431][T52604] se: weight(1048576) vruntime(372850499) slice(2800000) deadline(375647875) curr?(1) task?(0)
[ 3608.600785][T52604] se: weight(1048576) vruntime(372853059) slice(2800000) deadline(375648002) curr?(1) task?(0)
[ 3608.612141][T52604] se: weight(1048576) vruntime(372855078) slice(2800000) deadline(375651162) curr?(1) task?(0)
[ 3608.623489][T52604] se: weight(1048576) vruntime(372860592) slice(2800000) deadline(375653802) curr?(1) task?(0)
[ 3608.634845][T52604] se: weight(1048576) vruntime(372862099) slice(2800000) deadline(375657332) curr?(1) task?(0)
[ 3608.646205][T52604] se: weight(1048576) vruntime(372863973) slice(2800000) deadline(375659697) curr?(1) task?(0)
[ 3608.657563][T52604] se: weight(1048576) vruntime(372864193) slice(2800000) deadline(375660707) curr?(1) task?(0)
[ 3608.668920][T52604] se: weight(1048576) vruntime(372865823) slice(2800000) deadline(375662087) curr?(1) task?(0)
[ 3608.680275][T52604] se: weight(1048576) vruntime(372868705) slice(2800000) deadline(375664899) curr?(1) task?(0)
[ 3608.691631][T52604] se: weight(1048576) vruntime(372869439) slice(2800000) deadline(375665613) curr?(1) task?(0)
[ 3608.702987][T52604] se: weight(1048576) vruntime(372873427) slice(2800000) deadline(375667528) curr?(1) task?(0)
[ 3608.714346][T52604] se: weight(1048576) vruntime(372877997) slice(2800000) deadline(375673390) curr?(1) task?(0)
[ 3608.725698][T52604] se: weight(1048576) vruntime(372883546) slice(2800000) deadline(375677006) curr?(1) task?(0)
[ 3608.737057][T52604] se: weight(1048576) vruntime(372882737) slice(2800000) deadline(375678751) curr?(1) task?(0)
[ 3608.748412][T52604] se: weight(1048576) vruntime(372885085) slice(2800000) deadline(375682401) curr?(1) task?(0)
[ 3608.759762][T52604] se: weight(1048576) vruntime(372890867) slice(2800000) deadline(375686310) curr?(1) task?(0)
[ 3608.771116][T52604] se: weight(1048576) vruntime(372894049) slice(2800000) deadline(375688761) curr?(1) task?(0)
[ 3608.782473][T52604] se: weight(1048576) vruntime(372896095) slice(2800000) deadline(375691368) curr?(1) task?(0)
[ 3608.793832][T52604] se: weight(1048576) vruntime(372897360) slice(2800000) deadline(375692312) curr?(1) task?(0)
[ 3608.805190][T52604] se: weight(1048576) vruntime(372896767) slice(2800000) deadline(375692601) curr?(1) task?(0)
[ 3608.816548][T52604] se: weight(1048576) vruntime(372906263) slice(2800000) deadline(375702217) curr?(1) task?(0)
[ 3608.827906][T52604] se: weight(1048576) vruntime(372912429) slice(2800000) deadline(375708804) curr?(1) task?(0)
[ 3608.839262][T52604] se: weight(1048576) vruntime(372920753) slice(2800000) deadline(375715726) curr?(1) task?(0)
[ 3608.850616][T52604] se: weight(1048576) vruntime(372921121) slice(2800000) deadline(375716494) curr?(1) task?(0)
[ 3608.861973][T52604] se: weight(1048576) vruntime(372921450) slice(2800000) deadline(375716652) curr?(1) task?(0)
[ 3608.873323][T52604] se: weight(1048576) vruntime(372920872) slice(2800000) deadline(375716676) curr?(1) task?(0)
[ 3608.884679][T52604] se: weight(1048576) vruntime(372926185) slice(2800000) deadline(375721578) curr?(1) task?(0)
[ 3608.896042][T52604] se: weight(1048576) vruntime(372926785) slice(2800000) deadline(375722869) curr?(1) task?(0)
[ 3608.907391][T52604] se: weight(1048576) vruntime(372924946) slice(2800000) deadline(375723253) curr?(1) task?(0)
[ 3608.918747][T52604] se: weight(1048576) vruntime(372926670) slice(2800000) deadline(375726670) curr?(1) task?(0)
[ 3608.930103][T52604] se: weight(1048576) vruntime(372932855) slice(2800000) deadline(375728899) curr?(1) task?(0)
[ 3608.941457][T52604] se: weight(1048576) vruntime(372930692) slice(2800000) deadline(375729030) curr?(1) task?(0)
[ 3608.952814][T52604] se: weight(1048576) vruntime(372934915) slice(2800000) deadline(375729857) curr?(1) task?(0)
[ 3608.964165][T52604] se: weight(1048576) vruntime(372932812) slice(2800000) deadline(375730579) curr?(1) task?(0)
[ 3608.975525][T52604] se: weight(1048576) vruntime(372934047) slice(2800000) deadline(375731924) curr?(1) task?(0)
[ 3608.986885][T52604] se: weight(1048576) vruntime(372936040) slice(2800000) deadline(375732414) curr?(1) task?(0)
[ 3608.998242][T52604] se: weight(1048576) vruntime(372937254) slice(2800000) deadline(375732537) curr?(1) task?(0)
[ 3609.009591][T52604] se: weight(1048576) vruntime(372938299) slice(2800000) deadline(375734504) curr?(1) task?(0)
[ 3609.020945][T52604] se: weight(1048576) vruntime(372939868) slice(2800000) deadline(375734911) curr?(1) task?(0)
[ 3609.032301][T52604] se: weight(1048576) vruntime(372939431) slice(2800000) deadline(375735104) curr?(1) task?(0)
[ 3609.043650][T52604] se: weight(1048576) vruntime(372943957) slice(2800000) deadline(375736876) curr?(1) task?(0)
[ 3609.055008][T52604] se: weight(1048576) vruntime(372941512) slice(2800000) deadline(375737596) curr?(1) task?(0)
[ 3609.066369][T52604] se: weight(1048576) vruntime(372943426) slice(2800000) deadline(375738609) curr?(1) task?(0)
[ 3609.077729][T52604] se: weight(1048576) vruntime(372942744) slice(2800000) deadline(375738678) curr?(1) task?(0)
[ 3609.089087][T52604] se: weight(1048576) vruntime(372943449) slice(2800000) deadline(375739312) curr?(1) task?(0)
[ 3609.100440][T52604] se: weight(1048576) vruntime(372942999) slice(2800000) deadline(375739964) curr?(1) task?(0)
[ 3609.111795][T52604] se: weight(1048576) vruntime(372946364) slice(2800000) deadline(375741688) curr?(1) task?(0)
[ 3609.123151][T52604] se: weight(1048576) vruntime(372950236) slice(2800000) deadline(375745970) curr?(1) task?(0)
[ 3609.134509][T52604] se: weight(1048576) vruntime(372950904) slice(2800000) deadline(375746528) curr?(1) task?(0)
[ 3609.145870][T52604] se: weight(1048576) vruntime(372951107) slice(2800000) deadline(375746770) curr?(1) task?(0)
[ 3609.157229][T52604] se: weight(1048576) vruntime(372951171) slice(2800000) deadline(375748146) curr?(1) task?(0)
[ 3609.168586][T52604] se: weight(1048576) vruntime(372954690) slice(2800000) deadline(375750574) curr?(1) task?(0)
[ 3609.179945][T52604] se: weight(1048576) vruntime(372955754) slice(2800000) deadline(375750656) curr?(1) task?(0)
[ 3609.191299][T52604] se: weight(1048576) vruntime(372959065) slice(2800000) deadline(375752475) curr?(1) task?(0)
[ 3609.202656][T52604] se: weight(1048576) vruntime(372959128) slice(2800000) deadline(375753360) curr?(1) task?(0)
[ 3609.214015][T52604] se: weight(1048576) vruntime(372961792) slice(2800000) deadline(375755964) curr?(1) task?(0)
[ 3609.225373][T52604] se: weight(1048576) vruntime(372964109) slice(2800000) deadline(375759582) curr?(1) task?(0)
[ 3609.236732][T52604] se: weight(1048576) vruntime(372972523) slice(2800000) deadline(375767286) curr?(1) task?(0)
[ 3609.248087][T52604] se: weight(1048576) vruntime(372971908) slice(2800000) deadline(375769074) curr?(1) task?(0)
[ 3609.259446][T52604] se: weight(1048576) vruntime(372983706) slice(2800000) deadline(375777267) curr?(1) task?(0)
[ 3609.270801][T52604] se: weight(1048576) vruntime(372983728) slice(2800000) deadline(375777669) curr?(1) task?(0)
[ 3609.282159][T52604] se: weight(1048576) vruntime(372985173) slice(2800000) deadline(375780436) curr?(1) task?(0)
[ 3609.293517][T52604] se: weight(1048576) vruntime(372981473) slice(2800000) deadline(375781473) curr?(1) task?(0)
[ 3609.304873][T52604] se: weight(1048576) vruntime(372992835) slice(2800000) deadline(375787397) curr?(1) task?(0)
[ 3609.316233][T52604] se: weight(1048576) vruntime(372993542) slice(2800000) deadline(375788114) curr?(1) task?(0)
[ 3609.327592][T52604] se: weight(1048576) vruntime(372997975) slice(2800000) deadline(375789803) curr?(1) task?(0)
[ 3609.338947][T52604] se: weight(1048576) vruntime(372996132) slice(2800000) deadline(375790684) curr?(1) task?(0)
[ 3609.350305][T52604] se: weight(1048576) vruntime(373001757) slice(2800000) deadline(375796800) curr?(1) task?(0)
[ 3609.361660][T52604] se: weight(1048576) vruntime(373011869) slice(2800000) deadline(375807302) curr?(1) task?(0)
[ 3609.373017][T52604] se: weight(1048576) vruntime(373014757) slice(2800000) deadline(375809730) curr?(1) task?(0)
[ 3609.384377][T52604] se: weight(1048576) vruntime(373011708) slice(2800000) deadline(375811708) curr?(1) task?(0)
[ 3609.395735][T52604] se: weight(1048576) vruntime(373019112) slice(2800000) deadline(375812192) curr?(1) task?(0)
[ 3609.407085][T52604] se: weight(1048576) vruntime(373020375) slice(2800000) deadline(375814256) curr?(1) task?(0)
[ 3609.418441][T52604] se: weight(1048576) vruntime(373026926) slice(2800000) deadline(375819886) curr?(1) task?(0)
[ 3609.429800][T52604] se: weight(1048576) vruntime(373020895) slice(2800000) deadline(375820895) curr?(1) task?(0)
[ 3609.441154][T52604] se: weight(1048576) vruntime(373033516) slice(2800000) deadline(375828588) curr?(1) task?(0)
[ 3609.452511][T52604] se: weight(1048576) vruntime(373038175) slice(2800000) deadline(375833208) curr?(1) task?(0)
[ 3609.463870][T52604] se: weight(1048576) vruntime(373040203) slice(2800000) deadline(375834505) curr?(1) task?(0)
[ 3609.475226][T52604] se: weight(1048576) vruntime(373044730) slice(2800000) deadline(375838370) curr?(1) task?(0)
[ 3609.486586][T52604] se: weight(1048576) vruntime(373046208) slice(2800000) deadline(375840910) curr?(1) task?(0)
[ 3609.497944][T52604] se: weight(1048576) vruntime(373053918) slice(2800000) deadline(375847378) curr?(1) task?(0)
[ 3609.509302][T52604] se: weight(1048576) vruntime(373055088) slice(2800000) deadline(375855088) curr?(1) task?(0)
[ 3609.520656][T52604] se: weight(1048576) vruntime(373059981) slice(2800000) deadline(375855154) curr?(1) task?(0)
[ 3609.532012][T52604] se: weight(1048576) vruntime(373061189) slice(2800000) deadline(375855991) curr?(1) task?(0)
[ 3609.543369][T52604] se: weight(1048576) vruntime(373064600) slice(2800000) deadline(375856107) curr?(1) task?(0)
[ 3609.554727][T52604] se: weight(1048576) vruntime(373076026) slice(2800000) deadline(375871329) curr?(1) task?(0)
[ 3609.566088][T52604] se: weight(1048576) vruntime(373086268) slice(2800000) deadline(375878396) curr?(1) task?(0)
[ 3609.577447][T52604] se: weight(1048576) vruntime(373085585) slice(2800000) deadline(375880327) curr?(1) task?(0)
[ 3609.588802][T52604] se: weight(1048576) vruntime(373088049) slice(2800000) deadline(375881700) curr?(1) task?(0)
[ 3609.600151][T52604] se: weight(1048576) vruntime(373087793) slice(2800000) deadline(375882064) curr?(1) task?(0)
[ 3609.611504][T52604] se: weight(1048576) vruntime(373091872) slice(2800000) deadline(375887065) curr?(1) task?(0)
[ 3609.622860][T52604] se: weight(1048576) vruntime(373096148) slice(2800000) deadline(375889858) curr?(1) task?(0)
[ 3609.634220][T52604] se: weight(1048576) vruntime(373096065) slice(2800000) deadline(375889966) curr?(1) task?(0)
[ 3609.645577][T52604] se: weight(1048576) vruntime(373099841) slice(2800000) deadline(375894784) curr?(1) task?(0)
[ 3609.656937][T52604] se: weight(1048576) vruntime(373100144) slice(2800000) deadline(375895097) curr?(1) task?(0)
[ 3609.668295][T52604] se: weight(1048576) vruntime(373101511) slice(2800000) deadline(375896373) curr?(1) task?(0)
[ 3609.679642][T52604] se: weight(1048576) vruntime(373104051) slice(2800000) deadline(375898583) curr?(1) task?(0)
[ 3609.690997][T52604] se: weight(1048576) vruntime(373107851) slice(2800000) deadline(375899689) curr?(1) task?(0)
[ 3609.702354][T52604] se: weight(1048576) vruntime(373101581) slice(2800000) deadline(375901581) curr?(1) task?(0)
[ 3609.713710][T52604] se: weight(1048576) vruntime(373112817) slice(2800000) deadline(375907289) curr?(1) task?(0)
[ 3609.725066][T52604] se: weight(1048576) vruntime(373113550) slice(2800000) deadline(375908282) curr?(1) task?(0)
[ 3609.736418][T52604] se: weight(1048576) vruntime(373114252) slice(2800000) deadline(375909204) curr?(1) task?(0)
[ 3609.747777][T52604] se: weight(1048576) vruntime(373116019) slice(2800000) deadline(375909780) curr?(1) task?(0)
[ 3609.759132][T52604] se: weight(1048576) vruntime(373120089) slice(2800000) deadline(375915593) curr?(1) task?(0)
[ 3609.770489][T52604] se: weight(1048576) vruntime(373122740) slice(2800000) deadline(375918944) curr?(1) task?(0)
[ 3609.781843][T52604] se: weight(1048576) vruntime(373124335) slice(2800000) deadline(375919217) curr?(1) task?(0)
[ 3609.793198][T52604] se: weight(1048576) vruntime(373126831) slice(2800000) deadline(375920352) curr?(1) task?(0)
[ 3609.804557][T52604] se: weight(1048576) vruntime(373125593) slice(2800000) deadline(375920526) curr?(1) task?(0)
[ 3609.815915][T52604] se: weight(1048576) vruntime(373129161) slice(2800000) deadline(375923102) curr?(1) task?(0)
[ 3609.827266][T52604] se: weight(1048576) vruntime(373131581) slice(2800000) deadline(375925101) curr?(1) task?(0)
[ 3609.838621][T52604] se: weight(1048576) vruntime(373130829) slice(2800000) deadline(375926032) curr?(1) task?(0)
[ 3609.849971][T52604] se: weight(1048576) vruntime(373133978) slice(2800000) deadline(375928179) curr?(1) task?(0)
[ 3609.861325][T52604] se: weight(1048576) vruntime(373136807) slice(2800000) deadline(375930407) curr?(1) task?(0)
[ 3609.872682][T52604] se: weight(1048576) vruntime(373135325) slice(2800000) deadline(375931800) curr?(1) task?(0)
[ 3609.884040][T52604] se: weight(1048576) vruntime(373139272) slice(2800000) deadline(375934735) curr?(1) task?(0)
[ 3609.895396][T52604] se: weight(1048576) vruntime(373139852) slice(2800000) deadline(375935025) curr?(1) task?(0)
[ 3609.906755][T52604] se: weight(1048576) vruntime(373141763) slice(2800000) deadline(375936415) curr?(1) task?(0)
[ 3609.918114][T52604] se: weight(1048576) vruntime(373146666) slice(2800000) deadline(375941267) curr?(1) task?(0)
[ 3609.929463][T52604] se: weight(1048576) vruntime(373148692) slice(2800000) deadline(375942533) curr?(1) task?(0)
[ 3609.940818][T52604] se: weight(1048576) vruntime(373150150) slice(2800000) deadline(375945092) curr?(1) task?(0)
[ 3609.952174][T52604] se: weight(1048576) vruntime(373152369) slice(2800000) deadline(375946440) curr?(1) task?(0)
[ 3609.963531][T52604] se: weight(1048576) vruntime(373154556) slice(2800000) deadline(375948277) curr?(1) task?(0)
[ 3609.974891][T52604] se: weight(1048576) vruntime(373153471) slice(2800000) deadline(375950166) curr?(1) task?(0)
[ 3609.986251][T52604] se: weight(1048576) vruntime(373158755) slice(2800000) deadline(375951814) curr?(1) task?(0)
[ 3609.997601][T52604] se: weight(1048576) vruntime(373163665) slice(2800000) deadline(375956675) curr?(1) task?(0)
[ 3610.008957][T52604] se: weight(1048576) vruntime(373162809) slice(2800000) deadline(375957191) curr?(1) task?(0)
[ 3610.020305][T52604] se: weight(1048576) vruntime(373167350) slice(2800000) deadline(375960560) curr?(1) task?(0)
[ 3610.031657][T52604] se: weight(1048576) vruntime(373165643) slice(2800000) deadline(375960796) curr?(1) task?(0)
[ 3610.043014][T52604] se: weight(1048576) vruntime(373161150) slice(2800000) deadline(375961150) curr?(1) task?(0)
[ 3610.054373][T52604] se: weight(1048576) vruntime(373169446) slice(2800000) deadline(375963357) curr?(1) task?(0)
[ 3610.065731][T52604] se: weight(1048576) vruntime(373174276) slice(2800000) deadline(375974276) curr?(1) task?(0)
[ 3610.077090][T52604] se: weight(1048576) vruntime(373179885) slice(2800000) deadline(375974607) curr?(1) task?(0)
[ 3610.088448][T52604] se: weight(1048576) vruntime(373185163) slice(2800000) deadline(375978373) curr?(1) task?(0)
[ 3610.099797][T52604] se: weight(1048576) vruntime(373184400) slice(2800000) deadline(375979652) curr?(1) task?(0)
[ 3610.111153][T52604] se: weight(1048576) vruntime(373186664) slice(2800000) deadline(375980244) curr?(1) task?(0)
[ 3610.122511][T52604] se: weight(1048576) vruntime(373181950) slice(2800000) deadline(375981950) curr?(1) task?(0)
[ 3610.133869][T52604] se: weight(1048576) vruntime(373191603) slice(2800000) deadline(375986675) curr?(1) task?(0)
[ 3610.145227][T52604] se: weight(1048576) vruntime(373195601) slice(2800000) deadline(375990664) curr?(1) task?(0)
[ 3610.156588][T52604] se: weight(1048576) vruntime(373195473) slice(2800000) deadline(375990746) curr?(1) task?(0)
[ 3610.167947][T52604] se: weight(1048576) vruntime(373195723) slice(2800000) deadline(375991096) curr?(1) task?(0)
[ 3610.179302][T52604] se: weight(1048576) vruntime(373197753) slice(2800000) deadline(375992835) curr?(1) task?(0)
[ 3610.190658][T52604] se: weight(1048576) vruntime(373200330) slice(2800000) deadline(375995071) curr?(1) task?(0)
[ 3610.202012][T52604] se: weight(1048576) vruntime(373202756) slice(2800000) deadline(375995855) curr?(1) task?(0)
[ 3610.213370][T52604] se: weight(1048576) vruntime(373203580) slice(2800000) deadline(375996950) curr?(1) task?(0)
[ 3610.224729][T52604] se: weight(1048576) vruntime(373210694) slice(2800000) deadline(376003783) curr?(1) task?(0)
[ 3610.236087][T52604] se: weight(1048576) vruntime(373212383) slice(2800000) deadline(376007676) curr?(1) task?(0)
[ 3610.247445][T52604] se: weight(1048576) vruntime(373216822) slice(2800000) deadline(376010182) curr?(1) task?(0)
[ 3610.258801][T52604] se: weight(1048576) vruntime(373216185) slice(2800000) deadline(376010427) curr?(1) task?(0)
[ 3610.270149][T52604] se: weight(1048576) vruntime(373217705) slice(2800000) deadline(376012417) curr?(1) task?(0)
[ 3610.281503][T52604] se: weight(1048576) vruntime(373219688) slice(2800000) deadline(376014761) curr?(1) task?(0)
[ 3610.292861][T52604] se: weight(1048576) vruntime(373225916) slice(2800000) deadline(376020698) curr?(1) task?(0)
[ 3610.304220][T52604] se: weight(1048576) vruntime(373230885) slice(2800000) deadline(376025708) curr?(1) task?(0)
[ 3610.315577][T52604] se: weight(1048576) vruntime(373229552) slice(2800000) deadline(376029552) curr?(1) task?(0)
[ 3610.326937][T52604] se: weight(1048576) vruntime(373237814) slice(2800000) deadline(376033127) curr?(1) task?(0)
[ 3610.338296][T52604] se: weight(1048576) vruntime(373255589) slice(2800000) deadline(376051032) curr?(1) task?(0)
[ 3610.349653][T52604] se: weight(1048576) vruntime(373256428) slice(2800000) deadline(376051531) curr?(1) task?(0)
[ 3610.361007][T52604] se: weight(1048576) vruntime(373254696) slice(2800000) deadline(376054696) curr?(1) task?(0)
[ 3610.372364][T52604] se: weight(1048576) vruntime(373263170) slice(2800000) deadline(376058272) curr?(1) task?(0)
[ 3610.383720][T52604] se: weight(1048576) vruntime(373264728) slice(2800000) deadline(376059199) curr?(1) task?(0)
[ 3610.395079][T52604] se: weight(1048576) vruntime(373263615) slice(2800000) deadline(376063615) curr?(1) task?(0)
[ 3610.406439][T52604] se: weight(1048576) vruntime(373279849) slice(2800000) deadline(376075052) curr?(1) task?(0)
[ 3610.417797][T52604] se: weight(1048576) vruntime(373282659) slice(2800000) deadline(376076539) curr?(1) task?(0)
[ 3610.429154][T52604] se: weight(1048576) vruntime(373281928) slice(2800000) deadline(376081928) curr?(1) task?(0)
[ 3610.440512][T52604] se: weight(1048576) vruntime(373288114) slice(2800000) deadline(376083357) curr?(1) task?(0)
[ 3610.451866][T52604] se: weight(1048576) vruntime(373294271) slice(2800000) deadline(376089704) curr?(1) task?(0)
[ 3610.463224][T52604] se: weight(1048576) vruntime(373294941) slice(2800000) deadline(376090434) curr?(1) task?(0)
[ 3610.474582][T52604] se: weight(1048576) vruntime(373291354) slice(2800000) deadline(376091354) curr?(1) task?(0)
[ 3610.485940][T52604] se: weight(1048576) vruntime(373292231) slice(2800000) deadline(376092231) curr?(1) task?(0)
[ 3610.497301][T52604] se: weight(1048576) vruntime(373300490) slice(2800000) deadline(376098046) curr?(1) task?(0)
[ 3610.508658][T52604] se: weight(1048576) vruntime(373305117) slice(2800000) deadline(376099539) curr?(1) task?(0)
[ 3610.520014][T52604] se: weight(1048576) vruntime(373311408) slice(2800000) deadline(376105059) curr?(1) task?(0)
[ 3610.531370][T52604] se: weight(1048576) vruntime(373305733) slice(2800000) deadline(376105733) curr?(1) task?(0)
[ 3610.542726][T52604] se: weight(1048576) vruntime(373312621) slice(2800000) deadline(376105851) curr?(1) task?(0)
[ 3610.554084][T52604] se: weight(1048576) vruntime(373313299) slice(2800000) deadline(376108312) curr?(1) task?(0)
[ 3610.565442][T52604] se: weight(1048576) vruntime(373312898) slice(2800000) deadline(376108441) curr?(1) task?(0)
[ 3610.576804][T52604] se: weight(1048576) vruntime(373315070) slice(2800000) deadline(376110263) curr?(1) task?(0)
[ 3610.588154][T52604] se: weight(1048576) vruntime(373317538) slice(2800000) deadline(376111278) curr?(1) task?(0)
[ 3610.599510][T52604] se: weight(1048576) vruntime(373321543) slice(2800000) deadline(376115804) curr?(1) task?(0)
[ 3610.610867][T52604] se: weight(1048576) vruntime(373327570) slice(2800000) deadline(376122723) curr?(1) task?(0)
[ 3610.622221][T52604] se: weight(1048576) vruntime(373335436) slice(2800000) deadline(376128726) curr?(1) task?(0)
[ 3610.633577][T52604] se: weight(1048576) vruntime(373335154) slice(2800000) deadline(376130648) curr?(1) task?(0)
[ 3610.644936][T52604] se: weight(1048576) vruntime(373336347) slice(2800000) deadline(376131800) curr?(1) task?(0)
[ 3610.656294][T52604] se: weight(1048576) vruntime(373339084) slice(2800000) deadline(376133595) curr?(1) task?(0)
[ 3610.667645][T52604] se: weight(1048576) vruntime(373342062) slice(2800000) deadline(376135643) curr?(1) task?(0)
[ 3610.679003][T52604] se: weight(1048576) vruntime(373343564) slice(2800000) deadline(376138096) curr?(1) task?(0)
[ 3610.690358][T52604] se: weight(1048576) vruntime(373347512) slice(2800000) deadline(376142034) curr?(1) task?(0)
[ 3610.701712][T52604] se: weight(1048576) vruntime(373347325) slice(2800000) deadline(376142367) curr?(1) task?(0)
[ 3610.713069][T52604] se: weight(1048576) vruntime(373350306) slice(2800000) deadline(376142935) curr?(1) task?(0)
[ 3610.724429][T52604] se: weight(1048576) vruntime(373356125) slice(2800000) deadline(376151267) curr?(1) task?(0)
[ 3610.735786][T52604] se: weight(1048576) vruntime(373367312) slice(2800000) deadline(376161554) curr?(1) task?(0)
[ 3610.747146][T52604] se: weight(1048576) vruntime(373366800) slice(2800000) deadline(376161803) curr?(1) task?(0)
[ 3610.758505][T52604] se: weight(1048576) vruntime(373368889) slice(2800000) deadline(376163981) curr?(1) task?(0)
[ 3610.769853][T52604] se: weight(1048576) vruntime(373370285) slice(2800000) deadline(376164947) curr?(1) task?(0)
[ 3610.781208][T52604] se: weight(1048576) vruntime(373366574) slice(2800000) deadline(376166574) curr?(1) task?(0)
[ 3610.792564][T52604] se: weight(1048576) vruntime(373372811) slice(2800000) deadline(376166873) curr?(1) task?(0)
[ 3610.803920][T52604] se: weight(1048576) vruntime(373374226) slice(2800000) deadline(376167315) curr?(1) task?(0)
[ 3610.815278][T52604] se: weight(1048576) vruntime(373376897) slice(2800000) deadline(376170136) curr?(1) task?(0)
[ 3610.826638][T52604] se: weight(1048576) vruntime(373374570) slice(2800000) deadline(376174570) curr?(1) task?(0)
[ 3610.837997][T52604] se: weight(1048576) vruntime(373385787) slice(2800000) deadline(376179807) curr?(1) task?(0)
[ 3610.849354][T52604] se: weight(1048576) vruntime(373385482) slice(2800000) deadline(376180024) curr?(1) task?(0)
[ 3610.860713][T52604] se: weight(1048576) vruntime(373384947) slice(2800000) deadline(376180160) curr?(1) task?(0)
[ 3610.872066][T52604] se: weight(1048576) vruntime(373386862) slice(2800000) deadline(376181454) curr?(1) task?(0)
[ 3610.883422][T52604] se: weight(1048576) vruntime(373387582) slice(2800000) deadline(376183556) curr?(1) task?(0)
[ 3610.894781][T52604] se: weight(1048576) vruntime(373391027) slice(2800000) deadline(376185288) curr?(1) task?(0)
[ 3610.906138][T52604] se: weight(1048576) vruntime(373395326) slice(2800000) deadline(376189718) curr?(1) task?(0)
[ 3610.917498][T52604] se: weight(1048576) vruntime(373395828) slice(2800000) deadline(376191081) curr?(1) task?(0)
[ 3610.928855][T52604] se: weight(1048576) vruntime(373397832) slice(2800000) deadline(376192213) curr?(1) task?(0)
[ 3610.940203][T52604] se: weight(1048576) vruntime(373398171) slice(2800000) deadline(376192503) curr?(1) task?(0)
[ 3610.951556][T52604] se: weight(1048576) vruntime(373397815) slice(2800000) deadline(376192697) curr?(1) task?(0)
[ 3610.962912][T52604] se: weight(1048576) vruntime(373393167) slice(2800000) deadline(376193167) curr?(1) task?(0)
[ 3610.974260][T52604] se: weight(1048576) vruntime(373400695) slice(2800000) deadline(376195728) curr?(1) task?(0)
[ 3610.985615][T52604] se: weight(1048576) vruntime(373403307) slice(2800000) deadline(376203307) curr?(1) task?(0)
[ 3610.996977][T52604] se: weight(1048576) vruntime(373409574) slice(2800000) deadline(376209574) curr?(1) task?(0)
[ 3611.008334][T52604] se: weight(1048576) vruntime(373414355) slice(2800000) deadline(376209938) curr?(1) task?(0)
[ 3611.019692][T52604] se: weight(1048576) vruntime(373415505) slice(2800000) deadline(376210778) curr?(1) task?(0)
[ 3611.031049][T52604] se: weight(1048576) vruntime(373419794) slice(2800000) deadline(376214326) curr?(1) task?(0)
[ 3611.042403][T52604] se: weight(1048576) vruntime(373420876) slice(2800000) deadline(376215628) curr?(1) task?(0)
[ 3611.053759][T52604] se: weight(1048576) vruntime(373422271) slice(2800000) deadline(376217083) curr?(1) task?(0)
[ 3611.065117][T52604] se: weight(1048576) vruntime(373420918) slice(2800000) deadline(376217723) curr?(1) task?(0)
[ 3611.076475][T52604] se: weight(1048576) vruntime(373428394) slice(2800000) deadline(376222015) curr?(1) task?(0)
[ 3611.087833][T52604] se: weight(1048576) vruntime(373424423) slice(2800000) deadline(376224423) curr?(1) task?(0)
[ 3611.099190][T52604] se: weight(1048576) vruntime(373425802) slice(2800000) deadline(376225802) curr?(1) task?(0)
[ 3611.110538][T52604] se: weight(1048576) vruntime(373427062) slice(2800000) deadline(376227062) curr?(1) task?(0)
[ 3611.121891][T52604] se: weight(1048576) vruntime(373433239) slice(2800000) deadline(376227440) curr?(1) task?(0)
[ 3611.133247][T52604] se: weight(1048576) vruntime(373428846) slice(2800000) deadline(376228846) curr?(1) task?(0)
[ 3611.144605][T52604] se: weight(1048576) vruntime(373436570) slice(2800000) deadline(376231823) curr?(1) task?(0)
[ 3611.155960][T52604] se: weight(1048576) vruntime(373434230) slice(2800000) deadline(376234230) curr?(1) task?(0)
[ 3611.167321][T52604] se: weight(1048576) vruntime(373440547) slice(2800000) deadline(376235860) curr?(1) task?(0)
[ 3611.178681][T52604] se: weight(1048576) vruntime(373441880) slice(2800000) deadline(376236042) curr?(1) task?(0)
[ 3611.190040][T52604] se: weight(1048576) vruntime(373441708) slice(2800000) deadline(376236620) curr?(1) task?(0)
[ 3611.201393][T52604] se: weight(1048576) vruntime(373455822) slice(2800000) deadline(376247369) curr?(1) task?(0)
[ 3611.212748][T52604] se: weight(1048576) vruntime(373454479) slice(2800000) deadline(376248610) curr?(1) task?(0)
[ 3611.224105][T52604] se: weight(1048576) vruntime(373454804) slice(2800000) deadline(376248845) curr?(1) task?(0)
[ 3611.235463][T52604] se: weight(1048576) vruntime(373449518) slice(2800000) deadline(376249518) curr?(1) task?(0)
[ 3611.246821][T52604] se: weight(1048576) vruntime(373451958) slice(2800000) deadline(376251958) curr?(1) task?(0)
[ 3611.258179][T52604] se: weight(1048576) vruntime(373461287) slice(2800000) deadline(376254517) curr?(1) task?(0)
[ 3611.269535][T52604] se: weight(1048576) vruntime(373462645) slice(2800000) deadline(376256746) curr?(1) task?(0)
[ 3611.280892][T52604] se: weight(1048576) vruntime(373466832) slice(2800000) deadline(376261624) curr?(1) task?(0)
[ 3611.292245][T52604] se: weight(1048576) vruntime(373468734) slice(2800000) deadline(376262113) curr?(1) task?(0)
[ 3611.303602][T52604] se: weight(1048576) vruntime(373467209) slice(2800000) deadline(376262692) curr?(1) task?(0)
[ 3611.314962][T52604] se: weight(1048576) vruntime(373468258) slice(2800000) deadline(376263861) curr?(1) task?(0)
[ 3611.326320][T52604] se: weight(1048576) vruntime(373473251) slice(2800000) deadline(376268394) curr?(1) task?(0)
[ 3611.337679][T52604] se: weight(1048576) vruntime(373474392) slice(2800000) deadline(376268443) curr?(1) task?(0)
[ 3611.349037][T52604] se: weight(1048576) vruntime(373472218) slice(2800000) deadline(376268844) curr?(1) task?(0)
[ 3611.360384][T52604] se: weight(1048576) vruntime(373477724) slice(2800000) deadline(376272316) curr?(1) task?(0)
[ 3611.371738][T52604] se: weight(1048576) vruntime(373478063) slice(2800000) deadline(376272715) curr?(1) task?(0)
[ 3611.383094][T52604] se: weight(1048576) vruntime(373478188) slice(2800000) deadline(376272951) curr?(1) task?(0)
[ 3611.394442][T52604] se: weight(1048576) vruntime(373479512) slice(2800000) deadline(376275415) curr?(1) task?(0)
[ 3611.405800][T52604] se: weight(1048576) vruntime(373481267) slice(2800000) deadline(376275919) curr?(1) task?(0)
[ 3611.417162][T52604] se: weight(1048576) vruntime(373481413) slice(2800000) deadline(376276666) curr?(1) task?(0)
[ 3611.428520][T52604] se: weight(1048576) vruntime(373484989) slice(2800000) deadline(376279321) curr?(1) task?(0)
[ 3611.439876][T52604] se: weight(1048576) vruntime(373483168) slice(2800000) deadline(376283168) curr?(1) task?(0)
[ 3611.451231][T52604] se: weight(1048576) vruntime(373490808) slice(2800000) deadline(376285680) curr?(1) task?(0)
[ 3611.462586][T52604] se: weight(1048576) vruntime(373485901) slice(2800000) deadline(376285901) curr?(1) task?(0)
[ 3611.473943][T52604] se: weight(1048576) vruntime(373497532) slice(2800000) deadline(376291042) curr?(1) task?(0)
[ 3611.485300][T52604] se: weight(1048576) vruntime(373499689) slice(2800000) deadline(376291827) curr?(1) task?(0)
[ 3611.496659][T52604] se: weight(1048576) vruntime(373506345) slice(2800000) deadline(376301558) curr?(1) task?(0)
[ 3611.508019][T52604] se: weight(1048576) vruntime(373503457) slice(2800000) deadline(376303457) curr?(1) task?(0)
[ 3611.519375][T52604] se: weight(1048576) vruntime(373508677) slice(2800000) deadline(376303819) curr?(1) task?(0)
[ 3611.530731][T52604] se: weight(1048576) vruntime(373511300) slice(2800000) deadline(376306262) curr?(1) task?(0)
[ 3611.542085][T52604] se: weight(1048576) vruntime(373512620) slice(2800000) deadline(376306771) curr?(1) task?(0)
[ 3611.553441][T52604] se: weight(1048576) vruntime(373508279) slice(2800000) deadline(376308279) curr?(1) task?(0)
[ 3611.564800][T52604] se: weight(1048576) vruntime(373518492) slice(2800000) deadline(376313805) curr?(1) task?(0)
[ 3611.576158][T52604] se: weight(1048576) vruntime(373520333) slice(2800000) deadline(376314313) curr?(1) task?(0)
[ 3611.587516][T52604] se: weight(1048576) vruntime(373523752) slice(2800000) deadline(376319085) curr?(1) task?(0)
[ 3611.598874][T52604] se: weight(1048576) vruntime(373524558) slice(2800000) deadline(376320072) curr?(1) task?(0)
[ 3611.610231][T52604] se: weight(1048576) vruntime(373528686) slice(2800000) deadline(376324409) curr?(1) task?(0)
[ 3611.621585][T52604] se: weight(1048576) vruntime(373531276) slice(2800000) deadline(376326739) curr?(1) task?(0)
[ 3611.632941][T52604] se: weight(1048576) vruntime(373532102) slice(2800000) deadline(376332102) curr?(1) task?(0)
[ 3611.644299][T52604] se: weight(1048576) vruntime(373537158) slice(2800000) deadline(376337158) curr?(1) task?(0)
[ 3611.655657][T52604] se: weight(1048576) vruntime(373541247) slice(2800000) deadline(376341247) curr?(1) task?(0)
[ 3611.667008][T52604] se: weight(1048576) vruntime(373542681) slice(2800000) deadline(376342681) curr?(1) task?(0)
[ 3611.678366][T52604] se: weight(1048576) vruntime(373555022) slice(2800000) deadline(376350234) curr?(1) task?(0)
[ 3611.689722][T52604] se: weight(1048576) vruntime(373559386) slice(2800000) deadline(376354989) curr?(1) task?(0)
[ 3611.701080][T52604] se: weight(1048576) vruntime(373565067) slice(2800000) deadline(376359739) curr?(1) task?(0)
[ 3611.712434][T52604] se: weight(1048576) vruntime(373570160) slice(2800000) deadline(376363520) curr?(1) task?(0)
[ 3611.723790][T52604] se: weight(1048576) vruntime(373568969) slice(2800000) deadline(376364011) curr?(1) task?(0)
[ 3611.735149][T52604] se: weight(1048576) vruntime(373568664) slice(2800000) deadline(376364418) curr?(1) task?(0)
[ 3611.746509][T52604] se: weight(1048576) vruntime(373573407) slice(2800000) deadline(376368800) curr?(1) task?(0)
[ 3611.757868][T52604] se: weight(1048576) vruntime(373576050) slice(2800000) deadline(376370031) curr?(1) task?(0)
[ 3611.769227][T52604] se: weight(1048576) vruntime(373575000) slice(2800000) deadline(376370183) curr?(1) task?(0)
[ 3611.780585][T52604] se: weight(1048576) vruntime(373581909) slice(2800000) deadline(376376281) curr?(1) task?(0)
[ 3611.791938][T52604] se: weight(1048576) vruntime(373591430) slice(2800000) deadline(376385701) curr?(1) task?(0)
[ 3611.803296][T52604] se: weight(1048576) vruntime(373594158) slice(2800000) deadline(376387037) curr?(1) task?(0)
[ 3611.814653][T52604] se: weight(1048576) vruntime(373594969) slice(2800000) deadline(376389320) curr?(1) task?(0)
[ 3611.826009][T52604] se: weight(1048576) vruntime(373589942) slice(2800000) deadline(376389942) curr?(1) task?(0)
[ 3611.837371][T52604] se: weight(1048576) vruntime(373595942) slice(2800000) deadline(376390434) curr?(1) task?(0)
[ 3611.848728][T52604] se: weight(1048576) vruntime(373594769) slice(2800000) deadline(376394769) curr?(1) task?(0)
[ 3611.860084][T52604] se: weight(1048576) vruntime(373605113) slice(2800000) deadline(376399074) curr?(1) task?(0)
[ 3611.871441][T52604] se: weight(1048576) vruntime(373608885) slice(2800000) deadline(376404679) curr?(1) task?(0)
[ 3611.882799][T52604] se: weight(1048576) vruntime(373617045) slice(2800000) deadline(376411506) curr?(1) task?(0)
[ 3611.894155][T52604] se: weight(1048576) vruntime(373621978) slice(2800000) deadline(376417221) curr?(1) task?(0)
[ 3611.905514][T52604] se: weight(1048576) vruntime(373628021) slice(2800000) deadline(376423114) curr?(1) task?(0)
[ 3611.916875][T52604] se: weight(1048576) vruntime(373623811) slice(2800000) deadline(376423811) curr?(1) task?(0)
[ 3611.928233][T52604] se: weight(1048576) vruntime(373634418) slice(2800000) deadline(376427037) curr?(1) task?(0)
[ 3611.939589][T52604] se: weight(1048576) vruntime(373633476) slice(2800000) deadline(376429510) curr?(1) task?(0)
[ 3611.950946][T52604] se: weight(1048576) vruntime(373642505) slice(2800000) deadline(376437378) curr?(1) task?(0)
[ 3611.962299][T52604] se: weight(1048576) vruntime(373644428) slice(2800000) deadline(376438459) curr?(1) task?(0)
[ 3611.973657][T52604] se: weight(1048576) vruntime(373648158) slice(2800000) deadline(376443060) curr?(1) task?(0)
[ 3611.985016][T52604] se: weight(1048576) vruntime(373643069) slice(2800000) deadline(376443069) curr?(1) task?(0)
[ 3611.996374][T52604] se: weight(1048576) vruntime(373652176) slice(2800000) deadline(376447289) curr?(1) task?(0)
[ 3612.007735][T52604] se: weight(1048576) vruntime(373653273) slice(2800000) deadline(376447925) curr?(1) task?(0)
[ 3612.019092][T52604] se: weight(1048576) vruntime(373652947) slice(2800000) deadline(376448892) curr?(1) task?(0)
[ 3612.030449][T52604] se: weight(1048576) vruntime(373660627) slice(2800000) deadline(376454518) curr?(1) task?(0)
[ 3612.041805][T52604] se: weight(1048576) vruntime(373662452) slice(2800000) deadline(376454761) curr?(1) task?(0)
[ 3612.053162][T52604] se: weight(1048576) vruntime(373654779) slice(2800000) deadline(376454779) curr?(1) task?(0)
[ 3612.064519][T52604] se: weight(1048576) vruntime(373663968) slice(2800000) deadline(376457528) curr?(1) task?(0)
[ 3612.075878][T52604] se: weight(1048576) vruntime(373659350) slice(2800000) deadline(376459350) curr?(1) task?(0)
[ 3612.087237][T52604] se: weight(1048576) vruntime(373662453) slice(2800000) deadline(376459729) curr?(1) task?(0)
[ 3612.098595][T52604] se: weight(1048576) vruntime(373666960) slice(2800000) deadline(376462223) curr?(1) task?(0)
[ 3612.109951][T52604] se: weight(1048576) vruntime(373667780) slice(2800000) deadline(376463153) curr?(1) task?(0)
[ 3612.121300][T52604] se: weight(1048576) vruntime(373674160) slice(2800000) deadline(376468441) curr?(1) task?(0)
[ 3612.132652][T52604] se: weight(1048576) vruntime(373680664) slice(2800000) deadline(376474835) curr?(1) task?(0)
[ 3612.144008][T52604] se: weight(1048576) vruntime(373681350) slice(2800000) deadline(376476112) curr?(1) task?(0)
[ 3612.155366][T52604] se: weight(1048576) vruntime(373691999) slice(2800000) deadline(376485249) curr?(1) task?(0)
[ 3612.166725][T52604] se: weight(1048576) vruntime(373691124) slice(2800000) deadline(376491124) curr?(1) task?(0)
[ 3612.178083][T52604] se: weight(1048576) vruntime(373695998) slice(2800000) deadline(376491170) curr?(1) task?(0)
[ 3612.189440][T52604] se: weight(1048576) vruntime(373698788) slice(2800000) deadline(376492789) curr?(1) task?(0)
[ 3612.200790][T52604] se: weight(1048576) vruntime(373697557) slice(2800000) deadline(376497557) curr?(1) task?(0)
[ 3612.212145][T52604] se: weight(1048576) vruntime(373706171) slice(2800000) deadline(376500052) curr?(1) task?(0)
[ 3612.223502][T52604] se: weight(1048576) vruntime(373707197) slice(2800000) deadline(376501969) curr?(1) task?(0)
[ 3612.234858][T52604] se: weight(1048576) vruntime(373707295) slice(2800000) deadline(376502307) curr?(1) task?(0)
[ 3612.246214][T52604] se: weight(1048576) vruntime(373709635) slice(2800000) deadline(376503245) curr?(1) task?(0)
[ 3612.257575][T52604] se: weight(1048576) vruntime(373716020) slice(2800000) deadline(376511262) curr?(1) task?(0)
[ 3612.268931][T52604] se: weight(1048576) vruntime(373718046) slice(2800000) deadline(376512608) curr?(1) task?(0)
[ 3612.280287][T52604] se: weight(1048576) vruntime(373719591) slice(2800000) deadline(376514333) curr?(1) task?(0)
[ 3612.291644][T52604] se: weight(1048576) vruntime(373723079) slice(2800000) deadline(376516279) curr?(1) task?(0)
[ 3612.303001][T52604] se: weight(1048576) vruntime(373723044) slice(2800000) deadline(376517736) curr?(1) task?(0)
[ 3612.314356][T52604] se: weight(1048576) vruntime(373718678) slice(2800000) deadline(376518678) curr?(1) task?(0)
[ 3612.325716][T52604] se: weight(1048576) vruntime(373725555) slice(2800000) deadline(376519606) curr?(1) task?(0)
[ 3612.337077][T52604] se: weight(1048576) vruntime(373731607) slice(2800000) deadline(376525798) curr?(1) task?(0)
[ 3612.348435][T52604] se: weight(1048576) vruntime(373731707) slice(2800000) deadline(376531707) curr?(1) task?(0)
[ 3612.359792][T52604] se: weight(1048576) vruntime(373744239) slice(2800000) deadline(376538100) curr?(1) task?(0)
[ 3612.371141][T52604] se: weight(1048576) vruntime(373748135) slice(2800000) deadline(376543158) curr?(1) task?(0)
[ 3612.382495][T52604] se: weight(1048576) vruntime(373751300) slice(2800000) deadline(376546373) curr?(1) task?(0)
[ 3612.393851][T52604] se: weight(1048576) vruntime(373754092) slice(2800000) deadline(376549275) curr?(1) task?(0)
[ 3612.405210][T52604] se: weight(1048576) vruntime(373750055) slice(2800000) deadline(376550055) curr?(1) task?(0)
[ 3612.416567][T52604] se: weight(1048576) vruntime(373750541) slice(2800000) deadline(376550541) curr?(1) task?(0)
[ 3612.427928][T52604] se: weight(1048576) vruntime(373757561) slice(2800000) deadline(376551943) curr?(1) task?(0)
[ 3612.439286][T52604] se: weight(1048576) vruntime(373752411) slice(2800000) deadline(376552411) curr?(1) task?(0)
[ 3612.450643][T52604] se: weight(1048576) vruntime(373768475) slice(2800000) deadline(376563828) curr?(1) task?(0)
[ 3612.461998][T52604] se: weight(1048576) vruntime(373769253) slice(2800000) deadline(376563925) curr?(1) task?(0)
[ 3612.473354][T52604] se: weight(1048576) vruntime(373769987) slice(2800000) deadline(376564339) curr?(1) task?(0)
[ 3612.484710][T52604] se: weight(1048576) vruntime(373769894) slice(2800000) deadline(376564926) curr?(1) task?(0)
[ 3612.496068][T52604] se: weight(1048576) vruntime(373770382) slice(2800000) deadline(376565585) curr?(1) task?(0)
[ 3612.507429][T52604] se: weight(1048576) vruntime(373770751) slice(2800000) deadline(376566084) curr?(1) task?(0)
[ 3612.518786][T52604] se: weight(1048576) vruntime(373768398) slice(2800000) deadline(376568398) curr?(1) task?(0)
[ 3612.530142][T52604] se: weight(1048576) vruntime(373769138) slice(2800000) deadline(376569138) curr?(1) task?(0)
[ 3612.541490][T52604] se: weight(1048576) vruntime(373776970) slice(2800000) deadline(376570050) curr?(1) task?(0)
[ 3612.552844][T52604] se: weight(1048576) vruntime(373776128) slice(2800000) deadline(376570971) curr?(1) task?(0)
[ 3612.564201][T52604] se: weight(1048576) vruntime(373776539) slice(2800000) deadline(376571331) curr?(1) task?(0)
[ 3612.575560][T52604] se: weight(1048576) vruntime(373781006) slice(2800000) deadline(376575948) curr?(1) task?(0)
[ 3612.586917][T52604] se: weight(1048576) vruntime(373781956) slice(2800000) deadline(376576598) curr?(1) task?(0)
[ 3612.598276][T52604] se: weight(1048576) vruntime(373781676) slice(2800000) deadline(376577149) curr?(1) task?(0)
[ 3612.609632][T52604] se: weight(1048576) vruntime(373783264) slice(2800000) deadline(376577636) curr?(1) task?(0)
[ 3612.620982][T52604] se: weight(1048576) vruntime(373783380) slice(2800000) deadline(376578463) curr?(1) task?(0)
[ 3612.632335][T52604] se: weight(1048576) vruntime(373785728) slice(2800000) deadline(376581041) curr?(1) task?(0)
[ 3612.643693][T52604] se: weight(1048576) vruntime(373791338) slice(2800000) deadline(376584748) curr?(1) task?(0)
[ 3612.655050][T52604] se: weight(1048576) vruntime(373791280) slice(2800000) deadline(376585881) curr?(1) task?(0)
[ 3612.666406][T52604] se: weight(1048576) vruntime(373795058) slice(2800000) deadline(376588529) curr?(1) task?(0)
[ 3612.677767][T52604] se: weight(1048576) vruntime(373789804) slice(2800000) deadline(376589804) curr?(1) task?(0)
[ 3612.689125][T52604] se: weight(1048576) vruntime(373793291) slice(2800000) deadline(376590076) curr?(1) task?(0)
[ 3612.700481][T52604] se: weight(1048576) vruntime(373799074) slice(2800000) deadline(376593295) curr?(1) task?(0)
[ 3612.711837][T52604] se: weight(1048576) vruntime(373812976) slice(2800000) deadline(376596722) curr?(1) task?(0)
[ 3612.723193][T52604] se: weight(1048576) vruntime(373798044) slice(2800000) deadline(376598044) curr?(1) task?(0)
[ 3612.734547][T52604] se: weight(1048576) vruntime(373805994) slice(2800000) deadline(376600846) curr?(1) task?(0)
[ 3612.745907][T52604] se: weight(1048576) vruntime(373806067) slice(2800000) deadline(376601229) curr?(1) task?(0)
[ 3612.757258][T52604] se: weight(1048576) vruntime(373808678) slice(2800000) deadline(376603991) curr?(1) task?(0)
[ 3612.768608][T52604] se: weight(1048576) vruntime(373808856) slice(2800000) deadline(376604129) curr?(1) task?(0)
[ 3612.779963][T52604] se: weight(1048576) vruntime(373812561) slice(2800000) deadline(376607143) curr?(1) task?(0)
[ 3612.791319][T52604] se: weight(1048576) vruntime(373815102) slice(2800000) deadline(376608662) curr?(1) task?(0)
[ 3612.802674][T52604] se: weight(1048576) vruntime(373814788) slice(2800000) deadline(376609310) curr?(1) task?(0)
[ 3612.814030][T52604] se: weight(1048576) vruntime(373815021) slice(2800000) deadline(376609432) curr?(1) task?(0)
[ 3612.825388][T52604] se: weight(1048576) vruntime(373823412) slice(2800000) deadline(376618094) curr?(1) task?(0)
[ 3612.836745][T52604] se: weight(1048576) vruntime(373824662) slice(2800000) deadline(376618433) curr?(1) task?(0)
[ 3612.848106][T52604] se: weight(1048576) vruntime(373824455) slice(2800000) deadline(376618546) curr?(1) task?(0)
[ 3612.859463][T52604] se: weight(1048576) vruntime(373823781) slice(2800000) deadline(376618874) curr?(1) task?(0)
[ 3612.870812][T52604] se: weight(1048576) vruntime(373824655) slice(2800000) deadline(376619487) curr?(1) task?(0)
[ 3612.882166][T52604] se: weight(1048576) vruntime(373826096) slice(2800000) deadline(376621549) curr?(1) task?(0)
[ 3612.893521][T52604] se: weight(1048576) vruntime(373829785) slice(2800000) deadline(376624547) curr?(1) task?(0)
[ 3612.904879][T52604] se: weight(1048576) vruntime(373830308) slice(2800000) deadline(376625531) curr?(1) task?(0)
[ 3612.916236][T52604] se: weight(1048576) vruntime(373832247) slice(2800000) deadline(376625687) curr?(1) task?(0)
[ 3612.927587][T52604] se: weight(1048576) vruntime(373831948) slice(2800000) deadline(376627201) curr?(1) task?(0)
[ 3612.938946][T52604] se: weight(1048576) vruntime(373836145) slice(2800000) deadline(376627593) curr?(1) task?(0)
[ 3612.950303][T52604] se: weight(1048576) vruntime(373836180) slice(2800000) deadline(376631884) curr?(1) task?(0)
[ 3612.961659][T52604] se: weight(1048576) vruntime(373840809) slice(2800000) deadline(376633758) curr?(1) task?(0)
[ 3612.973013][T52604] se: weight(1048576) vruntime(373840416) slice(2800000) deadline(376634918) curr?(1) task?(0)
[ 3612.984371][T52604] se: weight(1048576) vruntime(373837219) slice(2800000) deadline(376637219) curr?(1) task?(0)
[ 3612.995730][T52604] se: weight(1048576) vruntime(373838216) slice(2800000) deadline(376638216) curr?(1) task?(0)
[ 3613.007088][T52604] se: weight(1048576) vruntime(373838835) slice(2800000) deadline(376638835) curr?(1) task?(0)
[ 3613.018447][T52604] se: weight(1048576) vruntime(373846993) slice(2800000) deadline(376640914) curr?(1) task?(0)
[ 3613.029804][T52604] se: weight(1048576) vruntime(373847520) slice(2800000) deadline(376641141) curr?(1) task?(0)
[ 3613.041154][T52604] se: weight(1048576) vruntime(373845191) slice(2800000) deadline(376641395) curr?(1) task?(0)
[ 3613.052509][T52604] se: weight(1048576) vruntime(373850982) slice(2800000) deadline(376644583) curr?(1) task?(0)
[ 3613.063865][T52604] se: weight(1048576) vruntime(373850551) slice(2800000) deadline(376644702) curr?(1) task?(0)
[ 3613.075213][T52604] se: weight(1048576) vruntime(373850846) slice(2800000) deadline(376646239) curr?(1) task?(0)
[ 3613.086570][T52604] se: weight(1048576) vruntime(373851106) slice(2800000) deadline(376646679) curr?(1) task?(0)
[ 3613.097931][T52604] se: weight(1048576) vruntime(373852123) slice(2800000) deadline(376646855) curr?(1) task?(0)
[ 3613.109290][T52604] se: weight(1048576) vruntime(373852868) slice(2800000) deadline(376647149) curr?(1) task?(0)
[ 3613.120645][T52604] se: weight(1048576) vruntime(373853136) slice(2800000) deadline(376647408) curr?(1) task?(0)
[ 3613.132001][T52604] se: weight(1048576) vruntime(373852619) slice(2800000) deadline(376652619) curr?(1) task?(0)
[ 3613.143355][T52604] se: weight(1048576) vruntime(373861851) slice(2800000) deadline(376655141) curr?(1) task?(0)
[ 3613.154710][T52604] se: weight(1048576) vruntime(373860388) slice(2800000) deadline(376656482) curr?(1) task?(0)
[ 3613.166070][T52604] se: weight(1048576) vruntime(373861482) slice(2800000) deadline(376658177) curr?(1) task?(0)
[ 3613.177420][T52604] se: weight(1048576) vruntime(373867753) slice(2800000) deadline(376662586) curr?(1) task?(0)
[ 3613.188771][T52604] se: weight(1048576) vruntime(373868503) slice(2800000) deadline(376663465) curr?(1) task?(0)
[ 3613.200127][T52604] se: weight(1048576) vruntime(373871159) slice(2800000) deadline(376665270) curr?(1) task?(0)
[ 3613.211483][T52604] se: weight(1048576) vruntime(373872183) slice(2800000) deadline(376665483) curr?(1) task?(0)
[ 3613.222836][T52604] se: weight(1048576) vruntime(373876166) slice(2800000) deadline(376670147) curr?(1) task?(0)
[ 3613.234193][T52604] se: weight(1048576) vruntime(373878675) slice(2800000) deadline(376670563) curr?(1) task?(0)
[ 3613.245552][T52604] se: weight(1048576) vruntime(373876208) slice(2800000) deadline(376671450) curr?(1) task?(0)
[ 3613.256911][T52604] se: weight(1048576) vruntime(373882685) slice(2800000) deadline(376676166) curr?(1) task?(0)
[ 3613.268270][T52604] se: weight(1048576) vruntime(373885009) slice(2800000) deadline(376680332) curr?(1) task?(0)
[ 3613.279628][T52604] se: weight(1048576) vruntime(373889405) slice(2800000) deadline(376684327) curr?(1) task?(0)
[ 3613.290977][T52604] se: weight(1048576) vruntime(373890217) slice(2800000) deadline(376685570) curr?(1) task?(0)
[ 3613.302332][T52604] se: weight(1048576) vruntime(373891009) slice(2800000) deadline(376686252) curr?(1) task?(0)
[ 3613.313689][T52604] se: weight(1048576) vruntime(373893796) slice(2800000) deadline(376689419) curr?(1) task?(0)
[ 3613.325038][T52604] se: weight(1048576) vruntime(373895593) slice(2800000) deadline(376689544) curr?(1) task?(0)
[ 3613.336397][T52604] se: weight(1048576) vruntime(373898738) slice(2800000) deadline(376694251) curr?(1) task?(0)
[ 3613.347759][T52604] se: weight(1048576) vruntime(373903805) slice(2800000) deadline(376697445) curr?(1) task?(0)
[ 3613.359109][T52604] se: weight(1048576) vruntime(373906218) slice(2800000) deadline(376700790) curr?(1) task?(0)
[ 3613.370465][T52604] se: weight(1048576) vruntime(373909136) slice(2800000) deadline(376702907) curr?(1) task?(0)
[ 3613.381821][T52604] se: weight(1048576) vruntime(373909433) slice(2800000) deadline(376704436) curr?(1) task?(0)
[ 3613.393177][T52604] se: weight(1048576) vruntime(373904843) slice(2800000) deadline(376704843) curr?(1) task?(0)
[ 3613.404532][T52604] se: weight(1048576) vruntime(373915422) slice(2800000) deadline(376711205) curr?(1) task?(0)
[ 3613.415892][T52604] se: weight(1048576) vruntime(373918211) slice(2800000) deadline(376712573) curr?(1) task?(0)
[ 3613.427249][T52604] se: weight(1048576) vruntime(373920880) slice(2800000) deadline(376716073) curr?(1) task?(0)
[ 3613.438608][T52604] se: weight(1048576) vruntime(373927382) slice(2800000) deadline(376720611) curr?(1) task?(0)
[ 3613.449964][T52604] se: weight(1048576) vruntime(373924179) slice(2800000) deadline(376724179) curr?(1) task?(0)
[ 3613.461313][T52604] se: weight(1048576) vruntime(373936000) slice(2800000) deadline(376730111) curr?(1) task?(0)
[ 3613.472668][T52604] se: weight(1048576) vruntime(373931661) slice(2800000) deadline(376731661) curr?(1) task?(0)
[ 3613.484025][T52604] se: weight(1048576) vruntime(373943435) slice(2800000) deadline(376737607) curr?(1) task?(0)
[ 3613.495382][T52604] se: weight(1048576) vruntime(373945018) slice(2800000) deadline(376739751) curr?(1) task?(0)
[ 3613.506738][T52604] se: weight(1048576) vruntime(373944726) slice(2800000) deadline(376740039) curr?(1) task?(0)
[ 3613.518098][T52604] se: weight(1048576) vruntime(373946681) slice(2800000) deadline(376741744) curr?(1) task?(0)
[ 3613.529457][T52604] se: weight(1048576) vruntime(373943644) slice(2800000) deadline(376743644) curr?(1) task?(0)
[ 3613.540813][T52604] se: weight(1048576) vruntime(373952340) slice(2800000) deadline(376746882) curr?(1) task?(0)
[ 3613.552171][T52604] se: weight(1048576) vruntime(373953045) slice(2800000) deadline(376747066) curr?(1) task?(0)
[ 3613.563527][T52604] se: weight(1048576) vruntime(373956240) slice(2800000) deadline(376756240) curr?(1) task?(0)
[ 3613.574884][T52604] se: weight(1048576) vruntime(373963374) slice(2800000) deadline(376758447) curr?(1) task?(0)
[ 3613.586243][T52604] se: weight(1048576) vruntime(373968011) slice(2800000) deadline(376762403) curr?(1) task?(0)
[ 3613.597593][T52604] se: weight(1048576) vruntime(373969663) slice(2800000) deadline(376763063) curr?(1) task?(0)
[ 3613.608951][T52604] se: weight(1048576) vruntime(373969018) slice(2800000) deadline(376764582) curr?(1) task?(0)
[ 3613.620307][T52604] se: weight(1048576) vruntime(373969816) slice(2800000) deadline(376765280) curr?(1) task?(0)
[ 3613.631655][T52604] se: weight(1048576) vruntime(373975029) slice(2800000) deadline(376770302) curr?(1) task?(0)
[ 3613.643010][T52604] se: weight(1048576) vruntime(373978875) slice(2800000) deadline(376772645) curr?(1) task?(0)
[ 3613.654367][T52604] se: weight(1048576) vruntime(373980577) slice(2800000) deadline(376774978) curr?(1) task?(0)
[ 3613.665728][T52604] se: weight(1048576) vruntime(373983747) slice(2800000) deadline(376777407) curr?(1) task?(0)
[ 3613.677086][T52604] se: weight(1048576) vruntime(373986454) slice(2800000) deadline(376780335) curr?(1) task?(0)
[ 3613.688445][T52604] se: weight(1048576) vruntime(373986249) slice(2800000) deadline(376780781) curr?(1) task?(0)
[ 3613.699803][T52604] se: weight(1048576) vruntime(373992944) slice(2800000) deadline(376786995) curr?(1) task?(0)
[ 3613.711161][T52604] se: weight(1048576) vruntime(373993342) slice(2800000) deadline(376788034) curr?(1) task?(0)
[ 3613.722515][T52604] se: weight(1048576) vruntime(373997357) slice(2800000) deadline(376792569) curr?(1) task?(0)
[ 3613.733872][T52604] se: weight(1048576) vruntime(373998620) slice(2800000) deadline(376794464) curr?(1) task?(0)
[ 3613.745231][T52604] se: weight(1048576) vruntime(374001454) slice(2800000) deadline(376794814) curr?(1) task?(0)
[ 3613.756589][T52604] se: weight(1048576) vruntime(374002986) slice(2800000) deadline(376796716) curr?(1) task?(0)
[ 3613.767949][T52604] se: weight(1048576) vruntime(374006729) slice(2800000) deadline(376800189) curr?(1) task?(0)
[ 3613.779307][T52604] se: weight(1048576) vruntime(374011991) slice(2800000) deadline(376807364) curr?(1) task?(0)
[ 3613.790664][T52604] se: weight(1048576) vruntime(374014733) slice(2800000) deadline(376808624) curr?(1) task?(0)
[ 3613.802021][T52604] se: weight(1048576) vruntime(374014734) slice(2800000) deadline(376809787) curr?(1) task?(0)
[ 3613.813377][T52604] se: weight(1048576) vruntime(374017037) slice(2800000) deadline(376810987) curr?(1) task?(0)
[ 3613.824734][T52604] se: weight(1048576) vruntime(374021493) slice(2800000) deadline(376814152) curr?(1) task?(0)
[ 3613.836094][T52604] se: weight(1048576) vruntime(374022004) slice(2800000) deadline(376815314) curr?(1) task?(0)
[ 3613.847452][T52604] se: weight(1048576) vruntime(374023979) slice(2800000) deadline(376819102) curr?(1) task?(0)
[ 3613.858811][T52604] se: weight(1048576) vruntime(374024679) slice(2800000) deadline(376819822) curr?(1) task?(0)
[ 3613.870165][T52604] se: weight(1048576) vruntime(374025366) slice(2800000) deadline(376820829) curr?(1) task?(0)
[ 3613.881515][T52604] se: weight(1048576) vruntime(374026548) slice(2800000) deadline(376822552) curr?(1) task?(0)
[ 3613.892868][T52604] se: weight(1048576) vruntime(374028170) slice(2800000) deadline(376823764) curr?(1) task?(0)
[ 3613.904225][T52604] se: weight(1048576) vruntime(374034411) slice(2800000) deadline(376827281) curr?(1) task?(0)
[ 3613.915581][T52604] se: weight(1048576) vruntime(374029312) slice(2800000) deadline(376829312) curr?(1) task?(0)
[ 3613.926938][T52604] se: weight(1048576) vruntime(374030737) slice(2800000) deadline(376830737) curr?(1) task?(0)
[ 3613.938299][T52604] se: weight(1048576) vruntime(374033836) slice(2800000) deadline(376833836) curr?(1) task?(0)
[ 3613.949659][T52604] se: weight(1048576) vruntime(374038828) slice(2800000) deadline(376834130) curr?(1) task?(0)
[ 3613.961018][T52604] se: weight(1048576) vruntime(374042241) slice(2800000) deadline(376835240) curr?(1) task?(0)
[ 3613.972373][T52604] se: weight(1048576) vruntime(374038771) slice(2800000) deadline(376836177) curr?(1) task?(0)
[ 3613.983729][T52604] se: weight(1048576) vruntime(374047890) slice(2800000) deadline(376841140) curr?(1) task?(0)
[ 3613.995087][T52604] se: weight(1048576) vruntime(374047975) slice(2800000) deadline(376842667) curr?(1) task?(0)
[ 3614.006445][T52604] se: weight(1048576) vruntime(374042764) slice(2800000) deadline(376842764) curr?(1) task?(0)
[ 3614.017804][T52604] se: weight(1048576) vruntime(374047885) slice(2800000) deadline(376843097) curr?(1) task?(0)
[ 3614.029162][T52604] se: weight(1048576) vruntime(374048008) slice(2800000) deadline(376843391) curr?(1) task?(0)
[ 3614.040518][T52604] se: weight(1048576) vruntime(374051556) slice(2800000) deadline(376846488) curr?(1) task?(0)
[ 3614.051875][T52604] se: weight(1048576) vruntime(374048911) slice(2800000) deadline(376848911) curr?(1) task?(0)
[ 3614.063229][T52604] se: weight(1048576) vruntime(374061207) slice(2800000) deadline(376861207) curr?(1) task?(0)
[ 3614.074586][T52604] se: weight(1048576) vruntime(374068289) slice(2800000) deadline(376861879) curr?(1) task?(0)
[ 3614.085945][T52604] se: weight(1048576) vruntime(374066788) slice(2800000) deadline(376866788) curr?(1) task?(0)
[ 3614.097304][T52604] se: weight(1048576) vruntime(374077927) slice(2800000) deadline(376873240) curr?(1) task?(0)
[ 3614.108664][T52604] se: weight(1048576) vruntime(374094432) slice(2800000) deadline(376887071) curr?(1) task?(0)
[ 3614.120022][T52604] se: weight(1048576) vruntime(374092372) slice(2800000) deadline(376887124) curr?(1) task?(0)
[ 3614.131380][T52604] se: weight(1048576) vruntime(374098393) slice(2800000) deadline(376892154) curr?(1) task?(0)
[ 3614.142735][T52604] se: weight(1048576) vruntime(374100128) slice(2800000) deadline(376894850) curr?(1) task?(0)
[ 3614.154090][T52604] se: weight(1048576) vruntime(374095484) slice(2800000) deadline(376895484) curr?(1) task?(0)
[ 3614.165448][T52604] se: weight(1048576) vruntime(374104032) slice(2800000) deadline(376899355) curr?(1) task?(0)
[ 3614.176805][T52604] se: weight(1048576) vruntime(374101130) slice(2800000) deadline(376901130) curr?(1) task?(0)
[ 3614.188166][T52604] se: weight(1048576) vruntime(374108496) slice(2800000) deadline(376903719) curr?(1) task?(0)
[ 3614.199525][T52604] se: weight(1048576) vruntime(374116618) slice(2800000) deadline(376907755) curr?(1) task?(0)
[ 3614.210881][T52604] se: weight(1048576) vruntime(374114640) slice(2800000) deadline(376908280) curr?(1) task?(0)
[ 3614.222237][T52604] se: weight(1048576) vruntime(374111092) slice(2800000) deadline(376911092) curr?(1) task?(0)
[ 3614.233593][T52604] se: weight(1048576) vruntime(374115634) slice(2800000) deadline(376911347) curr?(1) task?(0)
[ 3614.244949][T52604] se: weight(1048576) vruntime(374119611) slice(2800000) deadline(376913101) curr?(1) task?(0)
[ 3614.256299][T52604] se: weight(1048576) vruntime(374121470) slice(2800000) deadline(376916682) curr?(1) task?(0)
[ 3614.267658][T52604] se: weight(1048576) vruntime(374123049) slice(2800000) deadline(376923049) curr?(1) task?(0)
[ 3614.279017][T52604] se: weight(1048576) vruntime(374131230) slice(2800000) deadline(376923849) curr?(1) task?(0)
[ 3614.290372][T52604] se: weight(1048576) vruntime(374132176) slice(2800000) deadline(376927249) curr?(1) task?(0)
[ 3614.301730][T52604] se: weight(1048576) vruntime(374133006) slice(2800000) deadline(376927668) curr?(1) task?(0)
[ 3614.313085][T52604] se: weight(1048576) vruntime(374134020) slice(2800000) deadline(376928411) curr?(1) task?(0)
[ 3614.324442][T52604] se: weight(1048576) vruntime(374135353) slice(2800000) deadline(376928493) curr?(1) task?(0)
[ 3614.335800][T52604] se: weight(1048576) vruntime(374140141) slice(2800000) deadline(376940141) curr?(1) task?(0)
[ 3614.347155][T52604] se: weight(1048576) vruntime(374153145) slice(2800000) deadline(376947908) curr?(1) task?(0)
[ 3614.358508][T52604] se: weight(1048576) vruntime(374149382) slice(2800000) deadline(376949382) curr?(1) task?(0)
[ 3614.369866][T52604] se: weight(1048576) vruntime(374157840) slice(2800000) deadline(376950789) curr?(1) task?(0)
[ 3614.381223][T52604] se: weight(1048576) vruntime(374157433) slice(2800000) deadline(376952365) curr?(1) task?(0)
[ 3614.392579][T52604] se: weight(1048576) vruntime(374161887) slice(2800000) deadline(376956118) curr?(1) task?(0)
[ 3614.403934][T52604] se: weight(1048576) vruntime(374161518) slice(2800000) deadline(376956521) curr?(1) task?(0)
[ 3614.415289][T52604] se: weight(1048576) vruntime(374161232) slice(2800000) deadline(376956615) curr?(1) task?(0)
[ 3614.426647][T52604] se: weight(1048576) vruntime(374175183) slice(2800000) deadline(376969384) curr?(1) task?(0)
[ 3614.438006][T52604] se: weight(1048576) vruntime(374181347) slice(2800000) deadline(376974727) curr?(1) task?(0)
[ 3614.449365][T52604] se: weight(1048576) vruntime(374181463) slice(2800000) deadline(376975684) curr?(1) task?(0)
[ 3614.460722][T52604] se: weight(1048576) vruntime(374186228) slice(2800000) deadline(376976663) curr?(1) task?(0)
[ 3614.472080][T52604] se: weight(1048576) vruntime(374183505) slice(2800000) deadline(376977787) curr?(1) task?(0)
[ 3614.483433][T52604] se: weight(1048576) vruntime(374178084) slice(2800000) deadline(376978084) curr?(1) task?(0)
[ 3614.494790][T52604] se: weight(1048576) vruntime(374187679) slice(2800000) deadline(376982972) curr?(1) task?(0)
[ 3614.506149][T52604] se: weight(1048576) vruntime(374188379) slice(2800000) deadline(376983822) curr?(1) task?(0)
[ 3614.517505][T52604] se: weight(1048576) vruntime(374191743) slice(2800000) deadline(376985784) curr?(1) task?(0)
[ 3614.528865][T52604] se: weight(1048576) vruntime(374185941) slice(2800000) deadline(376985941) curr?(1) task?(0)
[ 3614.540223][T52604] se: weight(1048576) vruntime(374191275) slice(2800000) deadline(376986267) curr?(1) task?(0)
[ 3614.551581][T52604] se: weight(1048576) vruntime(374187448) slice(2800000) deadline(376987448) curr?(1) task?(0)
[ 3614.562935][T52604] se: weight(1048576) vruntime(374192105) slice(2800000) deadline(376987458) curr?(1) task?(0)
[ 3614.574291][T52604] se: weight(1048576) vruntime(374196805) slice(2800000) deadline(376991397) curr?(1) task?(0)
[ 3614.585649][T52604] se: weight(1048576) vruntime(374197834) slice(2800000) deadline(376993056) curr?(1) task?(0)
[ 3614.597008][T52604] se: weight(1048576) vruntime(374199372) slice(2800000) deadline(376993984) curr?(1) task?(0)
[ 3614.608369][T52604] se: weight(1048576) vruntime(374202116) slice(2800000) deadline(376997409) curr?(1) task?(0)
[ 3614.619720][T52604] se: weight(1048576) vruntime(374197917) slice(2800000) deadline(376997917) curr?(1) task?(0)
[ 3614.631077][T52604] se: weight(1048576) vruntime(374204009) slice(2800000) deadline(376998230) curr?(1) task?(0)
[ 3614.642433][T52604] se: weight(1048576) vruntime(374206320) slice(2800000) deadline(376999319) curr?(1) task?(0)
[ 3614.653788][T52604] se: weight(1048576) vruntime(374204433) slice(2800000) deadline(376999786) curr?(1) task?(0)
[ 3614.665144][T52604] se: weight(1048576) vruntime(374204702) slice(2800000) deadline(377000055) curr?(1) task?(0)
[ 3614.676494][T52604] se: weight(1048576) vruntime(374205537) slice(2800000) deadline(377002763) curr?(1) task?(0)
[ 3614.687854][T52604] se: weight(1048576) vruntime(374208770) slice(2800000) deadline(377004384) curr?(1) task?(0)
[ 3614.699211][T52604] se: weight(1048576) vruntime(374210175) slice(2800000) deadline(377006039) curr?(1) task?(0)
[ 3614.710566][T52604] se: weight(1048576) vruntime(374211550) slice(2800000) deadline(377007194) curr?(1) task?(0)
[ 3614.721925][T52604] se: weight(1048576) vruntime(374207528) slice(2800000) deadline(377007528) curr?(1) task?(0)
[ 3614.733279][T52604] se: weight(1048576) vruntime(374210663) slice(2800000) deadline(377010663) curr?(1) task?(0)
[ 3614.744635][T52604] se: weight(1048576) vruntime(374216582) slice(2800000) deadline(377012105) curr?(1) task?(0)
[ 3614.755984][T52604] se: weight(1048576) vruntime(374221163) slice(2800000) deadline(377014102) curr?(1) task?(0)
[ 3614.767342][T52604] se: weight(1048576) vruntime(374219721) slice(2800000) deadline(377014974) curr?(1) task?(0)
[ 3614.778702][T52604] se: weight(1048576) vruntime(374220595) slice(2800000) deadline(377015588) curr?(1) task?(0)
[ 3614.790062][T52604] se: weight(1048576) vruntime(374220778) slice(2800000) deadline(377016171) curr?(1) task?(0)
[ 3614.801421][T52604] se: weight(1048576) vruntime(374222695) slice(2800000) deadline(377016757) curr?(1) task?(0)
[ 3614.812775][T52604] se: weight(1048576) vruntime(374223168) slice(2800000) deadline(377018120) curr?(1) task?(0)
[ 3614.824130][T52604] se: weight(1048576) vruntime(374227579) slice(2800000) deadline(377021550) curr?(1) task?(0)
[ 3614.835486][T52604] se: weight(1048576) vruntime(374226460) slice(2800000) deadline(377021793) curr?(1) task?(0)
[ 3614.846846][T52604] se: weight(1048576) vruntime(374230075) slice(2800000) deadline(377024106) curr?(1) task?(0)
[ 3614.858197][T52604] se: weight(1048576) vruntime(374230223) slice(2800000) deadline(377024565) curr?(1) task?(0)
[ 3614.869546][T52604] se: weight(1048576) vruntime(374230694) slice(2800000) deadline(377024735) curr?(1) task?(0)
[ 3614.880903][T52604] se: weight(1048576) vruntime(374230460) slice(2800000) deadline(377025233) curr?(1) task?(0)
[ 3614.892260][T52604] se: weight(1048576) vruntime(374230479) slice(2800000) deadline(377025592) curr?(1) task?(0)
[ 3614.903613][T52604] se: weight(1048576) vruntime(374232249) slice(2800000) deadline(377027161) curr?(1) task?(0)
[ 3614.914969][T52604] se: weight(1048576) vruntime(374233127) slice(2800000) deadline(377027178) curr?(1) task?(0)
[ 3614.926328][T52604] se: weight(1048576) vruntime(374232979) slice(2800000) deadline(377028463) curr?(1) task?(0)
[ 3614.937686][T52604] se: weight(1048576) vruntime(374228748) slice(2800000) deadline(377028748) curr?(1) task?(0)
[ 3614.949047][T52604] se: weight(1048576) vruntime(374235876) slice(2800000) deadline(377029496) curr?(1) task?(0)
[ 3614.960404][T52604] se: weight(1048576) vruntime(374234505) slice(2800000) deadline(377030008) curr?(1) task?(0)
[ 3614.971753][T52604] se: weight(1048576) vruntime(374236346) slice(2800000) deadline(377031769) curr?(1) task?(0)
[ 3614.983107][T52604] se: weight(1048576) vruntime(374237351) slice(2800000) deadline(377032313) curr?(1) task?(0)
[ 3614.994463][T52604] se: weight(1048576) vruntime(374238982) slice(2800000) deadline(377034104) curr?(1) task?(0)
[ 3615.005822][T52604] se: weight(1048576) vruntime(374246034) slice(2800000) deadline(377039784) curr?(1) task?(0)
[ 3615.017180][T52604] se: weight(1048576) vruntime(374246209) slice(2800000) deadline(377041011) curr?(1) task?(0)
[ 3615.028542][T52604] se: weight(1048576) vruntime(374250580) slice(2800000) deadline(377047785) curr?(1) task?(0)
[ 3615.039892][T52604] se: weight(1048576) vruntime(374255085) slice(2800000) deadline(377047854) curr?(1) task?(0)
[ 3615.051248][T52604] se: weight(1048576) vruntime(374254261) slice(2800000) deadline(377048913) curr?(1) task?(0)
[ 3615.062604][T52604] se: weight(1048576) vruntime(374256209) slice(2800000) deadline(377050080) curr?(1) task?(0)
[ 3615.073959][T52604] se: weight(1048576) vruntime(374256251) slice(2800000) deadline(377051394) curr?(1) task?(0)
[ 3615.085315][T52604] se: weight(1048576) vruntime(374262661) slice(2800000) deadline(377056372) curr?(1) task?(0)
[ 3615.096675][T52604] se: weight(1048576) vruntime(374263961) slice(2800000) deadline(377057071) curr?(1) task?(0)
[ 3615.108033][T52604] se: weight(1048576) vruntime(374262448) slice(2800000) deadline(377057801) curr?(1) task?(0)
[ 3615.119383][T52604] se: weight(1048576) vruntime(374264270) slice(2800000) deadline(377058672) curr?(1) task?(0)
[ 3615.130740][T52604] se: weight(1048576) vruntime(374264795) slice(2800000) deadline(377059807) curr?(1) task?(0)
[ 3615.142097][T52604] se: weight(1048576) vruntime(374265764) slice(2800000) deadline(377061057) curr?(1) task?(0)
[ 3615.153450][T52604] se: weight(1048576) vruntime(374266409) slice(2800000) deadline(377061422) curr?(1) task?(0)
[ 3615.164807][T52604] se: weight(1048576) vruntime(374267596) slice(2800000) deadline(377062168) curr?(1) task?(0)
[ 3615.176165][T52604] se: weight(1048576) vruntime(374269089) slice(2800000) deadline(377063180) curr?(1) task?(0)
[ 3615.187522][T52604] se: weight(1048576) vruntime(374263601) slice(2800000) deadline(377063601) curr?(1) task?(0)
[ 3615.198883][T52604] se: weight(1048576) vruntime(374269738) slice(2800000) deadline(377064810) curr?(1) task?(0)
[ 3615.210241][T52604] se: weight(1048576) vruntime(374275369) slice(2800000) deadline(377070472) curr?(1) task?(0)
[ 3615.221600][T52604] se: weight(1048576) vruntime(374279342) slice(2800000) deadline(377079342) curr?(1) task?(0)
[ 3615.232953][T52604] se: weight(1048576) vruntime(374287283) slice(2800000) deadline(377080763) curr?(1) task?(0)
[ 3615.244310][T52604] se: weight(1048576) vruntime(374289071) slice(2800000) deadline(377081780) curr?(1) task?(0)
[ 3615.255666][T52604] se: weight(1048576) vruntime(374289152) slice(2800000) deadline(377084284) curr?(1) task?(0)
[ 3615.267025][T52604] se: weight(1048576) vruntime(374292490) slice(2800000) deadline(377085920) curr?(1) task?(0)
[ 3615.278377][T52604] se: weight(1048576) vruntime(374291822) slice(2800000) deadline(377086634) curr?(1) task?(0)
[ 3615.289734][T52604] se: weight(1048576) vruntime(374292388) slice(2800000) deadline(377087390) curr?(1) task?(0)
[ 3615.301091][T52604] se: weight(1048576) vruntime(374296477) slice(2800000) deadline(377088045) curr?(1) task?(0)
[ 3615.312449][T52604] se: weight(1048576) vruntime(374292763) slice(2800000) deadline(377088055) curr?(1) task?(0)
[ 3615.323804][T52604] se: weight(1048576) vruntime(374294138) slice(2800000) deadline(377090893) curr?(1) task?(0)
[ 3615.335161][T52604] se: weight(1048576) vruntime(374298472) slice(2800000) deadline(377091071) curr?(1) task?(0)
[ 3615.346519][T52604] se: weight(1048576) vruntime(374296924) slice(2800000) deadline(377092678) curr?(1) task?(0)
[ 3615.357876][T52604] se: weight(1048576) vruntime(374303334) slice(2800000) deadline(377097065) curr?(1) task?(0)
[ 3615.369234][T52604] se: weight(1048576) vruntime(374302565) slice(2800000) deadline(377097868) curr?(1) task?(0)
[ 3615.380591][T52604] se: weight(1048576) vruntime(374303888) slice(2800000) deadline(377099051) curr?(1) task?(0)
[ 3615.391949][T52604] se: weight(1048576) vruntime(374305829) slice(2800000) deadline(377100291) curr?(1) task?(0)
[ 3615.403303][T52604] se: weight(1048576) vruntime(374305899) slice(2800000) deadline(377100480) curr?(1) task?(0)
[ 3615.414659][T52604] se: weight(1048576) vruntime(374309282) slice(2800000) deadline(377104646) curr?(1) task?(0)
[ 3615.426018][T52604] se: weight(1048576) vruntime(374316267) slice(2800000) deadline(377110369) curr?(1) task?(0)
[ 3615.437375][T52604] se: weight(1048576) vruntime(374319818) slice(2800000) deadline(377111716) curr?(1) task?(0)
[ 3615.448727][T52604] se: weight(1048576) vruntime(374317314) slice(2800000) deadline(377112307) curr?(1) task?(0)
[ 3615.460077][T52604] se: weight(1048576) vruntime(374319214) slice(2800000) deadline(377112464) curr?(1) task?(0)
[ 3615.471434][T52604] se: weight(1048576) vruntime(374332155) slice(2800000) deadline(377127368) curr?(1) task?(0)
[ 3615.482789][T52604] se: weight(1048576) vruntime(374335808) slice(2800000) deadline(377129779) curr?(1) task?(0)
[ 3615.494143][T52604] se: weight(1048576) vruntime(374335413) slice(2800000) deadline(377129925) curr?(1) task?(0)
[ 3615.505500][T52604] se: weight(1048576) vruntime(374337876) slice(2800000) deadline(377131476) curr?(1) task?(0)
[ 3615.516849][T52604] se: weight(1048576) vruntime(374341305) slice(2800000) deadline(377141305) curr?(1) task?(0)
[ 3615.528208][T52604] se: weight(1048576) vruntime(374358285) slice(2800000) deadline(377152216) curr?(1) task?(0)
[ 3615.539568][T52604] se: weight(1048576) vruntime(374358421) slice(2800000) deadline(377154345) curr?(1) task?(0)
[ 3615.550925][T52604] se: weight(1048576) vruntime(374361565) slice(2800000) deadline(377156277) curr?(1) task?(0)
[ 3615.562281][T52604] se: weight(1048576) vruntime(374366003) slice(2800000) deadline(377158261) curr?(1) task?(0)
[ 3615.573635][T52604] se: weight(1048576) vruntime(374364658) slice(2800000) deadline(377158769) curr?(1) task?(0)
[ 3615.584993][T52604] se: weight(1048576) vruntime(374364444) slice(2800000) deadline(377159346) curr?(1) task?(0)
[ 3615.596350][T52604] se: weight(1048576) vruntime(374362499) slice(2800000) deadline(377162499) curr?(1) task?(0)
[ 3615.607709][T52604] se: weight(1048576) vruntime(374373854) slice(2800000) deadline(377165161) curr?(1) task?(0)
[ 3615.619069][T52604] se: weight(1048576) vruntime(374376127) slice(2800000) deadline(377169517) curr?(1) task?(0)
[ 3615.630428][T52604] se: weight(1048576) vruntime(374377966) slice(2800000) deadline(377172638) curr?(1) task?(0)
[ 3615.641785][T52604] se: weight(1048576) vruntime(374379406) slice(2800000) deadline(377174508) curr?(1) task?(0)
[ 3615.653140][T52604] se: weight(1048576) vruntime(374376184) slice(2800000) deadline(377176184) curr?(1) task?(0)
[ 3615.664496][T52604] se: weight(1048576) vruntime(374381263) slice(2800000) deadline(377176826) curr?(1) task?(0)
[ 3615.675852][T52604] se: weight(1048576) vruntime(374383129) slice(2800000) deadline(377178462) curr?(1) task?(0)
[ 3615.687210][T52604] se: weight(1048576) vruntime(374385987) slice(2800000) deadline(377180099) curr?(1) task?(0)
[ 3615.698569][T52604] se: weight(1048576) vruntime(374387258) slice(2800000) deadline(377182540) curr?(1) task?(0)
[ 3615.709919][T52604] se: weight(1048576) vruntime(374388750) slice(2800000) deadline(377183112) curr?(1) task?(0)
[ 3615.721277][T52604] se: weight(1048576) vruntime(374390932) slice(2800000) deadline(377186185) curr?(1) task?(0)
[ 3615.732634][T52604] se: weight(1048576) vruntime(374394713) slice(2800000) deadline(377186500) curr?(1) task?(0)
[ 3615.743988][T52604] se: weight(1048576) vruntime(374394242) slice(2800000) deadline(377189045) curr?(1) task?(0)
[ 3615.755346][T52604] se: weight(1048576) vruntime(374395325) slice(2800000) deadline(377190428) curr?(1) task?(0)
[ 3615.766705][T52604] se: weight(1048576) vruntime(374396229) slice(2800000) deadline(377191672) curr?(1) task?(0)
[ 3615.778063][T52604] se: weight(1048576) vruntime(374396682) slice(2800000) deadline(377191945) curr?(1) task?(0)
[ 3615.789424][T52604] se: weight(1048576) vruntime(374399522) slice(2800000) deadline(377194355) curr?(1) task?(0)
[ 3615.800781][T52604] se: weight(1048576) vruntime(374401311) slice(2800000) deadline(377195222) curr?(1) task?(0)
[ 3615.812130][T52604] se: weight(1048576) vruntime(374401409) slice(2800000) deadline(377196542) curr?(1) task?(0)
[ 3615.823485][T52604] se: weight(1048576) vruntime(374402505) slice(2800000) deadline(377197408) curr?(1) task?(0)
[ 3615.834841][T52604] se: weight(1048576) vruntime(374409704) slice(2800000) deadline(377204866) curr?(1) task?(0)
[ 3615.846190][T52604] se: weight(1048576) vruntime(374410091) slice(2800000) deadline(377205775) curr?(1) task?(0)
[ 3615.857548][T52604] se: weight(1048576) vruntime(374406331) slice(2800000) deadline(377206331) curr?(1) task?(0)
[ 3615.868910][T52604] se: weight(1048576) vruntime(374415598) slice(2800000) deadline(377209438) curr?(1) task?(0)
[ 3615.880269][T52604] se: weight(1048576) vruntime(374415323) slice(2800000) deadline(377210295) curr?(1) task?(0)
[ 3615.891625][T52604] se: weight(1048576) vruntime(374421182) slice(2800000) deadline(377214081) curr?(1) task?(0)
[ 3615.902982][T52604] se: weight(1048576) vruntime(374421259) slice(2800000) deadline(377215581) curr?(1) task?(0)
[ 3615.914337][T52604] se: weight(1048576) vruntime(374422667) slice(2800000) deadline(377216979) curr?(1) task?(0)
[ 3615.925691][T52604] se: weight(1048576) vruntime(374422554) slice(2800000) deadline(377217236) curr?(1) task?(0)
[ 3615.937052][T52604] se: weight(1048576) vruntime(374424934) slice(2800000) deadline(377220077) curr?(1) task?(0)
[ 3615.948411][T52604] se: weight(1048576) vruntime(374425846) slice(2800000) deadline(377222020) curr?(1) task?(0)
[ 3615.959760][T52604] se: weight(1048576) vruntime(374429395) slice(2800000) deadline(377222064) curr?(1) task?(0)
[ 3615.971116][T52604] se: weight(1048576) vruntime(374433944) slice(2800000) deadline(377229067) curr?(1) task?(0)
[ 3615.982473][T52604] se: weight(1048576) vruntime(374436086) slice(2800000) deadline(377230788) curr?(1) task?(0)
[ 3615.993827][T52604] se: weight(1048576) vruntime(374437470) slice(2800000) deadline(377233104) curr?(1) task?(0)
[ 3616.005185][T52604] se: weight(1048576) vruntime(374444327) slice(2800000) deadline(377236516) curr?(1) task?(0)
[ 3616.016543][T52604] se: weight(1048576) vruntime(374440546) slice(2800000) deadline(377237020) curr?(1) task?(0)
[ 3616.027899][T52604] se: weight(1048576) vruntime(374445540) slice(2800000) deadline(377239511) curr?(1) task?(0)
[ 3616.039259][T52604] se: weight(1048576) vruntime(374445451) slice(2800000) deadline(377239752) curr?(1) task?(0)
[ 3616.050620][T52604] se: weight(1048576) vruntime(374442295) slice(2800000) deadline(377242295) curr?(1) task?(0)
[ 3616.061976][T52604] se: weight(1048576) vruntime(374452271) slice(2800000) deadline(377247113) curr?(1) task?(0)
[ 3616.073331][T52604] se: weight(1048576) vruntime(374454256) slice(2800000) deadline(377249599) curr?(1) task?(0)
[ 3616.084687][T52604] se: weight(1048576) vruntime(374463449) slice(2800000) deadline(377256759) curr?(1) task?(0)
[ 3616.096043][T52604] se: weight(1048576) vruntime(374461967) slice(2800000) deadline(377256779) curr?(1) task?(0)
[ 3616.107402][T52604] se: weight(1048576) vruntime(374461483) slice(2800000) deadline(377261483) curr?(1) task?(0)
[ 3616.118762][T52604] se: weight(1048576) vruntime(374467281) slice(2800000) deadline(377261763) curr?(1) task?(0)
[ 3616.130121][T52604] se: weight(1048576) vruntime(374469851) slice(2800000) deadline(377269851) curr?(1) task?(0)
[ 3616.141478][T52604] se: weight(1048576) vruntime(374476097) slice(2800000) deadline(377272192) curr?(1) task?(0)
[ 3616.152835][T52604] se: weight(1048576) vruntime(374474099) slice(2800000) deadline(377274099) curr?(1) task?(0)
[ 3616.164187][T52604] se: weight(1048576) vruntime(374482043) slice(2800000) deadline(377277185) curr?(1) task?(0)
[ 3616.175544][T52604] se: weight(1048576) vruntime(374483245) slice(2800000) deadline(377278117) curr?(1) task?(0)
[ 3616.186902][T52604] se: weight(1048576) vruntime(374484011) slice(2800000) deadline(377284011) curr?(1) task?(0)
[ 3616.198261][T52604] se: weight(1048576) vruntime(374492728) slice(2800000) deadline(377287130) curr?(1) task?(0)
[ 3616.209621][T52604] se: weight(1048576) vruntime(374493797) slice(2800000) deadline(377288409) curr?(1) task?(0)
[ 3616.220979][T52604] se: weight(1048576) vruntime(374490308) slice(2800000) deadline(377290308) curr?(1) task?(0)
[ 3616.232337][T52604] se: weight(1048576) vruntime(374496341) slice(2800000) deadline(377290733) curr?(1) task?(0)
[ 3616.243691][T52604] se: weight(1048576) vruntime(374499138) slice(2800000) deadline(377294261) curr?(1) task?(0)
[ 3616.255048][T52604] se: weight(1048576) vruntime(374500459) slice(2800000) deadline(377296112) curr?(1) task?(0)
[ 3616.266404][T52604] se: weight(1048576) vruntime(374502827) slice(2800000) deadline(377297690) curr?(1) task?(0)
[ 3616.277761][T52604] se: weight(1048576) vruntime(374497901) slice(2800000) deadline(377297901) curr?(1) task?(0)
[ 3616.289121][T52604] se: weight(1048576) vruntime(374502995) slice(2800000) deadline(377298048) curr?(1) task?(0)
[ 3616.300480][T52604] se: weight(1048576) vruntime(374505915) slice(2800000) deadline(377299956) curr?(1) task?(0)
[ 3616.311836][T52604] se: weight(1048576) vruntime(374505598) slice(2800000) deadline(377301092) curr?(1) task?(0)
[ 3616.323193][T52604] se: weight(1048576) vruntime(374507584) slice(2800000) deadline(377301485) curr?(1) task?(0)
[ 3616.334546][T52604] se: weight(1048576) vruntime(374508638) slice(2800000) deadline(377303150) curr?(1) task?(0)
[ 3616.345901][T52604] se: weight(1048576) vruntime(374514991) slice(2800000) deadline(377305777) curr?(1) task?(0)
[ 3616.357259][T52604] se: weight(1048576) vruntime(374516696) slice(2800000) deadline(377310216) curr?(1) task?(0)
[ 3616.368618][T52604] se: weight(1048576) vruntime(374515641) slice(2800000) deadline(377312105) curr?(1) task?(0)
[ 3616.379977][T52604] se: weight(1048576) vruntime(374522729) slice(2800000) deadline(377316339) curr?(1) task?(0)
[ 3616.391332][T52604] se: weight(1048576) vruntime(374520066) slice(2800000) deadline(377317171) curr?(1) task?(0)
[ 3616.402690][T52604] se: weight(1048576) vruntime(374522122) slice(2800000) deadline(377317455) curr?(1) task?(0)
[ 3616.414043][T52604] se: weight(1048576) vruntime(374523393) slice(2800000) deadline(377317855) curr?(1) task?(0)
[ 3616.425400][T52604] se: weight(1048576) vruntime(374519270) slice(2800000) deadline(377319270) curr?(1) task?(0)
[ 3616.436758][T52604] se: weight(1048576) vruntime(374526242) slice(2800000) deadline(377320283) curr?(1) task?(0)
[ 3616.448116][T52604] se: weight(1048576) vruntime(374529587) slice(2800000) deadline(377323518) curr?(1) task?(0)
[ 3616.459476][T52604] se: weight(1048576) vruntime(374529085) slice(2800000) deadline(377324408) curr?(1) task?(0)
[ 3616.470834][T52604] se: weight(1048576) vruntime(374532479) slice(2800000) deadline(377332479) curr?(1) task?(0)
[ 3616.482193][T52604] se: weight(1048576) vruntime(374538915) slice(2800000) deadline(377332906) curr?(1) task?(0)
[ 3616.493548][T52604] se: weight(1048576) vruntime(374539281) slice(2800000) deadline(377334243) curr?(1) task?(0)
[ 3616.504903][T52604] se: weight(1048576) vruntime(374541610) slice(2800000) deadline(377334720) curr?(1) task?(0)
[ 3616.516260][T52604] se: weight(1048576) vruntime(374542667) slice(2800000) deadline(377335076) curr?(1) task?(0)
[ 3616.527618][T52604] se: weight(1048576) vruntime(374544155) slice(2800000) deadline(377335652) curr?(1) task?(0)
[ 3616.538978][T52604] se: weight(1048576) vruntime(374547515) slice(2800000) deadline(377342928) curr?(1) task?(0)
[ 3616.550337][T52604] se: weight(1048576) vruntime(374549772) slice(2800000) deadline(377344654) curr?(1) task?(0)
[ 3616.561693][T52604] se: weight(1048576) vruntime(374552573) slice(2800000) deadline(377346304) curr?(1) task?(0)
[ 3616.573051][T52604] se: weight(1048576) vruntime(374551013) slice(2800000) deadline(377351013) curr?(1) task?(0)
[ 3616.584405][T52604] se: weight(1048576) vruntime(374557252) slice(2800000) deadline(377352184) curr?(1) task?(0)
[ 3616.595760][T52604] se: weight(1048576) vruntime(374570427) slice(2800000) deadline(377364428) curr?(1) task?(0)
[ 3616.607110][T52604] se: weight(1048576) vruntime(374573378) slice(2800000) deadline(377368791) curr?(1) task?(0)
[ 3616.618468][T52604] se: weight(1048576) vruntime(374577388) slice(2800000) deadline(377369095) curr?(1) task?(0)
[ 3616.629827][T52604] se: weight(1048576) vruntime(374579872) slice(2800000) deadline(377374914) curr?(1) task?(0)
[ 3616.641185][T52604] se: weight(1048576) vruntime(374576670) slice(2800000) deadline(377376670) curr?(1) task?(0)
[ 3616.652542][T52604] se: weight(1048576) vruntime(374584099) slice(2800000) deadline(377379281) curr?(1) task?(0)
[ 3616.663897][T52604] se: weight(1048576) vruntime(374584660) slice(2800000) deadline(377384660) curr?(1) task?(0)
[ 3616.675253][T52604] se: weight(1048576) vruntime(374596006) slice(2800000) deadline(377391469) curr?(1) task?(0)
[ 3616.686610][T52604] se: weight(1048576) vruntime(374600030) slice(2800000) deadline(377392098) curr?(1) task?(0)
[ 3616.697965][T52604] se: weight(1048576) vruntime(374604603) slice(2800000) deadline(377398464) curr?(1) task?(0)
[ 3616.709328][T52604] se: weight(1048576) vruntime(374605621) slice(2800000) deadline(377401355) curr?(1) task?(0)
[ 3616.720688][T52604] se: weight(1048576) vruntime(374612188) slice(2800000) deadline(377404226) curr?(1) task?(0)
[ 3616.732044][T52604] se: weight(1048576) vruntime(374611228) slice(2800000) deadline(377411228) curr?(1) task?(0)
[ 3616.743400][T52604] se: weight(1048576) vruntime(374617243) slice(2800000) deadline(377411334) curr?(1) task?(0)
[ 3616.754755][T52604] se: weight(1048576) vruntime(374616339) slice(2800000) deadline(377411762) curr?(1) task?(0)
[ 3616.766111][T52604] se: weight(1048576) vruntime(374620666) slice(2800000) deadline(377416039) curr?(1) task?(0)
[ 3616.777462][T52604] se: weight(1048576) vruntime(374627340) slice(2800000) deadline(377422633) curr?(1) task?(0)
[ 3616.788820][T52604] se: weight(1048576) vruntime(374628606) slice(2800000) deadline(377428606) curr?(1) task?(0)
[ 3616.800170][T52604] se: weight(1048576) vruntime(374636211) slice(2800000) deadline(377431624) curr?(1) task?(0)
[ 3616.811525][T52604] se: weight(1048576) vruntime(374636267) slice(2800000) deadline(377431630) curr?(1) task?(0)
[ 3616.822882][T52604] se: weight(1048576) vruntime(374637943) slice(2800000) deadline(377433287) curr?(1) task?(0)
[ 3616.834235][T52604] se: weight(1048576) vruntime(374635778) slice(2800000) deadline(377435778) curr?(1) task?(0)
[ 3616.845591][T52604] se: weight(1048576) vruntime(374645146) slice(2800000) deadline(377440008) curr?(1) task?(0)
[ 3616.856948][T52604] se: weight(1048576) vruntime(374645651) slice(2800000) deadline(377440624) curr?(1) task?(0)
[ 3616.868305][T52604] se: weight(1048576) vruntime(374647575) slice(2800000) deadline(377441586) curr?(1) task?(0)
[ 3616.879663][T52604] se: weight(1048576) vruntime(374649295) slice(2800000) deadline(377444177) curr?(1) task?(0)
[ 3616.891023][T52604] se: weight(1048576) vruntime(374649488) slice(2800000) deadline(377444591) curr?(1) task?(0)
[ 3616.902383][T52604] se: weight(1048576) vruntime(374655094) slice(2800000) deadline(377449426) curr?(1) task?(0)
[ 3616.913736][T52604] se: weight(1048576) vruntime(374660107) slice(2800000) deadline(377453196) curr?(1) task?(0)
[ 3616.925091][T52604] se: weight(1048576) vruntime(374660573) slice(2800000) deadline(377455074) curr?(1) task?(0)
[ 3616.936448][T52604] se: weight(1048576) vruntime(374664939) slice(2800000) deadline(377457809) curr?(1) task?(0)
[ 3616.947807][T52604] se: weight(1048576) vruntime(374664935) slice(2800000) deadline(377459177) curr?(1) task?(0)
[ 3616.959157][T52604] se: weight(1048576) vruntime(374665938) slice(2800000) deadline(377459819) curr?(1) task?(0)
[ 3616.970515][T52604] se: weight(1048576) vruntime(374668495) slice(2800000) deadline(377463337) curr?(1) task?(0)
[ 3616.981871][T52604] se: weight(1048576) vruntime(374668761) slice(2800000) deadline(377465626) curr?(1) task?(0)
[ 3616.993229][T52604] se: weight(1048576) vruntime(374673009) slice(2800000) deadline(377468031) curr?(1) task?(0)
[ 3617.004583][T52604] se: weight(1048576) vruntime(374674010) slice(2800000) deadline(377468912) curr?(1) task?(0)
[ 3617.015938][T52604] se: weight(1048576) vruntime(374675805) slice(2800000) deadline(377469015) curr?(1) task?(0)
[ 3617.027297][T52604] se: weight(1048576) vruntime(374675425) slice(2800000) deadline(377471579) curr?(1) task?(0)
[ 3617.038655][T52604] se: weight(1048576) vruntime(374680446) slice(2800000) deadline(377474487) curr?(1) task?(0)
[ 3617.050015][T52604] se: weight(1048576) vruntime(374682312) slice(2800000) deadline(377476623) curr?(1) task?(0)
[ 3617.061373][T52604] se: weight(1048576) vruntime(374685179) slice(2800000) deadline(377479581) curr?(1) task?(0)
[ 3617.072730][T52604] se: weight(1048576) vruntime(374687393) slice(2800000) deadline(377479911) curr?(1) task?(0)
[ 3617.084084][T52604] se: weight(1048576) vruntime(374684299) slice(2800000) deadline(377481534) curr?(1) task?(0)
[ 3617.095441][T52604] se: weight(1048576) vruntime(374692877) slice(2800000) deadline(377488009) curr?(1) task?(0)
[ 3617.106800][T52604] se: weight(1048576) vruntime(374694247) slice(2800000) deadline(377488919) curr?(1) task?(0)
[ 3617.118156][T52604] se: weight(1048576) vruntime(374698132) slice(2800000) deadline(377492403) curr?(1) task?(0)
[ 3617.129517][T52604] se: weight(1048576) vruntime(374700158) slice(2800000) deadline(377495581) curr?(1) task?(0)
[ 3617.140876][T52604] se: weight(1048576) vruntime(374707269) slice(2800000) deadline(377502622) curr?(1) task?(0)
[ 3617.152232][T52604] se: weight(1048576) vruntime(374714845) slice(2800000) deadline(377510188) curr?(1) task?(0)
[ 3617.163589][T52604] se: weight(1048576) vruntime(374715734) slice(2800000) deadline(377510947) curr?(1) task?(0)
[ 3617.174946][T52604] se: weight(1048576) vruntime(374711460) slice(2800000) deadline(377511460) curr?(1) task?(0)
[ 3617.186302][T52604] se: weight(1048576) vruntime(374720872) slice(2800000) deadline(377515694) curr?(1) task?(0)
[ 3617.197652][T52604] se: weight(1048576) vruntime(374723932) slice(2800000) deadline(377517072) curr?(1) task?(0)
[ 3617.209010][T52604] se: weight(1048576) vruntime(374722843) slice(2800000) deadline(377517545) curr?(1) task?(0)
[ 3617.220361][T52604] se: weight(1048576) vruntime(374724347) slice(2800000) deadline(377519139) curr?(1) task?(0)
[ 3617.231718][T52604] se: weight(1048576) vruntime(374724931) slice(2800000) deadline(377520264) curr?(1) task?(0)
[ 3617.243067][T52604] se: weight(1048576) vruntime(374727921) slice(2800000) deadline(377523204) curr?(1) task?(0)
[ 3617.254419][T52604] se: weight(1048576) vruntime(374729193) slice(2800000) deadline(377523995) curr?(1) task?(0)
[ 3617.265775][T52604] se: weight(1048576) vruntime(374734754) slice(2800000) deadline(377529636) curr?(1) task?(0)
[ 3617.277134][T52604] se: weight(1048576) vruntime(374739059) slice(2800000) deadline(377533040) curr?(1) task?(0)
[ 3617.288490][T52604] se: weight(1048576) vruntime(374742149) slice(2800000) deadline(377533486) curr?(1) task?(0)
[ 3617.299849][T52604] se: weight(1048576) vruntime(374733760) slice(2800000) deadline(377533760) curr?(1) task?(0)
[ 3617.311209][T52604] se: weight(1048576) vruntime(374739312) slice(2800000) deadline(377533964) curr?(1) task?(0)
[ 3617.322566][T52604] se: weight(1048576) vruntime(374739524) slice(2800000) deadline(377534046) curr?(1) task?(0)
[ 3617.333921][T52604] se: weight(1048576) vruntime(374739316) slice(2800000) deadline(377535080) curr?(1) task?(0)
[ 3617.345277][T52604] se: weight(1048576) vruntime(374739013) slice(2800000) deadline(377536589) curr?(1) task?(0)
[ 3617.356633][T52604] se: weight(1048576) vruntime(374742951) slice(2800000) deadline(377539285) curr?(1) task?(0)
[ 3617.367992][T52604] se: weight(1048576) vruntime(374747732) slice(2800000) deadline(377540961) curr?(1) task?(0)
[ 3617.379352][T52604] se: weight(1048576) vruntime(374746015) slice(2800000) deadline(377541087) curr?(1) task?(0)
[ 3617.390702][T52604] se: weight(1048576) vruntime(374747757) slice(2800000) deadline(377542660) curr?(1) task?(0)
[ 3617.402057][T52604] se: weight(1048576) vruntime(374748011) slice(2800000) deadline(377542913) curr?(1) task?(0)
[ 3617.413415][T52604] se: weight(1048576) vruntime(374748871) slice(2800000) deadline(377544094) curr?(1) task?(0)
[ 3617.424768][T52604] se: weight(1048576) vruntime(374750068) slice(2800000) deadline(377545681) curr?(1) task?(0)
[ 3617.436125][T52604] se: weight(1048576) vruntime(374753520) slice(2800000) deadline(377548012) curr?(1) task?(0)
[ 3617.447483][T52604] se: weight(1048576) vruntime(374755959) slice(2800000) deadline(377551011) curr?(1) task?(0)
[ 3617.458842][T52604] se: weight(1048576) vruntime(374757341) slice(2800000) deadline(377551873) curr?(1) task?(0)
[ 3617.470199][T52604] se: weight(1048576) vruntime(374758811) slice(2800000) deadline(377552661) curr?(1) task?(0)
[ 3617.481556][T52604] se: weight(1048576) vruntime(374766340) slice(2800000) deadline(377557638) curr?(1) task?(0)
[ 3617.492914][T52604] se: weight(1048576) vruntime(374762370) slice(2800000) deadline(377558484) curr?(1) task?(0)
[ 3617.504268][T52604] se: weight(1048576) vruntime(374770276) slice(2800000) deadline(377563085) curr?(1) task?(0)
[ 3617.515624][T52604] se: weight(1048576) vruntime(374775708) slice(2800000) deadline(377575708) curr?(1) task?(0)
[ 3617.526973][T52604] se: weight(1048576) vruntime(374785957) slice(2800000) deadline(377583503) curr?(1) task?(0)
[ 3617.538329][T52604] se: weight(1048576) vruntime(374789459) slice(2800000) deadline(377584392) curr?(1) task?(0)
[ 3617.549690][T52604] se: weight(1048576) vruntime(374797164) slice(2800000) deadline(377591546) curr?(1) task?(0)
[ 3617.561049][T52604] se: weight(1048576) vruntime(374799442) slice(2800000) deadline(377599442) curr?(1) task?(0)
[ 3617.572404][T52604] se: weight(1048576) vruntime(374807875) slice(2800000) deadline(377603499) curr?(1) task?(0)
[ 3617.583761][T52604] se: weight(1048576) vruntime(374809192) slice(2800000) deadline(377604825) curr?(1) task?(0)
[ 3617.595118][T52604] se: weight(1048576) vruntime(374812356) slice(2800000) deadline(377607299) curr?(1) task?(0)
[ 3617.606474][T52604] se: weight(1048576) vruntime(374807725) slice(2800000) deadline(377607725) curr?(1) task?(0)
[ 3617.617833][T52604] se: weight(1048576) vruntime(374820069) slice(2800000) deadline(377614300) curr?(1) task?(0)
[ 3617.629193][T52604] se: weight(1048576) vruntime(374815215) slice(2800000) deadline(377615215) curr?(1) task?(0)
[ 3617.640551][T52604] se: weight(1048576) vruntime(374820421) slice(2800000) deadline(377616235) curr?(1) task?(0)
[ 3617.651908][T52604] se: weight(1048576) vruntime(374830059) slice(2800000) deadline(377624030) curr?(1) task?(0)
[ 3617.663265][T52604] se: weight(1048576) vruntime(374828604) slice(2800000) deadline(377624117) curr?(1) task?(0)
[ 3617.674617][T52604] se: weight(1048576) vruntime(374832371) slice(2800000) deadline(377624860) curr?(1) task?(0)
[ 3617.685975][T52604] se: weight(1048576) vruntime(374842047) slice(2800000) deadline(377637180) curr?(1) task?(0)
[ 3617.697333][T52604] se: weight(1048576) vruntime(374843713) slice(2800000) deadline(377639096) curr?(1) task?(0)
[ 3617.708690][T52604] se: weight(1048576) vruntime(374846067) slice(2800000) deadline(377639307) curr?(1) task?(0)
[ 3617.720049][T52604] se: weight(1048576) vruntime(374844501) slice(2800000) deadline(377639384) curr?(1) task?(0)
[ 3617.731408][T52604] se: weight(1048576) vruntime(374847268) slice(2800000) deadline(377640247) curr?(1) task?(0)
[ 3617.742767][T52604] se: weight(1048576) vruntime(374845913) slice(2800000) deadline(377640996) curr?(1) task?(0)
[ 3617.754122][T52604] se: weight(1048576) vruntime(374849718) slice(2800000) deadline(377645031) curr?(1) task?(0)
[ 3617.765477][T52604] se: weight(1048576) vruntime(374851896) slice(2800000) deadline(377646538) curr?(1) task?(0)
[ 3617.776833][T52604] se: weight(1048576) vruntime(374854229) slice(2800000) deadline(377648160) curr?(1) task?(0)
[ 3617.788192][T52604] se: weight(1048576) vruntime(374854045) slice(2800000) deadline(377648316) curr?(1) task?(0)
[ 3617.799550][T52604] se: weight(1048576) vruntime(374857515) slice(2800000) deadline(377651426) curr?(1) task?(0)
[ 3617.810909][T52604] se: weight(1048576) vruntime(374857246) slice(2800000) deadline(377652439) curr?(1) task?(0)
[ 3617.822267][T52604] se: weight(1048576) vruntime(374852507) slice(2800000) deadline(377652507) curr?(1) task?(0)
[ 3617.833624][T52604] se: weight(1048576) vruntime(374857054) slice(2800000) deadline(377652657) curr?(1) task?(0)
[ 3617.844977][T52604] se: weight(1048576) vruntime(374853532) slice(2800000) deadline(377653532) curr?(1) task?(0)
[ 3617.856332][T52604] se: weight(1048576) vruntime(374859304) slice(2800000) deadline(377654276) curr?(1) task?(0)
[ 3617.867682][T52604] se: weight(1048576) vruntime(374855095) slice(2800000) deadline(377655095) curr?(1) task?(0)
[ 3617.879040][T52604] se: weight(1048576) vruntime(374861393) slice(2800000) deadline(377656406) curr?(1) task?(0)
[ 3617.890399][T52604] se: weight(1048576) vruntime(374862387) slice(2800000) deadline(377657340) curr?(1) task?(0)
[ 3617.901756][T52604] se: weight(1048576) vruntime(374863512) slice(2800000) deadline(377659336) curr?(1) task?(0)
[ 3617.913105][T52604] se: weight(1048576) vruntime(374869312) slice(2800000) deadline(377662792) curr?(1) task?(0)
[ 3617.924459][T52604] se: weight(1048576) vruntime(374876445) slice(2800000) deadline(377671909) curr?(1) task?(0)
[ 3617.935816][T52604] se: weight(1048576) vruntime(374877405) slice(2800000) deadline(377673339) curr?(1) task?(0)
[ 3617.947174][T52604] se: weight(1048576) vruntime(374879689) slice(2800000) deadline(377674671) curr?(1) task?(0)
[ 3617.958531][T52604] se: weight(1048576) vruntime(374886180) slice(2800000) deadline(377680031) curr?(1) task?(0)
[ 3617.969893][T52604] se: weight(1048576) vruntime(374886558) slice(2800000) deadline(377681811) curr?(1) task?(0)
[ 3617.981251][T52604] se: weight(1048576) vruntime(374893848) slice(2800000) deadline(377687478) curr?(1) task?(0)
[ 3617.992607][T52604] se: weight(1048576) vruntime(374892982) slice(2800000) deadline(377688415) curr?(1) task?(0)
[ 3618.003963][T52604] se: weight(1048576) vruntime(374897763) slice(2800000) deadline(377690782) curr?(1) task?(0)
[ 3618.015318][T52604] se: weight(1048576) vruntime(374897085) slice(2800000) deadline(377693299) curr?(1) task?(0)
[ 3618.026675][T52604] se: weight(1048576) vruntime(374901854) slice(2800000) deadline(377696025) curr?(1) task?(0)
[ 3618.038034][T52604] se: weight(1048576) vruntime(374902731) slice(2800000) deadline(377698084) curr?(1) task?(0)
[ 3618.049393][T52604] se: weight(1048576) vruntime(374905212) slice(2800000) deadline(377700636) curr?(1) task?(0)
[ 3618.060753][T52604] se: weight(1048576) vruntime(374909249) slice(2800000) deadline(377702589) curr?(1) task?(0)
[ 3618.072109][T52604] se: weight(1048576) vruntime(374910277) slice(2800000) deadline(377705490) curr?(1) task?(0)
[ 3618.083466][T52604] se: weight(1048576) vruntime(374911259) slice(2800000) deadline(377706081) curr?(1) task?(0)
[ 3618.094819][T52604] se: weight(1048576) vruntime(374922649) slice(2800000) deadline(377718322) curr?(1) task?(0)
[ 3618.106175][T52604] se: weight(1048576) vruntime(374924640) slice(2800000) deadline(377719813) curr?(1) task?(0)
[ 3618.117533][T52604] se: weight(1048576) vruntime(374927810) slice(2800000) deadline(377722322) curr?(1) task?(0)
[ 3618.128889][T52604] se: weight(1048576) vruntime(374927299) slice(2800000) deadline(377723193) curr?(1) task?(0)
[ 3618.140248][T52604] se: weight(1048576) vruntime(374928507) slice(2800000) deadline(377723750) curr?(1) task?(0)
[ 3618.151608][T52604] se: weight(1048576) vruntime(374924555) slice(2800000) deadline(377724555) curr?(1) task?(0)
[ 3618.162965][T52604] se: weight(1048576) vruntime(374940052) slice(2800000) deadline(377735315) curr?(1) task?(0)
[ 3618.174321][T52604] se: weight(1048576) vruntime(374941101) slice(2800000) deadline(377736184) curr?(1) task?(0)
[ 3618.185676][T52604] se: weight(1048576) vruntime(374941171) slice(2800000) deadline(377736463) curr?(1) task?(0)
[ 3618.197033][T52604] se: weight(1048576) vruntime(374945912) slice(2800000) deadline(377740244) curr?(1) task?(0)
[ 3618.208392][T52604] se: weight(1048576) vruntime(374946021) slice(2800000) deadline(377740252) curr?(1) task?(0)
[ 3618.219752][T52604] se: weight(1048576) vruntime(374948745) slice(2800000) deadline(377743848) curr?(1) task?(0)
[ 3618.231110][T52604] se: weight(1048576) vruntime(374950341) slice(2800000) deadline(377744653) curr?(1) task?(0)
[ 3618.242466][T52604] se: weight(1048576) vruntime(374949597) slice(2800000) deadline(377745441) curr?(1) task?(0)
[ 3618.253815][T52604] se: weight(1048576) vruntime(374953565) slice(2800000) deadline(377747866) curr?(1) task?(0)
[ 3618.265169][T52604] se: weight(1048576) vruntime(374952802) slice(2800000) deadline(377750239) curr?(1) task?(0)
[ 3618.276525][T52604] se: weight(1048576) vruntime(374956280) slice(2800000) deadline(377751242) curr?(1) task?(0)
[ 3618.287875][T52604] se: weight(1048576) vruntime(374960137) slice(2800000) deadline(377755059) curr?(1) task?(0)
[ 3618.299234][T52604] se: weight(1048576) vruntime(374962491) slice(2800000) deadline(377757154) curr?(1) task?(0)
[ 3618.310593][T52604] se: weight(1048576) vruntime(374963272) slice(2800000) deadline(377757744) curr?(1) task?(0)
[ 3618.321949][T52604] se: weight(1048576) vruntime(374964738) slice(2800000) deadline(377757877) curr?(1) task?(0)
[ 3618.333307][T52604] se: weight(1048576) vruntime(374965852) slice(2800000) deadline(377759303) curr?(1) task?(0)
[ 3618.344661][T52604] se: weight(1048576) vruntime(374964752) slice(2800000) deadline(377760335) curr?(1) task?(0)
[ 3618.356019][T52604] se: weight(1048576) vruntime(374966061) slice(2800000) deadline(377760983) curr?(1) task?(0)
[ 3618.367377][T52604] se: weight(1048576) vruntime(374968082) slice(2800000) deadline(377763645) curr?(1) task?(0)
[ 3618.378734][T52604] se: weight(1048576) vruntime(374970002) slice(2800000) deadline(377765074) curr?(1) task?(0)
[ 3618.390096][T52604] se: weight(1048576) vruntime(374975951) slice(2800000) deadline(377775951) curr?(1) task?(0)
[ 3618.401455][T52604] se: weight(1048576) vruntime(374977489) slice(2800000) deadline(377777489) curr?(1) task?(0)
[ 3618.412812][T52604] se: weight(1048576) vruntime(374982565) slice(2800000) deadline(377777737) curr?(1) task?(0)
[ 3618.424168][T52604] se: weight(1048576) vruntime(374984857) slice(2800000) deadline(377779999) curr?(1) task?(0)
[ 3618.435523][T52604] se: weight(1048576) vruntime(374988396) slice(2800000) deadline(377783859) curr?(1) task?(0)
[ 3618.446880][T52604] se: weight(1048576) vruntime(374989283) slice(2800000) deadline(377784266) curr?(1) task?(0)
[ 3618.458230][T52604] se: weight(1048576) vruntime(374990713) slice(2800000) deadline(377784995) curr?(1) task?(0)
[ 3618.469588][T52604] se: weight(1048576) vruntime(374990967) slice(2800000) deadline(377785589) curr?(1) task?(0)
[ 3618.480938][T52604] se: weight(1048576) vruntime(374992790) slice(2800000) deadline(377786100) curr?(1) task?(0)
[ 3618.492294][T52604] se: weight(1048576) vruntime(374994122) slice(2800000) deadline(377787993) curr?(1) task?(0)
[ 3618.503643][T52604] se: weight(1048576) vruntime(374994825) slice(2800000) deadline(377789777) curr?(1) task?(0)
[ 3618.514996][T52604] se: weight(1048576) vruntime(374994957) slice(2800000) deadline(377790150) curr?(1) task?(0)
[ 3618.526353][T52604] se: weight(1048576) vruntime(374998605) slice(2800000) deadline(377793738) curr?(1) task?(0)
[ 3618.537713][T52604] se: weight(1048576) vruntime(374998695) slice(2800000) deadline(377793948) curr?(1) task?(0)
[ 3618.549070][T52604] se: weight(1048576) vruntime(375002116) slice(2800000) deadline(377797268) curr?(1) task?(0)
[ 3618.560430][T52604] se: weight(1048576) vruntime(375003915) slice(2800000) deadline(377797516) curr?(1) task?(0)
[ 3618.571789][T52604] se: weight(1048576) vruntime(375003029) slice(2800000) deadline(377797801) curr?(1) task?(0)
[ 3618.583148][T52604] se: weight(1048576) vruntime(375004515) slice(2800000) deadline(377798847) curr?(1) task?(0)
[ 3618.594503][T52604] se: weight(1048576) vruntime(375007135) slice(2800000) deadline(377801606) curr?(1) task?(0)
[ 3618.605859][T52604] se: weight(1048576) vruntime(375002094) slice(2800000) deadline(377802094) curr?(1) task?(0)
[ 3618.617214][T52604] se: weight(1048576) vruntime(375014512) slice(2800000) deadline(377810316) curr?(1) task?(0)
[ 3618.628573][T52604] se: weight(1048576) vruntime(375022122) slice(2800000) deadline(377814430) curr?(1) task?(0)
[ 3618.639934][T52604] se: weight(1048576) vruntime(375019689) slice(2800000) deadline(377814691) curr?(1) task?(0)
[ 3618.651290][T52604] se: weight(1048576) vruntime(375023318) slice(2800000) deadline(377818220) curr?(1) task?(0)
[ 3618.662647][T52604] se: weight(1048576) vruntime(375038805) slice(2800000) deadline(377832546) curr?(1) task?(0)
[ 3618.674005][T52604] se: weight(1048576) vruntime(375046180) slice(2800000) deadline(377846180) curr?(1) task?(0)
[ 3618.685358][T52604] se: weight(1048576) vruntime(375057166) slice(2800000) deadline(377851898) curr?(1) task?(0)
[ 3618.696716][T52604] se: weight(1048576) vruntime(375058461) slice(2800000) deadline(377853373) curr?(1) task?(0)
[ 3618.708076][T52604] se: weight(1048576) vruntime(375054662) slice(2800000) deadline(377854662) curr?(1) task?(0)
[ 3618.719435][T52604] se: weight(1048576) vruntime(375089122) slice(2800000) deadline(377884475) curr?(1) task?(0)
[ 3618.730795][T52604] se: weight(1048576) vruntime(375098118) slice(2800000) deadline(377893090) curr?(1) task?(0)
[ 3618.742152][T52604] se: weight(1048576) vruntime(375103966) slice(2800000) deadline(377899079) curr?(1) task?(0)
[ 3618.753500][T52604] se: weight(1048576) vruntime(375113491) slice(2800000) deadline(377908984) curr?(1) task?(0)
[ 3618.764854][T52604] se: weight(1048576) vruntime(375132516) slice(2800000) deadline(377927779) curr?(1) task?(0)
[ 3618.776212][T52604] se: weight(1048576) vruntime(375154044) slice(2800000) deadline(377948055) curr?(1) task?(0)
[ 3618.787570][T52604] se: weight(1048576) vruntime(375154197) slice(2800000) deadline(377954197) curr?(1) task?(0)
[ 3618.798927][T52604] se: weight(1048576) vruntime(375162198) slice(2800000) deadline(377955668) curr?(1) task?(0)
[ 3618.810288][T52604] se: weight(1048576) vruntime(375239013) slice(2800000) deadline(378032724) curr?(1) task?(0)
[ 3618.821645][T52604] se: weight(1048576) vruntime(375237420) slice(2800000) deadline(378037420) curr?(1) task?(0)
[ 3618.833001][T52604] se: weight(1048576) vruntime(375255259) slice(2800000) deadline(378050382) curr?(1) task?(0)
[ 3618.844358][T52604] se: weight(1048576) vruntime(375259055) slice(2800000) deadline(378051223) curr?(1) task?(0)
[ 3618.855713][T52604] se: weight(1048576) vruntime(375261829) slice(2800000) deadline(378055660) curr?(1) task?(0)
[ 3618.867071][T52604] se: weight(1048576) vruntime(375327137) slice(2800000) deadline(378122760) curr?(1) task?(0)
[ 3618.878421][T52604] se: weight(1048576) vruntime(375333973) slice(2800000) deadline(378127033) curr?(1) task?(0)
[ 3618.889781][T52604] se: weight(1048576) vruntime(375334097) slice(2800000) deadline(378134097) curr?(1) task?(0)
[ 3618.901140][T52604] se: weight(1048576) vruntime(375352575) slice(2800000) deadline(378145875) curr?(1) task?(0)
[ 3618.912497][T52604] se: weight(1048576) vruntime(375347082) slice(2800000) deadline(378147082) curr?(1) task?(0)
[ 3618.923855][T52604] se: weight(1048576) vruntime(375373155) slice(2800000) deadline(378164993) curr?(1) task?(0)
[ 3618.935209][T52604] se: weight(1048576) vruntime(375375100) slice(2800000) deadline(378167799) curr?(1) task?(0)
[ 3618.946565][T52604] se: weight(1048576) vruntime(375392464) slice(2800000) deadline(378186655) curr?(1) task?(0)
[ 3618.957923][T52604] se: weight(1048576) vruntime(375438734) slice(2800000) deadline(378232935) curr?(1) task?(0)
[ 3618.969279][T52604] se: weight(1048576) vruntime(375442183) slice(2800000) deadline(378233610) curr?(1) task?(0)
[ 3618.980642][T52604] se: weight(1048576) vruntime(375474447) slice(2800000) deadline(378268358) curr?(1) task?(0)
[ 3618.992002][T52604] se: weight(1048576) vruntime(375500311) slice(2800000) deadline(378290276) curr?(1) task?(0)
[ 3619.003359][T52604] se: weight(1048576) vruntime(375521103) slice(2800000) deadline(378313682) curr?(1) task?(0)
[ 3619.014714][T52604] se: weight(1048576) vruntime(375528843) slice(2800000) deadline(378328843) curr?(1) task?(0)
[ 3619.026070][T52604] se: weight(1048576) vruntime(375542801) slice(2800000) deadline(378335170) curr?(1) task?(0)
[ 3619.037427][T52604] se: weight(1048576) vruntime(375542775) slice(2800000) deadline(378335844) curr?(1) task?(0)
[ 3619.048785][T52604] se: weight(1048576) vruntime(375543834) slice(2800000) deadline(378335882) curr?(1) task?(0)
[ 3619.060144][T52604] se: weight(1048576) vruntime(375541869) slice(2800000) deadline(378336331) curr?(1) task?(0)
[ 3619.071495][T52604] se: weight(1048576) vruntime(375544678) slice(2800000) deadline(378339650) curr?(1) task?(0)
[ 3619.082851][T52604] se: weight(1048576) vruntime(375570740) slice(2800000) deadline(378365091) curr?(1) task?(0)
[ 3619.094210][T52604] se: weight(1048576) vruntime(375593170) slice(2800000) deadline(378387321) curr?(1) task?(0)
[ 3619.105562][T52604] se: weight(1048576) vruntime(375596169) slice(2800000) deadline(378389960) curr?(1) task?(0)
[ 3619.116920][T52604] se: weight(1048576) vruntime(375595449) slice(2800000) deadline(378391994) curr?(1) task?(0)
[ 3619.128280][T52604] se: weight(1048576) vruntime(375599417) slice(2800000) deadline(378394981) curr?(1) task?(0)
[ 3619.139637][T52604] se: weight(1048576) vruntime(375596317) slice(2800000) deadline(378396317) curr?(1) task?(0)
[ 3619.150987][T52604] se: weight(1048576) vruntime(375603501) slice(2800000) deadline(378403501) curr?(1) task?(0)
[ 3619.162343][T52604] se: weight(1048576) vruntime(375617770) slice(2800000) deadline(378411060) curr?(1) task?(0)
[ 3619.173700][T52604] se: weight(1048576) vruntime(375617901) slice(2800000) deadline(378411561) curr?(1) task?(0)
[ 3619.185054][T52604] se: weight(1048576) vruntime(375628426) slice(2800000) deadline(378421465) curr?(1) task?(0)
[ 3619.196412][T52604] se: weight(1048576) vruntime(375638325) slice(2800000) deadline(378431895) curr?(1) task?(0)
[ 3619.207770][T52604] se: weight(1048576) vruntime(375636757) slice(2800000) deadline(378431990) curr?(1) task?(0)
[ 3619.219125][T52604] se: weight(1048576) vruntime(375637839) slice(2800000) deadline(378432301) curr?(1) task?(0)
[ 3619.230485][T52604] se: weight(1048576) vruntime(375644237) slice(2800000) deadline(378437016) curr?(1) task?(0)
[ 3619.241844][T52604] se: weight(1048576) vruntime(375640962) slice(2800000) deadline(378440962) curr?(1) task?(0)
[ 3619.253200][T52604] se: weight(1048576) vruntime(375647723) slice(2800000) deadline(378447723) curr?(1) task?(0)
[ 3619.264556][T52604] se: weight(1048576) vruntime(375662925) slice(2800000) deadline(378456616) curr?(1) task?(0)
[ 3619.275911][T52604] se: weight(1048576) vruntime(375665957) slice(2800000) deadline(378459357) curr?(1) task?(0)
[ 3619.287268][T52604] se: weight(1048576) vruntime(375673086) slice(2800000) deadline(378467298) curr?(1) task?(0)
[ 3619.298626][T52604] se: weight(1048576) vruntime(375685432) slice(2800000) deadline(378478652) curr?(1) task?(0)
[ 3619.309987][T52604] se: weight(1048576) vruntime(375689304) slice(2800000) deadline(378483365) curr?(1) task?(0)
[ 3619.321345][T52604] se: weight(1048576) vruntime(375690267) slice(2800000) deadline(378484028) curr?(1) task?(0)
[ 3619.332702][T52604] se: weight(1048576) vruntime(375691846) slice(2800000) deadline(378487179) curr?(1) task?(0)
[ 3619.344058][T52604] se: weight(1048576) vruntime(375697741) slice(2800000) deadline(378491010) curr?(1) task?(0)
[ 3619.355412][T52604] se: weight(1048576) vruntime(375698157) slice(2800000) deadline(378492208) curr?(1) task?(0)
[ 3619.366768][T52604] se: weight(1048576) vruntime(375719406) slice(2800000) deadline(378509892) curr?(1) task?(0)
[ 3619.378126][T52604] se: weight(1048576) vruntime(375717481) slice(2800000) deadline(378510550) curr?(1) task?(0)
[ 3619.389482][T52604] se: weight(1048576) vruntime(375732595) slice(2800000) deadline(378526696) curr?(1) task?(0)
[ 3619.400843][T52604] se: weight(1048576) vruntime(375736620) slice(2800000) deadline(378530972) curr?(1) task?(0)
[ 3619.412202][T52604] se: weight(1048576) vruntime(375741505) slice(2800000) deadline(378535016) curr?(1) task?(0)
[ 3619.423560][T52604] se: weight(1048576) vruntime(375750495) slice(2800000) deadline(378544115) curr?(1) task?(0)
[ 3619.434913][T52604] se: weight(1048576) vruntime(375755709) slice(2800000) deadline(378549470) curr?(1) task?(0)
[ 3619.446270][T52604] se: weight(1048576) vruntime(375751092) slice(2800000) deadline(378551092) curr?(1) task?(0)
[ 3619.457627][T52604] se: weight(1048576) vruntime(375759239) slice(2800000) deadline(378553491) curr?(1) task?(0)
[ 3619.468987][T52604] se: weight(1048576) vruntime(375765940) slice(2800000) deadline(378558069) curr?(1) task?(0)
[ 3619.480347][T52604] se: weight(1048576) vruntime(375767087) slice(2800000) deadline(378560047) curr?(1) task?(0)
[ 3619.491697][T52604] se: weight(1048576) vruntime(375774807) slice(2800000) deadline(378568918) curr?(1) task?(0)
[ 3619.503053][T52604] se: weight(1048576) vruntime(375780215) slice(2800000) deadline(378573675) curr?(1) task?(0)
[ 3619.514410][T52604] se: weight(1048576) vruntime(375792903) slice(2800000) deadline(378586103) curr?(1) task?(0)
[ 3619.525764][T52604] se: weight(1048576) vruntime(375793568) slice(2800000) deadline(378590493) curr?(1) task?(0)
[ 3619.537120][T52604] se: weight(1048576) vruntime(375800015) slice(2800000) deadline(378594396) curr?(1) task?(0)
[ 3619.548478][T52604] se: weight(1048576) vruntime(375808427) slice(2800000) deadline(378601276) curr?(1) task?(0)
[ 3619.559836][T52604] se: weight(1048576) vruntime(375807013) slice(2800000) deadline(378602236) curr?(1) task?(0)
[ 3619.571195][T52604] se: weight(1048576) vruntime(375814188) slice(2800000) deadline(378608359) curr?(1) task?(0)
[ 3619.582553][T52604] se: weight(1048576) vruntime(375827605) slice(2800000) deadline(378621235) curr?(1) task?(0)
[ 3619.593910][T52604] se: weight(1048576) vruntime(375849735) slice(2800000) deadline(378643416) curr?(1) task?(0)
[ 3619.605264][T52604] se: weight(1048576) vruntime(375863441) slice(2800000) deadline(378655018) curr?(1) task?(0)
[ 3619.616620][T52604] se: weight(1048576) vruntime(375873585) slice(2800000) deadline(378664682) curr?(1) task?(0)
[ 3619.627979][T52604] se: weight(1048576) vruntime(375879581) slice(2800000) deadline(378673021) curr?(1) task?(0)
[ 3619.639336][T52604] se: weight(1048576) vruntime(375884839) slice(2800000) deadline(378678039) curr?(1) task?(0)
[ 3619.650697][T52604] se: weight(1048576) vruntime(375881184) slice(2800000) deadline(378681184) curr?(1) task?(0)
[ 3619.662057][T52604] se: weight(1048576) vruntime(375897230) slice(2800000) deadline(378690410) curr?(1) task?(0)
[ 3619.673413][T52604] se: weight(1048576) vruntime(375896110) slice(2800000) deadline(378696110) curr?(1) task?(0)
[ 3619.684768][T52604] se: weight(1048576) vruntime(375905541) slice(2800000) deadline(378696858) curr?(1) task?(0)
[ 3619.696123][T52604] se: weight(1048576) vruntime(375906892) slice(2800000) deadline(378702115) curr?(1) task?(0)
[ 3619.707481][T52604] se: weight(1048576) vruntime(375915733) slice(2800000) deadline(378710175) curr?(1) task?(0)
[ 3619.718840][T52604] se: weight(1048576) vruntime(375917549) slice(2800000) deadline(378713093) curr?(1) task?(0)
[ 3619.730190][T52604] se: weight(1048576) vruntime(375930726) slice(2800000) deadline(378724256) curr?(1) task?(0)
[ 3619.741548][T52604] se: weight(1048576) vruntime(375931981) slice(2800000) deadline(378725421) curr?(1) task?(0)
[ 3619.752904][T52604] se: weight(1048576) vruntime(375942373) slice(2800000) deadline(378735703) curr?(1) task?(0)
[ 3619.764251][T52604] se: weight(1048576) vruntime(375946183) slice(2800000) deadline(378739373) curr?(1) task?(0)
[ 3619.775603][T52604] se: weight(1048576) vruntime(375961997) slice(2800000) deadline(378755678) curr?(1) task?(0)
[ 3619.786959][T52604] se: weight(1048576) vruntime(375973086) slice(2800000) deadline(378766105) curr?(1) task?(0)
[ 3619.798317][T52604] se: weight(1048576) vruntime(375976777) slice(2800000) deadline(378771319) curr?(1) task?(0)
[ 3619.809675][T52604] se: weight(1048576) vruntime(375980085) slice(2800000) deadline(378774337) curr?(1) task?(0)
[ 3619.821035][T52604] se: weight(1048576) vruntime(375991218) slice(2800000) deadline(378784909) curr?(1) task?(0)
[ 3619.832392][T52604] se: weight(1048576) vruntime(375995544) slice(2800000) deadline(378789205) curr?(1) task?(0)
[ 3619.843750][T52604] se: weight(1048576) vruntime(376005426) slice(2800000) deadline(378798666) curr?(1) task?(0)
[ 3619.855105][T52604] se: weight(1048576) vruntime(376008945) slice(2800000) deadline(378802355) curr?(1) task?(0)
[ 3619.866461][T52604] se: weight(1048576) vruntime(376020094) slice(2800000) deadline(378813004) curr?(1) task?(0)
[ 3619.877821][T52604] se: weight(1048576) vruntime(376014251) slice(2800000) deadline(378814251) curr?(1) task?(0)
[ 3619.889179][T52604] se: weight(1048576) vruntime(376024819) slice(2800000) deadline(378817498) curr?(1) task?(0)
[ 3619.900539][T52604] se: weight(1048576) vruntime(376033201) slice(2800000) deadline(378826121) curr?(1) task?(0)
[ 3619.911897][T52604] se: weight(1048576) vruntime(376047357) slice(2800000) deadline(378841048) curr?(1) task?(0)
[ 3619.923253][T52604] se: weight(1048576) vruntime(376070306) slice(2800000) deadline(378861112) curr?(1) task?(0)
[ 3619.934611][T52604] se: weight(1048576) vruntime(376069117) slice(2800000) deadline(378862297) curr?(1) task?(0)
[ 3619.945966][T52604] se: weight(1048576) vruntime(376095783) slice(2800000) deadline(378888282) curr?(1) task?(0)
[ 3619.957322][T52604] se: weight(1048576) vruntime(376120673) slice(2800000) deadline(378911639) curr?(1) task?(0)
[ 3619.968682][T52604] se: weight(1048576) vruntime(376121362) slice(2800000) deadline(378913390) curr?(1) task?(0)
[ 3619.980039][T52604] se: weight(1048576) vruntime(376119895) slice(2800000) deadline(378913836) curr?(1) task?(0)
[ 3619.991400][T52604] se: weight(1048576) vruntime(376122168) slice(2800000) deadline(378915658) curr?(1) task?(0)
[ 3620.002756][T52604] se: weight(1048576) vruntime(376123889) slice(2800000) deadline(378917169) curr?(1) task?(0)
[ 3620.014112][T52604] se: weight(1048576) vruntime(376133787) slice(2800000) deadline(378926997) curr?(1) task?(0)
[ 3620.025466][T52604] se: weight(1048576) vruntime(376134365) slice(2800000) deadline(378931180) curr?(1) task?(0)
[ 3620.036822][T52604] se: weight(1048576) vruntime(376143970) slice(2800000) deadline(378935337) curr?(1) task?(0)
[ 3620.048181][T52604] se: weight(1048576) vruntime(376142634) slice(2800000) deadline(378935604) curr?(1) task?(0)
[ 3620.059538][T52604] se: weight(1048576) vruntime(376145740) slice(2800000) deadline(378939671) curr?(1) task?(0)
[ 3620.070900][T52604] se: weight(1048576) vruntime(376144431) slice(2800000) deadline(378941367) curr?(1) task?(0)
[ 3620.082260][T52604] se: weight(1048576) vruntime(376143994) slice(2800000) deadline(378943994) curr?(1) task?(0)
[ 3620.093617][T52604] se: weight(1048576) vruntime(376156518) slice(2800000) deadline(378947024) curr?(1) task?(0)
[ 3620.104973][T52604] se: weight(1048576) vruntime(376162799) slice(2800000) deadline(378956599) curr?(1) task?(0)
[ 3620.116329][T52604] se: weight(1048576) vruntime(376168055) slice(2800000) deadline(378961936) curr?(1) task?(0)
[ 3620.127684][T52604] se: weight(1048576) vruntime(376178010) slice(2800000) deadline(378970909) curr?(1) task?(0)
[ 3620.139044][T52604] se: weight(1048576) vruntime(376201797) slice(2800000) deadline(379001797) curr?(1) task?(0)
[ 3620.150403][T52604] se: weight(1048576) vruntime(376230831) slice(2800000) deadline(379024251) curr?(1) task?(0)
[ 3620.161752][T52604] se: weight(1048576) vruntime(376235497) slice(2800000) deadline(379030139) curr?(1) task?(0)
[ 3620.173108][T52604] se: weight(1048576) vruntime(376244654) slice(2800000) deadline(379038124) curr?(1) task?(0)
[ 3620.184465][T52604] se: weight(1048576) vruntime(376283705) slice(2800000) deadline(379079038) curr?(1) task?(0)
[ 3620.195819][T52604] se: weight(1048576) vruntime(376345645) slice(2800000) deadline(379139987) curr?(1) task?(0)
[ 3620.207178][T52604] se: weight(1048576) vruntime(376346819) slice(2800000) deadline(379146819) curr?(1) task?(0)
[ 3620.218535][T52604] se: weight(1048576) vruntime(376385884) slice(2800000) deadline(379175608) curr?(1) task?(0)
[ 3620.229891][T52604] se: weight(1048576) vruntime(376396248) slice(2800000) deadline(379189618) curr?(1) task?(0)
[ 3620.241251][T52604] se: weight(1048576) vruntime(376428620) slice(2800000) deadline(379223623) curr?(1) task?(0)
[ 3620.252610][T52604] se: weight(1048576) vruntime(376499548) slice(2800000) deadline(379294380) curr?(1) task?(0)
[ 3620.263967][T52604] se: weight(1048576) vruntime(376572281) slice(2800000) deadline(379365641) curr?(1) task?(0)
[ 3620.275322][T52604] se: weight(1048576) vruntime(376591897) slice(2800000) deadline(379385487) curr?(1) task?(0)
[ 3620.286677][T52604] se: weight(1048576) vruntime(376762253) slice(2800000) deadline(379558738) curr?(1) task?(0)
[ 3620.298035][T52604] se: weight(1048576) vruntime(376775262) slice(2800000) deadline(379575262) curr?(1) task?(0)
[ 3620.309393][T52604] se: weight(1048576) vruntime(376872694) slice(2800000) deadline(379667125) curr?(1) task?(0)
[ 3620.320753][T52604] se: weight(1048576) vruntime(376951672) slice(2800000) deadline(379746565) curr?(1) task?(0)
[ 3620.332112][T52604] se: weight(1048576) vruntime(376975946) slice(2800000) deadline(379768796) curr?(1) task?(0)
[ 3620.343469][T52604] se: weight(1048576) vruntime(376992379) slice(2800000) deadline(379787071) curr?(1) task?(0)
[ 3620.354825][T52604] se: weight(1048576) vruntime(377003763) slice(2800000) deadline(379798725) curr?(1) task?(0)
[ 3620.366179][T52604] se: weight(1048576) vruntime(377019516) slice(2800000) deadline(379814859) curr?(1) task?(0)
[ 3620.377536][T52604] se: weight(1048576) vruntime(377073943) slice(2800000) deadline(379868605) curr?(1) task?(0)
[ 3620.388894][T52604] se: weight(1048576) vruntime(377153630) slice(2800000) deadline(379948783) curr?(1) task?(0)
[ 3620.400253][T52604] se: weight(1048576) vruntime(377157752) slice(2800000) deadline(379952334) curr?(1) task?(0)
[ 3620.411613][T52604] se: weight(1048576) vruntime(377242232) slice(2800000) deadline(380037796) curr?(1) task?(0)
[ 3620.422969][T52604] se: weight(1048576) vruntime(377327657) slice(2800000) deadline(380122719) curr?(1) task?(0)
[ 3620.434317][T52604] se: weight(1048576) vruntime(377334887) slice(2800000) deadline(380127776) curr?(1) task?(0)
[ 3620.445674][T52604] Full hierarchy from root:
[ 3620.450532][T52604] cfs_rq: depth(0) weight(157614) nr_queued(1) sum_w_vruntime(0) sum_weight(0) zero_vruntime(1665159823107) sum_shift(0) avg_vruntime(1665159823107)
[ 3620.467125][T52604] se: weight(157614) vruntime(1665159823107) slice(2800000) deadline(1665178544075) curr?(1) task?(1)
[ 3620.479165][T52604] cfs_rq: depth(1) weight(2150629376) nr_queued(2051) sum_w_vruntime(-8308577825720369152) sum_weight(2149580800) zero_vruntime(18446744069366398443) sum_shift(0) avg_vruntime(18446744069366398443)
[ 3620.500614][T52604] se: weight(1048576) vruntime(18446744069623207599) slice(2800000) deadline(18446744069626004775) curr?(1) task?(0)
[ 3620.514202][T52604] se: weight(1048576) vruntime(373218199) slice(2800000) deadline(373446702) curr?(1) task?(0)
[ 3620.525657][T52604] se: weight(1048576) vruntime(371876685) slice(2800000) deadline(373815965) curr?(1) task?(0)
[ 3620.537110][T52604] se: weight(1048576) vruntime(372314317) slice(2800000) deadline(373817932) curr?(1) task?(0)
[ 3620.548562][T52604] se: weight(1048576) vruntime(371022075) slice(2800000) deadline(373819151) curr?(1) task?(0)
[ 3620.560019][T52604] se: weight(1048576) vruntime(371021926) slice(2800000) deadline(373819933) curr?(1) task?(0)
[ 3620.571476][T52604] se: weight(1048576) vruntime(371024680) slice(2800000) deadline(373820994) curr?(1) task?(0)
[ 3620.582922][T52604] se: weight(1048576) vruntime(371025329) slice(2800000) deadline(373822054) curr?(1) task?(0)
[ 3620.594375][T52604] se: weight(1048576) vruntime(371025579) slice(2800000) deadline(373823416) curr?(1) task?(0)
[ 3620.605829][T52604] se: weight(1048576) vruntime(371029988) slice(2800000) deadline(373824850) curr?(1) task?(0)
[ 3620.617279][T52604] se: weight(1048576) vruntime(371026685) slice(2800000) deadline(373824923) curr?(1) task?(0)
[ 3620.628733][T52604] se: weight(1048576) vruntime(371028210) slice(2800000) deadline(373825326) curr?(1) task?(0)
[ 3620.640189][T52604] se: weight(1048576) vruntime(371027706) slice(2800000) deadline(373825413) curr?(1) task?(0)
[ 3620.651644][T52604] se: weight(1048576) vruntime(372171878) slice(2800000) deadline(373826550) curr?(1) task?(0)
[ 3620.663101][T52604] se: weight(1048576) vruntime(371030162) slice(2800000) deadline(373826987) curr?(1) task?(0)
[ 3620.674556][T52604] se: weight(1048576) vruntime(371031553) slice(2800000) deadline(373827607) curr?(1) task?(0)
[ 3620.686010][T52604] se: weight(1048576) vruntime(371046374) slice(2800000) deadline(373829839) curr?(1) task?(0)
[ 3620.697461][T52604] se: weight(1048576) vruntime(372141770) slice(2800000) deadline(373830273) curr?(1) task?(0)
[ 3620.708915][T52604] se: weight(1048576) vruntime(371034528) slice(2800000) deadline(373832655) curr?(1) task?(0)
[ 3620.720369][T52604] se: weight(1048576) vruntime(371035278) slice(2800000) deadline(373833104) curr?(1) task?(0)
[ 3620.731822][T52604] se: weight(1048576) vruntime(371035992) slice(2800000) deadline(373833889) curr?(1) task?(0)
[ 3620.743271][T52604] se: weight(1048576) vruntime(371037150) slice(2800000) deadline(373833925) curr?(1) task?(0)
[ 3620.754728][T52604] se: weight(1048576) vruntime(371039526) slice(2800000) deadline(373834158) curr?(1) task?(0)
[ 3620.766182][T52604] se: weight(1048576) vruntime(371039175) slice(2800000) deadline(373836601) curr?(1) task?(0)
[ 3620.777633][T52604] se: weight(1048576) vruntime(371041584) slice(2800000) deadline(373839471) curr?(1) task?(0)
[ 3620.789087][T52604] se: weight(1048576) vruntime(371042368) slice(2800000) deadline(373839774) curr?(1) task?(0)
[ 3620.800540][T52604] se: weight(1048576) vruntime(372223233) slice(2800000) deadline(373839798) curr?(1) task?(0)
[ 3620.811995][T52604] se: weight(1048576) vruntime(372179775) slice(2800000) deadline(373841918) curr?(1) task?(0)
[ 3620.823451][T52604] se: weight(1048576) vruntime(371044163) slice(2800000) deadline(373842191) curr?(1) task?(0)
[ 3620.834899][T52604] se: weight(1048576) vruntime(371044711) slice(2800000) deadline(373842878) curr?(1) task?(0)
[ 3620.846353][T52604] se: weight(1048576) vruntime(371045850) slice(2800000) deadline(373843486) curr?(1) task?(0)
[ 3620.857807][T52604] se: weight(1048576) vruntime(371049649) slice(2800000) deadline(373845513) curr?(1) task?(0)
[ 3620.869259][T52604] se: weight(1048576) vruntime(372282218) slice(2800000) deadline(373846896) curr?(1) task?(0)
[ 3620.880712][T52604] se: weight(1048576) vruntime(371054889) slice(2800000) deadline(373851814) curr?(1) task?(0)
[ 3620.892169][T52604] se: weight(1048576) vruntime(371055983) slice(2800000) deadline(373852628) curr?(1) task?(0)
[ 3620.903623][T52604] se: weight(1048576) vruntime(371055796) slice(2800000) deadline(373853522) curr?(1) task?(0)
[ 3620.915080][T52604] se: weight(1048576) vruntime(371059157) slice(2800000) deadline(373856944) curr?(1) task?(0)
[ 3620.926534][T52604] se: weight(1048576) vruntime(371062493) slice(2800000) deadline(373858307) curr?(1) task?(0)
[ 3620.937979][T52604] se: weight(1048576) vruntime(371061297) slice(2800000) deadline(373858593) curr?(1) task?(0)
[ 3620.949431][T52604] se: weight(1048576) vruntime(372227534) slice(2800000) deadline(373860944) curr?(1) task?(0)
[ 3620.960884][T52604] se: weight(1048576) vruntime(371064327) slice(2800000) deadline(373861553) curr?(1) task?(0)
[ 3620.972339][T52604] se: weight(1048576) vruntime(371068680) slice(2800000) deadline(373862561) curr?(1) task?(0)
[ 3620.983793][T52604] se: weight(1048576) vruntime(372350717) slice(2800000) deadline(373862975) curr?(1) task?(0)
[ 3620.995251][T52604] se: weight(1048576) vruntime(372210581) slice(2800000) deadline(373864201) curr?(1) task?(0)
[ 3621.006706][T52604] se: weight(1048576) vruntime(371069448) slice(2800000) deadline(373867135) curr?(1) task?(0)
[ 3621.018161][T52604] se: weight(1048576) vruntime(372199129) slice(2800000) deadline(373867662) curr?(1) task?(0)
[ 3621.029611][T52604] se: weight(1048576) vruntime(372210583) slice(2800000) deadline(373869762) curr?(1) task?(0)
[ 3621.041063][T52604] se: weight(1048576) vruntime(372173321) slice(2800000) deadline(373870426) curr?(1) task?(0)
[ 3621.052515][T52604] se: weight(1048576) vruntime(371076345) slice(2800000) deadline(373872049) curr?(1) task?(0)
[ 3621.063970][T52604] se: weight(1048576) vruntime(371076179) slice(2800000) deadline(373872153) curr?(1) task?(0)
[ 3621.075426][T52604] se: weight(1048576) vruntime(371075876) slice(2800000) deadline(373873983) curr?(1) task?(0)
[ 3621.086882][T52604] se: weight(1048576) vruntime(372191684) slice(2800000) deadline(373880657) curr?(1) task?(0)
[ 3621.098335][T52604] se: weight(1048576) vruntime(371085624) slice(2800000) deadline(373880937) curr?(1) task?(0)
[ 3621.109790][T52604] se: weight(1048576) vruntime(371087860) slice(2800000) deadline(373881180) curr?(1) task?(0)
[ 3621.121240][T52604] se: weight(1048576) vruntime(371090613) slice(2800000) deadline(373885446) curr?(1) task?(0)
[ 3621.132693][T52604] se: weight(1048576) vruntime(372229600) slice(2800000) deadline(373887607) curr?(1) task?(0)
[ 3621.144148][T52604] se: weight(1048576) vruntime(371090183) slice(2800000) deadline(373887859) curr?(1) task?(0)
[ 3621.155603][T52604] se: weight(1048576) vruntime(372250986) slice(2800000) deadline(373889865) curr?(1) task?(0)
[ 3621.167061][T52604] se: weight(1048576) vruntime(371094367) slice(2800000) deadline(373890782) curr?(1) task?(0)
[ 3621.178516][T52604] se: weight(1048576) vruntime(371092582) slice(2800000) deadline(373890889) curr?(1) task?(0)
[ 3621.189972][T52604] se: weight(1048576) vruntime(372390457) slice(2800000) deadline(373892871) curr?(1) task?(0)
[ 3621.201421][T52604] se: weight(1048576) vruntime(372192864) slice(2800000) deadline(373893965) curr?(1) task?(0)
[ 3621.212875][T52604] se: weight(1048576) vruntime(371098935) slice(2800000) deadline(373894148) curr?(1) task?(0)
[ 3621.224320][T52604] se: weight(1048576) vruntime(371097802) slice(2800000) deadline(373896079) curr?(1) task?(0)
[ 3621.235773][T52604] se: weight(1048576) vruntime(372213677) slice(2800000) deadline(373897302) curr?(1) task?(0)
[ 3621.247232][T52604] se: weight(1048576) vruntime(371103092) slice(2800000) deadline(373897564) curr?(1) task?(0)
[ 3621.258689][T52604] se: weight(1048576) vruntime(371102930) slice(2800000) deadline(373898163) curr?(1) task?(0)
[ 3621.270144][T52604] se: weight(1048576) vruntime(372255292) slice(2800000) deadline(373898727) curr?(1) task?(0)
[ 3621.281595][T52604] se: weight(1048576) vruntime(371103333) slice(2800000) deadline(373899377) curr?(1) task?(0)
[ 3621.293047][T52604] se: weight(1048576) vruntime(372266409) slice(2800000) deadline(373902073) curr?(1) task?(0)
[ 3621.304501][T52604] se: weight(1048576) vruntime(371108369) slice(2800000) deadline(373902731) curr?(1) task?(0)
[ 3621.315958][T52604] se: weight(1048576) vruntime(371109158) slice(2800000) deadline(373907135) curr?(1) task?(0)
[ 3621.327414][T52604] se: weight(1048576) vruntime(372341244) slice(2800000) deadline(373907333) curr?(1) task?(0)
[ 3621.338869][T52604] se: weight(1048576) vruntime(371113217) slice(2800000) deadline(373910884) curr?(1) task?(0)
[ 3621.350321][T52604] se: weight(1048576) vruntime(371117746) slice(2800000) deadline(373911637) curr?(1) task?(0)
[ 3621.361775][T52604] se: weight(1048576) vruntime(371114165) slice(2800000) deadline(373911921) curr?(1) task?(0)
[ 3621.373225][T52604] se: weight(1048576) vruntime(372433446) slice(2800000) deadline(373914488) curr?(1) task?(0)
[ 3621.384678][T52604] se: weight(1048576) vruntime(372289884) slice(2800000) deadline(373914871) curr?(1) task?(0)
[ 3621.396133][T52604] se: weight(1048576) vruntime(371120196) slice(2800000) deadline(373916180) curr?(1) task?(0)
[ 3621.407588][T52604] se: weight(1048576) vruntime(371125494) slice(2800000) deadline(373919986) curr?(1) task?(0)
[ 3621.419046][T52604] se: weight(1048576) vruntime(371123799) slice(2800000) deadline(373920023) curr?(1) task?(0)
[ 3621.430500][T52604] se: weight(1048576) vruntime(372227536) slice(2800000) deadline(373922048) curr?(1) task?(0)
[ 3621.441954][T52604] se: weight(1048576) vruntime(371129084) slice(2800000) deadline(373927221) curr?(1) task?(0)
[ 3621.453404][T52604] se: weight(1048576) vruntime(372253139) slice(2800000) deadline(373927420) curr?(1) task?(0)
[ 3621.464859][T52604] se: weight(1048576) vruntime(372268082) slice(2800000) deadline(373928052) curr?(1) task?(0)
[ 3621.476313][T52604] se: weight(1048576) vruntime(371132576) slice(2800000) deadline(373930142) curr?(1) task?(0)
[ 3621.487765][T52604] se: weight(1048576) vruntime(371134600) slice(2800000) deadline(373930634) curr?(1) task?(0)
[ 3621.499224][T52604] se: weight(1048576) vruntime(371135697) slice(2800000) deadline(373931621) curr?(1) task?(0)
[ 3621.510672][T52604] se: weight(1048576) vruntime(371138991) slice(2800000) deadline(373932842) curr?(1) task?(0)
[ 3621.522124][T52604] se: weight(1048576) vruntime(371142897) slice(2800000) deadline(373936608) curr?(1) task?(0)
[ 3621.533576][T52604] se: weight(1048576) vruntime(371145007) slice(2800000) deadline(373941682) curr?(1) task?(0)
[ 3621.545028][T52604] se: weight(1048576) vruntime(372316423) slice(2800000) deadline(373944906) curr?(1) task?(0)
[ 3621.556482][T52604] se: weight(1048576) vruntime(372275832) slice(2800000) deadline(373946728) curr?(1) task?(0)
[ 3621.567936][T52604] se: weight(1048576) vruntime(372311778) slice(2800000) deadline(373953430) curr?(1) task?(0)
[ 3621.579393][T52604] se: weight(1048576) vruntime(371163824) slice(2800000) deadline(373958446) curr?(1) task?(0)
[ 3621.590840][T52604] se: weight(1048576) vruntime(372327574) slice(2800000) deadline(373959252) curr?(1) task?(0)
[ 3621.602295][T52604] se: weight(1048576) vruntime(371161963) slice(2800000) deadline(373960090) curr?(1) task?(0)
[ 3621.613749][T52604] se: weight(1048576) vruntime(371165225) slice(2800000) deadline(373960398) curr?(1) task?(0)
[ 3621.625200][T52604] se: weight(1048576) vruntime(371165692) slice(2800000) deadline(373962938) curr?(1) task?(0)
[ 3621.636654][T52604] se: weight(1048576) vruntime(371167198) slice(2800000) deadline(373964574) curr?(1) task?(0)
[ 3621.648111][T52604] se: weight(1048576) vruntime(371171540) slice(2800000) deadline(373965671) curr?(1) task?(0)
[ 3621.659564][T52604] se: weight(1048576) vruntime(371169750) slice(2800000) deadline(373967176) curr?(1) task?(0)
[ 3621.671023][T52604] se: weight(1048576) vruntime(372280071) slice(2800000) deadline(373968253) curr?(1) task?(0)
[ 3621.682477][T52604] se: weight(1048576) vruntime(371172546) slice(2800000) deadline(373969782) curr?(1) task?(0)
[ 3621.693923][T52604] se: weight(1048576) vruntime(371175396) slice(2800000) deadline(373970899) curr?(1) task?(0)
[ 3621.705375][T52604] se: weight(1048576) vruntime(372364499) slice(2800000) deadline(373971670) curr?(1) task?(0)
[ 3621.716828][T52604] se: weight(1048576) vruntime(372296634) slice(2800000) deadline(373972268) curr?(1) task?(0)
[ 3621.728282][T52604] se: weight(1048576) vruntime(371182174) slice(2800000) deadline(373977918) curr?(1) task?(0)
[ 3621.739736][T52604] se: weight(1048576) vruntime(372348147) slice(2800000) deadline(373977922) curr?(1) task?(0)
[ 3621.751195][T52604] se: weight(1048576) vruntime(372387732) slice(2800000) deadline(373979209) curr?(1) task?(0)
[ 3621.762642][T52604] se: weight(1048576) vruntime(371187382) slice(2800000) deadline(373983787) curr?(1) task?(0)
[ 3621.774095][T52604] se: weight(1048576) vruntime(371186600) slice(2800000) deadline(373984126) curr?(1) task?(0)
[ 3621.785548][T52604] se: weight(1048576) vruntime(371192352) slice(2800000) deadline(373987605) curr?(1) task?(0)
[ 3621.797001][T52604] se: weight(1048576) vruntime(371190264) slice(2800000) deadline(373988631) curr?(1) task?(0)
[ 3621.808452][T52604] se: weight(1048576) vruntime(371190716) slice(2800000) deadline(373988733) curr?(1) task?(0)
[ 3621.819909][T52604] se: weight(1048576) vruntime(371192203) slice(2800000) deadline(373990361) curr?(1) task?(0)
[ 3621.831358][T52604] se: weight(1048576) vruntime(372438545) slice(2800000) deadline(373990944) curr?(1) task?(0)
[ 3621.842813][T52604] se: weight(1048576) vruntime(371196889) slice(2800000) deadline(373991151) curr?(1) task?(0)
[ 3621.854266][T52604] se: weight(1048576) vruntime(371197429) slice(2800000) deadline(373991790) curr?(1) task?(0)
[ 3621.865720][T52604] se: weight(1048576) vruntime(371196312) slice(2800000) deadline(373994429) curr?(1) task?(0)
[ 3621.877170][T52604] se: weight(1048576) vruntime(371196839) slice(2800000) deadline(373994756) curr?(1) task?(0)
[ 3621.888623][T52604] se: weight(1048576) vruntime(371202264) slice(2800000) deadline(373996306) curr?(1) task?(0)
[ 3621.900079][T52604] se: weight(1048576) vruntime(371200600) slice(2800000) deadline(373996844) curr?(1) task?(0)
[ 3621.911532][T52604] se: weight(1048576) vruntime(371200438) slice(2800000) deadline(373997173) curr?(1) task?(0)
[ 3621.922988][T52604] se: weight(1048576) vruntime(371202397) slice(2800000) deadline(373997179) curr?(1) task?(0)
[ 3621.934442][T52604] se: weight(1048576) vruntime(372469448) slice(2800000) deadline(374001106) curr?(1) task?(0)
[ 3621.945897][T52604] se: weight(1048576) vruntime(371207359) slice(2800000) deadline(374003624) curr?(1) task?(0)
[ 3621.957349][T52604] se: weight(1048576) vruntime(371209275) slice(2800000) deadline(374005970) curr?(1) task?(0)
[ 3621.968803][T52604] se: weight(1048576) vruntime(371210563) slice(2800000) deadline(374006828) curr?(1) task?(0)
[ 3621.980248][T52604] se: weight(1048576) vruntime(371213262) slice(2800000) deadline(374009206) curr?(1) task?(0)
[ 3621.991703][T52604] se: weight(1048576) vruntime(371214786) slice(2800000) deadline(374009427) curr?(1) task?(0)
[ 3622.003160][T52604] se: weight(1048576) vruntime(371215257) slice(2800000) deadline(374012443) curr?(1) task?(0)
[ 3622.014617][T52604] se: weight(1048576) vruntime(371215980) slice(2800000) deadline(374012855) curr?(1) task?(0)
[ 3622.026070][T52604] se: weight(1048576) vruntime(372376392) slice(2800000) deadline(374018235) curr?(1) task?(0)
[ 3622.037524][T52604] se: weight(1048576) vruntime(372332287) slice(2800000) deadline(374019157) curr?(1) task?(0)
[ 3622.048978][T52604] se: weight(1048576) vruntime(371222589) slice(2800000) deadline(374020676) curr?(1) task?(0)
[ 3622.060430][T52604] se: weight(1048576) vruntime(371224461) slice(2800000) deadline(374020906) curr?(1) task?(0)
[ 3622.071887][T52604] se: weight(1048576) vruntime(371225829) slice(2800000) deadline(374021262) curr?(1) task?(0)
[ 3622.083335][T52604] se: weight(1048576) vruntime(371224654) slice(2800000) deadline(374021279) curr?(1) task?(0)
[ 3622.094790][T52604] se: weight(1048576) vruntime(371227176) slice(2800000) deadline(374024973) curr?(1) task?(0)
[ 3622.106243][T52604] se: weight(1048576) vruntime(371230688) slice(2800000) deadline(374027393) curr?(1) task?(0)
[ 3622.117698][T52604] se: weight(1048576) vruntime(371233164) slice(2800000) deadline(374029087) curr?(1) task?(0)
[ 3622.129148][T52604] se: weight(1048576) vruntime(371234462) slice(2800000) deadline(374029254) curr?(1) task?(0)
[ 3622.140601][T52604] se: weight(1048576) vruntime(371234433) slice(2800000) deadline(374029415) curr?(1) task?(0)
[ 3622.152057][T52604] se: weight(1048576) vruntime(372492128) slice(2800000) deadline(374030466) curr?(1) task?(0)
[ 3622.163511][T52604] se: weight(1048576) vruntime(371234896) slice(2800000) deadline(374031220) curr?(1) task?(0)
[ 3622.174966][T52604] se: weight(1048576) vruntime(372633890) slice(2800000) deadline(374032758) curr?(1) task?(0)
[ 3622.186421][T52604] se: weight(1048576) vruntime(371237507) slice(2800000) deadline(374033020) curr?(1) task?(0)
[ 3622.197865][T52604] se: weight(1048576) vruntime(372403282) slice(2800000) deadline(374033066) curr?(1) task?(0)
[ 3622.209316][T52604] se: weight(1048576) vruntime(371238101) slice(2800000) deadline(374034285) curr?(1) task?(0)
[ 3622.220769][T52604] se: weight(1048576) vruntime(372445812) slice(2800000) deadline(374034816) curr?(1) task?(0)
[ 3622.232225][T52604] se: weight(1048576) vruntime(371239704) slice(2800000) deadline(374035859) curr?(1) task?(0)
[ 3622.243679][T52604] se: weight(1048576) vruntime(371240850) slice(2800000) deadline(374036063) curr?(1) task?(0)
[ 3622.255136][T52604] se: weight(1048576) vruntime(371239653) slice(2800000) deadline(374036889) curr?(1) task?(0)
[ 3622.266592][T52604] se: weight(1048576) vruntime(371246248) slice(2800000) deadline(374042172) curr?(1) task?(0)
[ 3622.278044][T52604] se: weight(1048576) vruntime(371248126) slice(2800000) deadline(374042487) curr?(1) task?(0)
[ 3622.289498][T52604] se: weight(1048576) vruntime(371249485) slice(2800000) deadline(374042675) curr?(1) task?(0)
[ 3622.300951][T52604] se: weight(1048576) vruntime(372389035) slice(2800000) deadline(374046111) curr?(1) task?(0)
[ 3622.312404][T52604] se: weight(1048576) vruntime(372580223) slice(2800000) deadline(374048897) curr?(1) task?(0)
[ 3622.323861][T52604] se: weight(1048576) vruntime(371253730) slice(2800000) deadline(374049584) curr?(1) task?(0)
[ 3622.335319][T52604] se: weight(1048576) vruntime(372443869) slice(2800000) deadline(374049828) curr?(1) task?(0)
[ 3622.346773][T52604] se: weight(1048576) vruntime(371255437) slice(2800000) deadline(374051120) curr?(1) task?(0)
[ 3622.358226][T52604] se: weight(1048576) vruntime(372527799) slice(2800000) deadline(374051365) curr?(1) task?(0)
[ 3622.369672][T52604] se: weight(1048576) vruntime(372376394) slice(2800000) deadline(374054491) curr?(1) task?(0)
[ 3622.381123][T52604] se: weight(1048576) vruntime(371259778) slice(2800000) deadline(374054921) curr?(1) task?(0)
[ 3622.392575][T52604] se: weight(1048576) vruntime(371262143) slice(2800000) deadline(374057977) curr?(1) task?(0)
[ 3622.404031][T52604] se: weight(1048576) vruntime(371261880) slice(2800000) deadline(374058875) curr?(1) task?(0)
[ 3622.415486][T52604] se: weight(1048576) vruntime(372358832) slice(2800000) deadline(374059183) curr?(1) task?(0)
[ 3622.426942][T52604] se: weight(1048576) vruntime(372415982) slice(2800000) deadline(374060629) curr?(1) task?(0)
[ 3622.438395][T52604] se: weight(1048576) vruntime(372471551) slice(2800000) deadline(374062087) curr?(1) task?(0)
[ 3622.449849][T52604] se: weight(1048576) vruntime(371270431) slice(2800000) deadline(374065343) curr?(1) task?(0)
[ 3622.461300][T52604] se: weight(1048576) vruntime(372452901) slice(2800000) deadline(374065991) curr?(1) task?(0)
[ 3622.472755][T52604] se: weight(1048576) vruntime(371273057) slice(2800000) deadline(374068880) curr?(1) task?(0)
[ 3622.484210][T52604] se: weight(1048576) vruntime(372440504) slice(2800000) deadline(374072132) curr?(1) task?(0)
[ 3622.495665][T52604] se: weight(1048576) vruntime(371275839) slice(2800000) deadline(374073275) curr?(1) task?(0)
[ 3622.507124][T52604] se: weight(1048576) vruntime(371277955) slice(2800000) deadline(374073579) curr?(1) task?(0)
[ 3622.518570][T52604] se: weight(1048576) vruntime(371280325) slice(2800000) deadline(374076569) curr?(1) task?(0)
[ 3622.530023][T52604] se: weight(1048576) vruntime(371283377) slice(2800000) deadline(374078870) curr?(1) task?(0)
[ 3622.541477][T52604] se: weight(1048576) vruntime(371288760) slice(2800000) deadline(374083392) curr?(1) task?(0)
[ 3622.552931][T52604] se: weight(1048576) vruntime(371291912) slice(2800000) deadline(374084350) curr?(1) task?(0)
[ 3622.564383][T52604] se: weight(1048576) vruntime(372515851) slice(2800000) deadline(374085775) curr?(1) task?(0)
[ 3622.575838][T52604] se: weight(1048576) vruntime(371291204) slice(2800000) deadline(374086026) curr?(1) task?(0)
[ 3622.587295][T52604] se: weight(1048576) vruntime(371292612) slice(2800000) deadline(374087705) curr?(1) task?(0)
[ 3622.598752][T52604] se: weight(1048576) vruntime(371296151) slice(2800000) deadline(374091974) curr?(1) task?(0)
[ 3622.610205][T52604] se: weight(1048576) vruntime(372417793) slice(2800000) deadline(374092074) curr?(1) task?(0)
[ 3622.621658][T52604] se: weight(1048576) vruntime(372488502) slice(2800000) deadline(374093249) curr?(1) task?(0)
[ 3622.633108][T52604] se: weight(1048576) vruntime(372427080) slice(2800000) deadline(374094511) curr?(1) task?(0)
[ 3622.644560][T52604] se: weight(1048576) vruntime(372394771) slice(2800000) deadline(374096043) curr?(1) task?(0)
[ 3622.656016][T52604] se: weight(1048576) vruntime(371298899) slice(2800000) deadline(374096486) curr?(1) task?(0)
[ 3622.667471][T52604] se: weight(1048576) vruntime(371310987) slice(2800000) deadline(374096866) curr?(1) task?(0)
[ 3622.678926][T52604] se: weight(1048576) vruntime(371303698) slice(2800000) deadline(374099471) curr?(1) task?(0)
[ 3622.690380][T52604] se: weight(1048576) vruntime(371303422) slice(2800000) deadline(374100548) curr?(1) task?(0)
[ 3622.701828][T52604] se: weight(1048576) vruntime(372722925) slice(2800000) deadline(374101974) curr?(1) task?(0)
[ 3622.713277][T52604] se: weight(1048576) vruntime(371306142) slice(2800000) deadline(374102947) curr?(1) task?(0)
[ 3622.724730][T52604] se: weight(1048576) vruntime(372505449) slice(2800000) deadline(374103836) curr?(1) task?(0)
[ 3622.736184][T52604] se: weight(1048576) vruntime(371308727) slice(2800000) deadline(374105512) curr?(1) task?(0)
[ 3622.747638][T52604] se: weight(1048576) vruntime(371309967) slice(2800000) deadline(374105951) curr?(1) task?(0)
[ 3622.759097][T52604] se: weight(1048576) vruntime(371310425) slice(2800000) deadline(374106750) curr?(1) task?(0)
[ 3622.770552][T52604] se: weight(1048576) vruntime(372450045) slice(2800000) deadline(374107521) curr?(1) task?(0)
[ 3622.782004][T52604] se: weight(1048576) vruntime(371316041) slice(2800000) deadline(374111063) curr?(1) task?(0)
[ 3622.793458][T52604] se: weight(1048576) vruntime(371314426) slice(2800000) deadline(374111131) curr?(1) task?(0)
[ 3622.804910][T52604] se: weight(1048576) vruntime(372529916) slice(2800000) deadline(374111629) curr?(1) task?(0)
[ 3622.816363][T52604] se: weight(1048576) vruntime(371316062) slice(2800000) deadline(374112286) curr?(1) task?(0)
[ 3622.827819][T52604] se: weight(1048576) vruntime(371319341) slice(2800000) deadline(374112911) curr?(1) task?(0)
[ 3622.839267][T52604] se: weight(1048576) vruntime(372498748) slice(2800000) deadline(374113030) curr?(1) task?(0)
[ 3622.850713][T52604] se: weight(1048576) vruntime(371320790) slice(2800000) deadline(374117976) curr?(1) task?(0)
[ 3622.862168][T52604] se: weight(1048576) vruntime(372514265) slice(2800000) deadline(374118151) curr?(1) task?(0)
[ 3622.873623][T52604] se: weight(1048576) vruntime(371322522) slice(2800000) deadline(374120279) curr?(1) task?(0)
[ 3622.885074][T52604] se: weight(1048576) vruntime(372548474) slice(2800000) deadline(374122404) curr?(1) task?(0)
[ 3622.896527][T52604] se: weight(1048576) vruntime(371327225) slice(2800000) deadline(374123720) curr?(1) task?(0)
[ 3622.907983][T52604] se: weight(1048576) vruntime(371329205) slice(2800000) deadline(374125540) curr?(1) task?(0)
[ 3622.919437][T52604] se: weight(1048576) vruntime(371333352) slice(2800000) deadline(374128585) curr?(1) task?(0)
[ 3622.930893][T52604] se: weight(1048576) vruntime(372478550) slice(2800000) deadline(374130849) curr?(1) task?(0)
[ 3622.942347][T52604] se: weight(1048576) vruntime(371333899) slice(2800000) deadline(374130985) curr?(1) task?(0)
[ 3622.953801][T52604] se: weight(1048576) vruntime(371336955) slice(2800000) deadline(374131447) curr?(1) task?(0)
[ 3622.965252][T52604] se: weight(1048576) vruntime(371334628) slice(2800000) deadline(374131523) curr?(1) task?(0)
[ 3622.976705][T52604] se: weight(1048576) vruntime(372565889) slice(2800000) deadline(374131868) curr?(1) task?(0)
[ 3622.988159][T52604] se: weight(1048576) vruntime(371335930) slice(2800000) deadline(374134278) curr?(1) task?(0)
[ 3622.999612][T52604] se: weight(1048576) vruntime(371340086) slice(2800000) deadline(374136070) curr?(1) task?(0)
[ 3623.011070][T52604] se: weight(1048576) vruntime(371340113) slice(2800000) deadline(374137449) curr?(1) task?(0)
[ 3623.022527][T52604] se: weight(1048576) vruntime(372589095) slice(2800000) deadline(374138699) curr?(1) task?(0)
[ 3623.033979][T52604] se: weight(1048576) vruntime(372550020) slice(2800000) deadline(374139785) curr?(1) task?(0)
[ 3623.045433][T52604] se: weight(1048576) vruntime(371345075) slice(2800000) deadline(374140268) curr?(1) task?(0)
[ 3623.056885][T52604] se: weight(1048576) vruntime(371347041) slice(2800000) deadline(374140772) curr?(1) task?(0)
[ 3623.068338][T52604] se: weight(1048576) vruntime(371345931) slice(2800000) deadline(374140974) curr?(1) task?(0)
[ 3623.079794][T52604] se: weight(1048576) vruntime(371346620) slice(2800000) deadline(374142564) curr?(1) task?(0)
[ 3623.091250][T52604] se: weight(1048576) vruntime(372484897) slice(2800000) deadline(374143605) curr?(1) task?(0)
[ 3623.102697][T52604] se: weight(1048576) vruntime(372518054) slice(2800000) deadline(374143944) curr?(1) task?(0)
[ 3623.114151][T52604] se: weight(1048576) vruntime(371352858) slice(2800000) deadline(374149092) curr?(1) task?(0)
[ 3623.125605][T52604] se: weight(1048576) vruntime(372668344) slice(2800000) deadline(374149346) curr?(1) task?(0)
[ 3623.137056][T52604] se: weight(1048576) vruntime(371354563) slice(2800000) deadline(374152129) curr?(1) task?(0)
[ 3623.148509][T52604] se: weight(1048576) vruntime(371360630) slice(2800000) deadline(374155763) curr?(1) task?(0)
[ 3623.159966][T52604] se: weight(1048576) vruntime(371366268) slice(2800000) deadline(374160429) curr?(1) task?(0)
[ 3623.171421][T52604] se: weight(1048576) vruntime(372625443) slice(2800000) deadline(374160615) curr?(1) task?(0)
[ 3623.182877][T52604] se: weight(1048576) vruntime(372514266) slice(2800000) deadline(374164010) curr?(1) task?(0)
[ 3623.194332][T52604] se: weight(1048576) vruntime(372772616) slice(2800000) deadline(374169581) curr?(1) task?(0)
[ 3623.205787][T52604] se: weight(1048576) vruntime(371371491) slice(2800000) deadline(374169839) curr?(1) task?(0)
[ 3623.217238][T52604] se: weight(1048576) vruntime(371373173) slice(2800000) deadline(374171100) curr?(1) task?(0)
[ 3623.228692][T52604] se: weight(1048576) vruntime(371377825) slice(2800000) deadline(374173579) curr?(1) task?(0)
[ 3623.240146][T52604] se: weight(1048576) vruntime(372570928) slice(2800000) deadline(374176296) curr?(1) task?(0)
[ 3623.251600][T52604] se: weight(1048576) vruntime(371381727) slice(2800000) deadline(374178122) curr?(1) task?(0)
[ 3623.263059][T52604] se: weight(1048576) vruntime(371384123) slice(2800000) deadline(374180367) curr?(1) task?(0)
[ 3623.274506][T52604] se: weight(1048576) vruntime(371386368) slice(2800000) deadline(374182512) curr?(1) task?(0)
[ 3623.285959][T52604] se: weight(1048576) vruntime(372578752) slice(2800000) deadline(374182637) curr?(1) task?(0)
[ 3623.297411][T52604] se: weight(1048576) vruntime(372621466) slice(2800000) deadline(374184371) curr?(1) task?(0)
[ 3623.308863][T52604] se: weight(1048576) vruntime(372510083) slice(2800000) deadline(374185666) curr?(1) task?(0)
[ 3623.320316][T52604] se: weight(1048576) vruntime(371391483) slice(2800000) deadline(374185694) curr?(1) task?(0)
[ 3623.331774][T52604] se: weight(1048576) vruntime(371390387) slice(2800000) deadline(374187143) curr?(1) task?(0)
[ 3623.343231][T52604] se: weight(1048576) vruntime(371393946) slice(2800000) deadline(374187998) curr?(1) task?(0)
[ 3623.354688][T52604] se: weight(1048576) vruntime(372620607) slice(2800000) deadline(374191143) curr?(1) task?(0)
[ 3623.366141][T52604] se: weight(1048576) vruntime(371397204) slice(2800000) deadline(374193188) curr?(1) task?(0)
[ 3623.377586][T52604] se: weight(1048576) vruntime(371403350) slice(2800000) deadline(374196940) curr?(1) task?(0)
[ 3623.389035][T52604] se: weight(1048576) vruntime(372740334) slice(2800000) deadline(374197600) curr?(1) task?(0)
[ 3623.400489][T52604] se: weight(1048576) vruntime(371402326) slice(2800000) deadline(374198420) curr?(1) task?(0)
[ 3623.411944][T52604] se: weight(1048576) vruntime(371401190) slice(2800000) deadline(374199117) curr?(1) task?(0)
[ 3623.423399][T52604] se: weight(1048576) vruntime(371407333) slice(2800000) deadline(374201945) curr?(1) task?(0)
[ 3623.434857][T52604] se: weight(1048576) vruntime(371408806) slice(2800000) deadline(374203678) curr?(1) task?(0)
[ 3623.446311][T52604] se: weight(1048576) vruntime(371408712) slice(2800000) deadline(374204766) curr?(1) task?(0)
[ 3623.457757][T52604] se: weight(1048576) vruntime(371415829) slice(2800000) deadline(374212063) curr?(1) task?(0)
[ 3623.469208][T52604] se: weight(1048576) vruntime(372582111) slice(2800000) deadline(374212688) curr?(1) task?(0)
[ 3623.480662][T52604] se: weight(1048576) vruntime(372547501) slice(2800000) deadline(374212909) curr?(1) task?(0)
[ 3623.492116][T52604] se: weight(1048576) vruntime(371417375) slice(2800000) deadline(374214740) curr?(1) task?(0)
[ 3623.503569][T52604] se: weight(1048576) vruntime(371421565) slice(2800000) deadline(374217228) curr?(1) task?(0)
[ 3623.515026][T52604] se: weight(1048576) vruntime(371424912) slice(2800000) deadline(374219133) curr?(1) task?(0)
[ 3623.526482][T52604] se: weight(1048576) vruntime(372620608) slice(2800000) deadline(374219156) curr?(1) task?(0)
[ 3623.537934][T52604] se: weight(1048576) vruntime(371425619) slice(2800000) deadline(374221964) curr?(1) task?(0)
[ 3623.549386][T52604] se: weight(1048576) vruntime(372713486) slice(2800000) deadline(374225053) curr?(1) task?(0)
[ 3623.560839][T52604] se: weight(1048576) vruntime(371434965) slice(2800000) deadline(374231330) curr?(1) task?(0)
[ 3623.572292][T52604] se: weight(1048576) vruntime(372591104) slice(2800000) deadline(374231455) curr?(1) task?(0)
[ 3623.583748][T52604] se: weight(1048576) vruntime(372760206) slice(2800000) deadline(374231573) curr?(1) task?(0)
[ 3623.595204][T52604] se: weight(1048576) vruntime(371434914) slice(2800000) deadline(374232560) curr?(1) task?(0)
[ 3623.606661][T52604] se: weight(1048576) vruntime(371437927) slice(2800000) deadline(374233370) curr?(1) task?(0)
[ 3623.618115][T52604] se: weight(1048576) vruntime(371446094) slice(2800000) deadline(374243601) curr?(1) task?(0)
[ 3623.629570][T52604] se: weight(1048576) vruntime(371449564) slice(2800000) deadline(374244507) curr?(1) task?(0)
[ 3623.641021][T52604] se: weight(1048576) vruntime(371449941) slice(2800000) deadline(374244583) curr?(1) task?(0)
[ 3623.652475][T52604] se: weight(1048576) vruntime(371452685) slice(2800000) deadline(374247547) curr?(1) task?(0)
[ 3623.663931][T52604] se: weight(1048576) vruntime(371454765) slice(2800000) deadline(374253013) curr?(1) task?(0)
[ 3623.675385][T52604] se: weight(1048576) vruntime(371460207) slice(2800000) deadline(374257783) curr?(1) task?(0)
[ 3623.686842][T52604] se: weight(1048576) vruntime(371460632) slice(2800000) deadline(374258288) curr?(1) task?(0)
[ 3623.698297][T52604] se: weight(1048576) vruntime(371462906) slice(2800000) deadline(374260152) curr?(1) task?(0)
[ 3623.709752][T52604] se: weight(1048576) vruntime(371464018) slice(2800000) deadline(374261143) curr?(1) task?(0)
[ 3623.721203][T52604] se: weight(1048576) vruntime(371464759) slice(2800000) deadline(374262475) curr?(1) task?(0)
[ 3623.732657][T52604] se: weight(1048576) vruntime(371466777) slice(2800000) deadline(374262630) curr?(1) task?(0)
[ 3623.744112][T52604] se: weight(1048576) vruntime(371467188) slice(2800000) deadline(374263312) curr?(1) task?(0)
[ 3623.755568][T52604] se: weight(1048576) vruntime(372563769) slice(2800000) deadline(374264289) curr?(1) task?(0)
[ 3623.767025][T52604] se: weight(1048576) vruntime(371472492) slice(2800000) deadline(374266653) curr?(1) task?(0)
[ 3623.778480][T52604] se: weight(1048576) vruntime(372616690) slice(2800000) deadline(374266685) curr?(1) task?(0)
[ 3623.789934][T52604] se: weight(1048576) vruntime(371472732) slice(2800000) deadline(374267024) curr?(1) task?(0)
[ 3623.801387][T52604] se: weight(1048576) vruntime(371475780) slice(2800000) deadline(374270541) curr?(1) task?(0)
[ 3623.812841][T52604] se: weight(1048576) vruntime(371478752) slice(2800000) deadline(374273825) curr?(1) task?(0)
[ 3623.824293][T52604] se: weight(1048576) vruntime(371478242) slice(2800000) deadline(374274706) curr?(1) task?(0)
[ 3623.835749][T52604] se: weight(1048576) vruntime(371478736) slice(2800000) deadline(374274971) curr?(1) task?(0)
[ 3623.847205][T52604] se: weight(1048576) vruntime(372645889) slice(2800000) deadline(374275544) curr?(1) task?(0)
[ 3623.858661][T52604] se: weight(1048576) vruntime(371479763) slice(2800000) deadline(374275767) curr?(1) task?(0)
[ 3623.870114][T52604] se: weight(1048576) vruntime(372644444) slice(2800000) deadline(374277874) curr?(1) task?(0)
[ 3623.881560][T52604] se: weight(1048576) vruntime(372664050) slice(2800000) deadline(374278622) curr?(1) task?(0)
[ 3623.893011][T52604] se: weight(1048576) vruntime(371483120) slice(2800000) deadline(374278864) curr?(1) task?(0)
[ 3623.904464][T52604] se: weight(1048576) vruntime(371483305) slice(2800000) deadline(374279530) curr?(1) task?(0)
[ 3623.915921][T52604] se: weight(1048576) vruntime(371484103) slice(2800000) deadline(374279877) curr?(1) task?(0)
[ 3623.927376][T52604] se: weight(1048576) vruntime(371485211) slice(2800000) deadline(374280334) curr?(1) task?(0)
[ 3623.938833][T52604] se: weight(1048576) vruntime(371486826) slice(2800000) deadline(374280897) curr?(1) task?(0)
[ 3623.950286][T52604] se: weight(1048576) vruntime(372645891) slice(2800000) deadline(374281175) curr?(1) task?(0)
[ 3623.961741][T52604] se: weight(1048576) vruntime(371486746) slice(2800000) deadline(374281458) curr?(1) task?(0)
[ 3623.973191][T52604] se: weight(1048576) vruntime(371490551) slice(2800000) deadline(374286946) curr?(1) task?(0)
[ 3623.984645][T52604] se: weight(1048576) vruntime(371489419) slice(2800000) deadline(374287366) curr?(1) task?(0)
[ 3623.996099][T52604] se: weight(1048576) vruntime(371492180) slice(2800000) deadline(374287593) curr?(1) task?(0)
[ 3624.007553][T52604] se: weight(1048576) vruntime(371492225) slice(2800000) deadline(374287638) curr?(1) task?(0)
[ 3624.019011][T52604] se: weight(1048576) vruntime(371492330) slice(2800000) deadline(374288354) curr?(1) task?(0)
[ 3624.030468][T52604] se: weight(1048576) vruntime(371494333) slice(2800000) deadline(374289986) curr?(1) task?(0)
[ 3624.041920][T52604] se: weight(1048576) vruntime(371495933) slice(2800000) deadline(374293269) curr?(1) task?(0)
[ 3624.053374][T52604] se: weight(1048576) vruntime(371496485) slice(2800000) deadline(374293901) curr?(1) task?(0)
[ 3624.064828][T52604] se: weight(1048576) vruntime(371499100) slice(2800000) deadline(374295314) curr?(1) task?(0)
[ 3624.076280][T52604] se: weight(1048576) vruntime(371500473) slice(2800000) deadline(374295886) curr?(1) task?(0)
[ 3624.087736][T52604] se: weight(1048576) vruntime(371500424) slice(2800000) deadline(374296107) curr?(1) task?(0)
[ 3624.099193][T52604] se: weight(1048576) vruntime(372661437) slice(2800000) deadline(374299414) curr?(1) task?(0)
[ 3624.110649][T52604] se: weight(1048576) vruntime(371501912) slice(2800000) deadline(374299608) curr?(1) task?(0)
[ 3624.122101][T52604] se: weight(1048576) vruntime(371507428) slice(2800000) deadline(374300808) curr?(1) task?(0)
[ 3624.133556][T52604] se: weight(1048576) vruntime(371505049) slice(2800000) deadline(374301193) curr?(1) task?(0)
[ 3624.145007][T52604] se: weight(1048576) vruntime(371506433) slice(2800000) deadline(374302497) curr?(1) task?(0)
[ 3624.156460][T52604] se: weight(1048576) vruntime(371510120) slice(2800000) deadline(374304231) curr?(1) task?(0)
[ 3624.167915][T52604] se: weight(1048576) vruntime(372693008) slice(2800000) deadline(374304706) curr?(1) task?(0)
[ 3624.179368][T52604] se: weight(1048576) vruntime(371509266) slice(2800000) deadline(374305341) curr?(1) task?(0)
[ 3624.190824][T52604] se: weight(1048576) vruntime(371510134) slice(2800000) deadline(374305837) curr?(1) task?(0)
[ 3624.202279][T52604] se: weight(1048576) vruntime(371509701) slice(2800000) deadline(374306055) curr?(1) task?(0)
[ 3624.213735][T52604] se: weight(1048576) vruntime(371511633) slice(2800000) deadline(374306235) curr?(1) task?(0)
[ 3624.225185][T52604] se: weight(1048576) vruntime(371511057) slice(2800000) deadline(374306850) curr?(1) task?(0)
[ 3624.236638][T52604] se: weight(1048576) vruntime(371512746) slice(2800000) deadline(374307388) curr?(1) task?(0)
[ 3624.248093][T52604] se: weight(1048576) vruntime(371512439) slice(2800000) deadline(374309925) curr?(1) task?(0)
[ 3624.259546][T52604] se: weight(1048576) vruntime(371515074) slice(2800000) deadline(374310707) curr?(1) task?(0)
[ 3624.271005][T52604] se: weight(1048576) vruntime(372682129) slice(2800000) deadline(374312524) curr?(1) task?(0)
[ 3624.282452][T52604] se: weight(1048576) vruntime(371517144) slice(2800000) deadline(374313338) curr?(1) task?(0)
[ 3624.293906][T52604] se: weight(1048576) vruntime(371518247) slice(2800000) deadline(374314111) curr?(1) task?(0)
[ 3624.305359][T52604] se: weight(1048576) vruntime(371520462) slice(2800000) deadline(374316617) curr?(1) task?(0)
[ 3624.316812][T52604] se: weight(1048576) vruntime(371520895) slice(2800000) deadline(374317019) curr?(1) task?(0)
[ 3624.328264][T52604] se: weight(1048576) vruntime(371522217) slice(2800000) deadline(374319192) curr?(1) task?(0)
[ 3624.339720][T52604] se: weight(1048576) vruntime(371524542) slice(2800000) deadline(374320596) curr?(1) task?(0)
[ 3624.351176][T52604] se: weight(1048576) vruntime(371526683) slice(2800000) deadline(374323468) curr?(1) task?(0)
[ 3624.362631][T52604] se: weight(1048576) vruntime(371528244) slice(2800000) deadline(374324128) curr?(1) task?(0)
[ 3624.374084][T52604] se: weight(1048576) vruntime(372650770) slice(2800000) deadline(374324380) curr?(1) task?(0)
[ 3624.385538][T52604] se: weight(1048576) vruntime(372946143) slice(2800000) deadline(374325351) curr?(1) task?(0)
[ 3624.396989][T52604] se: weight(1048576) vruntime(371531420) slice(2800000) deadline(374327504) curr?(1) task?(0)
[ 3624.408443][T52604] se: weight(1048576) vruntime(372679692) slice(2800000) deadline(374327975) curr?(1) task?(0)
[ 3624.419899][T52604] se: weight(1048576) vruntime(371538452) slice(2800000) deadline(374332063) curr?(1) task?(0)
[ 3624.431354][T52604] se: weight(1048576) vruntime(371538639) slice(2800000) deadline(374336416) curr?(1) task?(0)
[ 3624.442811][T52604] se: weight(1048576) vruntime(372672554) slice(2800000) deadline(374338583) curr?(1) task?(0)
[ 3624.454264][T52604] se: weight(1048576) vruntime(372753243) slice(2800000) deadline(374339232) curr?(1) task?(0)
[ 3624.465719][T52604] se: weight(1048576) vruntime(371541966) slice(2800000) deadline(374340144) curr?(1) task?(0)
[ 3624.477170][T52604] se: weight(1048576) vruntime(371544195) slice(2800000) deadline(374342112) curr?(1) task?(0)
[ 3624.488623][T52604] se: weight(1048576) vruntime(371548274) slice(2800000) deadline(374344759) curr?(1) task?(0)
[ 3624.500068][T52604] se: weight(1048576) vruntime(371550159) slice(2800000) deadline(374346023) curr?(1) task?(0)
[ 3624.511521][T52604] se: weight(1048576) vruntime(372738159) slice(2800000) deadline(374346953) curr?(1) task?(0)
[ 3624.522978][T52604] se: weight(1048576) vruntime(372703297) slice(2800000) deadline(374349106) curr?(1) task?(0)
[ 3624.534433][T52604] se: weight(1048576) vruntime(371554521) slice(2800000) deadline(374351927) curr?(1) task?(0)
[ 3624.545886][T52604] se: weight(1048576) vruntime(372736319) slice(2800000) deadline(374353665) curr?(1) task?(0)
[ 3624.557338][T52604] se: weight(1048576) vruntime(371560539) slice(2800000) deadline(374356993) curr?(1) task?(0)
[ 3624.568791][T52604] se: weight(1048576) vruntime(371562436) slice(2800000) deadline(374357219) curr?(1) task?(0)
[ 3624.580243][T52604] se: weight(1048576) vruntime(372744263) slice(2800000) deadline(374357863) curr?(1) task?(0)
[ 3624.591699][T52604] se: weight(1048576) vruntime(372695518) slice(2800000) deadline(374358182) curr?(1) task?(0)
[ 3624.603156][T52604] se: weight(1048576) vruntime(371561702) slice(2800000) deadline(374359819) curr?(1) task?(0)
[ 3624.614604][T52604] se: weight(1048576) vruntime(371564952) slice(2800000) deadline(374361206) curr?(1) task?(0)
[ 3624.626057][T52604] se: weight(1048576) vruntime(371569152) slice(2800000) deadline(374363773) curr?(1) task?(0)
[ 3624.637511][T52604] se: weight(1048576) vruntime(371567687) slice(2800000) deadline(374364062) curr?(1) task?(0)
[ 3624.648961][T52604] se: weight(1048576) vruntime(371572134) slice(2800000) deadline(374367046) curr?(1) task?(0)
[ 3624.660414][T52604] se: weight(1048576) vruntime(372762312) slice(2800000) deadline(374367560) curr?(1) task?(0)
[ 3624.671870][T52604] se: weight(1048576) vruntime(371575676) slice(2800000) deadline(374370357) curr?(1) task?(0)
[ 3624.683325][T52604] se: weight(1048576) vruntime(371585041) slice(2800000) deadline(374370920) curr?(1) task?(0)
[ 3624.694781][T52604] se: weight(1048576) vruntime(372762314) slice(2800000) deadline(374376495) curr?(1) task?(0)
[ 3624.706235][T52604] se: weight(1048576) vruntime(372810217) slice(2800000) deadline(374377628) curr?(1) task?(0)
[ 3624.717690][T52604] se: weight(1048576) vruntime(372954243) slice(2800000) deadline(374377939) curr?(1) task?(0)
[ 3624.729139][T52604] se: weight(1048576) vruntime(372757820) slice(2800000) deadline(374378500) curr?(1) task?(0)
[ 3624.740593][T52604] se: weight(1048576) vruntime(372717679) slice(2800000) deadline(374379021) curr?(1) task?(0)
[ 3624.752049][T52604] se: weight(1048576) vruntime(371585571) slice(2800000) deadline(374381305) curr?(1) task?(0)
[ 3624.763502][T52604] se: weight(1048576) vruntime(371586888) slice(2800000) deadline(374385065) curr?(1) task?(0)
[ 3624.774959][T52604] se: weight(1048576) vruntime(372780797) slice(2800000) deadline(374386656) curr?(1) task?(0)
[ 3624.786416][T52604] se: weight(1048576) vruntime(371590356) slice(2800000) deadline(374386761) curr?(1) task?(0)
[ 3624.797871][T52604] se: weight(1048576) vruntime(372803605) slice(2800000) deadline(374393169) curr?(1) task?(0)
[ 3624.809323][T52604] se: weight(1048576) vruntime(372758910) slice(2800000) deadline(374394754) curr?(1) task?(0)
[ 3624.820776][T52604] se: weight(1048576) vruntime(371602099) slice(2800000) deadline(374397011) curr?(1) task?(0)
[ 3624.832230][T52604] se: weight(1048576) vruntime(371602528) slice(2800000) deadline(374399374) curr?(1) task?(0)
[ 3624.843686][T52604] se: weight(1048576) vruntime(371607955) slice(2800000) deadline(374404069) curr?(1) task?(0)
[ 3624.855134][T52604] se: weight(1048576) vruntime(371609266) slice(2800000) deadline(374404158) curr?(1) task?(0)
[ 3624.866590][T52604] se: weight(1048576) vruntime(371612145) slice(2800000) deadline(374408390) curr?(1) task?(0)
[ 3624.878043][T52604] se: weight(1048576) vruntime(371613261) slice(2800000) deadline(374409215) curr?(1) task?(0)
[ 3624.889488][T52604] se: weight(1048576) vruntime(372782663) slice(2800000) deadline(374410235) curr?(1) task?(0)
[ 3624.900938][T52604] se: weight(1048576) vruntime(372830063) slice(2800000) deadline(374411646) curr?(1) task?(0)
[ 3624.912393][T52604] se: weight(1048576) vruntime(372722925) slice(2800000) deadline(374411838) curr?(1) task?(0)
[ 3624.923847][T52604] se: weight(1048576) vruntime(372784680) slice(2800000) deadline(374413353) curr?(1) task?(0)
[ 3624.935302][T52604] se: weight(1048576) vruntime(371617602) slice(2800000) deadline(374414007) curr?(1) task?(0)
[ 3624.946759][T52604] se: weight(1048576) vruntime(372758910) slice(2800000) deadline(374415335) curr?(1) task?(0)
[ 3624.958213][T52604] se: weight(1048576) vruntime(371623422) slice(2800000) deadline(374419696) curr?(1) task?(0)
[ 3624.969659][T52604] se: weight(1048576) vruntime(371626710) slice(2800000) deadline(374421201) curr?(1) task?(0)
[ 3624.981109][T52604] se: weight(1048576) vruntime(371627466) slice(2800000) deadline(374421928) curr?(1) task?(0)
[ 3624.992563][T52604] se: weight(1048576) vruntime(371628837) slice(2800000) deadline(374425312) curr?(1) task?(0)
[ 3625.004017][T52604] se: weight(1048576) vruntime(371632441) slice(2800000) deadline(374428786) curr?(1) task?(0)
[ 3625.015471][T52604] se: weight(1048576) vruntime(372805104) slice(2800000) deadline(374430843) curr?(1) task?(0)
[ 3625.026928][T52604] se: weight(1048576) vruntime(371639342) slice(2800000) deadline(374435005) curr?(1) task?(0)
[ 3625.038383][T52604] se: weight(1048576) vruntime(371639346) slice(2800000) deadline(374435681) curr?(1) task?(0)
[ 3625.049834][T52604] se: weight(1048576) vruntime(371640455) slice(2800000) deadline(374438472) curr?(1) task?(0)
[ 3625.061287][T52604] se: weight(1048576) vruntime(371645539) slice(2800000) deadline(374441213) curr?(1) task?(0)
[ 3625.072740][T52604] se: weight(1048576) vruntime(371646878) slice(2800000) deadline(374441640) curr?(1) task?(0)
[ 3625.084193][T52604] se: weight(1048576) vruntime(372791278) slice(2800000) deadline(374443506) curr?(1) task?(0)
[ 3625.095649][T52604] se: weight(1048576) vruntime(372828480) slice(2800000) deadline(374444815) curr?(1) task?(0)
[ 3625.107097][T52604] se: weight(1048576) vruntime(371647797) slice(2800000) deadline(374445884) curr?(1) task?(0)
[ 3625.118552][T52604] se: weight(1048576) vruntime(371650519) slice(2800000) deadline(374447254) curr?(1) task?(0)
[ 3625.130005][T52604] se: weight(1048576) vruntime(371650611) slice(2800000) deadline(374447827) curr?(1) task?(0)
[ 3625.141450][T52604] se: weight(1048576) vruntime(371653840) slice(2800000) deadline(374450255) curr?(1) task?(0)
[ 3625.152899][T52604] se: weight(1048576) vruntime(372805105) slice(2800000) deadline(374451074) curr?(1) task?(0)
[ 3625.164354][T52604] se: weight(1048576) vruntime(371658699) slice(2800000) deadline(374452650) curr?(1) task?(0)
[ 3625.175810][T52604] se: weight(1048576) vruntime(371656921) slice(2800000) deadline(374452925) curr?(1) task?(0)
[ 3625.187265][T52604] se: weight(1048576) vruntime(371659098) slice(2800000) deadline(374454120) curr?(1) task?(0)
[ 3625.198722][T52604] se: weight(1048576) vruntime(371657422) slice(2800000) deadline(374455409) curr?(1) task?(0)
[ 3625.210177][T52604] se: weight(1048576) vruntime(372914592) slice(2800000) deadline(374455483) curr?(1) task?(0)
[ 3625.221621][T52604] se: weight(1048576) vruntime(371659708) slice(2800000) deadline(374457375) curr?(1) task?(0)
[ 3625.233071][T52604] se: weight(1048576) vruntime(371664183) slice(2800000) deadline(374458274) curr?(1) task?(0)
[ 3625.244527][T52604] se: weight(1048576) vruntime(371663182) slice(2800000) deadline(374459226) curr?(1) task?(0)
[ 3625.255981][T52604] se: weight(1048576) vruntime(371667988) slice(2800000) deadline(374463601) curr?(1) task?(0)
[ 3625.267435][T52604] se: weight(1048576) vruntime(371667533) slice(2800000) deadline(374463808) curr?(1) task?(0)
[ 3625.278893][T52604] se: weight(1048576) vruntime(371672136) slice(2800000) deadline(374466478) curr?(1) task?(0)
[ 3625.290349][T52604] se: weight(1048576) vruntime(372855226) slice(2800000) deadline(374467144) curr?(1) task?(0)
[ 3625.301800][T52604] se: weight(1048576) vruntime(372830061) slice(2800000) deadline(374468088) curr?(1) task?(0)
[ 3625.313253][T52604] se: weight(1048576) vruntime(371672711) slice(2800000) deadline(374468856) curr?(1) task?(0)
[ 3625.324706][T52604] se: weight(1048576) vruntime(371674279) slice(2800000) deadline(374471985) curr?(1) task?(0)
[ 3625.336160][T52604] se: weight(1048576) vruntime(371677977) slice(2800000) deadline(374472629) curr?(1) task?(0)
[ 3625.347617][T52604] se: weight(1048576) vruntime(371677335) slice(2800000) deadline(374473490) curr?(1) task?(0)
[ 3625.359074][T52604] se: weight(1048576) vruntime(371678704) slice(2800000) deadline(374474749) curr?(1) task?(0)
[ 3625.370530][T52604] se: weight(1048576) vruntime(372811549) slice(2800000) deadline(374475074) curr?(1) task?(0)
[ 3625.381982][T52604] se: weight(1048576) vruntime(371681331) slice(2800000) deadline(374476003) curr?(1) task?(0)
[ 3625.393437][T52604] se: weight(1048576) vruntime(371680763) slice(2800000) deadline(374478660) curr?(1) task?(0)
[ 3625.404887][T52604] se: weight(1048576) vruntime(371682970) slice(2800000) deadline(374480326) curr?(1) task?(0)
[ 3625.416339][T52604] se: weight(1048576) vruntime(371685150) slice(2800000) deadline(374480514) curr?(1) task?(0)
[ 3625.427795][T52604] se: weight(1048576) vruntime(372816271) slice(2800000) deadline(374481750) curr?(1) task?(0)
[ 3625.439250][T52604] se: weight(1048576) vruntime(371684298) slice(2800000) deadline(374481765) curr?(1) task?(0)
[ 3625.450707][T52604] se: weight(1048576) vruntime(371686390) slice(2800000) deadline(374484206) curr?(1) task?(0)
[ 3625.462161][T52604] se: weight(1048576) vruntime(371689397) slice(2800000) deadline(374484400) curr?(1) task?(0)
[ 3625.473607][T52604] se: weight(1048576) vruntime(371693439) slice(2800000) deadline(374487140) curr?(1) task?(0)
[ 3625.485058][T52604] se: weight(1048576) vruntime(371690162) slice(2800000) deadline(374488039) curr?(1) task?(0)
[ 3625.496512][T52604] se: weight(1048576) vruntime(372856696) slice(2800000) deadline(374488233) curr?(1) task?(0)
[ 3625.507967][T52604] se: weight(1048576) vruntime(372873071) slice(2800000) deadline(374489165) curr?(1) task?(0)
[ 3625.519420][T52604] se: weight(1048576) vruntime(371692125) slice(2800000) deadline(374490042) curr?(1) task?(0)
[ 3625.530879][T52604] se: weight(1048576) vruntime(371695111) slice(2800000) deadline(374490564) curr?(1) task?(0)
[ 3625.542337][T52604] se: weight(1048576) vruntime(372844705) slice(2800000) deadline(374490634) curr?(1) task?(0)
[ 3625.553789][T52604] se: weight(1048576) vruntime(371694739) slice(2800000) deadline(374490723) curr?(1) task?(0)
[ 3625.565242][T52604] se: weight(1048576) vruntime(371696483) slice(2800000) deadline(374491155) curr?(1) task?(0)
[ 3625.576694][T52604] se: weight(1048576) vruntime(372795736) slice(2800000) deadline(374491660) curr?(1) task?(0)
[ 3625.588148][T52604] se: weight(1048576) vruntime(371696571) slice(2800000) deadline(374492225) curr?(1) task?(0)
[ 3625.599604][T52604] se: weight(1048576) vruntime(371699822) slice(2800000) deadline(374494043) curr?(1) task?(0)
[ 3625.611060][T52604] se: weight(1048576) vruntime(371698387) slice(2800000) deadline(374494181) curr?(1) task?(0)
[ 3625.622515][T52604] se: weight(1048576) vruntime(371699221) slice(2800000) deadline(374494574) curr?(1) task?(0)
[ 3625.633967][T52604] se: weight(1048576) vruntime(371699891) slice(2800000) deadline(374495334) curr?(1) task?(0)
[ 3625.645421][T52604] se: weight(1048576) vruntime(371702171) slice(2800000) deadline(374497333) curr?(1) task?(0)
[ 3625.656871][T52604] se: weight(1048576) vruntime(371699784) slice(2800000) deadline(374497450) curr?(1) task?(0)
[ 3625.668326][T52604] se: weight(1048576) vruntime(371702159) slice(2800000) deadline(374498564) curr?(1) task?(0)
[ 3625.679783][T52604] se: weight(1048576) vruntime(371702528) slice(2800000) deadline(374499874) curr?(1) task?(0)
[ 3625.691238][T52604] se: weight(1048576) vruntime(371707357) slice(2800000) deadline(374501628) curr?(1) task?(0)
[ 3625.702694][T52604] se: weight(1048576) vruntime(372910491) slice(2800000) deadline(374502670) curr?(1) task?(0)
[ 3625.714148][T52604] se: weight(1048576) vruntime(371708079) slice(2800000) deadline(374502820) curr?(1) task?(0)
[ 3625.725602][T52604] se: weight(1048576) vruntime(372886065) slice(2800000) deadline(374503521) curr?(1) task?(0)
[ 3625.737053][T52604] se: weight(1048576) vruntime(372886065) slice(2800000) deadline(374504152) curr?(1) task?(0)
[ 3625.748507][T52604] se: weight(1048576) vruntime(371708202) slice(2800000) deadline(374505117) curr?(1) task?(0)
[ 3625.759963][T52604] se: weight(1048576) vruntime(371710083) slice(2800000) deadline(374505436) curr?(1) task?(0)
[ 3625.771416][T52604] se: weight(1048576) vruntime(371710231) slice(2800000) deadline(374507698) curr?(1) task?(0)
[ 3625.782864][T52604] se: weight(1048576) vruntime(371711759) slice(2800000) deadline(374508013) curr?(1) task?(0)
[ 3625.794322][T52604] se: weight(1048576) vruntime(371716728) slice(2800000) deadline(374511840) curr?(1) task?(0)
[ 3625.805775][T52604] se: weight(1048576) vruntime(371715215) slice(2800000) deadline(374512521) curr?(1) task?(0)
[ 3625.817229][T52604] se: weight(1048576) vruntime(371716614) slice(2800000) deadline(374512578) curr?(1) task?(0)
[ 3625.828681][T52604] se: weight(1048576) vruntime(371718594) slice(2800000) deadline(374512636) curr?(1) task?(0)
[ 3625.840134][T52604] se: weight(1048576) vruntime(371717110) slice(2800000) deadline(374513374) curr?(1) task?(0)
[ 3625.851590][T52604] se: weight(1048576) vruntime(371718391) slice(2800000) deadline(374514465) curr?(1) task?(0)
[ 3625.863046][T52604] se: weight(1048576) vruntime(371719768) slice(2800000) deadline(374514820) curr?(1) task?(0)
[ 3625.874492][T52604] se: weight(1048576) vruntime(371721955) slice(2800000) deadline(374514944) curr?(1) task?(0)
[ 3625.885945][T52604] se: weight(1048576) vruntime(372862149) slice(2800000) deadline(374515529) curr?(1) task?(0)
[ 3625.897398][T52604] se: weight(1048576) vruntime(371719819) slice(2800000) deadline(374515753) curr?(1) task?(0)
[ 3625.908848][T52604] se: weight(1048576) vruntime(371722443) slice(2800000) deadline(374516795) curr?(1) task?(0)
[ 3625.920301][T52604] se: weight(1048576) vruntime(372924302) slice(2800000) deadline(374516821) curr?(1) task?(0)
[ 3625.931756][T52604] se: weight(1048576) vruntime(371722059) slice(2800000) deadline(374517922) curr?(1) task?(0)
[ 3625.943212][T52604] se: weight(1048576) vruntime(371724021) slice(2800000) deadline(374520216) curr?(1) task?(0)
[ 3625.954668][T52604] se: weight(1048576) vruntime(372997347) slice(2800000) deadline(374520852) curr?(1) task?(0)
[ 3625.966122][T52604] se: weight(1048576) vruntime(372873071) slice(2800000) deadline(374521564) curr?(1) task?(0)
[ 3625.977568][T52604] se: weight(1048576) vruntime(371729752) slice(2800000) deadline(374524874) curr?(1) task?(0)
[ 3625.989020][T52604] se: weight(1048576) vruntime(371729613) slice(2800000) deadline(374526889) curr?(1) task?(0)
[ 3626.000473][T52604] se: weight(1048576) vruntime(371729947) slice(2800000) deadline(374527854) curr?(1) task?(0)
[ 3626.011919][T52604] se: weight(1048576) vruntime(371730281) slice(2800000) deadline(374527857) curr?(1) task?(0)
[ 3626.023374][T52604] se: weight(1048576) vruntime(371734116) slice(2800000) deadline(374528758) curr?(1) task?(0)
[ 3626.034832][T52604] se: weight(1048576) vruntime(372848788) slice(2800000) deadline(374530701) curr?(1) task?(0)
[ 3626.046279][T52604] se: weight(1048576) vruntime(372879157) slice(2800000) deadline(374531766) curr?(1) task?(0)
[ 3626.057731][T52604] se: weight(1048576) vruntime(371736527) slice(2800000) deadline(374534454) curr?(1) task?(0)
[ 3626.069184][T52604] se: weight(1048576) vruntime(371737040) slice(2800000) deadline(374534927) curr?(1) task?(0)
[ 3626.080635][T52604] se: weight(1048576) vruntime(372922821) slice(2800000) deadline(374536682) curr?(1) task?(0)
[ 3626.092089][T52604] se: weight(1048576) vruntime(373095261) slice(2800000) deadline(374539007) curr?(1) task?(0)
[ 3626.103545][T52604] se: weight(1048576) vruntime(371742670) slice(2800000) deadline(374539616) curr?(1) task?(0)
[ 3626.115001][T52604] se: weight(1048576) vruntime(371743772) slice(2800000) deadline(374539976) curr?(1) task?(0)
[ 3626.126458][T52604] se: weight(1048576) vruntime(372874694) slice(2800000) deadline(374540182) curr?(1) task?(0)
[ 3626.137912][T52604] se: weight(1048576) vruntime(373005820) slice(2800000) deadline(374541153) curr?(1) task?(0)
[ 3626.149357][T52604] se: weight(1048576) vruntime(371745313) slice(2800000) deadline(374541537) curr?(1) task?(0)
[ 3626.160806][T52604] se: weight(1048576) vruntime(371748581) slice(2800000) deadline(374541861) curr?(1) task?(0)
[ 3626.172259][T52604] se: weight(1048576) vruntime(372933044) slice(2800000) deadline(374542659) curr?(1) task?(0)
[ 3626.183715][T52604] se: weight(1048576) vruntime(371747970) slice(2800000) deadline(374543333) curr?(1) task?(0)
[ 3626.195169][T52604] se: weight(1048576) vruntime(371749986) slice(2800000) deadline(374546000) curr?(1) task?(0)
[ 3626.206627][T52604] se: weight(1048576) vruntime(371752137) slice(2800000) deadline(374548321) curr?(1) task?(0)
[ 3626.218082][T52604] se: weight(1048576) vruntime(371755713) slice(2800000) deadline(374551717) curr?(1) task?(0)
[ 3626.229536][T52604] se: weight(1048576) vruntime(371757874) slice(2800000) deadline(374553888) curr?(1) task?(0)
[ 3626.240989][T52604] se: weight(1048576) vruntime(371762982) slice(2800000) deadline(374557204) curr?(1) task?(0)
[ 3626.252444][T52604] se: weight(1048576) vruntime(372933043) slice(2800000) deadline(374557260) curr?(1) task?(0)
[ 3626.263898][T52604] se: weight(1048576) vruntime(373037970) slice(2800000) deadline(374557469) curr?(1) task?(0)
[ 3626.275352][T52604] se: weight(1048576) vruntime(371759735) slice(2800000) deadline(374557502) curr?(1) task?(0)
[ 3626.286810][T52604] se: weight(1048576) vruntime(371763333) slice(2800000) deadline(374558495) curr?(1) task?(0)
[ 3626.298266][T52604] se: weight(1048576) vruntime(371762321) slice(2800000) deadline(374560127) curr?(1) task?(0)
[ 3626.309719][T52604] se: weight(1048576) vruntime(371765970) slice(2800000) deadline(374562115) curr?(1) task?(0)
[ 3626.321173][T52604] se: weight(1048576) vruntime(371765888) slice(2800000) deadline(374564195) curr?(1) task?(0)
[ 3626.332625][T52604] se: weight(1048576) vruntime(371772418) slice(2800000) deadline(374566729) curr?(1) task?(0)
[ 3626.344078][T52604] se: weight(1048576) vruntime(372935182) slice(2800000) deadline(374568142) curr?(1) task?(0)
[ 3626.355535][T52604] se: weight(1048576) vruntime(371771762) slice(2800000) deadline(374568968) curr?(1) task?(0)
[ 3626.366990][T52604] se: weight(1048576) vruntime(371777089) slice(2800000) deadline(374572702) curr?(1) task?(0)
[ 3626.378446][T52604] se: weight(1048576) vruntime(371778323) slice(2800000) deadline(374574076) curr?(1) task?(0)
[ 3626.389899][T52604] se: weight(1048576) vruntime(371779964) slice(2800000) deadline(374576148) curr?(1) task?(0)
[ 3626.401353][T52604] se: weight(1048576) vruntime(372937517) slice(2800000) deadline(374578709) curr?(1) task?(0)
[ 3626.412804][T52604] se: weight(1048576) vruntime(373022682) slice(2800000) deadline(374579578) curr?(1) task?(0)
[ 3626.424258][T52604] se: weight(1048576) vruntime(371783537) slice(2800000) deadline(374579621) curr?(1) task?(0)
[ 3626.435714][T52604] se: weight(1048576) vruntime(373022683) slice(2800000) deadline(374581601) curr?(1) task?(0)
[ 3626.447169][T52604] se: weight(1048576) vruntime(372949984) slice(2800000) deadline(374586138) curr?(1) task?(0)
[ 3626.458626][T52604] se: weight(1048576) vruntime(372990721) slice(2800000) deadline(374594056) curr?(1) task?(0)
[ 3626.470080][T52604] se: weight(1048576) vruntime(372975808) slice(2800000) deadline(374598432) curr?(1) task?(0)
[ 3626.481535][T52604] se: weight(1048576) vruntime(372948130) slice(2800000) deadline(374603984) curr?(1) task?(0)
[ 3626.492987][T52604] se: weight(1048576) vruntime(371811151) slice(2800000) deadline(374606594) curr?(1) task?(0)
[ 3626.504443][T52604] se: weight(1048576) vruntime(373002457) slice(2800000) deadline(374607244) curr?(1) task?(0)
[ 3626.515898][T52604] se: weight(1048576) vruntime(371809692) slice(2800000) deadline(374607578) curr?(1) task?(0)
[ 3626.527353][T52604] se: weight(1048576) vruntime(371814565) slice(2800000) deadline(374609557) curr?(1) task?(0)
[ 3626.538810][T52604] se: weight(1048576) vruntime(371815128) slice(2800000) deadline(374610531) curr?(1) task?(0)
[ 3626.550265][T52604] se: weight(1048576) vruntime(371818059) slice(2800000) deadline(374612531) curr?(1) task?(0)
[ 3626.561717][T52604] se: weight(1048576) vruntime(373063017) slice(2800000) deadline(374612912) curr?(1) task?(0)
[ 3626.573170][T52604] se: weight(1048576) vruntime(373145549) slice(2800000) deadline(374616115) curr?(1) task?(0)
[ 3626.584623][T52604] se: weight(1048576) vruntime(371820774) slice(2800000) deadline(374618690) curr?(1) task?(0)
[ 3626.596077][T52604] se: weight(1048576) vruntime(371824205) slice(2800000) deadline(374622503) curr?(1) task?(0)
[ 3626.607532][T52604] se: weight(1048576) vruntime(371829894) slice(2800000) deadline(374624717) curr?(1) task?(0)
[ 3626.618988][T52604] se: weight(1048576) vruntime(373089260) slice(2800000) deadline(374625104) curr?(1) task?(0)
[ 3626.630444][T52604] se: weight(1048576) vruntime(372983491) slice(2800000) deadline(374625563) curr?(1) task?(0)
[ 3626.641897][T52604] se: weight(1048576) vruntime(371828112) slice(2800000) deadline(374625728) curr?(1) task?(0)
[ 3626.653349][T52604] se: weight(1048576) vruntime(371833792) slice(2800000) deadline(374630807) curr?(1) task?(0)
[ 3626.664799][T52604] se: weight(1048576) vruntime(371836078) slice(2800000) deadline(374633775) curr?(1) task?(0)
[ 3626.676254][T52604] se: weight(1048576) vruntime(372969694) slice(2800000) deadline(374638568) curr?(1) task?(0)
[ 3626.687709][T52604] se: weight(1048576) vruntime(371840505) slice(2800000) deadline(374638762) curr?(1) task?(0)
[ 3626.699164][T52604] se: weight(1048576) vruntime(372983492) slice(2800000) deadline(374651674) curr?(1) task?(0)
[ 3626.710620][T52604] se: weight(1048576) vruntime(373152180) slice(2800000) deadline(374656786) curr?(1) task?(0)
[ 3626.722075][T52604] se: weight(1048576) vruntime(371862827) slice(2800000) deadline(374660513) curr?(1) task?(0)
[ 3626.733530][T52604] se: weight(1048576) vruntime(373123210) slice(2800000) deadline(374662108) curr?(1) task?(0)
[ 3626.744980][T52604] se: weight(1048576) vruntime(371867328) slice(2800000) deadline(374662230) curr?(1) task?(0)
[ 3626.756434][T52604] se: weight(1048576) vruntime(373003968) slice(2800000) deadline(374663257) curr?(1) task?(0)
[ 3626.767879][T52604] se: weight(1048576) vruntime(373059556) slice(2800000) deadline(374663893) curr?(1) task?(0)
[ 3626.779333][T52604] se: weight(1048576) vruntime(371870719) slice(2800000) deadline(374667053) curr?(1) task?(0)
[ 3626.790790][T52604] se: weight(1048576) vruntime(371871155) slice(2800000) deadline(374667099) curr?(1) task?(0)
[ 3626.802246][T52604] se: weight(1048576) vruntime(371873432) slice(2800000) deadline(374669576) curr?(1) task?(0)
[ 3626.813700][T52604] se: weight(1048576) vruntime(373019688) slice(2800000) deadline(374670334) curr?(1) task?(0)
[ 3626.825152][T52604] se: weight(1048576) vruntime(373063017) slice(2800000) deadline(374674054) curr?(1) task?(0)
[ 3626.836603][T52604] se: weight(1048576) vruntime(373026861) slice(2800000) deadline(374674602) curr?(1) task?(0)
[ 3626.848056][T52604] se: weight(1048576) vruntime(371878689) slice(2800000) deadline(374675163) curr?(1) task?(0)
[ 3626.859512][T52604] se: weight(1048576) vruntime(371881367) slice(2800000) deadline(374676840) curr?(1) task?(0)
[ 3626.870967][T52604] se: weight(1048576) vruntime(371880408) slice(2800000) deadline(374677814) curr?(1) task?(0)
[ 3626.882424][T52604] se: weight(1048576) vruntime(371885080) slice(2800000) deadline(374678670) curr?(1) task?(0)
[ 3626.893877][T52604] se: weight(1048576) vruntime(371883325) slice(2800000) deadline(374679670) curr?(1) task?(0)
[ 3626.905330][T52604] se: weight(1048576) vruntime(371889832) slice(2800000) deadline(374684595) curr?(1) task?(0)
[ 3626.916781][T52604] se: weight(1048576) vruntime(371889474) slice(2800000) deadline(374685428) curr?(1) task?(0)
[ 3626.928235][T52604] se: weight(1048576) vruntime(371889491) slice(2800000) deadline(374687278) curr?(1) task?(0)
[ 3626.939693][T52604] se: weight(1048576) vruntime(373040579) slice(2800000) deadline(374691605) curr?(1) task?(0)
[ 3626.951147][T52604] se: weight(1048576) vruntime(372995791) slice(2800000) deadline(374691976) curr?(1) task?(0)
[ 3626.962603][T52604] se: weight(1048576) vruntime(373046610) slice(2800000) deadline(374692779) curr?(1) task?(0)
[ 3626.974056][T52604] se: weight(1048576) vruntime(373028290) slice(2800000) deadline(374694699) curr?(1) task?(0)
[ 3626.985510][T52604] se: weight(1048576) vruntime(373068917) slice(2800000) deadline(374695988) curr?(1) task?(0)
[ 3626.996960][T52604] se: weight(1048576) vruntime(371900127) slice(2800000) deadline(374696522) curr?(1) task?(0)
[ 3627.008414][T52604] se: weight(1048576) vruntime(373171970) slice(2800000) deadline(374700592) curr?(1) task?(0)
[ 3627.019869][T52604] se: weight(1048576) vruntime(371906135) slice(2800000) deadline(374702109) curr?(1) task?(0)
[ 3627.031325][T52604] se: weight(1048576) vruntime(371906120) slice(2800000) deadline(374702154) curr?(1) task?(0)
[ 3627.042782][T52604] se: weight(1048576) vruntime(371907029) slice(2800000) deadline(374705106) curr?(1) task?(0)
[ 3627.054230][T52604] se: weight(1048576) vruntime(373177328) slice(2800000) deadline(374713973) curr?(1) task?(0)
[ 3627.065683][T52604] se: weight(1048576) vruntime(371917232) slice(2800000) deadline(374713997) curr?(1) task?(0)
[ 3627.077136][T52604] se: weight(1048576) vruntime(371919117) slice(2800000) deadline(374714530) curr?(1) task?(0)
[ 3627.088587][T52604] se: weight(1048576) vruntime(371919392) slice(2800000) deadline(374714695) curr?(1) task?(0)
[ 3627.100041][T52604] se: weight(1048576) vruntime(371919767) slice(2800000) deadline(374717313) curr?(1) task?(0)
[ 3627.111497][T52604] se: weight(1048576) vruntime(373093262) slice(2800000) deadline(374720683) curr?(1) task?(0)
[ 3627.122954][T52604] se: weight(1048576) vruntime(371926128) slice(2800000) deadline(374723564) curr?(1) task?(0)
[ 3627.134412][T52604] se: weight(1048576) vruntime(371929617) slice(2800000) deadline(374725180) curr?(1) task?(0)
[ 3627.145867][T52604] se: weight(1048576) vruntime(373068917) slice(2800000) deadline(374728386) curr?(1) task?(0)
[ 3627.157310][T52604] se: weight(1048576) vruntime(371932503) slice(2800000) deadline(374728527) curr?(1) task?(0)
[ 3627.168761][T52604] se: weight(1048576) vruntime(371933916) slice(2800000) deadline(374730171) curr?(1) task?(0)
[ 3627.180215][T52604] se: weight(1048576) vruntime(373171969) slice(2800000) deadline(374731519) curr?(1) task?(0)
[ 3627.191670][T52604] se: weight(1048576) vruntime(373080380) slice(2800000) deadline(374732308) curr?(1) task?(0)
[ 3627.203125][T52604] se: weight(1048576) vruntime(371934935) slice(2800000) deadline(374732422) curr?(1) task?(0)
[ 3627.214582][T52604] se: weight(1048576) vruntime(373111186) slice(2800000) deadline(374733690) curr?(1) task?(0)
[ 3627.226035][T52604] se: weight(1048576) vruntime(373106680) slice(2800000) deadline(374737536) curr?(1) task?(0)
[ 3627.237489][T52604] se: weight(1048576) vruntime(371941432) slice(2800000) deadline(374738899) curr?(1) task?(0)
[ 3627.248941][T52604] se: weight(1048576) vruntime(371940918) slice(2800000) deadline(374738905) curr?(1) task?(0)
[ 3627.260393][T52604] se: weight(1048576) vruntime(371945957) slice(2800000) deadline(374739388) curr?(1) task?(0)
[ 3627.271848][T52604] se: weight(1048576) vruntime(371946554) slice(2800000) deadline(374742387) curr?(1) task?(0)
[ 3627.283302][T52604] se: weight(1048576) vruntime(373121216) slice(2800000) deadline(374746324) curr?(1) task?(0)
[ 3627.294760][T52604] se: weight(1048576) vruntime(371953174) slice(2800000) deadline(374749138) curr?(1) task?(0)
[ 3627.306215][T52604] se: weight(1048576) vruntime(371953325) slice(2800000) deadline(374749530) curr?(1) task?(0)
[ 3627.317667][T52604] se: weight(1048576) vruntime(371956024) slice(2800000) deadline(374752259) curr?(1) task?(0)
[ 3627.329120][T52604] se: weight(1048576) vruntime(373077445) slice(2800000) deadline(374756263) curr?(1) task?(0)
[ 3627.340573][T52604] se: weight(1048576) vruntime(373133175) slice(2800000) deadline(374757702) curr?(1) task?(0)
[ 3627.352027][T52604] se: weight(1048576) vruntime(371962996) slice(2800000) deadline(374757818) curr?(1) task?(0)
[ 3627.363482][T52604] se: weight(1048576) vruntime(371967013) slice(2800000) deadline(374762116) curr?(1) task?(0)
[ 3627.374938][T52604] se: weight(1048576) vruntime(371966606) slice(2800000) deadline(374763281) curr?(1) task?(0)
[ 3627.386395][T52604] se: weight(1048576) vruntime(371967269) slice(2800000) deadline(374765056) curr?(1) task?(0)
[ 3627.397848][T52604] se: weight(1048576) vruntime(373108583) slice(2800000) deadline(374765758) curr?(1) task?(0)
[ 3627.409302][T52604] se: weight(1048576) vruntime(373143687) slice(2800000) deadline(374768284) curr?(1) task?(0)
[ 3627.420752][T52604] se: weight(1048576) vruntime(373158556) slice(2800000) deadline(374777915) curr?(1) task?(0)
[ 3627.432205][T52604] se: weight(1048576) vruntime(371984446) slice(2800000) deadline(374782032) curr?(1) task?(0)
[ 3627.443661][T52604] se: weight(1048576) vruntime(373142269) slice(2800000) deadline(374783531) curr?(1) task?(0)
[ 3627.455115][T52604] se: weight(1048576) vruntime(371988696) slice(2800000) deadline(374784349) curr?(1) task?(0)
[ 3627.466572][T52604] se: weight(1048576) vruntime(373138673) slice(2800000) deadline(374785343) curr?(1) task?(0)
[ 3627.478027][T52604] se: weight(1048576) vruntime(371992222) slice(2800000) deadline(374786453) curr?(1) task?(0)
[ 3627.489480][T52604] se: weight(1048576) vruntime(371991999) slice(2800000) deadline(374787763) curr?(1) task?(0)
[ 3627.500932][T52604] se: weight(1048576) vruntime(373169103) slice(2800000) deadline(374789303) curr?(1) task?(0)
[ 3627.512384][T52604] se: weight(1048576) vruntime(371997012) slice(2800000) deadline(374791473) curr?(1) task?(0)
[ 3627.523839][T52604] se: weight(1048576) vruntime(372000366) slice(2800000) deadline(374796560) curr?(1) task?(0)
[ 3627.535293][T52604] se: weight(1048576) vruntime(372001870) slice(2800000) deadline(374799777) curr?(1) task?(0)
[ 3627.546750][T52604] se: weight(1048576) vruntime(372003576) slice(2800000) deadline(374800061) curr?(1) task?(0)
[ 3627.558207][T52604] se: weight(1048576) vruntime(372014981) slice(2800000) deadline(374811155) curr?(1) task?(0)
[ 3627.569660][T52604] se: weight(1048576) vruntime(372016317) slice(2800000) deadline(374812532) curr?(1) task?(0)
[ 3627.581114][T52604] se: weight(1048576) vruntime(373167514) slice(2800000) deadline(374813413) curr?(1) task?(0)
[ 3627.592566][T52604] se: weight(1048576) vruntime(372024845) slice(2800000) deadline(374819106) curr?(1) task?(0)
[ 3627.604020][T52604] se: weight(1048576) vruntime(372029972) slice(2800000) deadline(374827168) curr?(1) task?(0)
[ 3627.615467][T52604] se: weight(1048576) vruntime(372030933) slice(2800000) deadline(374827307) curr?(1) task?(0)
[ 3627.626924][T52604] se: weight(1048576) vruntime(372034641) slice(2800000) deadline(374830535) curr?(1) task?(0)
[ 3627.638380][T52604] se: weight(1048576) vruntime(372040377) slice(2800000) deadline(374836451) curr?(1) task?(0)
[ 3627.649833][T52604] se: weight(1048576) vruntime(372048824) slice(2800000) deadline(374845048) curr?(1) task?(0)
[ 3627.661286][T52604] se: weight(1048576) vruntime(372054793) slice(2800000) deadline(374850196) curr?(1) task?(0)
[ 3627.672735][T52604] se: weight(1048576) vruntime(373165820) slice(2800000) deadline(374850277) curr?(1) task?(0)
[ 3627.684189][T52604] se: weight(1048576) vruntime(372056041) slice(2800000) deadline(374852066) curr?(1) task?(0)
[ 3627.695644][T52604] se: weight(1048576) vruntime(373162068) slice(2800000) deadline(374852764) curr?(1) task?(0)
[ 3627.707097][T52604] se: weight(1048576) vruntime(372063299) slice(2800000) deadline(374858241) curr?(1) task?(0)
[ 3627.718554][T52604] se: weight(1048576) vruntime(372060155) slice(2800000) deadline(374860155) curr?(1) task?(0)
[ 3627.730008][T52604] se: weight(1048576) vruntime(372081444) slice(2800000) deadline(374879310) curr?(1) task?(0)
[ 3627.741462][T52604] se: weight(1048576) vruntime(372083874) slice(2800000) deadline(374880229) curr?(1) task?(0)
[ 3627.752914][T52604] se: weight(1048576) vruntime(372092589) slice(2800000) deadline(374890036) curr?(1) task?(0)
[ 3627.764367][T52604] se: weight(1048576) vruntime(372097272) slice(2800000) deadline(374893476) curr?(1) task?(0)
[ 3627.775821][T52604] se: weight(1048576) vruntime(372098618) slice(2800000) deadline(374894843) curr?(1) task?(0)
[ 3627.787276][T52604] se: weight(1048576) vruntime(372095306) slice(2800000) deadline(374895306) curr?(1) task?(0)
[ 3627.798734][T52604] se: weight(1048576) vruntime(372103450) slice(2800000) deadline(374896700) curr?(1) task?(0)
[ 3627.810182][T52604] se: weight(1048576) vruntime(372102829) slice(2800000) deadline(374897030) curr?(1) task?(0)
[ 3627.821636][T52604] se: weight(1048576) vruntime(372102325) slice(2800000) deadline(374898249) curr?(1) task?(0)
[ 3627.833089][T52604] se: weight(1048576) vruntime(372105241) slice(2800000) deadline(374901366) curr?(1) task?(0)
[ 3627.844542][T52604] se: weight(1048576) vruntime(372103662) slice(2800000) deadline(374901708) curr?(1) task?(0)
[ 3627.855995][T52604] se: weight(1048576) vruntime(372110916) slice(2800000) deadline(374909234) curr?(1) task?(0)
[ 3627.867442][T52604] se: weight(1048576) vruntime(372115817) slice(2800000) deadline(374911861) curr?(1) task?(0)
[ 3627.878899][T52604] se: weight(1048576) vruntime(372118503) slice(2800000) deadline(374913826) curr?(1) task?(0)
[ 3627.890355][T52604] se: weight(1048576) vruntime(372120550) slice(2800000) deadline(374914200) curr?(1) task?(0)
[ 3627.901810][T52604] se: weight(1048576) vruntime(372117645) slice(2800000) deadline(374914230) curr?(1) task?(0)
[ 3627.913263][T52604] se: weight(1048576) vruntime(372128248) slice(2800000) deadline(374924403) curr?(1) task?(0)
[ 3627.924714][T52604] se: weight(1048576) vruntime(372132844) slice(2800000) deadline(374929228) curr?(1) task?(0)
[ 3627.936167][T52604] se: weight(1048576) vruntime(372138037) slice(2800000) deadline(374933330) curr?(1) task?(0)
[ 3627.947623][T52604] se: weight(1048576) vruntime(372139893) slice(2800000) deadline(374934214) curr?(1) task?(0)
[ 3627.959077][T52604] se: weight(1048576) vruntime(372141170) slice(2800000) deadline(374935462) curr?(1) task?(0)
[ 3627.970534][T52604] se: weight(1048576) vruntime(372141465) slice(2800000) deadline(374936718) curr?(1) task?(0)
[ 3627.981990][T52604] se: weight(1048576) vruntime(372144271) slice(2800000) deadline(374939324) curr?(1) task?(0)
[ 3627.993446][T52604] se: weight(1048576) vruntime(372143706) slice(2800000) deadline(374939860) curr?(1) task?(0)
[ 3628.004898][T52604] se: weight(1048576) vruntime(372148180) slice(2800000) deadline(374944394) curr?(1) task?(0)
[ 3628.016352][T52604] se: weight(1048576) vruntime(372155132) slice(2800000) deadline(374949924) curr?(1) task?(0)
[ 3628.027807][T52604] se: weight(1048576) vruntime(372156281) slice(2800000) deadline(374950362) curr?(1) task?(0)
[ 3628.039261][T52604] se: weight(1048576) vruntime(372154701) slice(2800000) deadline(374950635) curr?(1) task?(0)
[ 3628.050719][T52604] se: weight(1048576) vruntime(372155908) slice(2800000) deadline(374953615) curr?(1) task?(0)
[ 3628.062168][T52604] se: weight(1048576) vruntime(372161382) slice(2800000) deadline(374957416) curr?(1) task?(0)
[ 3628.073620][T52604] se: weight(1048576) vruntime(372162445) slice(2800000) deadline(374958479) curr?(1) task?(0)
[ 3628.085073][T52604] se: weight(1048576) vruntime(372162283) slice(2800000) deadline(374958597) curr?(1) task?(0)
[ 3628.096525][T52604] se: weight(1048576) vruntime(372166629) slice(2800000) deadline(374962602) curr?(1) task?(0)
[ 3628.107978][T52604] se: weight(1048576) vruntime(372170549) slice(2800000) deadline(374966893) curr?(1) task?(0)
[ 3628.119434][T52604] se: weight(1048576) vruntime(372172020) slice(2800000) deadline(374967544) curr?(1) task?(0)
[ 3628.130890][T52604] se: weight(1048576) vruntime(372174293) slice(2800000) deadline(374968314) curr?(1) task?(0)
[ 3628.142348][T52604] se: weight(1048576) vruntime(372173602) slice(2800000) deadline(374968695) curr?(1) task?(0)
[ 3628.153800][T52604] se: weight(1048576) vruntime(372174395) slice(2800000) deadline(374968827) curr?(1) task?(0)
[ 3628.165254][T52604] se: weight(1048576) vruntime(372173550) slice(2800000) deadline(374971558) curr?(1) task?(0)
[ 3628.176705][T52604] se: weight(1048576) vruntime(372176902) slice(2800000) deadline(374976902) curr?(1) task?(0)
[ 3628.188160][T52604] se: weight(1048576) vruntime(372181763) slice(2800000) deadline(374977045) curr?(1) task?(0)
[ 3628.199616][T52604] se: weight(1048576) vruntime(372182067) slice(2800000) deadline(374978061) curr?(1) task?(0)
[ 3628.211071][T52604] se: weight(1048576) vruntime(372184095) slice(2800000) deadline(374978807) curr?(1) task?(0)
[ 3628.222528][T52604] se: weight(1048576) vruntime(372182927) slice(2800000) deadline(374979592) curr?(1) task?(0)
[ 3628.233981][T52604] se: weight(1048576) vruntime(372184412) slice(2800000) deadline(374980226) curr?(1) task?(0)
[ 3628.245435][T52604] se: weight(1048576) vruntime(372182937) slice(2800000) deadline(374981134) curr?(1) task?(0)
[ 3628.256887][T52604] se: weight(1048576) vruntime(372191814) slice(2800000) deadline(374986936) curr?(1) task?(0)
[ 3628.268339][T52604] se: weight(1048576) vruntime(372195062) slice(2800000) deadline(374990786) curr?(1) task?(0)
[ 3628.279793][T52604] se: weight(1048576) vruntime(372200568) slice(2800000) deadline(374997244) curr?(1) task?(0)
[ 3628.291249][T52604] se: weight(1048576) vruntime(372200451) slice(2800000) deadline(374997276) curr?(1) task?(0)
[ 3628.302708][T52604] se: weight(1048576) vruntime(372201487) slice(2800000) deadline(374999304) curr?(1) task?(0)
[ 3628.314164][T52604] se: weight(1048576) vruntime(372203076) slice(2800000) deadline(375001414) curr?(1) task?(0)
[ 3628.325617][T52604] se: weight(1048576) vruntime(372206970) slice(2800000) deadline(375003124) curr?(1) task?(0)
[ 3628.337069][T52604] se: weight(1048576) vruntime(372208973) slice(2800000) deadline(375004917) curr?(1) task?(0)
[ 3628.348522][T52604] se: weight(1048576) vruntime(372209128) slice(2800000) deadline(375004932) curr?(1) task?(0)
[ 3628.359975][T52604] se: weight(1048576) vruntime(372210445) slice(2800000) deadline(375006690) curr?(1) task?(0)
[ 3628.371422][T52604] se: weight(1048576) vruntime(372211903) slice(2800000) deadline(375007877) curr?(1) task?(0)
[ 3628.382877][T52604] se: weight(1048576) vruntime(372214219) slice(2800000) deadline(375009342) curr?(1) task?(0)
[ 3628.394325][T52604] se: weight(1048576) vruntime(372214722) slice(2800000) deadline(375009504) curr?(1) task?(0)
[ 3628.405779][T52604] se: weight(1048576) vruntime(372212952) slice(2800000) deadline(375010087) curr?(1) task?(0)
[ 3628.417233][T52604] se: weight(1048576) vruntime(372216497) slice(2800000) deadline(375013863) curr?(1) task?(0)
[ 3628.428684][T52604] se: weight(1048576) vruntime(372219853) slice(2800000) deadline(375014665) curr?(1) task?(0)
[ 3628.440137][T52604] se: weight(1048576) vruntime(372218560) slice(2800000) deadline(375016006) curr?(1) task?(0)
[ 3628.451592][T52604] se: weight(1048576) vruntime(372219704) slice(2800000) deadline(375017241) curr?(1) task?(0)
[ 3628.463046][T52604] se: weight(1048576) vruntime(372231572) slice(2800000) deadline(375020876) curr?(1) task?(0)
[ 3628.474504][T52604] se: weight(1048576) vruntime(372223738) slice(2800000) deadline(375021916) curr?(1) task?(0)
[ 3628.485958][T52604] se: weight(1048576) vruntime(372224575) slice(2800000) deadline(375022172) curr?(1) task?(0)
[ 3628.497412][T52604] se: weight(1048576) vruntime(372225610) slice(2800000) deadline(375022536) curr?(1) task?(0)
[ 3628.508863][T52604] se: weight(1048576) vruntime(372225845) slice(2800000) deadline(375023892) curr?(1) task?(0)
[ 3628.520315][T52604] se: weight(1048576) vruntime(372229970) slice(2800000) deadline(375026404) curr?(1) task?(0)
[ 3628.531771][T52604] se: weight(1048576) vruntime(372231764) slice(2800000) deadline(375028329) curr?(1) task?(0)
[ 3628.543225][T52604] se: weight(1048576) vruntime(372231404) slice(2800000) deadline(375028930) curr?(1) task?(0)
[ 3628.554673][T52604] se: weight(1048576) vruntime(372233708) slice(2800000) deadline(375028961) curr?(1) task?(0)
[ 3628.566128][T52604] se: weight(1048576) vruntime(372236187) slice(2800000) deadline(375030267) curr?(1) task?(0)
[ 3628.577581][T52604] se: weight(1048576) vruntime(372235920) slice(2800000) deadline(375031493) curr?(1) task?(0)
[ 3628.589034][T52604] se: weight(1048576) vruntime(372236281) slice(2800000) deadline(375032254) curr?(1) task?(0)
[ 3628.600487][T52604] se: weight(1048576) vruntime(372235237) slice(2800000) deadline(375032934) curr?(1) task?(0)
[ 3628.611941][T52604] se: weight(1048576) vruntime(372237747) slice(2800000) deadline(375033681) curr?(1) task?(0)
[ 3628.623397][T52604] se: weight(1048576) vruntime(372236897) slice(2800000) deadline(375035104) curr?(1) task?(0)
[ 3628.634854][T52604] se: weight(1048576) vruntime(372240749) slice(2800000) deadline(375036493) curr?(1) task?(0)
[ 3628.646311][T52604] se: weight(1048576) vruntime(372239489) slice(2800000) deadline(375036614) curr?(1) task?(0)
[ 3628.657763][T52604] se: weight(1048576) vruntime(372240778) slice(2800000) deadline(375038545) curr?(1) task?(0)
[ 3628.669218][T52604] se: weight(1048576) vruntime(372244521) slice(2800000) deadline(375038652) curr?(1) task?(0)
[ 3628.680668][T52604] se: weight(1048576) vruntime(372243942) slice(2800000) deadline(375042159) curr?(1) task?(0)
[ 3628.692121][T52604] se: weight(1048576) vruntime(372247231) slice(2800000) deadline(375043326) curr?(1) task?(0)
[ 3628.703578][T52604] se: weight(1048576) vruntime(372252222) slice(2800000) deadline(375044520) curr?(1) task?(0)
[ 3628.715032][T52604] se: weight(1048576) vruntime(372246381) slice(2800000) deadline(375046381) curr?(1) task?(0)
[ 3628.726490][T52604] se: weight(1048576) vruntime(372251699) slice(2800000) deadline(375047723) curr?(1) task?(0)
[ 3628.737945][T52604] se: weight(1048576) vruntime(372252672) slice(2800000) deadline(375049647) curr?(1) task?(0)
[ 3628.749390][T52604] se: weight(1048576) vruntime(372255337) slice(2800000) deadline(375051251) curr?(1) task?(0)
[ 3628.760842][T52604] se: weight(1048576) vruntime(372251426) slice(2800000) deadline(375051426) curr?(1) task?(0)
[ 3628.772294][T52604] se: weight(1048576) vruntime(372254276) slice(2800000) deadline(375052373) curr?(1) task?(0)
[ 3628.783749][T52604] se: weight(1048576) vruntime(372256522) slice(2800000) deadline(375054890) curr?(1) task?(0)
[ 3628.795204][T52604] se: weight(1048576) vruntime(372266731) slice(2800000) deadline(375061082) curr?(1) task?(0)
[ 3628.806663][T52604] se: weight(1048576) vruntime(372264788) slice(2800000) deadline(375062625) curr?(1) task?(0)
[ 3628.818110][T52604] se: weight(1048576) vruntime(372266691) slice(2800000) deadline(375063587) curr?(1) task?(0)
[ 3628.829562][T52604] se: weight(1048576) vruntime(372270924) slice(2800000) deadline(375066878) curr?(1) task?(0)
[ 3628.841015][T52604] se: weight(1048576) vruntime(372271392) slice(2800000) deadline(375067276) curr?(1) task?(0)
[ 3628.852466][T52604] se: weight(1048576) vruntime(372274163) slice(2800000) deadline(375069456) curr?(1) task?(0)
[ 3628.863920][T52604] se: weight(1048576) vruntime(372275182) slice(2800000) deadline(375073239) curr?(1) task?(0)
[ 3628.875376][T52604] se: weight(1048576) vruntime(372273315) slice(2800000) deadline(375073315) curr?(1) task?(0)
[ 3628.886832][T52604] se: weight(1048576) vruntime(372283267) slice(2800000) deadline(375076197) curr?(1) task?(0)
[ 3628.898290][T52604] se: weight(1048576) vruntime(372278713) slice(2800000) deadline(375076640) curr?(1) task?(0)
[ 3628.909742][T52604] se: weight(1048576) vruntime(372279819) slice(2800000) deadline(375076975) curr?(1) task?(0)
[ 3628.921195][T52604] se: weight(1048576) vruntime(372286269) slice(2800000) deadline(375079919) curr?(1) task?(0)
[ 3628.932645][T52604] se: weight(1048576) vruntime(372284255) slice(2800000) deadline(375081631) curr?(1) task?(0)
[ 3628.944099][T52604] se: weight(1048576) vruntime(372288257) slice(2800000) deadline(375085453) curr?(1) task?(0)
[ 3628.955555][T52604] se: weight(1048576) vruntime(372291370) slice(2800000) deadline(375086062) curr?(1) task?(0)
[ 3628.967008][T52604] se: weight(1048576) vruntime(372289211) slice(2800000) deadline(375086607) curr?(1) task?(0)
[ 3628.978465][T52604] se: weight(1048576) vruntime(372290295) slice(2800000) deadline(375086639) curr?(1) task?(0)
[ 3628.989919][T52604] se: weight(1048576) vruntime(372293769) slice(2800000) deadline(375091375) curr?(1) task?(0)
[ 3629.001374][T52604] se: weight(1048576) vruntime(372298436) slice(2800000) deadline(375095061) curr?(1) task?(0)
[ 3629.012826][T52604] se: weight(1048576) vruntime(372301231) slice(2800000) deadline(375097946) curr?(1) task?(0)
[ 3629.024279][T52604] se: weight(1048576) vruntime(372300642) slice(2800000) deadline(375098548) curr?(1) task?(0)
[ 3629.035733][T52604] se: weight(1048576) vruntime(372305118) slice(2800000) deadline(375102374) curr?(1) task?(0)
[ 3629.047188][T52604] se: weight(1048576) vruntime(372307759) slice(2800000) deadline(375103502) curr?(1) task?(0)
[ 3629.058646][T52604] se: weight(1048576) vruntime(372311293) slice(2800000) deadline(375105053) curr?(1) task?(0)
[ 3629.070103][T52604] se: weight(1048576) vruntime(372313102) slice(2800000) deadline(375108765) curr?(1) task?(0)
[ 3629.081554][T52604] se: weight(1048576) vruntime(372313348) slice(2800000) deadline(375109392) curr?(1) task?(0)
[ 3629.093006][T52604] se: weight(1048576) vruntime(372313852) slice(2800000) deadline(375109936) curr?(1) task?(0)
[ 3629.104459][T52604] se: weight(1048576) vruntime(372315329) slice(2800000) deadline(375111494) curr?(1) task?(0)
[ 3629.115913][T52604] se: weight(1048576) vruntime(372324402) slice(2800000) deadline(375120286) curr?(1) task?(0)
[ 3629.127369][T52604] se: weight(1048576) vruntime(372324289) slice(2800000) deadline(375120393) curr?(1) task?(0)
[ 3629.138824][T52604] se: weight(1048576) vruntime(372329710) slice(2800000) deadline(375125754) curr?(1) task?(0)
[ 3629.150272][T52604] se: weight(1048576) vruntime(372329188) slice(2800000) deadline(375127005) curr?(1) task?(0)
[ 3629.161724][T52604] se: weight(1048576) vruntime(372333417) slice(2800000) deadline(375129291) curr?(1) task?(0)
[ 3629.173178][T52604] se: weight(1048576) vruntime(372335578) slice(2800000) deadline(375130550) curr?(1) task?(0)
[ 3629.184629][T52604] se: weight(1048576) vruntime(372338042) slice(2800000) deadline(375131282) curr?(1) task?(0)
[ 3629.196083][T52604] se: weight(1048576) vruntime(372336565) slice(2800000) deadline(375131788) curr?(1) task?(0)
[ 3629.207539][T52604] se: weight(1048576) vruntime(372338249) slice(2800000) deadline(375134153) curr?(1) task?(0)
[ 3629.218995][T52604] se: weight(1048576) vruntime(372339767) slice(2800000) deadline(375134439) curr?(1) task?(0)
[ 3629.230453][T52604] se: weight(1048576) vruntime(372344041) slice(2800000) deadline(375139724) curr?(1) task?(0)
[ 3629.241907][T52604] se: weight(1048576) vruntime(372345954) slice(2800000) deadline(375140966) curr?(1) task?(0)
[ 3629.253361][T52604] se: weight(1048576) vruntime(372346973) slice(2800000) deadline(375143218) curr?(1) task?(0)
[ 3629.264813][T52604] se: weight(1048576) vruntime(372350480) slice(2800000) deadline(375145453) curr?(1) task?(0)
[ 3629.276265][T52604] se: weight(1048576) vruntime(372349619) slice(2800000) deadline(375145563) curr?(1) task?(0)
[ 3629.287721][T52604] se: weight(1048576) vruntime(372349703) slice(2800000) deadline(375146428) curr?(1) task?(0)
[ 3629.299176][T52604] se: weight(1048576) vruntime(372354125) slice(2800000) deadline(375147886) curr?(1) task?(0)
[ 3629.310633][T52604] se: weight(1048576) vruntime(372356757) slice(2800000) deadline(375153212) curr?(1) task?(0)
[ 3629.322090][T52604] se: weight(1048576) vruntime(372356771) slice(2800000) deadline(375153566) curr?(1) task?(0)
[ 3629.333544][T52604] se: weight(1048576) vruntime(372358629) slice(2800000) deadline(375153631) curr?(1) task?(0)
[ 3629.344997][T52604] se: weight(1048576) vruntime(372357550) slice(2800000) deadline(375154986) curr?(1) task?(0)
[ 3629.356448][T52604] se: weight(1048576) vruntime(372358392) slice(2800000) deadline(375155949) curr?(1) task?(0)
[ 3629.367900][T52604] se: weight(1048576) vruntime(372360768) slice(2800000) deadline(375156832) curr?(1) task?(0)
[ 3629.379355][T52604] se: weight(1048576) vruntime(372362490) slice(2800000) deadline(375160096) curr?(1) task?(0)
[ 3629.390813][T52604] se: weight(1048576) vruntime(372361640) slice(2800000) deadline(375161640) curr?(1) task?(0)
[ 3629.402268][T52604] se: weight(1048576) vruntime(372363329) slice(2800000) deadline(375163329) curr?(1) task?(0)
[ 3629.413721][T52604] se: weight(1048576) vruntime(372370471) slice(2800000) deadline(375167466) curr?(1) task?(0)
[ 3629.425174][T52604] se: weight(1048576) vruntime(372375091) slice(2800000) deadline(375168371) curr?(1) task?(0)
[ 3629.436625][T52604] se: weight(1048576) vruntime(372374971) slice(2800000) deadline(375169572) curr?(1) task?(0)
[ 3629.448078][T52604] se: weight(1048576) vruntime(372371028) slice(2800000) deadline(375171028) curr?(1) task?(0)
[ 3629.459535][T52604] se: weight(1048576) vruntime(372378483) slice(2800000) deadline(375174236) curr?(1) task?(0)
[ 3629.470991][T52604] se: weight(1048576) vruntime(372378542) slice(2800000) deadline(375174656) curr?(1) task?(0)
[ 3629.482449][T52604] se: weight(1048576) vruntime(372378982) slice(2800000) deadline(375174775) curr?(1) task?(0)
[ 3629.493903][T52604] se: weight(1048576) vruntime(372380253) slice(2800000) deadline(375175045) curr?(1) task?(0)
[ 3629.505358][T52604] se: weight(1048576) vruntime(372379586) slice(2800000) deadline(375175109) curr?(1) task?(0)
[ 3629.516809][T52604] se: weight(1048576) vruntime(372381391) slice(2800000) deadline(375176183) curr?(1) task?(0)
[ 3629.528261][T52604] se: weight(1048576) vruntime(372380825) slice(2800000) deadline(375177469) curr?(1) task?(0)
[ 3629.539709][T52604] se: weight(1048576) vruntime(372384394) slice(2800000) deadline(375182171) curr?(1) task?(0)
[ 3629.551163][T52604] se: weight(1048576) vruntime(372384832) slice(2800000) deadline(375182408) curr?(1) task?(0)
[ 3629.562612][T52604] se: weight(1048576) vruntime(372383260) slice(2800000) deadline(375183260) curr?(1) task?(0)
[ 3629.574067][T52604] se: weight(1048576) vruntime(372386783) slice(2800000) deadline(375184500) curr?(1) task?(0)
[ 3629.585519][T52604] se: weight(1048576) vruntime(372388513) slice(2800000) deadline(375185238) curr?(1) task?(0)
[ 3629.596974][T52604] se: weight(1048576) vruntime(372396369) slice(2800000) deadline(375194336) curr?(1) task?(0)
[ 3629.608425][T52604] se: weight(1048576) vruntime(372400050) slice(2800000) deadline(375198077) curr?(1) task?(0)
[ 3629.619878][T52604] se: weight(1048576) vruntime(372403353) slice(2800000) deadline(375199147) curr?(1) task?(0)
[ 3629.631333][T52604] se: weight(1048576) vruntime(372406100) slice(2800000) deadline(375200972) curr?(1) task?(0)
[ 3629.642789][T52604] se: weight(1048576) vruntime(372403206) slice(2800000) deadline(375200973) curr?(1) task?(0)
[ 3629.654245][T52604] se: weight(1048576) vruntime(372408608) slice(2800000) deadline(375204742) curr?(1) task?(0)
[ 3629.665698][T52604] se: weight(1048576) vruntime(372410620) slice(2800000) deadline(375206564) curr?(1) task?(0)
[ 3629.677152][T52604] se: weight(1048576) vruntime(372412031) slice(2800000) deadline(375208246) curr?(1) task?(0)
[ 3629.688603][T52604] se: weight(1048576) vruntime(372416147) slice(2800000) deadline(375210779) curr?(1) task?(0)
[ 3629.700057][T52604] se: weight(1048576) vruntime(372417770) slice(2800000) deadline(375211731) curr?(1) task?(0)
[ 3629.711512][T52604] se: weight(1048576) vruntime(372414440) slice(2800000) deadline(375212747) curr?(1) task?(0)
[ 3629.722966][T52604] se: weight(1048576) vruntime(372417540) slice(2800000) deadline(375215526) curr?(1) task?(0)
[ 3629.734423][T52604] se: weight(1048576) vruntime(372424907) slice(2800000) deadline(375220160) curr?(1) task?(0)
[ 3629.745879][T52604] se: weight(1048576) vruntime(372425025) slice(2800000) deadline(375221821) curr?(1) task?(0)
[ 3629.757332][T52604] se: weight(1048576) vruntime(372426679) slice(2800000) deadline(375222773) curr?(1) task?(0)
[ 3629.768783][T52604] se: weight(1048576) vruntime(372430037) slice(2800000) deadline(375225010) curr?(1) task?(0)
[ 3629.780237][T52604] se: weight(1048576) vruntime(372429414) slice(2800000) deadline(375225718) curr?(1) task?(0)
[ 3629.791683][T52604] se: weight(1048576) vruntime(372430797) slice(2800000) deadline(375226700) curr?(1) task?(0)
[ 3629.803137][T52604] se: weight(1048576) vruntime(372433263) slice(2800000) deadline(375229377) curr?(1) task?(0)
[ 3629.814595][T52604] se: weight(1048576) vruntime(372436816) slice(2800000) deadline(375232340) curr?(1) task?(0)
[ 3629.826050][T52604] se: weight(1048576) vruntime(372439017) slice(2800000) deadline(375233148) curr?(1) task?(0)
[ 3629.837504][T52604] se: weight(1048576) vruntime(372439893) slice(2800000) deadline(375238070) curr?(1) task?(0)
[ 3629.848956][T52604] se: weight(1048576) vruntime(372445558) slice(2800000) deadline(375239920) curr?(1) task?(0)
[ 3629.860407][T52604] se: weight(1048576) vruntime(372449158) slice(2800000) deadline(375244922) curr?(1) task?(0)
[ 3629.871861][T52604] se: weight(1048576) vruntime(372449714) slice(2800000) deadline(375246710) curr?(1) task?(0)
[ 3629.883317][T52604] se: weight(1048576) vruntime(372450154) slice(2800000) deadline(375248010) curr?(1) task?(0)
[ 3629.894773][T52604] se: weight(1048576) vruntime(372453092) slice(2800000) deadline(375249556) curr?(1) task?(0)
[ 3629.906230][T52604] se: weight(1048576) vruntime(372461959) slice(2800000) deadline(375258013) curr?(1) task?(0)
[ 3629.917683][T52604] se: weight(1048576) vruntime(372462514) slice(2800000) deadline(375259249) curr?(1) task?(0)
[ 3629.929136][T52604] se: weight(1048576) vruntime(372463606) slice(2800000) deadline(375259410) curr?(1) task?(0)
[ 3629.940585][T52604] se: weight(1048576) vruntime(372463276) slice(2800000) deadline(375261523) curr?(1) task?(0)
[ 3629.952038][T52604] se: weight(1048576) vruntime(372468590) slice(2800000) deadline(375263763) curr?(1) task?(0)
[ 3629.963493][T52604] se: weight(1048576) vruntime(372466519) slice(2800000) deadline(375263915) curr?(1) task?(0)
[ 3629.974947][T52604] se: weight(1048576) vruntime(372468787) slice(2800000) deadline(375265682) curr?(1) task?(0)
[ 3629.986405][T52604] se: weight(1048576) vruntime(372471232) slice(2800000) deadline(375267257) curr?(1) task?(0)
[ 3629.997860][T52604] se: weight(1048576) vruntime(372471009) slice(2800000) deadline(375268986) curr?(1) task?(0)
[ 3630.009305][T52604] se: weight(1048576) vruntime(372473058) slice(2800000) deadline(375271255) curr?(1) task?(0)
[ 3630.020755][T52604] se: weight(1048576) vruntime(372476539) slice(2800000) deadline(375274105) curr?(1) task?(0)
[ 3630.032208][T52604] se: weight(1048576) vruntime(372479303) slice(2800000) deadline(375277520) curr?(1) task?(0)
[ 3630.043664][T52604] se: weight(1048576) vruntime(372482424) slice(2800000) deadline(375278708) curr?(1) task?(0)
[ 3630.055119][T52604] se: weight(1048576) vruntime(372485788) slice(2800000) deadline(375283014) curr?(1) task?(0)
[ 3630.066577][T52604] se: weight(1048576) vruntime(372487019) slice(2800000) deadline(375283854) curr?(1) task?(0)
[ 3630.078027][T52604] se: weight(1048576) vruntime(372495978) slice(2800000) deadline(375293665) curr?(1) task?(0)
[ 3630.089481][T52604] se: weight(1048576) vruntime(372497347) slice(2800000) deadline(375295124) curr?(1) task?(0)
[ 3630.100935][T52604] se: weight(1048576) vruntime(372500482) slice(2800000) deadline(375297598) curr?(1) task?(0)
[ 3630.112387][T52604] se: weight(1048576) vruntime(372503639) slice(2800000) deadline(375301846) curr?(1) task?(0)
[ 3630.123840][T52604] se: weight(1048576) vruntime(372506929) slice(2800000) deadline(375302152) curr?(1) task?(0)
[ 3630.135287][T52604] se: weight(1048576) vruntime(372510746) slice(2800000) deadline(375306971) curr?(1) task?(0)
[ 3630.146742][T52604] se: weight(1048576) vruntime(372511357) slice(2800000) deadline(375307161) curr?(1) task?(0)
[ 3630.158198][T52604] se: weight(1048576) vruntime(372520556) slice(2800000) deadline(375317201) curr?(1) task?(0)
[ 3630.169651][T52604] se: weight(1048576) vruntime(372523398) slice(2800000) deadline(375317309) curr?(1) task?(0)
[ 3630.181105][T52604] se: weight(1048576) vruntime(372525154) slice(2800000) deadline(375323040) curr?(1) task?(0)
[ 3630.192556][T52604] se: weight(1048576) vruntime(372531207) slice(2800000) deadline(375327541) curr?(1) task?(0)
[ 3630.204010][T52604] se: weight(1048576) vruntime(372537131) slice(2800000) deadline(375333556) curr?(1) task?(0)
[ 3630.215465][T52604] se: weight(1048576) vruntime(372554696) slice(2800000) deadline(375349338) curr?(1) task?(0)
[ 3630.226920][T52604] se: weight(1048576) vruntime(372555560) slice(2800000) deadline(375350853) curr?(1) task?(0)
[ 3630.238377][T52604] se: weight(1048576) vruntime(372563467) slice(2800000) deadline(375359181) curr?(1) task?(0)
[ 3630.249831][T52604] se: weight(1048576) vruntime(372569003) slice(2800000) deadline(375363675) curr?(1) task?(0)
[ 3630.261286][T52604] se: weight(1048576) vruntime(372570679) slice(2800000) deadline(375369037) curr?(1) task?(0)
[ 3630.272738][T52604] se: weight(1048576) vruntime(372571911) slice(2800000) deadline(375370038) curr?(1) task?(0)
[ 3630.284190][T52604] se: weight(1048576) vruntime(372574690) slice(2800000) deadline(375370474) curr?(1) task?(0)
[ 3630.295643][T52604] se: weight(1048576) vruntime(372577541) slice(2800000) deadline(375373735) curr?(1) task?(0)
[ 3630.307098][T52604] se: weight(1048576) vruntime(372579763) slice(2800000) deadline(375375346) curr?(1) task?(0)
[ 3630.318555][T52604] se: weight(1048576) vruntime(372582376) slice(2800000) deadline(375375867) curr?(1) task?(0)
[ 3630.330010][T52604] se: weight(1048576) vruntime(372576015) slice(2800000) deadline(375376015) curr?(1) task?(0)
[ 3630.341463][T52604] se: weight(1048576) vruntime(372579240) slice(2800000) deadline(375377457) curr?(1) task?(0)
[ 3630.352915][T52604] se: weight(1048576) vruntime(372582224) slice(2800000) deadline(375378558) curr?(1) task?(0)
[ 3630.364367][T52604] se: weight(1048576) vruntime(372583209) slice(2800000) deadline(375379643) curr?(1) task?(0)
[ 3630.375819][T52604] se: weight(1048576) vruntime(372585526) slice(2800000) deadline(375381019) curr?(1) task?(0)
[ 3630.387275][T52604] se: weight(1048576) vruntime(372587407) slice(2800000) deadline(375384552) curr?(1) task?(0)
[ 3630.398731][T52604] se: weight(1048576) vruntime(372588744) slice(2800000) deadline(375384918) curr?(1) task?(0)
[ 3630.410187][T52604] se: weight(1048576) vruntime(372592811) slice(2800000) deadline(375388815) curr?(1) task?(0)
[ 3630.421641][T52604] se: weight(1048576) vruntime(372591223) slice(2800000) deadline(375388969) curr?(1) task?(0)
[ 3630.433095][T52604] se: weight(1048576) vruntime(372595144) slice(2800000) deadline(375389346) curr?(1) task?(0)
[ 3630.444546][T52604] se: weight(1048576) vruntime(372593617) slice(2800000) deadline(375391214) curr?(1) task?(0)
[ 3630.456000][T52604] se: weight(1048576) vruntime(372598627) slice(2800000) deadline(375393439) curr?(1) task?(0)
[ 3630.467456][T52604] se: weight(1048576) vruntime(372598886) slice(2800000) deadline(375394890) curr?(1) task?(0)
[ 3630.478910][T52604] se: weight(1048576) vruntime(372602885) slice(2800000) deadline(375399730) curr?(1) task?(0)
[ 3630.490367][T52604] se: weight(1048576) vruntime(372601836) slice(2800000) deadline(375399753) curr?(1) task?(0)
[ 3630.501821][T52604] se: weight(1048576) vruntime(372605421) slice(2800000) deadline(375402957) curr?(1) task?(0)
[ 3630.513275][T52604] se: weight(1048576) vruntime(372607213) slice(2800000) deadline(375403848) curr?(1) task?(0)
[ 3630.524727][T52604] se: weight(1048576) vruntime(372608664) slice(2800000) deadline(375405068) curr?(1) task?(0)
[ 3630.536180][T52604] se: weight(1048576) vruntime(372609463) slice(2800000) deadline(375407320) curr?(1) task?(0)
[ 3630.547626][T52604] se: weight(1048576) vruntime(372611283) slice(2800000) deadline(375408439) curr?(1) task?(0)
[ 3630.559082][T52604] se: weight(1048576) vruntime(372615488) slice(2800000) deadline(375412764) curr?(1) task?(0)
[ 3630.570540][T52604] se: weight(1048576) vruntime(372618046) slice(2800000) deadline(375416003) curr?(1) task?(0)
[ 3630.581997][T52604] se: weight(1048576) vruntime(372627335) slice(2800000) deadline(375421666) curr?(1) task?(0)
[ 3630.593448][T52604] se: weight(1048576) vruntime(372626267) slice(2800000) deadline(375423873) curr?(1) task?(0)
[ 3630.604901][T52604] se: weight(1048576) vruntime(372627733) slice(2800000) deadline(375424018) curr?(1) task?(0)
[ 3630.616354][T52604] se: weight(1048576) vruntime(372630713) slice(2800000) deadline(375428400) curr?(1) task?(0)
[ 3630.627808][T52604] se: weight(1048576) vruntime(372639178) slice(2800000) deadline(375436264) curr?(1) task?(0)
[ 3630.639264][T52604] se: weight(1048576) vruntime(372642294) slice(2800000) deadline(375438819) curr?(1) task?(0)
[ 3630.650721][T52604] se: weight(1048576) vruntime(372644981) slice(2800000) deadline(375441866) curr?(1) task?(0)
[ 3630.662177][T52604] se: weight(1048576) vruntime(372646365) slice(2800000) deadline(375441959) curr?(1) task?(0)
[ 3630.673631][T52604] se: weight(1048576) vruntime(372652641) slice(2800000) deadline(375450037) curr?(1) task?(0)
[ 3630.685086][T52604] se: weight(1048576) vruntime(372660132) slice(2800000) deadline(375456727) curr?(1) task?(0)
[ 3630.696537][T52604] se: weight(1048576) vruntime(372663408) slice(2800000) deadline(375460393) curr?(1) task?(0)
[ 3630.707990][T52604] se: weight(1048576) vruntime(372662800) slice(2800000) deadline(375460487) curr?(1) task?(0)
[ 3630.719445][T52604] se: weight(1048576) vruntime(372666384) slice(2800000) deadline(375464011) curr?(1) task?(0)
[ 3630.730900][T52604] se: weight(1048576) vruntime(372667098) slice(2800000) deadline(375464084) curr?(1) task?(0)
[ 3630.742358][T52604] se: weight(1048576) vruntime(372665836) slice(2800000) deadline(375465836) curr?(1) task?(0)
[ 3630.753813][T52604] se: weight(1048576) vruntime(372669104) slice(2800000) deadline(375466320) curr?(1) task?(0)
[ 3630.765267][T52604] se: weight(1048576) vruntime(372668610) slice(2800000) deadline(375466426) curr?(1) task?(0)
[ 3630.776717][T52604] se: weight(1048576) vruntime(372671554) slice(2800000) deadline(375468359) curr?(1) task?(0)
[ 3630.788169][T52604] se: weight(1048576) vruntime(372673697) slice(2800000) deadline(375470212) curr?(1) task?(0)
[ 3630.799624][T52604] se: weight(1048576) vruntime(372673990) slice(2800000) deadline(375470355) curr?(1) task?(0)
[ 3630.811078][T52604] se: weight(1048576) vruntime(372676956) slice(2800000) deadline(375473852) curr?(1) task?(0)
[ 3630.822537][T52604] se: weight(1048576) vruntime(372676239) slice(2800000) deadline(375474256) curr?(1) task?(0)
[ 3630.833985][T52604] se: weight(1048576) vruntime(372684044) slice(2800000) deadline(375479618) curr?(1) task?(0)
[ 3630.845439][T52604] se: weight(1048576) vruntime(372680289) slice(2800000) deadline(375480289) curr?(1) task?(0)
[ 3630.856891][T52604] se: weight(1048576) vruntime(372683548) slice(2800000) deadline(375480794) curr?(1) task?(0)
[ 3630.868343][T52604] se: weight(1048576) vruntime(372683128) slice(2800000) deadline(375483128) curr?(1) task?(0)
[ 3630.879796][T52604] se: weight(1048576) vruntime(372685450) slice(2800000) deadline(375483337) curr?(1) task?(0)
[ 3630.891243][T52604] se: weight(1048576) vruntime(372686748) slice(2800000) deadline(375484715) curr?(1) task?(0)
[ 3630.902701][T52604] se: weight(1048576) vruntime(372697600) slice(2800000) deadline(375495506) curr?(1) task?(0)
[ 3630.914156][T52604] se: weight(1048576) vruntime(372699810) slice(2800000) deadline(375496145) curr?(1) task?(0)
[ 3630.925610][T52604] se: weight(1048576) vruntime(372700754) slice(2800000) deadline(375496478) curr?(1) task?(0)
[ 3630.937064][T52604] se: weight(1048576) vruntime(372701096) slice(2800000) deadline(375496569) curr?(1) task?(0)
[ 3630.948514][T52604] se: weight(1048576) vruntime(372699250) slice(2800000) deadline(375496586) curr?(1) task?(0)
[ 3630.959968][T52604] se: weight(1048576) vruntime(372700836) slice(2800000) deadline(375497661) curr?(1) task?(0)
[ 3630.971424][T52604] se: weight(1048576) vruntime(372701633) slice(2800000) deadline(375498759) curr?(1) task?(0)
[ 3630.982877][T52604] se: weight(1048576) vruntime(372704012) slice(2800000) deadline(375501138) curr?(1) task?(0)
[ 3630.994334][T52604] se: weight(1048576) vruntime(372706921) slice(2800000) deadline(375501653) curr?(1) task?(0)
[ 3631.005789][T52604] se: weight(1048576) vruntime(372704459) slice(2800000) deadline(375504459) curr?(1) task?(0)
[ 3631.017243][T52604] se: weight(1048576) vruntime(372710844) slice(2800000) deadline(375507549) curr?(1) task?(0)
[ 3631.028695][T52604] se: weight(1048576) vruntime(372713203) slice(2800000) deadline(375508456) curr?(1) task?(0)
[ 3631.040147][T52604] se: weight(1048576) vruntime(372713951) slice(2800000) deadline(375508503) curr?(1) task?(0)
[ 3631.051603][T52604] se: weight(1048576) vruntime(372711253) slice(2800000) deadline(375508609) curr?(1) task?(0)
[ 3631.063058][T52604] se: weight(1048576) vruntime(372714952) slice(2800000) deadline(375509774) curr?(1) task?(0)
[ 3631.074517][T52604] se: weight(1048576) vruntime(372713451) slice(2800000) deadline(375511518) curr?(1) task?(0)
[ 3631.085974][T52604] se: weight(1048576) vruntime(372714449) slice(2800000) deadline(375514449) curr?(1) task?(0)
[ 3631.097428][T52604] se: weight(1048576) vruntime(372719308) slice(2800000) deadline(375515272) curr?(1) task?(0)
[ 3631.108881][T52604] se: weight(1048576) vruntime(372716267) slice(2800000) deadline(375516267) curr?(1) task?(0)
[ 3631.120333][T52604] se: weight(1048576) vruntime(372718972) slice(2800000) deadline(375517149) curr?(1) task?(0)
[ 3631.131786][T52604] se: weight(1048576) vruntime(372722820) slice(2800000) deadline(375517672) curr?(1) task?(0)
[ 3631.143233][T52604] se: weight(1048576) vruntime(372723599) slice(2800000) deadline(375519453) curr?(1) task?(0)
[ 3631.154689][T52604] se: weight(1048576) vruntime(372722409) slice(2800000) deadline(375519855) curr?(1) task?(0)
[ 3631.166136][T52604] se: weight(1048576) vruntime(372723909) slice(2800000) deadline(375520173) curr?(1) task?(0)
[ 3631.177591][T52604] se: weight(1048576) vruntime(372722971) slice(2800000) deadline(375520267) curr?(1) task?(0)
[ 3631.189045][T52604] se: weight(1048576) vruntime(372724595) slice(2800000) deadline(375520449) curr?(1) task?(0)
[ 3631.200495][T52604] se: weight(1048576) vruntime(372730328) slice(2800000) deadline(375524049) curr?(1) task?(0)
[ 3631.211949][T52604] se: weight(1048576) vruntime(372728891) slice(2800000) deadline(375526468) curr?(1) task?(0)
[ 3631.223406][T52604] se: weight(1048576) vruntime(372732088) slice(2800000) deadline(375526920) curr?(1) task?(0)
[ 3631.234860][T52604] se: weight(1048576) vruntime(372730654) slice(2800000) deadline(375527389) curr?(1) task?(0)
[ 3631.246316][T52604] se: weight(1048576) vruntime(372737114) slice(2800000) deadline(375530444) curr?(1) task?(0)
[ 3631.257772][T52604] se: weight(1048576) vruntime(372735211) slice(2800000) deadline(375532036) curr?(1) task?(0)
[ 3631.269226][T52604] se: weight(1048576) vruntime(372737113) slice(2800000) deadline(375532857) curr?(1) task?(0)
[ 3631.280677][T52604] se: weight(1048576) vruntime(372737141) slice(2800000) deadline(375533175) curr?(1) task?(0)
[ 3631.292130][T52604] se: weight(1048576) vruntime(372740653) slice(2800000) deadline(375536727) curr?(1) task?(0)
[ 3631.303584][T52604] se: weight(1048576) vruntime(372743768) slice(2800000) deadline(375539992) curr?(1) task?(0)
[ 3631.315037][T52604] se: weight(1048576) vruntime(372745812) slice(2800000) deadline(375541265) curr?(1) task?(0)
[ 3631.326494][T52604] se: weight(1048576) vruntime(372748028) slice(2800000) deadline(375541989) curr?(1) task?(0)
[ 3631.337950][T52604] se: weight(1048576) vruntime(372749213) slice(2800000) deadline(375545137) curr?(1) task?(0)
[ 3631.349402][T52604] se: weight(1048576) vruntime(372752255) slice(2800000) deadline(375547879) curr?(1) task?(0)
[ 3631.360856][T52604] se: weight(1048576) vruntime(372754412) slice(2800000) deadline(375552659) curr?(1) task?(0)
[ 3631.372308][T52604] se: weight(1048576) vruntime(372763408) slice(2800000) deadline(375558661) curr?(1) task?(0)
[ 3631.383761][T52604] se: weight(1048576) vruntime(372764679) slice(2800000) deadline(375560503) curr?(1) task?(0)
[ 3631.395218][T52604] se: weight(1048576) vruntime(372764954) slice(2800000) deadline(375560767) curr?(1) task?(0)
[ 3631.406673][T52604] se: weight(1048576) vruntime(372765024) slice(2800000) deadline(375560958) curr?(1) task?(0)
[ 3631.418129][T52604] se: weight(1048576) vruntime(372769457) slice(2800000) deadline(375564710) curr?(1) task?(0)
[ 3631.429584][T52604] se: weight(1048576) vruntime(372767524) slice(2800000) deadline(375565000) curr?(1) task?(0)
[ 3631.441038][T52604] se: weight(1048576) vruntime(372772078) slice(2800000) deadline(375565769) curr?(1) task?(0)
[ 3631.452489][T52604] se: weight(1048576) vruntime(372767998) slice(2800000) deadline(375567998) curr?(1) task?(0)
[ 3631.463942][T52604] se: weight(1048576) vruntime(372773243) slice(2800000) deadline(375568806) curr?(1) task?(0)
[ 3631.475398][T52604] se: weight(1048576) vruntime(372774460) slice(2800000) deadline(375570024) curr?(1) task?(0)
[ 3631.486852][T52604] se: weight(1048576) vruntime(372773797) slice(2800000) deadline(375570712) curr?(1) task?(0)
[ 3631.498309][T52604] se: weight(1048576) vruntime(372776671) slice(2800000) deadline(375572234) curr?(1) task?(0)
[ 3631.509764][T52604] se: weight(1048576) vruntime(372780480) slice(2800000) deadline(375576815) curr?(1) task?(0)
[ 3631.521211][T52604] se: weight(1048576) vruntime(372780853) slice(2800000) deadline(375577799) curr?(1) task?(0)
[ 3631.532663][T52604] se: weight(1048576) vruntime(372781616) slice(2800000) deadline(375579482) curr?(1) task?(0)
[ 3631.544116][T52604] se: weight(1048576) vruntime(372783568) slice(2800000) deadline(375579532) curr?(1) task?(0)
[ 3631.555570][T52604] se: weight(1048576) vruntime(372785551) slice(2800000) deadline(375580463) curr?(1) task?(0)
[ 3631.567026][T52604] se: weight(1048576) vruntime(372786546) slice(2800000) deadline(375582980) curr?(1) task?(0)
[ 3631.578484][T52604] se: weight(1048576) vruntime(372789394) slice(2800000) deadline(375585718) curr?(1) task?(0)
[ 3631.589939][T52604] se: weight(1048576) vruntime(372793517) slice(2800000) deadline(375587888) curr?(1) task?(0)
[ 3631.601391][T52604] se: weight(1048576) vruntime(372804177) slice(2800000) deadline(375589375) curr?(1) task?(0)
[ 3631.612846][T52604] se: weight(1048576) vruntime(372791748) slice(2800000) deadline(375591748) curr?(1) task?(0)
[ 3631.624299][T52604] se: weight(1048576) vruntime(372795409) slice(2800000) deadline(375593677) curr?(1) task?(0)
[ 3631.635752][T52604] se: weight(1048576) vruntime(372798337) slice(2800000) deadline(375596234) curr?(1) task?(0)
[ 3631.647199][T52604] se: weight(1048576) vruntime(372800462) slice(2800000) deadline(375596316) curr?(1) task?(0)
[ 3631.658656][T52604] se: weight(1048576) vruntime(372799280) slice(2800000) deadline(375596787) curr?(1) task?(0)
[ 3631.670111][T52604] se: weight(1048576) vruntime(372801211) slice(2800000) deadline(375596884) curr?(1) task?(0)
[ 3631.681565][T52604] se: weight(1048576) vruntime(372802374) slice(2800000) deadline(375598338) curr?(1) task?(0)
[ 3631.693018][T52604] se: weight(1048576) vruntime(372806878) slice(2800000) deadline(375600489) curr?(1) task?(0)
[ 3631.704468][T52604] se: weight(1048576) vruntime(372806462) slice(2800000) deadline(375601364) curr?(1) task?(0)
[ 3631.715922][T52604] se: weight(1048576) vruntime(372807825) slice(2800000) deadline(375604009) curr?(1) task?(0)
[ 3631.727377][T52604] se: weight(1048576) vruntime(372807627) slice(2800000) deadline(375604021) curr?(1) task?(0)
[ 3631.738831][T52604] se: weight(1048576) vruntime(372810892) slice(2800000) deadline(375607246) curr?(1) task?(0)
[ 3631.750288][T52604] se: weight(1048576) vruntime(372814407) slice(2800000) deadline(375609119) curr?(1) task?(0)
[ 3631.761743][T52604] se: weight(1048576) vruntime(372814790) slice(2800000) deadline(375609172) curr?(1) task?(0)
[ 3631.773198][T52604] se: weight(1048576) vruntime(372815154) slice(2800000) deadline(375611168) curr?(1) task?(0)
[ 3631.784650][T52604] se: weight(1048576) vruntime(372816047) slice(2800000) deadline(375611260) curr?(1) task?(0)
[ 3631.796102][T52604] se: weight(1048576) vruntime(372815734) slice(2800000) deadline(375613110) curr?(1) task?(0)
[ 3631.807557][T52604] se: weight(1048576) vruntime(372822208) slice(2800000) deadline(375618563) curr?(1) task?(0)
[ 3631.819013][T52604] se: weight(1048576) vruntime(372823809) slice(2800000) deadline(375619763) curr?(1) task?(0)
[ 3631.830471][T52604] se: weight(1048576) vruntime(372823681) slice(2800000) deadline(375620036) curr?(1) task?(0)
[ 3631.841928][T52604] se: weight(1048576) vruntime(372823090) slice(2800000) deadline(375621358) curr?(1) task?(0)
[ 3631.853380][T52604] se: weight(1048576) vruntime(372824218) slice(2800000) deadline(375621895) curr?(1) task?(0)
[ 3631.864834][T52604] se: weight(1048576) vruntime(372827596) slice(2800000) deadline(375623650) curr?(1) task?(0)
[ 3631.876285][T52604] se: weight(1048576) vruntime(372831123) slice(2800000) deadline(375626286) curr?(1) task?(0)
[ 3631.887738][T52604] se: weight(1048576) vruntime(372831553) slice(2800000) deadline(375627457) curr?(1) task?(0)
[ 3631.899195][T52604] se: weight(1048576) vruntime(372830605) slice(2800000) deadline(375627951) curr?(1) task?(0)
[ 3631.910650][T52604] se: weight(1048576) vruntime(372831442) slice(2800000) deadline(375628087) curr?(1) task?(0)
[ 3631.922098][T52604] se: weight(1048576) vruntime(372836020) slice(2800000) deadline(375628759) curr?(1) task?(0)
[ 3631.933552][T52604] se: weight(1048576) vruntime(372832722) slice(2800000) deadline(375629016) curr?(1) task?(0)
[ 3631.944995][T52604] se: weight(1048576) vruntime(372839789) slice(2800000) deadline(375634271) curr?(1) task?(0)
[ 3631.956446][T52604] se: weight(1048576) vruntime(372839292) slice(2800000) deadline(375635256) curr?(1) task?(0)
[ 3631.967900][T52604] se: weight(1048576) vruntime(372842047) slice(2800000) deadline(375638101) curr?(1) task?(0)
[ 3631.979355][T52604] se: weight(1048576) vruntime(372844543) slice(2800000) deadline(375641418) curr?(1) task?(0)
[ 3631.990810][T52604] se: weight(1048576) vruntime(372846531) slice(2800000) deadline(375641864) curr?(1) task?(0)
[ 3632.002266][T52604] se: weight(1048576) vruntime(372844747) slice(2800000) deadline(375643025) curr?(1) task?(0)
[ 3632.013722][T52604] se: weight(1048576) vruntime(372850775) slice(2800000) deadline(375645347) curr?(1) task?(0)
[ 3632.025176][T52604] se: weight(1048576) vruntime(372849137) slice(2800000) deadline(375647054) curr?(1) task?(0)
[ 3632.036627][T52604] se: weight(1048576) vruntime(372850499) slice(2800000) deadline(375647875) curr?(1) task?(0)
[ 3632.048081][T52604] se: weight(1048576) vruntime(372853059) slice(2800000) deadline(375648002) curr?(1) task?(0)
[ 3632.059534][T52604] se: weight(1048576) vruntime(372855078) slice(2800000) deadline(375651162) curr?(1) task?(0)
[ 3632.070990][T52604] se: weight(1048576) vruntime(372860592) slice(2800000) deadline(375653802) curr?(1) task?(0)
[ 3632.082447][T52604] se: weight(1048576) vruntime(372862099) slice(2800000) deadline(375657332) curr?(1) task?(0)
[ 3632.093904][T52604] se: weight(1048576) vruntime(372863973) slice(2800000) deadline(375659697) curr?(1) task?(0)
[ 3632.105357][T52604] se: weight(1048576) vruntime(372864193) slice(2800000) deadline(375660707) curr?(1) task?(0)
[ 3632.116812][T52604] se: weight(1048576) vruntime(372865823) slice(2800000) deadline(375662087) curr?(1) task?(0)
[ 3632.128265][T52604] se: weight(1048576) vruntime(372868705) slice(2800000) deadline(375664899) curr?(1) task?(0)
[ 3632.139718][T52604] se: weight(1048576) vruntime(372869439) slice(2800000) deadline(375665613) curr?(1) task?(0)
[ 3632.151174][T52604] se: weight(1048576) vruntime(372873427) slice(2800000) deadline(375667528) curr?(1) task?(0)
[ 3632.162630][T52604] se: weight(1048576) vruntime(372877997) slice(2800000) deadline(375673390) curr?(1) task?(0)
[ 3632.174086][T52604] se: weight(1048576) vruntime(372883546) slice(2800000) deadline(375677006) curr?(1) task?(0)
[ 3632.185541][T52604] se: weight(1048576) vruntime(372882737) slice(2800000) deadline(375678751) curr?(1) task?(0)
[ 3632.196993][T52604] se: weight(1048576) vruntime(372885085) slice(2800000) deadline(375682401) curr?(1) task?(0)
[ 3632.208443][T52604] se: weight(1048576) vruntime(372890867) slice(2800000) deadline(375686310) curr?(1) task?(0)
[ 3632.219897][T52604] se: weight(1048576) vruntime(372894049) slice(2800000) deadline(375688761) curr?(1) task?(0)
[ 3632.231352][T52604] se: weight(1048576) vruntime(372896095) slice(2800000) deadline(375691368) curr?(1) task?(0)
[ 3632.242807][T52604] se: weight(1048576) vruntime(372897360) slice(2800000) deadline(375692312) curr?(1) task?(0)
[ 3632.254263][T52604] se: weight(1048576) vruntime(372896767) slice(2800000) deadline(375692601) curr?(1) task?(0)
[ 3632.265719][T52604] se: weight(1048576) vruntime(372906263) slice(2800000) deadline(375702217) curr?(1) task?(0)
[ 3632.277173][T52604] se: weight(1048576) vruntime(372912429) slice(2800000) deadline(375708804) curr?(1) task?(0)
[ 3632.288623][T52604] se: weight(1048576) vruntime(372920753) slice(2800000) deadline(375715726) curr?(1) task?(0)
[ 3632.300075][T52604] se: weight(1048576) vruntime(372921121) slice(2800000) deadline(375716494) curr?(1) task?(0)
[ 3632.311530][T52604] se: weight(1048576) vruntime(372921450) slice(2800000) deadline(375716652) curr?(1) task?(0)
[ 3632.322986][T52604] se: weight(1048576) vruntime(372920872) slice(2800000) deadline(375716676) curr?(1) task?(0)
[ 3632.334444][T52604] se: weight(1048576) vruntime(372926185) slice(2800000) deadline(375721578) curr?(1) task?(0)
[ 3632.345900][T52604] se: weight(1048576) vruntime(372926785) slice(2800000) deadline(375722869) curr?(1) task?(0)
[ 3632.357353][T52604] se: weight(1048576) vruntime(372924946) slice(2800000) deadline(375723253) curr?(1) task?(0)
[ 3632.368807][T52604] se: weight(1048576) vruntime(372926670) slice(2800000) deadline(375726670) curr?(1) task?(0)
[ 3632.380258][T52604] se: weight(1048576) vruntime(372932855) slice(2800000) deadline(375728899) curr?(1) task?(0)
[ 3632.391710][T52604] se: weight(1048576) vruntime(372930692) slice(2800000) deadline(375729030) curr?(1) task?(0)
[ 3632.403166][T52604] se: weight(1048576) vruntime(372934915) slice(2800000) deadline(375729857) curr?(1) task?(0)
[ 3632.414622][T52604] se: weight(1048576) vruntime(372932812) slice(2800000) deadline(375730579) curr?(1) task?(0)
[ 3632.426079][T52604] se: weight(1048576) vruntime(372934047) slice(2800000) deadline(375731924) curr?(1) task?(0)
[ 3632.437533][T52604] se: weight(1048576) vruntime(372936040) slice(2800000) deadline(375732414) curr?(1) task?(0)
[ 3632.448986][T52604] se: weight(1048576) vruntime(372937254) slice(2800000) deadline(375732537) curr?(1) task?(0)
[ 3632.460437][T52604] se: weight(1048576) vruntime(372938299) slice(2800000) deadline(375734504) curr?(1) task?(0)
[ 3632.471890][T52604] se: weight(1048576) vruntime(372939868) slice(2800000) deadline(375734911) curr?(1) task?(0)
[ 3632.483346][T52604] se: weight(1048576) vruntime(372939431) slice(2800000) deadline(375735104) curr?(1) task?(0)
[ 3632.494800][T52604] se: weight(1048576) vruntime(372943957) slice(2800000) deadline(375736876) curr?(1) task?(0)
[ 3632.506258][T52604] se: weight(1048576) vruntime(372941512) slice(2800000) deadline(375737596) curr?(1) task?(0)
[ 3632.517713][T52604] se: weight(1048576) vruntime(372943426) slice(2800000) deadline(375738609) curr?(1) task?(0)
[ 3632.529168][T52604] se: weight(1048576) vruntime(372942744) slice(2800000) deadline(375738678) curr?(1) task?(0)
[ 3632.540620][T52604] se: weight(1048576) vruntime(372943449) slice(2800000) deadline(375739312) curr?(1) task?(0)
[ 3632.552072][T52604] se: weight(1048576) vruntime(372942999) slice(2800000) deadline(375739964) curr?(1) task?(0)
[ 3632.563525][T52604] se: weight(1048576) vruntime(372946364) slice(2800000) deadline(375741688) curr?(1) task?(0)
[ 3632.574979][T52604] se: weight(1048576) vruntime(372950236) slice(2800000) deadline(375745970) curr?(1) task?(0)
[ 3632.586437][T52604] se: weight(1048576) vruntime(372950904) slice(2800000) deadline(375746528) curr?(1) task?(0)
[ 3632.597894][T52604] se: weight(1048576) vruntime(372951107) slice(2800000) deadline(375746770) curr?(1) task?(0)
[ 3632.609347][T52604] se: weight(1048576) vruntime(372951171) slice(2800000) deadline(375748146) curr?(1) task?(0)
[ 3632.620801][T52604] se: weight(1048576) vruntime(372954690) slice(2800000) deadline(375750574) curr?(1) task?(0)
[ 3632.632255][T52604] se: weight(1048576) vruntime(372955754) slice(2800000) deadline(375750656) curr?(1) task?(0)
[ 3632.643708][T52604] se: weight(1048576) vruntime(372959065) slice(2800000) deadline(375752475) curr?(1) task?(0)
[ 3632.655164][T52604] se: weight(1048576) vruntime(372959128) slice(2800000) deadline(375753360) curr?(1) task?(0)
[ 3632.666620][T52604] se: weight(1048576) vruntime(372961792) slice(2800000) deadline(375755964) curr?(1) task?(0)
[ 3632.678078][T52604] se: weight(1048576) vruntime(372964109) slice(2800000) deadline(375759582) curr?(1) task?(0)
[ 3632.689531][T52604] se: weight(1048576) vruntime(372972523) slice(2800000) deadline(375767286) curr?(1) task?(0)
[ 3632.700984][T52604] se: weight(1048576) vruntime(372971908) slice(2800000) deadline(375769074) curr?(1) task?(0)
[ 3632.712435][T52604] se: weight(1048576) vruntime(372983706) slice(2800000) deadline(375777267) curr?(1) task?(0)
[ 3632.723888][T52604] se: weight(1048576) vruntime(372983728) slice(2800000) deadline(375777669) curr?(1) task?(0)
[ 3632.735343][T52604] se: weight(1048576) vruntime(372985173) slice(2800000) deadline(375780436) curr?(1) task?(0)
[ 3632.746796][T52604] se: weight(1048576) vruntime(372981473) slice(2800000) deadline(375781473) curr?(1) task?(0)
[ 3632.758254][T52604] se: weight(1048576) vruntime(372992835) slice(2800000) deadline(375787397) curr?(1) task?(0)
[ 3632.769710][T52604] se: weight(1048576) vruntime(372993542) slice(2800000) deadline(375788114) curr?(1) task?(0)
[ 3632.781155][T52604] se: weight(1048576) vruntime(372997975) slice(2800000) deadline(375789803) curr?(1) task?(0)
[ 3632.792606][T52604] se: weight(1048576) vruntime(372996132) slice(2800000) deadline(375790684) curr?(1) task?(0)
[ 3632.804060][T52604] se: weight(1048576) vruntime(373001757) slice(2800000) deadline(375796800) curr?(1) task?(0)
[ 3632.815513][T52604] se: weight(1048576) vruntime(373011869) slice(2800000) deadline(375807302) curr?(1) task?(0)
[ 3632.826968][T52604] se: weight(1048576) vruntime(373014757) slice(2800000) deadline(375809730) curr?(1) task?(0)
[ 3632.838425][T52604] se: weight(1048576) vruntime(373011708) slice(2800000) deadline(375811708) curr?(1) task?(0)
[ 3632.849881][T52604] se: weight(1048576) vruntime(373019112) slice(2800000) deadline(375812192) curr?(1) task?(0)
[ 3632.861336][T52604] se: weight(1048576) vruntime(373020375) slice(2800000) deadline(375814256) curr?(1) task?(0)
[ 3632.872790][T52604] se: weight(1048576) vruntime(373026926) slice(2800000) deadline(375819886) curr?(1) task?(0)
[ 3632.884242][T52604] se: weight(1048576) vruntime(373020895) slice(2800000) deadline(375820895) curr?(1) task?(0)
[ 3632.895694][T52604] se: weight(1048576) vruntime(373033516) slice(2800000) deadline(375828588) curr?(1) task?(0)
[ 3632.907150][T52604] se: weight(1048576) vruntime(373038175) slice(2800000) deadline(375833208) curr?(1) task?(0)
[ 3632.918605][T52604] se: weight(1048576) vruntime(373040203) slice(2800000) deadline(375834505) curr?(1) task?(0)
[ 3632.930053][T52604] se: weight(1048576) vruntime(373044730) slice(2800000) deadline(375838370) curr?(1) task?(0)
[ 3632.941508][T52604] se: weight(1048576) vruntime(373046208) slice(2800000) deadline(375840910) curr?(1) task?(0)
[ 3632.952961][T52604] se: weight(1048576) vruntime(373053918) slice(2800000) deadline(375847378) curr?(1) task?(0)
[ 3632.964412][T52604] se: weight(1048576) vruntime(373055088) slice(2800000) deadline(375855088) curr?(1) task?(0)
[ 3632.975865][T52604] se: weight(1048576) vruntime(373059981) slice(2800000) deadline(375855154) curr?(1) task?(0)
[ 3632.987321][T52604] se: weight(1048576) vruntime(373061189) slice(2800000) deadline(375855991) curr?(1) task?(0)
[ 3632.998776][T52604] se: weight(1048576) vruntime(373064600) slice(2800000) deadline(375856107) curr?(1) task?(0)
[ 3633.010233][T52604] se: weight(1048576) vruntime(373076026) slice(2800000) deadline(375871329) curr?(1) task?(0)
[ 3633.021690][T52604] se: weight(1048576) vruntime(373086268) slice(2800000) deadline(375878396) curr?(1) task?(0)
[ 3633.033145][T52604] se: weight(1048576) vruntime(373085585) slice(2800000) deadline(375880327) curr?(1) task?(0)
[ 3633.044596][T52604] se: weight(1048576) vruntime(373088049) slice(2800000) deadline(375881700) curr?(1) task?(0)
[ 3633.056049][T52604] se: weight(1048576) vruntime(373087793) slice(2800000) deadline(375882064) curr?(1) task?(0)
[ 3633.067502][T52604] se: weight(1048576) vruntime(373091872) slice(2800000) deadline(375887065) curr?(1) task?(0)
[ 3633.078959][T52604] se: weight(1048576) vruntime(373096148) slice(2800000) deadline(375889858) curr?(1) task?(0)
[ 3633.090416][T52604] se: weight(1048576) vruntime(373096065) slice(2800000) deadline(375889966) curr?(1) task?(0)
[ 3633.101872][T52604] se: weight(1048576) vruntime(373099841) slice(2800000) deadline(375894784) curr?(1) task?(0)
[ 3633.113326][T52604] se: weight(1048576) vruntime(373100144) slice(2800000) deadline(375895097) curr?(1) task?(0)
[ 3633.124779][T52604] se: weight(1048576) vruntime(373101511) slice(2800000) deadline(375896373) curr?(1) task?(0)
[ 3633.136230][T52604] se: weight(1048576) vruntime(373104051) slice(2800000) deadline(375898583) curr?(1) task?(0)
[ 3633.147682][T52604] se: weight(1048576) vruntime(373107851) slice(2800000) deadline(375899689) curr?(1) task?(0)
[ 3633.159137][T52604] se: weight(1048576) vruntime(373101581) slice(2800000) deadline(375901581) curr?(1) task?(0)
[ 3633.170594][T52604] se: weight(1048576) vruntime(373112817) slice(2800000) deadline(375907289) curr?(1) task?(0)
[ 3633.182050][T52604] se: weight(1048576) vruntime(373113550) slice(2800000) deadline(375908282) curr?(1) task?(0)
[ 3633.193503][T52604] se: weight(1048576) vruntime(373114252) slice(2800000) deadline(375909204) curr?(1) task?(0)
[ 3633.204956][T52604] se: weight(1048576) vruntime(373116019) slice(2800000) deadline(375909780) curr?(1) task?(0)
[ 3633.216407][T52604] se: weight(1048576) vruntime(373120089) slice(2800000) deadline(375915593) curr?(1) task?(0)
[ 3633.227860][T52604] se: weight(1048576) vruntime(373122740) slice(2800000) deadline(375918944) curr?(1) task?(0)
[ 3633.239307][T52604] se: weight(1048576) vruntime(373124335) slice(2800000) deadline(375919217) curr?(1) task?(0)
[ 3633.250763][T52604] se: weight(1048576) vruntime(373126831) slice(2800000) deadline(375920352) curr?(1) task?(0)
[ 3633.262220][T52604] se: weight(1048576) vruntime(373125593) slice(2800000) deadline(375920526) curr?(1) task?(0)
[ 3633.273675][T52604] se: weight(1048576) vruntime(373129161) slice(2800000) deadline(375923102) curr?(1) task?(0)
[ 3633.285129][T52604] se: weight(1048576) vruntime(373131581) slice(2800000) deadline(375925101) curr?(1) task?(0)
[ 3633.296581][T52604] se: weight(1048576) vruntime(373130829) slice(2800000) deadline(375926032) curr?(1) task?(0)
[ 3633.308034][T52604] se: weight(1048576) vruntime(373133978) slice(2800000) deadline(375928179) curr?(1) task?(0)
[ 3633.319489][T52604] se: weight(1048576) vruntime(373136807) slice(2800000) deadline(375930407) curr?(1) task?(0)
[ 3633.330945][T52604] se: weight(1048576) vruntime(373135325) slice(2800000) deadline(375931800) curr?(1) task?(0)
[ 3633.342401][T52604] se: weight(1048576) vruntime(373139272) slice(2800000) deadline(375934735) curr?(1) task?(0)
[ 3633.353849][T52604] se: weight(1048576) vruntime(373139852) slice(2800000) deadline(375935025) curr?(1) task?(0)
[ 3633.365302][T52604] se: weight(1048576) vruntime(373141763) slice(2800000) deadline(375936415) curr?(1) task?(0)
[ 3633.376746][T52604] se: weight(1048576) vruntime(373146666) slice(2800000) deadline(375941267) curr?(1) task?(0)
[ 3633.388199][T52604] se: weight(1048576) vruntime(373148692) slice(2800000) deadline(375942533) curr?(1) task?(0)
[ 3633.399652][T52604] se: weight(1048576) vruntime(373150150) slice(2800000) deadline(375945092) curr?(1) task?(0)
[ 3633.411099][T52604] se: weight(1048576) vruntime(373152369) slice(2800000) deadline(375946440) curr?(1) task?(0)
[ 3633.422554][T52604] se: weight(1048576) vruntime(373154556) slice(2800000) deadline(375948277) curr?(1) task?(0)
[ 3633.434001][T52604] se: weight(1048576) vruntime(373153471) slice(2800000) deadline(375950166) curr?(1) task?(0)
[ 3633.445455][T52604] se: weight(1048576) vruntime(373158755) slice(2800000) deadline(375951814) curr?(1) task?(0)
[ 3633.456899][T52604] se: weight(1048576) vruntime(373163665) slice(2800000) deadline(375956675) curr?(1) task?(0)
[ 3633.468349][T52604] se: weight(1048576) vruntime(373162809) slice(2800000) deadline(375957191) curr?(1) task?(0)
[ 3633.479802][T52604] se: weight(1048576) vruntime(373167350) slice(2800000) deadline(375960560) curr?(1) task?(0)
[ 3633.491248][T52604] se: weight(1048576) vruntime(373165643) slice(2800000) deadline(375960796) curr?(1) task?(0)
[ 3633.502702][T52604] se: weight(1048576) vruntime(373161150) slice(2800000) deadline(375961150) curr?(1) task?(0)
[ 3633.514158][T52604] se: weight(1048576) vruntime(373169446) slice(2800000) deadline(375963357) curr?(1) task?(0)
[ 3633.525615][T52604] se: weight(1048576) vruntime(373174276) slice(2800000) deadline(375974276) curr?(1) task?(0)
[ 3633.537068][T52604] se: weight(1048576) vruntime(373179885) slice(2800000) deadline(375974607) curr?(1) task?(0)
[ 3633.548519][T52604] se: weight(1048576) vruntime(373185163) slice(2800000) deadline(375978373) curr?(1) task?(0)
[ 3633.559973][T52604] se: weight(1048576) vruntime(373184400) slice(2800000) deadline(375979652) curr?(1) task?(0)
[ 3633.571428][T52604] se: weight(1048576) vruntime(373186664) slice(2800000) deadline(375980244) curr?(1) task?(0)
[ 3633.582885][T52604] se: weight(1048576) vruntime(373181950) slice(2800000) deadline(375981950) curr?(1) task?(0)
[ 3633.594341][T52604] se: weight(1048576) vruntime(373191603) slice(2800000) deadline(375986675) curr?(1) task?(0)
[ 3633.605796][T52604] se: weight(1048576) vruntime(373195601) slice(2800000) deadline(375990664) curr?(1) task?(0)
[ 3633.617250][T52604] se: weight(1048576) vruntime(373195473) slice(2800000) deadline(375990746) curr?(1) task?(0)
[ 3633.628704][T52604] se: weight(1048576) vruntime(373195723) slice(2800000) deadline(375991096) curr?(1) task?(0)
[ 3633.640157][T52604] se: weight(1048576) vruntime(373197753) slice(2800000) deadline(375992835) curr?(1) task?(0)
[ 3633.651610][T52604] se: weight(1048576) vruntime(373200330) slice(2800000) deadline(375995071) curr?(1) task?(0)
[ 3633.663065][T52604] se: weight(1048576) vruntime(373202756) slice(2800000) deadline(375995855) curr?(1) task?(0)
[ 3633.674521][T52604] se: weight(1048576) vruntime(373203580) slice(2800000) deadline(375996950) curr?(1) task?(0)
[ 3633.685967][T52604] se: weight(1048576) vruntime(373210694) slice(2800000) deadline(376003783) curr?(1) task?(0)
[ 3633.697420][T52604] se: weight(1048576) vruntime(373212383) slice(2800000) deadline(376007676) curr?(1) task?(0)
[ 3633.708873][T52604] se: weight(1048576) vruntime(373216822) slice(2800000) deadline(376010182) curr?(1) task?(0)
[ 3633.720323][T52604] se: weight(1048576) vruntime(373216185) slice(2800000) deadline(376010427) curr?(1) task?(0)
[ 3633.731777][T52604] se: weight(1048576) vruntime(373217705) slice(2800000) deadline(376012417) curr?(1) task?(0)
[ 3633.743231][T52604] se: weight(1048576) vruntime(373219688) slice(2800000) deadline(376014761) curr?(1) task?(0)
[ 3633.754687][T52604] se: weight(1048576) vruntime(373225916) slice(2800000) deadline(376020698) curr?(1) task?(0)
[ 3633.766143][T52604] se: weight(1048576) vruntime(373230885) slice(2800000) deadline(376025708) curr?(1) task?(0)
[ 3633.777599][T52604] se: weight(1048576) vruntime(373229552) slice(2800000) deadline(376029552) curr?(1) task?(0)
[ 3633.789052][T52604] se: weight(1048576) vruntime(373237814) slice(2800000) deadline(376033127) curr?(1) task?(0)
[ 3633.800502][T52604] se: weight(1048576) vruntime(373255589) slice(2800000) deadline(376051032) curr?(1) task?(0)
[ 3633.811956][T52604] se: weight(1048576) vruntime(373256428) slice(2800000) deadline(376051531) curr?(1) task?(0)
[ 3633.823410][T52604] se: weight(1048576) vruntime(373254696) slice(2800000) deadline(376054696) curr?(1) task?(0)
[ 3633.834865][T52604] se: weight(1048576) vruntime(373263170) slice(2800000) deadline(376058272) curr?(1) task?(0)
[ 3633.846322][T52604] se: weight(1048576) vruntime(373264728) slice(2800000) deadline(376059199) curr?(1) task?(0)
[ 3633.857767][T52604] se: weight(1048576) vruntime(373263615) slice(2800000) deadline(376063615) curr?(1) task?(0)
[ 3633.869220][T52604] se: weight(1048576) vruntime(373279849) slice(2800000) deadline(376075052) curr?(1) task?(0)
[ 3633.880674][T52604] se: weight(1048576) vruntime(373282659) slice(2800000) deadline(376076539) curr?(1) task?(0)
[ 3633.892126][T52604] se: weight(1048576) vruntime(373281928) slice(2800000) deadline(376081928) curr?(1) task?(0)
[ 3633.903579][T52604] se: weight(1048576) vruntime(373288114) slice(2800000) deadline(376083357) curr?(1) task?(0)
[ 3633.915026][T52604] se: weight(1048576) vruntime(373294271) slice(2800000) deadline(376089704) curr?(1) task?(0)
[ 3633.926480][T52604] se: weight(1048576) vruntime(373294941) slice(2800000) deadline(376090434) curr?(1) task?(0)
[ 3633.937937][T52604] se: weight(1048576) vruntime(373291354) slice(2800000) deadline(376091354) curr?(1) task?(0)
[ 3633.949390][T52604] se: weight(1048576) vruntime(373292231) slice(2800000) deadline(376092231) curr?(1) task?(0)
[ 3633.960845][T52604] se: weight(1048576) vruntime(373300490) slice(2800000) deadline(376098046) curr?(1) task?(0)
[ 3633.972296][T52604] se: weight(1048576) vruntime(373305117) slice(2800000) deadline(376099539) curr?(1) task?(0)
[ 3633.983750][T52604] se: weight(1048576) vruntime(373311408) slice(2800000) deadline(376105059) curr?(1) task?(0)
[ 3633.995205][T52604] se: weight(1048576) vruntime(373305733) slice(2800000) deadline(376105733) curr?(1) task?(0)
[ 3634.006661][T52604] se: weight(1048576) vruntime(373312621) slice(2800000) deadline(376105851) curr?(1) task?(0)
[ 3634.018118][T52604] se: weight(1048576) vruntime(373313299) slice(2800000) deadline(376108312) curr?(1) task?(0)
[ 3634.029574][T52604] se: weight(1048576) vruntime(373312898) slice(2800000) deadline(376108441) curr?(1) task?(0)
[ 3634.041030][T52604] se: weight(1048576) vruntime(373315070) slice(2800000) deadline(376110263) curr?(1) task?(0)
[ 3634.052481][T52604] se: weight(1048576) vruntime(373317538) slice(2800000) deadline(376111278) curr?(1) task?(0)
[ 3634.063934][T52604] se: weight(1048576) vruntime(373321543) slice(2800000) deadline(376115804) curr?(1) task?(0)
[ 3634.075387][T52604] se: weight(1048576) vruntime(373327570) slice(2800000) deadline(376122723) curr?(1) task?(0)
[ 3634.086843][T52604] se: weight(1048576) vruntime(373335436) slice(2800000) deadline(376128726) curr?(1) task?(0)
[ 3634.098299][T52604] se: weight(1048576) vruntime(373335154) slice(2800000) deadline(376130648) curr?(1) task?(0)
[ 3634.109756][T52604] se: weight(1048576) vruntime(373336347) slice(2800000) deadline(376131800) curr?(1) task?(0)
[ 3634.121209][T52604] se: weight(1048576) vruntime(373339084) slice(2800000) deadline(376133595) curr?(1) task?(0)
[ 3634.132665][T52604] se: weight(1048576) vruntime(373342062) slice(2800000) deadline(376135643) curr?(1) task?(0)
[ 3634.144117][T52604] se: weight(1048576) vruntime(373343564) slice(2800000) deadline(376138096) curr?(1) task?(0)
[ 3634.155569][T52604] se: weight(1048576) vruntime(373347512) slice(2800000) deadline(376142034) curr?(1) task?(0)
[ 3634.167017][T52604] se: weight(1048576) vruntime(373347325) slice(2800000) deadline(376142367) curr?(1) task?(0)
[ 3634.178472][T52604] se: weight(1048576) vruntime(373350306) slice(2800000) deadline(376142935) curr?(1) task?(0)
[ 3634.189929][T52604] se: weight(1048576) vruntime(373356125) slice(2800000) deadline(376151267) curr?(1) task?(0)
[ 3634.201382][T52604] se: weight(1048576) vruntime(373367312) slice(2800000) deadline(376161554) curr?(1) task?(0)
[ 3634.212835][T52604] se: weight(1048576) vruntime(373366800) slice(2800000) deadline(376161803) curr?(1) task?(0)
[ 3634.224286][T52604] se: weight(1048576) vruntime(373368889) slice(2800000) deadline(376163981) curr?(1) task?(0)
[ 3634.235740][T52604] se: weight(1048576) vruntime(373370285) slice(2800000) deadline(376164947) curr?(1) task?(0)
[ 3634.247195][T52604] se: weight(1048576) vruntime(373366574) slice(2800000) deadline(376166574) curr?(1) task?(0)
[ 3634.258650][T52604] se: weight(1048576) vruntime(373372811) slice(2800000) deadline(376166873) curr?(1) task?(0)
[ 3634.270109][T52604] se: weight(1048576) vruntime(373374226) slice(2800000) deadline(376167315) curr?(1) task?(0)
[ 3634.281565][T52604] se: weight(1048576) vruntime(373376897) slice(2800000) deadline(376170136) curr?(1) task?(0)
[ 3634.293021][T52604] se: weight(1048576) vruntime(373374570) slice(2800000) deadline(376174570) curr?(1) task?(0)
[ 3634.304472][T52604] se: weight(1048576) vruntime(373385787) slice(2800000) deadline(376179807) curr?(1) task?(0)
[ 3634.315923][T52604] se: weight(1048576) vruntime(373385482) slice(2800000) deadline(376180024) curr?(1) task?(0)
[ 3634.327376][T52604] se: weight(1048576) vruntime(373384947) slice(2800000) deadline(376180160) curr?(1) task?(0)
[ 3634.338833][T52604] se: weight(1048576) vruntime(373386862) slice(2800000) deadline(376181454) curr?(1) task?(0)
[ 3634.350290][T52604] se: weight(1048576) vruntime(373387582) slice(2800000) deadline(376183556) curr?(1) task?(0)
[ 3634.361745][T52604] se: weight(1048576) vruntime(373391027) slice(2800000) deadline(376185288) curr?(1) task?(0)
[ 3634.373197][T52604] se: weight(1048576) vruntime(373395326) slice(2800000) deadline(376189718) curr?(1) task?(0)
[ 3634.384651][T52604] se: weight(1048576) vruntime(373395828) slice(2800000) deadline(376191081) curr?(1) task?(0)
[ 3634.396102][T52604] se: weight(1048576) vruntime(373397832) slice(2800000) deadline(376192213) curr?(1) task?(0)
[ 3634.407556][T52604] se: weight(1048576) vruntime(373398171) slice(2800000) deadline(376192503) curr?(1) task?(0)
[ 3634.419011][T52604] se: weight(1048576) vruntime(373397815) slice(2800000) deadline(376192697) curr?(1) task?(0)
[ 3634.430466][T52604] se: weight(1048576) vruntime(373393167) slice(2800000) deadline(376193167) curr?(1) task?(0)
[ 3634.441923][T52604] se: weight(1048576) vruntime(373400695) slice(2800000) deadline(376195728) curr?(1) task?(0)
[ 3634.453378][T52604] se: weight(1048576) vruntime(373403307) slice(2800000) deadline(376203307) curr?(1) task?(0)
[ 3634.464832][T52604] se: weight(1048576) vruntime(373409574) slice(2800000) deadline(376209574) curr?(1) task?(0)
[ 3634.476282][T52604] se: weight(1048576) vruntime(373414355) slice(2800000) deadline(376209938) curr?(1) task?(0)
[ 3634.487735][T52604] se: weight(1048576) vruntime(373415505) slice(2800000) deadline(376210778) curr?(1) task?(0)
[ 3634.499182][T52604] se: weight(1048576) vruntime(373419794) slice(2800000) deadline(376214326) curr?(1) task?(0)
[ 3634.510636][T52604] se: weight(1048576) vruntime(373420876) slice(2800000) deadline(376215628) curr?(1) task?(0)
[ 3634.522092][T52604] se: weight(1048576) vruntime(373422271) slice(2800000) deadline(376217083) curr?(1) task?(0)
[ 3634.533549][T52604] se: weight(1048576) vruntime(373420918) slice(2800000) deadline(376217723) curr?(1) task?(0)
[ 3634.545003][T52604] se: weight(1048576) vruntime(373428394) slice(2800000) deadline(376222015) curr?(1) task?(0)
[ 3634.556453][T52604] se: weight(1048576) vruntime(373424423) slice(2800000) deadline(376224423) curr?(1) task?(0)
[ 3634.567907][T52604] se: weight(1048576) vruntime(373425802) slice(2800000) deadline(376225802) curr?(1) task?(0)
[ 3634.579361][T52604] se: weight(1048576) vruntime(373427062) slice(2800000) deadline(376227062) curr?(1) task?(0)
[ 3634.590815][T52604] se: weight(1048576) vruntime(373433239) slice(2800000) deadline(376227440) curr?(1) task?(0)
[ 3634.602272][T52604] se: weight(1048576) vruntime(373428846) slice(2800000) deadline(376228846) curr?(1) task?(0)
[ 3634.613726][T52604] se: weight(1048576) vruntime(373436570) slice(2800000) deadline(376231823) curr?(1) task?(0)
[ 3634.625179][T52604] se: weight(1048576) vruntime(373434230) slice(2800000) deadline(376234230) curr?(1) task?(0)
[ 3634.636637][T52604] se: weight(1048576) vruntime(373440547) slice(2800000) deadline(376235860) curr?(1) task?(0)
[ 3634.648089][T52604] se: weight(1048576) vruntime(373441880) slice(2800000) deadline(376236042) curr?(1) task?(0)
[ 3634.659542][T52604] se: weight(1048576) vruntime(373441708) slice(2800000) deadline(376236620) curr?(1) task?(0)
[ 3634.670990][T52604] se: weight(1048576) vruntime(373455822) slice(2800000) deadline(376247369) curr?(1) task?(0)
[ 3634.682445][T52604] se: weight(1048576) vruntime(373454479) slice(2800000) deadline(376248610) curr?(1) task?(0)
[ 3634.693901][T52604] se: weight(1048576) vruntime(373454804) slice(2800000) deadline(376248845) curr?(1) task?(0)
[ 3634.705355][T52604] se: weight(1048576) vruntime(373449518) slice(2800000) deadline(376249518) curr?(1) task?(0)
[ 3634.716799][T52604] se: weight(1048576) vruntime(373451958) slice(2800000) deadline(376251958) curr?(1) task?(0)
[ 3634.728250][T52604] se: weight(1048576) vruntime(373461287) slice(2800000) deadline(376254517) curr?(1) task?(0)
[ 3634.739703][T52604] se: weight(1048576) vruntime(373462645) slice(2800000) deadline(376256746) curr?(1) task?(0)
[ 3634.751148][T52604] se: weight(1048576) vruntime(373466832) slice(2800000) deadline(376261624) curr?(1) task?(0)
[ 3634.762602][T52604] se: weight(1048576) vruntime(373468734) slice(2800000) deadline(376262113) curr?(1) task?(0)
[ 3634.774060][T52604] se: weight(1048576) vruntime(373467209) slice(2800000) deadline(376262692) curr?(1) task?(0)
[ 3634.785517][T52604] se: weight(1048576) vruntime(373468258) slice(2800000) deadline(376263861) curr?(1) task?(0)
[ 3634.796971][T52604] se: weight(1048576) vruntime(373473251) slice(2800000) deadline(376268394) curr?(1) task?(0)
[ 3634.808423][T52604] se: weight(1048576) vruntime(373474392) slice(2800000) deadline(376268443) curr?(1) task?(0)
[ 3634.819875][T52604] se: weight(1048576) vruntime(373472218) slice(2800000) deadline(376268844) curr?(1) task?(0)
[ 3634.831328][T52604] se: weight(1048576) vruntime(373477724) slice(2800000) deadline(376272316) curr?(1) task?(0)
[ 3634.842784][T52604] se: weight(1048576) vruntime(373478063) slice(2800000) deadline(376272715) curr?(1) task?(0)
[ 3634.854241][T52604] se: weight(1048576) vruntime(373478188) slice(2800000) deadline(376272951) curr?(1) task?(0)
[ 3634.865697][T52604] se: weight(1048576) vruntime(373479512) slice(2800000) deadline(376275415) curr?(1) task?(0)
[ 3634.877151][T52604] se: weight(1048576) vruntime(373481267) slice(2800000) deadline(376275919) curr?(1) task?(0)
[ 3634.888606][T52604] se: weight(1048576) vruntime(373481413) slice(2800000) deadline(376276666) curr?(1) task?(0)
[ 3634.900057][T52604] se: weight(1048576) vruntime(373484989) slice(2800000) deadline(376279321) curr?(1) task?(0)
[ 3634.911511][T52604] se: weight(1048576) vruntime(373483168) slice(2800000) deadline(376283168) curr?(1) task?(0)
[ 3634.922967][T52604] se: weight(1048576) vruntime(373490808) slice(2800000) deadline(376285680) curr?(1) task?(0)
[ 3634.934423][T52604] se: weight(1048576) vruntime(373485901) slice(2800000) deadline(376285901) curr?(1) task?(0)
[ 3634.945879][T52604] se: weight(1048576) vruntime(373497532) slice(2800000) deadline(376291042) curr?(1) task?(0)
[ 3634.957332][T52604] se: weight(1048576) vruntime(373499689) slice(2800000) deadline(376291827) curr?(1) task?(0)
[ 3634.968786][T52604] se: weight(1048576) vruntime(373506345) slice(2800000) deadline(376301558) curr?(1) task?(0)
[ 3634.980237][T52604] se: weight(1048576) vruntime(373503457) slice(2800000) deadline(376303457) curr?(1) task?(0)
[ 3634.991691][T52604] se: weight(1048576) vruntime(373508677) slice(2800000) deadline(376303819) curr?(1) task?(0)
[ 3635.003145][T52604] se: weight(1048576) vruntime(373511300) slice(2800000) deadline(376306262) curr?(1) task?(0)
[ 3635.014599][T52604] se: weight(1048576) vruntime(373512620) slice(2800000) deadline(376306771) curr?(1) task?(0)
[ 3635.026055][T52604] se: weight(1048576) vruntime(373508279) slice(2800000) deadline(376308279) curr?(1) task?(0)
[ 3635.037511][T52604] se: weight(1048576) vruntime(373518492) slice(2800000) deadline(376313805) curr?(1) task?(0)
[ 3635.048967][T52604] se: weight(1048576) vruntime(373520333) slice(2800000) deadline(376314313) curr?(1) task?(0)
[ 3635.060418][T52604] se: weight(1048576) vruntime(373523752) slice(2800000) deadline(376319085) curr?(1) task?(0)
[ 3635.071870][T52604] se: weight(1048576) vruntime(373524558) slice(2800000) deadline(376320072) curr?(1) task?(0)
[ 3635.083323][T52604] se: weight(1048576) vruntime(373528686) slice(2800000) deadline(376324409) curr?(1) task?(0)
[ 3635.094778][T52604] se: weight(1048576) vruntime(373531276) slice(2800000) deadline(376326739) curr?(1) task?(0)
[ 3635.106235][T52604] se: weight(1048576) vruntime(373532102) slice(2800000) deadline(376332102) curr?(1) task?(0)
[ 3635.117691][T52604] se: weight(1048576) vruntime(373537158) slice(2800000) deadline(376337158) curr?(1) task?(0)
[ 3635.129145][T52604] se: weight(1048576) vruntime(373541247) slice(2800000) deadline(376341247) curr?(1) task?(0)
[ 3635.140599][T52604] se: weight(1048576) vruntime(373542681) slice(2800000) deadline(376342681) curr?(1) task?(0)
[ 3635.152050][T52604] se: weight(1048576) vruntime(373555022) slice(2800000) deadline(376350234) curr?(1) task?(0)
[ 3635.163503][T52604] se: weight(1048576) vruntime(373559386) slice(2800000) deadline(376354989) curr?(1) task?(0)
[ 3635.174960][T52604] se: weight(1048576) vruntime(373565067) slice(2800000) deadline(376359739) curr?(1) task?(0)
[ 3635.186416][T52604] se: weight(1048576) vruntime(373570160) slice(2800000) deadline(376363520) curr?(1) task?(0)
[ 3635.197873][T52604] se: weight(1048576) vruntime(373568969) slice(2800000) deadline(376364011) curr?(1) task?(0)
[ 3635.209327][T52604] se: weight(1048576) vruntime(373568664) slice(2800000) deadline(376364418) curr?(1) task?(0)
[ 3635.220781][T52604] se: weight(1048576) vruntime(373573407) slice(2800000) deadline(376368800) curr?(1) task?(0)
[ 3635.232232][T52604] se: weight(1048576) vruntime(373576050) slice(2800000) deadline(376370031) curr?(1) task?(0)
[ 3635.243685][T52604] se: weight(1048576) vruntime(373575000) slice(2800000) deadline(376370183) curr?(1) task?(0)
[ 3635.255140][T52604] se: weight(1048576) vruntime(373581909) slice(2800000) deadline(376376281) curr?(1) task?(0)
[ 3635.266595][T52604] se: weight(1048576) vruntime(373591430) slice(2800000) deadline(376385701) curr?(1) task?(0)
[ 3635.278051][T52604] se: weight(1048576) vruntime(373594158) slice(2800000) deadline(376387037) curr?(1) task?(0)
[ 3635.289507][T52604] se: weight(1048576) vruntime(373594969) slice(2800000) deadline(376389320) curr?(1) task?(0)
[ 3635.300952][T52604] se: weight(1048576) vruntime(373589942) slice(2800000) deadline(376389942) curr?(1) task?(0)
[ 3635.312403][T52604] se: weight(1048576) vruntime(373595942) slice(2800000) deadline(376390434) curr?(1) task?(0)
[ 3635.323856][T52604] se: weight(1048576) vruntime(373594769) slice(2800000) deadline(376394769) curr?(1) task?(0)
[ 3635.335310][T52604] se: weight(1048576) vruntime(373605113) slice(2800000) deadline(376399074) curr?(1) task?(0)
[ 3635.346766][T52604] se: weight(1048576) vruntime(373608885) slice(2800000) deadline(376404679) curr?(1) task?(0)
[ 3635.358214][T52604] se: weight(1048576) vruntime(373617045) slice(2800000) deadline(376411506) curr?(1) task?(0)
[ 3635.369661][T52604] se: weight(1048576) vruntime(373621978) slice(2800000) deadline(376417221) curr?(1) task?(0)
[ 3635.381114][T52604] se: weight(1048576) vruntime(373628021) slice(2800000) deadline(376423114) curr?(1) task?(0)
[ 3635.392568][T52604] se: weight(1048576) vruntime(373623811) slice(2800000) deadline(376423811) curr?(1) task?(0)
[ 3635.404017][T52604] se: weight(1048576) vruntime(373634418) slice(2800000) deadline(376427037) curr?(1) task?(0)
[ 3635.415470][T52604] se: weight(1048576) vruntime(373633476) slice(2800000) deadline(376429510) curr?(1) task?(0)
[ 3635.426928][T52604] se: weight(1048576) vruntime(373642505) slice(2800000) deadline(376437378) curr?(1) task?(0)
[ 3635.438382][T52604] se: weight(1048576) vruntime(373644428) slice(2800000) deadline(376438459) curr?(1) task?(0)
[ 3635.449839][T52604] se: weight(1048576) vruntime(373648158) slice(2800000) deadline(376443060) curr?(1) task?(0)
[ 3635.461292][T52604] se: weight(1048576) vruntime(373643069) slice(2800000) deadline(376443069) curr?(1) task?(0)
[ 3635.472745][T52604] se: weight(1048576) vruntime(373652176) slice(2800000) deadline(376447289) curr?(1) task?(0)
[ 3635.484196][T52604] se: weight(1048576) vruntime(373653273) slice(2800000) deadline(376447925) curr?(1) task?(0)
[ 3635.495650][T52604] se: weight(1048576) vruntime(373652947) slice(2800000) deadline(376448892) curr?(1) task?(0)
[ 3635.507103][T52604] se: weight(1048576) vruntime(373660627) slice(2800000) deadline(376454518) curr?(1) task?(0)
[ 3635.518559][T52604] se: weight(1048576) vruntime(373662452) slice(2800000) deadline(376454761) curr?(1) task?(0)
[ 3635.530015][T52604] se: weight(1048576) vruntime(373654779) slice(2800000) deadline(376454779) curr?(1) task?(0)
[ 3635.541472][T52604] se: weight(1048576) vruntime(373663968) slice(2800000) deadline(376457528) curr?(1) task?(0)
[ 3635.552926][T52604] se: weight(1048576) vruntime(373659350) slice(2800000) deadline(376459350) curr?(1) task?(0)
[ 3635.564377][T52604] se: weight(1048576) vruntime(373662453) slice(2800000) deadline(376459729) curr?(1) task?(0)
[ 3635.575830][T52604] se: weight(1048576) vruntime(373666960) slice(2800000) deadline(376462223) curr?(1) task?(0)
[ 3635.587283][T52604] se: weight(1048576) vruntime(373667780) slice(2800000) deadline(376463153) curr?(1) task?(0)
[ 3635.598740][T52604] se: weight(1048576) vruntime(373674160) slice(2800000) deadline(376468441) curr?(1) task?(0)
[ 3635.610195][T52604] se: weight(1048576) vruntime(373680664) slice(2800000) deadline(376474835) curr?(1) task?(0)
[ 3635.621650][T52604] se: weight(1048576) vruntime(373681350) slice(2800000) deadline(376476112) curr?(1) task?(0)
[ 3635.633103][T52604] se: weight(1048576) vruntime(373691999) slice(2800000) deadline(376485249) curr?(1) task?(0)
[ 3635.644557][T52604] se: weight(1048576) vruntime(373691124) slice(2800000) deadline(376491124) curr?(1) task?(0)
[ 3635.656007][T52604] se: weight(1048576) vruntime(373695998) slice(2800000) deadline(376491170) curr?(1) task?(0)
[ 3635.667460][T52604] se: weight(1048576) vruntime(373698788) slice(2800000) deadline(376492789) curr?(1) task?(0)
[ 3635.678917][T52604] se: weight(1048576) vruntime(373697557) slice(2800000) deadline(376497557) curr?(1) task?(0)
[ 3635.690371][T52604] se: weight(1048576) vruntime(373706171) slice(2800000) deadline(376500052) curr?(1) task?(0)
[ 3635.701829][T52604] se: weight(1048576) vruntime(373707197) slice(2800000) deadline(376501969) curr?(1) task?(0)
[ 3635.713282][T52604] se: weight(1048576) vruntime(373707295) slice(2800000) deadline(376502307) curr?(1) task?(0)
[ 3635.724735][T52604] se: weight(1048576) vruntime(373709635) slice(2800000) deadline(376503245) curr?(1) task?(0)
[ 3635.736187][T52604] se: weight(1048576) vruntime(373716020) slice(2800000) deadline(376511262) curr?(1) task?(0)
[ 3635.747641][T52604] se: weight(1048576) vruntime(373718046) slice(2800000) deadline(376512608) curr?(1) task?(0)
[ 3635.759085][T52604] se: weight(1048576) vruntime(373719591) slice(2800000) deadline(376514333) curr?(1) task?(0)
[ 3635.770540][T52604] se: weight(1048576) vruntime(373723079) slice(2800000) deadline(376516279) curr?(1) task?(0)
[ 3635.781997][T52604] se: weight(1048576) vruntime(373723044) slice(2800000) deadline(376517736) curr?(1) task?(0)
[ 3635.793454][T52604] se: weight(1048576) vruntime(373718678) slice(2800000) deadline(376518678) curr?(1) task?(0)
[ 3635.804908][T52604] se: weight(1048576) vruntime(373725555) slice(2800000) deadline(376519606) curr?(1) task?(0)
[ 3635.816359][T52604] se: weight(1048576) vruntime(373731607) slice(2800000) deadline(376525798) curr?(1) task?(0)
[ 3635.827811][T52604] se: weight(1048576) vruntime(373731707) slice(2800000) deadline(376531707) curr?(1) task?(0)
[ 3635.839264][T52604] se: weight(1048576) vruntime(373744239) slice(2800000) deadline(376538100) curr?(1) task?(0)
[ 3635.850721][T52604] se: weight(1048576) vruntime(373748135) slice(2800000) deadline(376543158) curr?(1) task?(0)
[ 3635.862168][T52604] se: weight(1048576) vruntime(373751300) slice(2800000) deadline(376546373) curr?(1) task?(0)
[ 3635.873616][T52604] se: weight(1048576) vruntime(373754092) slice(2800000) deadline(376549275) curr?(1) task?(0)
[ 3635.885069][T52604] se: weight(1048576) vruntime(373750055) slice(2800000) deadline(376550055) curr?(1) task?(0)
[ 3635.896524][T52604] se: weight(1048576) vruntime(373750541) slice(2800000) deadline(376550541) curr?(1) task?(0)
[ 3635.907976][T52604] se: weight(1048576) vruntime(373757561) slice(2800000) deadline(376551943) curr?(1) task?(0)
[ 3635.919430][T52604] se: weight(1048576) vruntime(373752411) slice(2800000) deadline(376552411) curr?(1) task?(0)
[ 3635.930887][T52604] se: weight(1048576) vruntime(373768475) slice(2800000) deadline(376563828) curr?(1) task?(0)
[ 3635.942341][T52604] se: weight(1048576) vruntime(373769253) slice(2800000) deadline(376563925) curr?(1) task?(0)
[ 3635.953797][T52604] se: weight(1048576) vruntime(373769987) slice(2800000) deadline(376564339) curr?(1) task?(0)
[ 3635.965250][T52604] se: weight(1048576) vruntime(373769894) slice(2800000) deadline(376564926) curr?(1) task?(0)
[ 3635.976704][T52604] se: weight(1048576) vruntime(373770382) slice(2800000) deadline(376565585) curr?(1) task?(0)
[ 3635.988154][T52604] se: weight(1048576) vruntime(373770751) slice(2800000) deadline(376566084) curr?(1) task?(0)
[ 3635.999610][T52604] se: weight(1048576) vruntime(373768398) slice(2800000) deadline(376568398) curr?(1) task?(0)
[ 3636.011064][T52604] se: weight(1048576) vruntime(373769138) slice(2800000) deadline(376569138) curr?(1) task?(0)
[ 3636.022519][T52604] se: weight(1048576) vruntime(373776970) slice(2800000) deadline(376570050) curr?(1) task?(0)
[ 3636.033976][T52604] se: weight(1048576) vruntime(373776128) slice(2800000) deadline(376570971) curr?(1) task?(0)
[ 3636.045432][T52604] se: weight(1048576) vruntime(373776539) slice(2800000) deadline(376571331) curr?(1) task?(0)
[ 3636.056887][T52604] se: weight(1048576) vruntime(373781006) slice(2800000) deadline(376575948) curr?(1) task?(0)
[ 3636.068336][T52604] se: weight(1048576) vruntime(373781956) slice(2800000) deadline(376576598) curr?(1) task?(0)
[ 3636.079790][T52604] se: weight(1048576) vruntime(373781676) slice(2800000) deadline(376577149) curr?(1) task?(0)
[ 3636.091242][T52604] se: weight(1048576) vruntime(373783264) slice(2800000) deadline(376577636) curr?(1) task?(0)
[ 3636.102699][T52604] se: weight(1048576) vruntime(373783380) slice(2800000) deadline(376578463) curr?(1) task?(0)
[ 3636.114156][T52604] se: weight(1048576) vruntime(373785728) slice(2800000) deadline(376581041) curr?(1) task?(0)
[ 3636.125612][T52604] se: weight(1048576) vruntime(373791338) slice(2800000) deadline(376584748) curr?(1) task?(0)
[ 3636.137065][T52604] se: weight(1048576) vruntime(373791280) slice(2800000) deadline(376585881) curr?(1) task?(0)
[ 3636.148511][T52604] se: weight(1048576) vruntime(373795058) slice(2800000) deadline(376588529) curr?(1) task?(0)
[ 3636.159961][T52604] se: weight(1048576) vruntime(373789804) slice(2800000) deadline(376589804) curr?(1) task?(0)
[ 3636.171415][T52604] se: weight(1048576) vruntime(373793291) slice(2800000) deadline(376590076) curr?(1) task?(0)
[ 3636.182871][T52604] se: weight(1048576) vruntime(373799074) slice(2800000) deadline(376593295) curr?(1) task?(0)
[ 3636.194327][T52604] se: weight(1048576) vruntime(373812976) slice(2800000) deadline(376596722) curr?(1) task?(0)
[ 3636.205784][T52604] se: weight(1048576) vruntime(373798044) slice(2800000) deadline(376598044) curr?(1) task?(0)
[ 3636.217238][T52604] se: weight(1048576) vruntime(373805994) slice(2800000) deadline(376600846) curr?(1) task?(0)
[ 3636.228694][T52604] se: weight(1048576) vruntime(373806067) slice(2800000) deadline(376601229) curr?(1) task?(0)
[ 3636.240145][T52604] se: weight(1048576) vruntime(373808678) slice(2800000) deadline(376603991) curr?(1) task?(0)
[ 3636.251600][T52604] se: weight(1048576) vruntime(373808856) slice(2800000) deadline(376604129) curr?(1) task?(0)
[ 3636.263055][T52604] se: weight(1048576) vruntime(373812561) slice(2800000) deadline(376607143) curr?(1) task?(0)
[ 3636.274509][T52604] se: weight(1048576) vruntime(373815102) slice(2800000) deadline(376608662) curr?(1) task?(0)
[ 3636.285967][T52604] se: weight(1048576) vruntime(373814788) slice(2800000) deadline(376609310) curr?(1) task?(0)
[ 3636.297422][T52604] se: weight(1048576) vruntime(373815021) slice(2800000) deadline(376609432) curr?(1) task?(0)
[ 3636.308875][T52604] se: weight(1048576) vruntime(373823412) slice(2800000) deadline(376618094) curr?(1) task?(0)
[ 3636.320326][T52604] se: weight(1048576) vruntime(373824662) slice(2800000) deadline(376618433) curr?(1) task?(0)
[ 3636.331778][T52604] se: weight(1048576) vruntime(373824455) slice(2800000) deadline(376618546) curr?(1) task?(0)
[ 3636.343231][T52604] se: weight(1048576) vruntime(373823781) slice(2800000) deadline(376618874) curr?(1) task?(0)
[ 3636.354685][T52604] se: weight(1048576) vruntime(373824655) slice(2800000) deadline(376619487) curr?(1) task?(0)
[ 3636.366140][T52604] se: weight(1048576) vruntime(373826096) slice(2800000) deadline(376621549) curr?(1) task?(0)
[ 3636.377589][T52604] se: weight(1048576) vruntime(373829785) slice(2800000) deadline(376624547) curr?(1) task?(0)
[ 3636.389042][T52604] se: weight(1048576) vruntime(373830308) slice(2800000) deadline(376625531) curr?(1) task?(0)
[ 3636.400496][T52604] se: weight(1048576) vruntime(373832247) slice(2800000) deadline(376625687) curr?(1) task?(0)
[ 3636.411946][T52604] se: weight(1048576) vruntime(373831948) slice(2800000) deadline(376627201) curr?(1) task?(0)
[ 3636.423400][T52604] se: weight(1048576) vruntime(373836145) slice(2800000) deadline(376627593) curr?(1) task?(0)
[ 3636.434856][T52604] se: weight(1048576) vruntime(373836180) slice(2800000) deadline(376631884) curr?(1) task?(0)
[ 3636.446311][T52604] se: weight(1048576) vruntime(373840809) slice(2800000) deadline(376633758) curr?(1) task?(0)
[ 3636.457768][T52604] se: weight(1048576) vruntime(373840416) slice(2800000) deadline(376634918) curr?(1) task?(0)
[ 3636.469221][T52604] se: weight(1048576) vruntime(373837219) slice(2800000) deadline(376637219) curr?(1) task?(0)
[ 3636.480667][T52604] se: weight(1048576) vruntime(373838216) slice(2800000) deadline(376638216) curr?(1) task?(0)
[ 3636.492117][T52604] se: weight(1048576) vruntime(373838835) slice(2800000) deadline(376638835) curr?(1) task?(0)
[ 3636.503571][T52604] se: weight(1048576) vruntime(373846993) slice(2800000) deadline(376640914) curr?(1) task?(0)
[ 3636.515026][T52604] se: weight(1048576) vruntime(373847520) slice(2800000) deadline(376641141) curr?(1) task?(0)
[ 3636.526480][T52604] se: weight(1048576) vruntime(373845191) slice(2800000) deadline(376641395) curr?(1) task?(0)
[ 3636.537939][T52604] se: weight(1048576) vruntime(373850982) slice(2800000) deadline(376644583) curr?(1) task?(0)
[ 3636.549395][T52604] se: weight(1048576) vruntime(373850551) slice(2800000) deadline(376644702) curr?(1) task?(0)
[ 3636.560840][T52604] se: weight(1048576) vruntime(373850846) slice(2800000) deadline(376646239) curr?(1) task?(0)
[ 3636.572290][T52604] se: weight(1048576) vruntime(373851106) slice(2800000) deadline(376646679) curr?(1) task?(0)
[ 3636.583744][T52604] se: weight(1048576) vruntime(373852123) slice(2800000) deadline(376646855) curr?(1) task?(0)
[ 3636.595196][T52604] se: weight(1048576) vruntime(373852868) slice(2800000) deadline(376647149) curr?(1) task?(0)
[ 3636.606653][T52604] se: weight(1048576) vruntime(373853136) slice(2800000) deadline(376647408) curr?(1) task?(0)
[ 3636.618109][T52604] se: weight(1048576) vruntime(373852619) slice(2800000) deadline(376652619) curr?(1) task?(0)
[ 3636.629557][T52604] se: weight(1048576) vruntime(373861851) slice(2800000) deadline(376655141) curr?(1) task?(0)
[ 3636.641009][T52604] se: weight(1048576) vruntime(373860388) slice(2800000) deadline(376656482) curr?(1) task?(0)
[ 3636.652463][T52604] se: weight(1048576) vruntime(373861482) slice(2800000) deadline(376658177) curr?(1) task?(0)
[ 3636.663912][T52604] se: weight(1048576) vruntime(373867753) slice(2800000) deadline(376662586) curr?(1) task?(0)
[ 3636.675366][T52604] se: weight(1048576) vruntime(373868503) slice(2800000) deadline(376663465) curr?(1) task?(0)
[ 3636.686821][T52604] se: weight(1048576) vruntime(373871159) slice(2800000) deadline(376665270) curr?(1) task?(0)
[ 3636.698276][T52604] se: weight(1048576) vruntime(373872183) slice(2800000) deadline(376665483) curr?(1) task?(0)
[ 3636.709732][T52604] se: weight(1048576) vruntime(373876166) slice(2800000) deadline(376670147) curr?(1) task?(0)
[ 3636.721186][T52604] se: weight(1048576) vruntime(373878675) slice(2800000) deadline(376670563) curr?(1) task?(0)
[ 3636.732640][T52604] se: weight(1048576) vruntime(373876208) slice(2800000) deadline(376671450) curr?(1) task?(0)
[ 3636.744091][T52604] se: weight(1048576) vruntime(373882685) slice(2800000) deadline(376676166) curr?(1) task?(0)
[ 3636.755545][T52604] se: weight(1048576) vruntime(373885009) slice(2800000) deadline(376680332) curr?(1) task?(0)
[ 3636.766999][T52604] se: weight(1048576) vruntime(373889405) slice(2800000) deadline(376684327) curr?(1) task?(0)
[ 3636.778454][T52604] se: weight(1048576) vruntime(373890217) slice(2800000) deadline(376685570) curr?(1) task?(0)
[ 3636.789912][T52604] se: weight(1048576) vruntime(373891009) slice(2800000) deadline(376686252) curr?(1) task?(0)
[ 3636.801368][T52604] se: weight(1048576) vruntime(373893796) slice(2800000) deadline(376689419) curr?(1) task?(0)
[ 3636.812821][T52604] se: weight(1048576) vruntime(373895593) slice(2800000) deadline(376689544) curr?(1) task?(0)
[ 3636.824273][T52604] se: weight(1048576) vruntime(373898738) slice(2800000) deadline(376694251) curr?(1) task?(0)
[ 3636.835725][T52604] se: weight(1048576) vruntime(373903805) slice(2800000) deadline(376697445) curr?(1) task?(0)
[ 3636.847178][T52604] se: weight(1048576) vruntime(373906218) slice(2800000) deadline(376700790) curr?(1) task?(0)
[ 3636.858634][T52604] se: weight(1048576) vruntime(373909136) slice(2800000) deadline(376702907) curr?(1) task?(0)
[ 3636.870091][T52604] se: weight(1048576) vruntime(373909433) slice(2800000) deadline(376704436) curr?(1) task?(0)
[ 3636.881547][T52604] se: weight(1048576) vruntime(373904843) slice(2800000) deadline(376704843) curr?(1) task?(0)
[ 3636.893000][T52604] se: weight(1048576) vruntime(373915422) slice(2800000) deadline(376711205) curr?(1) task?(0)
[ 3636.904455][T52604] se: weight(1048576) vruntime(373918211) slice(2800000) deadline(376712573) curr?(1) task?(0)
[ 3636.915905][T52604] se: weight(1048576) vruntime(373920880) slice(2800000) deadline(376716073) curr?(1) task?(0)
[ 3636.927360][T52604] se: weight(1048576) vruntime(373927382) slice(2800000) deadline(376720611) curr?(1) task?(0)
[ 3636.938816][T52604] se: weight(1048576) vruntime(373924179) slice(2800000) deadline(376724179) curr?(1) task?(0)
[ 3636.950271][T52604] se: weight(1048576) vruntime(373936000) slice(2800000) deadline(376730111) curr?(1) task?(0)
[ 3636.961727][T52604] se: weight(1048576) vruntime(373931661) slice(2800000) deadline(376731661) curr?(1) task?(0)
[ 3636.973181][T52604] se: weight(1048576) vruntime(373943435) slice(2800000) deadline(376737607) curr?(1) task?(0)
[ 3636.984627][T52604] se: weight(1048576) vruntime(373945018) slice(2800000) deadline(376739751) curr?(1) task?(0)
[ 3636.996077][T52604] se: weight(1048576) vruntime(373944726) slice(2800000) deadline(376740039) curr?(1) task?(0)
[ 3637.007531][T52604] se: weight(1048576) vruntime(373946681) slice(2800000) deadline(376741744) curr?(1) task?(0)
[ 3637.018985][T52604] se: weight(1048576) vruntime(373943644) slice(2800000) deadline(376743644) curr?(1) task?(0)
[ 3637.030438][T52604] se: weight(1048576) vruntime(373952340) slice(2800000) deadline(376746882) curr?(1) task?(0)
[ 3637.041898][T52604] se: weight(1048576) vruntime(373953045) slice(2800000) deadline(376747066) curr?(1) task?(0)
[ 3637.053353][T52604] se: weight(1048576) vruntime(373956240) slice(2800000) deadline(376756240) curr?(1) task?(0)
[ 3637.064808][T52604] se: weight(1048576) vruntime(373963374) slice(2800000) deadline(376758447) curr?(1) task?(0)
[ 3637.076260][T52604] se: weight(1048576) vruntime(373968011) slice(2800000) deadline(376762403) curr?(1) task?(0)
[ 3637.087713][T52604] se: weight(1048576) vruntime(373969663) slice(2800000) deadline(376763063) curr?(1) task?(0)
[ 3637.099166][T52604] se: weight(1048576) vruntime(373969018) slice(2800000) deadline(376764582) curr?(1) task?(0)
[ 3637.110622][T52604] se: weight(1048576) vruntime(373969816) slice(2800000) deadline(376765280) curr?(1) task?(0)
[ 3637.122077][T52604] se: weight(1048576) vruntime(373975029) slice(2800000) deadline(376770302) curr?(1) task?(0)
[ 3637.133533][T52604] se: weight(1048576) vruntime(373978875) slice(2800000) deadline(376772645) curr?(1) task?(0)
[ 3637.144985][T52604] se: weight(1048576) vruntime(373980577) slice(2800000) deadline(376774978) curr?(1) task?(0)
[ 3637.156441][T52604] se: weight(1048576) vruntime(373983747) slice(2800000) deadline(376777407) curr?(1) task?(0)
[ 3637.167892][T52604] se: weight(1048576) vruntime(373986454) slice(2800000) deadline(376780335) curr?(1) task?(0)
[ 3637.179345][T52604] se: weight(1048576) vruntime(373986249) slice(2800000) deadline(376780781) curr?(1) task?(0)
[ 3637.190801][T52604] se: weight(1048576) vruntime(373992944) slice(2800000) deadline(376786995) curr?(1) task?(0)
[ 3637.202255][T52604] se: weight(1048576) vruntime(373993342) slice(2800000) deadline(376788034) curr?(1) task?(0)
[ 3637.213711][T52604] se: weight(1048576) vruntime(373997357) slice(2800000) deadline(376792569) curr?(1) task?(0)
[ 3637.225165][T52604] se: weight(1048576) vruntime(373998620) slice(2800000) deadline(376794464) curr?(1) task?(0)
[ 3637.236620][T52604] se: weight(1048576) vruntime(374001454) slice(2800000) deadline(376794814) curr?(1) task?(0)
[ 3637.248070][T52604] se: weight(1048576) vruntime(374002986) slice(2800000) deadline(376796716) curr?(1) task?(0)
[ 3637.259524][T52604] se: weight(1048576) vruntime(374006729) slice(2800000) deadline(376800189) curr?(1) task?(0)
[ 3637.270978][T52604] se: weight(1048576) vruntime(374011991) slice(2800000) deadline(376807364) curr?(1) task?(0)
[ 3637.282431][T52604] se: weight(1048576) vruntime(374014733) slice(2800000) deadline(376808624) curr?(1) task?(0)
[ 3637.293890][T52604] se: weight(1048576) vruntime(374014734) slice(2800000) deadline(376809787) curr?(1) task?(0)
[ 3637.305346][T52604] se: weight(1048576) vruntime(374017037) slice(2800000) deadline(376810987) curr?(1) task?(0)
[ 3637.316801][T52604] se: weight(1048576) vruntime(374021493) slice(2800000) deadline(376814152) curr?(1) task?(0)
[ 3637.328253][T52604] se: weight(1048576) vruntime(374022004) slice(2800000) deadline(376815314) curr?(1) task?(0)
[ 3637.339706][T52604] se: weight(1048576) vruntime(374023979) slice(2800000) deadline(376819102) curr?(1) task?(0)
[ 3637.351160][T52604] se: weight(1048576) vruntime(374024679) slice(2800000) deadline(376819822) curr?(1) task?(0)
[ 3637.362617][T52604] se: weight(1048576) vruntime(374025366) slice(2800000) deadline(376820829) curr?(1) task?(0)
[ 3637.374074][T52604] se: weight(1048576) vruntime(374026548) slice(2800000) deadline(376822552) curr?(1) task?(0)
[ 3637.385531][T52604] se: weight(1048576) vruntime(374028170) slice(2800000) deadline(376823764) curr?(1) task?(0)
[ 3637.396983][T52604] se: weight(1048576) vruntime(374034411) slice(2800000) deadline(376827281) curr?(1) task?(0)
[ 3637.408428][T52604] se: weight(1048576) vruntime(374029312) slice(2800000) deadline(376829312) curr?(1) task?(0)
[ 3637.419878][T52604] se: weight(1048576) vruntime(374030737) slice(2800000) deadline(376830737) curr?(1) task?(0)
[ 3637.431331][T52604] se: weight(1048576) vruntime(374033836) slice(2800000) deadline(376833836) curr?(1) task?(0)
[ 3637.442787][T52604] se: weight(1048576) vruntime(374038828) slice(2800000) deadline(376834130) curr?(1) task?(0)
[ 3637.454242][T52604] se: weight(1048576) vruntime(374042241) slice(2800000) deadline(376835240) curr?(1) task?(0)
[ 3637.465698][T52604] se: weight(1048576) vruntime(374038771) slice(2800000) deadline(376836177) curr?(1) task?(0)
[ 3637.477152][T52604] se: weight(1048576) vruntime(374047890) slice(2800000) deadline(376841140) curr?(1) task?(0)
[ 3637.488605][T52604] se: weight(1048576) vruntime(374047975) slice(2800000) deadline(376842667) curr?(1) task?(0)
[ 3637.500056][T52604] se: weight(1048576) vruntime(374042764) slice(2800000) deadline(376842764) curr?(1) task?(0)
[ 3637.511511][T52604] se: weight(1048576) vruntime(374047885) slice(2800000) deadline(376843097) curr?(1) task?(0)
[ 3637.522966][T52604] se: weight(1048576) vruntime(374048008) slice(2800000) deadline(376843391) curr?(1) task?(0)
[ 3637.534420][T52604] se: weight(1048576) vruntime(374051556) slice(2800000) deadline(376846488) curr?(1) task?(0)
[ 3637.545878][T52604] se: weight(1048576) vruntime(374048911) slice(2800000) deadline(376848911) curr?(1) task?(0)
[ 3637.557334][T52604] se: weight(1048576) vruntime(374061207) slice(2800000) deadline(376861207) curr?(1) task?(0)
[ 3637.568788][T52604] se: weight(1048576) vruntime(374068289) slice(2800000) deadline(376861879) curr?(1) task?(0)
[ 3637.580239][T52604] se: weight(1048576) vruntime(374066788) slice(2800000) deadline(376866788) curr?(1) task?(0)
[ 3637.591692][T52604] se: weight(1048576) vruntime(374077927) slice(2800000) deadline(376873240) curr?(1) task?(0)
[ 3637.603146][T52604] se: weight(1048576) vruntime(374094432) slice(2800000) deadline(376887071) curr?(1) task?(0)
[ 3637.614602][T52604] se: weight(1048576) vruntime(374092372) slice(2800000) deadline(376887124) curr?(1) task?(0)
[ 3637.626057][T52604] se: weight(1048576) vruntime(374098393) slice(2800000) deadline(376892154) curr?(1) task?(0)
[ 3637.637512][T52604] se: weight(1048576) vruntime(374100128) slice(2800000) deadline(376894850) curr?(1) task?(0)
[ 3637.648966][T52604] se: weight(1048576) vruntime(374095484) slice(2800000) deadline(376895484) curr?(1) task?(0)
[ 3637.660420][T52604] se: weight(1048576) vruntime(374104032) slice(2800000) deadline(376899355) curr?(1) task?(0)
[ 3637.671871][T52604] se: weight(1048576) vruntime(374101130) slice(2800000) deadline(376901130) curr?(1) task?(0)
[ 3637.683324][T52604] se: weight(1048576) vruntime(374108496) slice(2800000) deadline(376903719) curr?(1) task?(0)
[ 3637.694780][T52604] se: weight(1048576) vruntime(374116618) slice(2800000) deadline(376907755) curr?(1) task?(0)
[ 3637.706236][T52604] se: weight(1048576) vruntime(374114640) slice(2800000) deadline(376908280) curr?(1) task?(0)
[ 3637.717691][T52604] se: weight(1048576) vruntime(374111092) slice(2800000) deadline(376911092) curr?(1) task?(0)
[ 3637.729146][T52604] se: weight(1048576) vruntime(374115634) slice(2800000) deadline(376911347) curr?(1) task?(0)
[ 3637.740602][T52604] se: weight(1048576) vruntime(374119611) slice(2800000) deadline(376913101) curr?(1) task?(0)
[ 3637.752052][T52604] se: weight(1048576) vruntime(374121470) slice(2800000) deadline(376916682) curr?(1) task?(0)
[ 3637.763506][T52604] se: weight(1048576) vruntime(374123049) slice(2800000) deadline(376923049) curr?(1) task?(0)
[ 3637.774961][T52604] se: weight(1048576) vruntime(374131230) slice(2800000) deadline(376923849) curr?(1) task?(0)
[ 3637.786415][T52604] se: weight(1048576) vruntime(374132176) slice(2800000) deadline(376927249) curr?(1) task?(0)
[ 3637.797872][T52604] se: weight(1048576) vruntime(374133006) slice(2800000) deadline(376927668) curr?(1) task?(0)
[ 3637.809329][T52604] se: weight(1048576) vruntime(374134020) slice(2800000) deadline(376928411) curr?(1) task?(0)
[ 3637.820774][T52604] se: weight(1048576) vruntime(374135353) slice(2800000) deadline(376928493) curr?(1) task?(0)
[ 3637.832225][T52604] se: weight(1048576) vruntime(374140141) slice(2800000) deadline(376940141) curr?(1) task?(0)
[ 3637.843679][T52604] se: weight(1048576) vruntime(374153145) slice(2800000) deadline(376947908) curr?(1) task?(0)
[ 3637.855131][T52604] se: weight(1048576) vruntime(374149382) slice(2800000) deadline(376949382) curr?(1) task?(0)
[ 3637.866588][T52604] se: weight(1048576) vruntime(374157840) slice(2800000) deadline(376950789) curr?(1) task?(0)
[ 3637.878035][T52604] se: weight(1048576) vruntime(374157433) slice(2800000) deadline(376952365) curr?(1) task?(0)
[ 3637.889490][T52604] se: weight(1048576) vruntime(374161887) slice(2800000) deadline(376956118) curr?(1) task?(0)
[ 3637.900943][T52604] se: weight(1048576) vruntime(374161518) slice(2800000) deadline(376956521) curr?(1) task?(0)
[ 3637.912390][T52604] se: weight(1048576) vruntime(374161232) slice(2800000) deadline(376956615) curr?(1) task?(0)
[ 3637.923839][T52604] se: weight(1048576) vruntime(374175183) slice(2800000) deadline(376969384) curr?(1) task?(0)
[ 3637.935292][T52604] se: weight(1048576) vruntime(374181347) slice(2800000) deadline(376974727) curr?(1) task?(0)
[ 3637.946748][T52604] se: weight(1048576) vruntime(374181463) slice(2800000) deadline(376975684) curr?(1) task?(0)
[ 3637.958202][T52604] se: weight(1048576) vruntime(374186228) slice(2800000) deadline(376976663) curr?(1) task?(0)
[ 3637.969660][T52604] se: weight(1048576) vruntime(374183505) slice(2800000) deadline(376977787) curr?(1) task?(0)
[ 3637.981114][T52604] se: weight(1048576) vruntime(374178084) slice(2800000) deadline(376978084) curr?(1) task?(0)
[ 3637.992569][T52604] se: weight(1048576) vruntime(374187679) slice(2800000) deadline(376982972) curr?(1) task?(0)
[ 3638.004020][T52604] se: weight(1048576) vruntime(374188379) slice(2800000) deadline(376983822) curr?(1) task?(0)
[ 3638.015474][T52604] se: weight(1048576) vruntime(374191743) slice(2800000) deadline(376985784) curr?(1) task?(0)
[ 3638.026929][T52604] se: weight(1048576) vruntime(374185941) slice(2800000) deadline(376985941) curr?(1) task?(0)
[ 3638.038382][T52604] se: weight(1048576) vruntime(374191275) slice(2800000) deadline(376986267) curr?(1) task?(0)
[ 3638.049840][T52604] se: weight(1048576) vruntime(374187448) slice(2800000) deadline(376987448) curr?(1) task?(0)
[ 3638.061296][T52604] se: weight(1048576) vruntime(374192105) slice(2800000) deadline(376987458) curr?(1) task?(0)
[ 3638.072750][T52604] se: weight(1048576) vruntime(374196805) slice(2800000) deadline(376991397) curr?(1) task?(0)
[ 3638.084202][T52604] se: weight(1048576) vruntime(374197834) slice(2800000) deadline(376993056) curr?(1) task?(0)
[ 3638.095654][T52604] se: weight(1048576) vruntime(374199372) slice(2800000) deadline(376993984) curr?(1) task?(0)
[ 3638.107108][T52604] se: weight(1048576) vruntime(374202116) slice(2800000) deadline(376997409) curr?(1) task?(0)
[ 3638.118564][T52604] se: weight(1048576) vruntime(374197917) slice(2800000) deadline(376997917) curr?(1) task?(0)
[ 3638.130022][T52604] se: weight(1048576) vruntime(374204009) slice(2800000) deadline(376998230) curr?(1) task?(0)
[ 3638.141479][T52604] se: weight(1048576) vruntime(374206320) slice(2800000) deadline(376999319) curr?(1) task?(0)
[ 3638.152931][T52604] se: weight(1048576) vruntime(374204433) slice(2800000) deadline(376999786) curr?(1) task?(0)
[ 3638.164386][T52604] se: weight(1048576) vruntime(374204702) slice(2800000) deadline(377000055) curr?(1) task?(0)
[ 3638.175837][T52604] se: weight(1048576) vruntime(374205537) slice(2800000) deadline(377002763) curr?(1) task?(0)
[ 3638.187291][T52604] se: weight(1048576) vruntime(374208770) slice(2800000) deadline(377004384) curr?(1) task?(0)
[ 3638.198747][T52604] se: weight(1048576) vruntime(374210175) slice(2800000) deadline(377006039) curr?(1) task?(0)
[ 3638.210202][T52604] se: weight(1048576) vruntime(374211550) slice(2800000) deadline(377007194) curr?(1) task?(0)
[ 3638.221659][T52604] se: weight(1048576) vruntime(374207528) slice(2800000) deadline(377007528) curr?(1) task?(0)
[ 3638.233113][T52604] se: weight(1048576) vruntime(374210663) slice(2800000) deadline(377010663) curr?(1) task?(0)
[ 3638.244567][T52604] se: weight(1048576) vruntime(374216582) slice(2800000) deadline(377012105) curr?(1) task?(0)
[ 3638.256017][T52604] se: weight(1048576) vruntime(374221163) slice(2800000) deadline(377014102) curr?(1) task?(0)
[ 3638.267471][T52604] se: weight(1048576) vruntime(374219721) slice(2800000) deadline(377014974) curr?(1) task?(0)
[ 3638.278925][T52604] se: weight(1048576) vruntime(374220595) slice(2800000) deadline(377015588) curr?(1) task?(0)
[ 3638.290379][T52604] se: weight(1048576) vruntime(374220778) slice(2800000) deadline(377016171) curr?(1) task?(0)
[ 3638.301836][T52604] se: weight(1048576) vruntime(374222695) slice(2800000) deadline(377016757) curr?(1) task?(0)
[ 3638.313292][T52604] se: weight(1048576) vruntime(374223168) slice(2800000) deadline(377018120) curr?(1) task?(0)
[ 3638.324746][T52604] se: weight(1048576) vruntime(374227579) slice(2800000) deadline(377021550) curr?(1) task?(0)
[ 3638.336197][T52604] se: weight(1048576) vruntime(374226460) slice(2800000) deadline(377021793) curr?(1) task?(0)
[ 3638.347652][T52604] se: weight(1048576) vruntime(374230075) slice(2800000) deadline(377024106) curr?(1) task?(0)
[ 3638.359104][T52604] se: weight(1048576) vruntime(374230223) slice(2800000) deadline(377024565) curr?(1) task?(0)
[ 3638.370561][T52604] se: weight(1048576) vruntime(374230694) slice(2800000) deadline(377024735) curr?(1) task?(0)
[ 3638.382008][T52604] se: weight(1048576) vruntime(374230460) slice(2800000) deadline(377025233) curr?(1) task?(0)
[ 3638.393462][T52604] se: weight(1048576) vruntime(374230479) slice(2800000) deadline(377025592) curr?(1) task?(0)
[ 3638.404915][T52604] se: weight(1048576) vruntime(374232249) slice(2800000) deadline(377027161) curr?(1) task?(0)
[ 3638.416361][T52604] se: weight(1048576) vruntime(374233127) slice(2800000) deadline(377027178) curr?(1) task?(0)
[ 3638.427811][T52604] se: weight(1048576) vruntime(374232979) slice(2800000) deadline(377028463) curr?(1) task?(0)
[ 3638.439266][T52604] se: weight(1048576) vruntime(374228748) slice(2800000) deadline(377028748) curr?(1) task?(0)
[ 3638.450721][T52604] se: weight(1048576) vruntime(374235876) slice(2800000) deadline(377029496) curr?(1) task?(0)
[ 3638.462176][T52604] se: weight(1048576) vruntime(374234505) slice(2800000) deadline(377030008) curr?(1) task?(0)
[ 3638.473632][T52604] se: weight(1048576) vruntime(374236346) slice(2800000) deadline(377031769) curr?(1) task?(0)
[ 3638.485087][T52604] se: weight(1048576) vruntime(374237351) slice(2800000) deadline(377032313) curr?(1) task?(0)
[ 3638.496531][T52604] se: weight(1048576) vruntime(374238982) slice(2800000) deadline(377034104) curr?(1) task?(0)
[ 3638.507982][T52604] se: weight(1048576) vruntime(374246034) slice(2800000) deadline(377039784) curr?(1) task?(0)
[ 3638.519434][T52604] se: weight(1048576) vruntime(374246209) slice(2800000) deadline(377041011) curr?(1) task?(0)
[ 3638.530880][T52604] se: weight(1048576) vruntime(374250580) slice(2800000) deadline(377047785) curr?(1) task?(0)
[ 3638.542334][T52604] se: weight(1048576) vruntime(374255085) slice(2800000) deadline(377047854) curr?(1) task?(0)
[ 3638.553791][T52604] se: weight(1048576) vruntime(374254261) slice(2800000) deadline(377048913) curr?(1) task?(0)
[ 3638.565246][T52604] se: weight(1048576) vruntime(374256209) slice(2800000) deadline(377050080) curr?(1) task?(0)
[ 3638.576699][T52604] se: weight(1048576) vruntime(374256251) slice(2800000) deadline(377051394) curr?(1) task?(0)
[ 3638.588151][T52604] se: weight(1048576) vruntime(374262661) slice(2800000) deadline(377056372) curr?(1) task?(0)
[ 3638.599604][T52604] se: weight(1048576) vruntime(374263961) slice(2800000) deadline(377057071) curr?(1) task?(0)
[ 3638.611057][T52604] se: weight(1048576) vruntime(374262448) slice(2800000) deadline(377057801) curr?(1) task?(0)
[ 3638.622513][T52604] se: weight(1048576) vruntime(374264270) slice(2800000) deadline(377058672) curr?(1) task?(0)
[ 3638.633962][T52604] se: weight(1048576) vruntime(374264795) slice(2800000) deadline(377059807) curr?(1) task?(0)
[ 3638.645417][T52604] se: weight(1048576) vruntime(374265764) slice(2800000) deadline(377061057) curr?(1) task?(0)
[ 3638.656870][T52604] se: weight(1048576) vruntime(374266409) slice(2800000) deadline(377061422) curr?(1) task?(0)
[ 3638.668315][T52604] se: weight(1048576) vruntime(374267596) slice(2800000) deadline(377062168) curr?(1) task?(0)
[ 3638.679766][T52604] se: weight(1048576) vruntime(374269089) slice(2800000) deadline(377063180) curr?(1) task?(0)
[ 3638.691220][T52604] se: weight(1048576) vruntime(374263601) slice(2800000) deadline(377063601) curr?(1) task?(0)
[ 3638.702676][T52604] se: weight(1048576) vruntime(374269738) slice(2800000) deadline(377064810) curr?(1) task?(0)
[ 3638.714131][T52604] se: weight(1048576) vruntime(374275369) slice(2800000) deadline(377070472) curr?(1) task?(0)
[ 3638.725588][T52604] se: weight(1048576) vruntime(374279342) slice(2800000) deadline(377079342) curr?(1) task?(0)
[ 3638.737043][T52604] se: weight(1048576) vruntime(374287283) slice(2800000) deadline(377080763) curr?(1) task?(0)
[ 3638.748488][T52604] se: weight(1048576) vruntime(374289071) slice(2800000) deadline(377081780) curr?(1) task?(0)
[ 3638.759939][T52604] se: weight(1048576) vruntime(374289152) slice(2800000) deadline(377084284) curr?(1) task?(0)
[ 3638.771393][T52604] se: weight(1048576) vruntime(374292490) slice(2800000) deadline(377085920) curr?(1) task?(0)
[ 3638.782847][T52604] se: weight(1048576) vruntime(374291822) slice(2800000) deadline(377086634) curr?(1) task?(0)
[ 3638.794301][T52604] se: weight(1048576) vruntime(374292388) slice(2800000) deadline(377087390) curr?(1) task?(0)
[ 3638.805760][T52604] se: weight(1048576) vruntime(374296477) slice(2800000) deadline(377088045) curr?(1) task?(0)
[ 3638.817219][T52604] se: weight(1048576) vruntime(374292763) slice(2800000) deadline(377088055) curr?(1) task?(0)
[ 3638.828672][T52604] se: weight(1048576) vruntime(374294138) slice(2800000) deadline(377090893) curr?(1) task?(0)
[ 3638.840125][T52604] se: weight(1048576) vruntime(374298472) slice(2800000) deadline(377091071) curr?(1) task?(0)
[ 3638.851579][T52604] se: weight(1048576) vruntime(374296924) slice(2800000) deadline(377092678) curr?(1) task?(0)
[ 3638.863031][T52604] se: weight(1048576) vruntime(374303334) slice(2800000) deadline(377097065) curr?(1) task?(0)
[ 3638.874486][T52604] se: weight(1048576) vruntime(374302565) slice(2800000) deadline(377097868) curr?(1) task?(0)
[ 3638.885941][T52604] se: weight(1048576) vruntime(374303888) slice(2800000) deadline(377099051) curr?(1) task?(0)
[ 3638.897397][T52604] se: weight(1048576) vruntime(374305829) slice(2800000) deadline(377100291) curr?(1) task?(0)
[ 3638.908851][T52604] se: weight(1048576) vruntime(374305899) slice(2800000) deadline(377100480) curr?(1) task?(0)
[ 3638.920304][T52604] se: weight(1048576) vruntime(374309282) slice(2800000) deadline(377104646) curr?(1) task?(0)
[ 3638.931754][T52604] se: weight(1048576) vruntime(374316267) slice(2800000) deadline(377110369) curr?(1) task?(0)
[ 3638.943206][T52604] se: weight(1048576) vruntime(374319818) slice(2800000) deadline(377111716) curr?(1) task?(0)
[ 3638.954662][T52604] se: weight(1048576) vruntime(374317314) slice(2800000) deadline(377112307) curr?(1) task?(0)
[ 3638.966116][T52604] se: weight(1048576) vruntime(374319214) slice(2800000) deadline(377112464) curr?(1) task?(0)
[ 3638.977573][T52604] se: weight(1048576) vruntime(374332155) slice(2800000) deadline(377127368) curr?(1) task?(0)
[ 3638.989028][T52604] se: weight(1048576) vruntime(374335808) slice(2800000) deadline(377129779) curr?(1) task?(0)
[ 3639.000482][T52604] se: weight(1048576) vruntime(374335413) slice(2800000) deadline(377129925) curr?(1) task?(0)
[ 3639.011933][T52604] se: weight(1048576) vruntime(374337876) slice(2800000) deadline(377131476) curr?(1) task?(0)
[ 3639.023387][T52604] se: weight(1048576) vruntime(374341305) slice(2800000) deadline(377141305) curr?(1) task?(0)
[ 3639.034842][T52604] se: weight(1048576) vruntime(374358285) slice(2800000) deadline(377152216) curr?(1) task?(0)
[ 3639.046296][T52604] se: weight(1048576) vruntime(374358421) slice(2800000) deadline(377154345) curr?(1) task?(0)
[ 3639.057756][T52604] se: weight(1048576) vruntime(374361565) slice(2800000) deadline(377156277) curr?(1) task?(0)
[ 3639.069202][T52604] se: weight(1048576) vruntime(374366003) slice(2800000) deadline(377158261) curr?(1) task?(0)
[ 3639.080656][T52604] se: weight(1048576) vruntime(374364658) slice(2800000) deadline(377158769) curr?(1) task?(0)
[ 3639.092109][T52604] se: weight(1048576) vruntime(374364444) slice(2800000) deadline(377159346) curr?(1) task?(0)
[ 3639.103562][T52604] se: weight(1048576) vruntime(374362499) slice(2800000) deadline(377162499) curr?(1) task?(0)
[ 3639.115014][T52604] se: weight(1048576) vruntime(374373854) slice(2800000) deadline(377165161) curr?(1) task?(0)
[ 3639.126470][T52604] se: weight(1048576) vruntime(374376127) slice(2800000) deadline(377169517) curr?(1) task?(0)
[ 3639.137919][T52604] se: weight(1048576) vruntime(374377966) slice(2800000) deadline(377172638) curr?(1) task?(0)
[ 3639.149373][T52604] se: weight(1048576) vruntime(374379406) slice(2800000) deadline(377174508) curr?(1) task?(0)
[ 3639.160827][T52604] se: weight(1048576) vruntime(374376184) slice(2800000) deadline(377176184) curr?(1) task?(0)
[ 3639.172282][T52604] se: weight(1048576) vruntime(374381263) slice(2800000) deadline(377176826) curr?(1) task?(0)
[ 3639.183733][T52604] se: weight(1048576) vruntime(374383129) slice(2800000) deadline(377178462) curr?(1) task?(0)
[ 3639.195188][T52604] se: weight(1048576) vruntime(374385987) slice(2800000) deadline(377180099) curr?(1) task?(0)
[ 3639.206644][T52604] se: weight(1048576) vruntime(374387258) slice(2800000) deadline(377182540) curr?(1) task?(0)
[ 3639.218098][T52604] se: weight(1048576) vruntime(374388750) slice(2800000) deadline(377183112) curr?(1) task?(0)
[ 3639.229554][T52604] se: weight(1048576) vruntime(374390932) slice(2800000) deadline(377186185) curr?(1) task?(0)
[ 3639.241008][T52604] se: weight(1048576) vruntime(374394713) slice(2800000) deadline(377186500) curr?(1) task?(0)
[ 3639.252464][T52604] se: weight(1048576) vruntime(374394242) slice(2800000) deadline(377189045) curr?(1) task?(0)
[ 3639.263915][T52604] se: weight(1048576) vruntime(374395325) slice(2800000) deadline(377190428) curr?(1) task?(0)
[ 3639.275370][T52604] se: weight(1048576) vruntime(374396229) slice(2800000) deadline(377191672) curr?(1) task?(0)
[ 3639.286825][T52604] se: weight(1048576) vruntime(374396682) slice(2800000) deadline(377191945) curr?(1) task?(0)
[ 3639.298278][T52604] se: weight(1048576) vruntime(374399522) slice(2800000) deadline(377194355) curr?(1) task?(0)
[ 3639.309736][T52604] se: weight(1048576) vruntime(374401311) slice(2800000) deadline(377195222) curr?(1) task?(0)
[ 3639.321193][T52604] se: weight(1048576) vruntime(374401409) slice(2800000) deadline(377196542) curr?(1) task?(0)
[ 3639.332647][T52604] se: weight(1048576) vruntime(374402505) slice(2800000) deadline(377197408) curr?(1) task?(0)
[ 3639.344100][T52604] se: weight(1048576) vruntime(374409704) slice(2800000) deadline(377204866) curr?(1) task?(0)
[ 3639.355552][T52604] se: weight(1048576) vruntime(374410091) slice(2800000) deadline(377205775) curr?(1) task?(0)
[ 3639.367006][T52604] se: weight(1048576) vruntime(374406331) slice(2800000) deadline(377206331) curr?(1) task?(0)
[ 3639.378462][T52604] se: weight(1048576) vruntime(374415598) slice(2800000) deadline(377209438) curr?(1) task?(0)
[ 3639.389910][T52604] se: weight(1048576) vruntime(374415323) slice(2800000) deadline(377210295) curr?(1) task?(0)
[ 3639.401358][T52604] se: weight(1048576) vruntime(374421182) slice(2800000) deadline(377214081) curr?(1) task?(0)
[ 3639.412811][T52604] se: weight(1048576) vruntime(374421259) slice(2800000) deadline(377215581) curr?(1) task?(0)
[ 3639.424265][T52604] se: weight(1048576) vruntime(374422667) slice(2800000) deadline(377216979) curr?(1) task?(0)
[ 3639.435715][T52604] se: weight(1048576) vruntime(374422554) slice(2800000) deadline(377217236) curr?(1) task?(0)
[ 3639.447168][T52604] se: weight(1048576) vruntime(374424934) slice(2800000) deadline(377220077) curr?(1) task?(0)
[ 3639.458624][T52604] se: weight(1048576) vruntime(374425846) slice(2800000) deadline(377222020) curr?(1) task?(0)
[ 3639.470079][T52604] se: weight(1048576) vruntime(374429395) slice(2800000) deadline(377222064) curr?(1) task?(0)
[ 3639.481535][T52604] se: weight(1048576) vruntime(374433944) slice(2800000) deadline(377229067) curr?(1) task?(0)
[ 3639.492990][T52604] se: weight(1048576) vruntime(374436086) slice(2800000) deadline(377230788) curr?(1) task?(0)
[ 3639.504445][T52604] se: weight(1048576) vruntime(374437470) slice(2800000) deadline(377233104) curr?(1) task?(0)
[ 3639.515896][T52604] se: weight(1048576) vruntime(374444327) slice(2800000) deadline(377236516) curr?(1) task?(0)
[ 3639.527350][T52604] se: weight(1048576) vruntime(374440546) slice(2800000) deadline(377237020) curr?(1) task?(0)
[ 3639.538805][T52604] se: weight(1048576) vruntime(374445540) slice(2800000) deadline(377239511) curr?(1) task?(0)
[ 3639.550259][T52604] se: weight(1048576) vruntime(374445451) slice(2800000) deadline(377239752) curr?(1) task?(0)
[ 3639.561717][T52604] se: weight(1048576) vruntime(374442295) slice(2800000) deadline(377242295) curr?(1) task?(0)
[ 3639.573173][T52604] se: weight(1048576) vruntime(374452271) slice(2800000) deadline(377247113) curr?(1) task?(0)
[ 3639.584626][T52604] se: weight(1048576) vruntime(374454256) slice(2800000) deadline(377249599) curr?(1) task?(0)
[ 3639.596078][T52604] se: weight(1048576) vruntime(374463449) slice(2800000) deadline(377256759) curr?(1) task?(0)
[ 3639.607532][T52604] se: weight(1048576) vruntime(374461967) slice(2800000) deadline(377256779) curr?(1) task?(0)
[ 3639.618985][T52604] se: weight(1048576) vruntime(374461483) slice(2800000) deadline(377261483) curr?(1) task?(0)
[ 3639.630441][T52604] se: weight(1048576) vruntime(374467281) slice(2800000) deadline(377261763) curr?(1) task?(0)
[ 3639.641897][T52604] se: weight(1048576) vruntime(374469851) slice(2800000) deadline(377269851) curr?(1) task?(0)
[ 3639.653344][T52604] se: weight(1048576) vruntime(374476097) slice(2800000) deadline(377272192) curr?(1) task?(0)
[ 3639.664796][T52604] se: weight(1048576) vruntime(374474099) slice(2800000) deadline(377274099) curr?(1) task?(0)
[ 3639.676251][T52604] se: weight(1048576) vruntime(374482043) slice(2800000) deadline(377277185) curr?(1) task?(0)
[ 3639.687702][T52604] se: weight(1048576) vruntime(374483245) slice(2800000) deadline(377278117) curr?(1) task?(0)
[ 3639.699156][T52604] se: weight(1048576) vruntime(374484011) slice(2800000) deadline(377284011) curr?(1) task?(0)
[ 3639.710613][T52604] se: weight(1048576) vruntime(374492728) slice(2800000) deadline(377287130) curr?(1) task?(0)
[ 3639.722068][T52604] se: weight(1048576) vruntime(374493797) slice(2800000) deadline(377288409) curr?(1) task?(0)
[ 3639.733524][T52604] se: weight(1048576) vruntime(374490308) slice(2800000) deadline(377290308) curr?(1) task?(0)
[ 3639.744978][T52604] se: weight(1048576) vruntime(374496341) slice(2800000) deadline(377290733) curr?(1) task?(0)
[ 3639.756432][T52604] se: weight(1048576) vruntime(374499138) slice(2800000) deadline(377294261) curr?(1) task?(0)
[ 3639.767885][T52604] se: weight(1048576) vruntime(374500459) slice(2800000) deadline(377296112) curr?(1) task?(0)
[ 3639.779339][T52604] se: weight(1048576) vruntime(374502827) slice(2800000) deadline(377297690) curr?(1) task?(0)
[ 3639.790793][T52604] se: weight(1048576) vruntime(374497901) slice(2800000) deadline(377297901) curr?(1) task?(0)
[ 3639.802248][T52604] se: weight(1048576) vruntime(374502995) slice(2800000) deadline(377298048) curr?(1) task?(0)
[ 3639.813706][T52604] se: weight(1048576) vruntime(374505915) slice(2800000) deadline(377299956) curr?(1) task?(0)
[ 3639.825162][T52604] se: weight(1048576) vruntime(374505598) slice(2800000) deadline(377301092) curr?(1) task?(0)
[ 3639.836616][T52604] se: weight(1048576) vruntime(374507584) slice(2800000) deadline(377301485) curr?(1) task?(0)
[ 3639.848068][T52604] se: weight(1048576) vruntime(374508638) slice(2800000) deadline(377303150) curr?(1) task?(0)
[ 3639.859521][T52604] se: weight(1048576) vruntime(374514991) slice(2800000) deadline(377305777) curr?(1) task?(0)
[ 3639.870973][T52604] se: weight(1048576) vruntime(374516696) slice(2800000) deadline(377310216) curr?(1) task?(0)
[ 3639.882429][T52604] se: weight(1048576) vruntime(374515641) slice(2800000) deadline(377312105) curr?(1) task?(0)
[ 3639.893887][T52604] se: weight(1048576) vruntime(374522729) slice(2800000) deadline(377316339) curr?(1) task?(0)
[ 3639.905342][T52604] se: weight(1048576) vruntime(374520066) slice(2800000) deadline(377317171) curr?(1) task?(0)
[ 3639.916795][T52604] se: weight(1048576) vruntime(374522122) slice(2800000) deadline(377317455) curr?(1) task?(0)
[ 3639.928241][T52604] se: weight(1048576) vruntime(374523393) slice(2800000) deadline(377317855) curr?(1) task?(0)
[ 3639.939690][T52604] se: weight(1048576) vruntime(374519270) slice(2800000) deadline(377319270) curr?(1) task?(0)
[ 3639.951144][T52604] se: weight(1048576) vruntime(374526242) slice(2800000) deadline(377320283) curr?(1) task?(0)
[ 3639.962600][T52604] se: weight(1048576) vruntime(374529587) slice(2800000) deadline(377323518) curr?(1) task?(0)
[ 3639.974054][T52604] se: weight(1048576) vruntime(374529085) slice(2800000) deadline(377324408) curr?(1) task?(0)
[ 3639.985510][T52604] se: weight(1048576) vruntime(374532479) slice(2800000) deadline(377332479) curr?(1) task?(0)
[ 3639.996964][T52604] se: weight(1048576) vruntime(374538915) slice(2800000) deadline(377332906) curr?(1) task?(0)
[ 3640.008410][T52604] se: weight(1048576) vruntime(374539281) slice(2800000) deadline(377334243) curr?(1) task?(0)
[ 3640.019862][T52604] se: weight(1048576) vruntime(374541610) slice(2800000) deadline(377334720) curr?(1) task?(0)
[ 3640.031315][T52604] se: weight(1048576) vruntime(374542667) slice(2800000) deadline(377335076) curr?(1) task?(0)
[ 3640.042760][T52604] se: weight(1048576) vruntime(374544155) slice(2800000) deadline(377335652) curr?(1) task?(0)
[ 3640.054215][T52604] se: weight(1048576) vruntime(374547515) slice(2800000) deadline(377342928) curr?(1) task?(0)
[ 3640.065673][T52604] se: weight(1048576) vruntime(374549772) slice(2800000) deadline(377344654) curr?(1) task?(0)
[ 3640.077129][T52604] se: weight(1048576) vruntime(374552573) slice(2800000) deadline(377346304) curr?(1) task?(0)
[ 3640.088582][T52604] se: weight(1048576) vruntime(374551013) slice(2800000) deadline(377351013) curr?(1) task?(0)
[ 3640.100035][T52604] se: weight(1048576) vruntime(374557252) slice(2800000) deadline(377352184) curr?(1) task?(0)
[ 3640.111488][T52604] se: weight(1048576) vruntime(374570427) slice(2800000) deadline(377364428) curr?(1) task?(0)
[ 3640.122942][T52604] se: weight(1048576) vruntime(374573378) slice(2800000) deadline(377368791) curr?(1) task?(0)
[ 3640.134398][T52604] se: weight(1048576) vruntime(374577388) slice(2800000) deadline(377369095) curr?(1) task?(0)
[ 3640.145854][T52604] se: weight(1048576) vruntime(374579872) slice(2800000) deadline(377374914) curr?(1) task?(0)
[ 3640.157302][T52604] se: weight(1048576) vruntime(374576670) slice(2800000) deadline(377376670) curr?(1) task?(0)
[ 3640.168755][T52604] se: weight(1048576) vruntime(374584099) slice(2800000) deadline(377379281) curr?(1) task?(0)
[ 3640.180211][T52604] se: weight(1048576) vruntime(374584660) slice(2800000) deadline(377384660) curr?(1) task?(0)
[ 3640.191661][T52604] se: weight(1048576) vruntime(374596006) slice(2800000) deadline(377391469) curr?(1) task?(0)
[ 3640.203116][T52604] se: weight(1048576) vruntime(374600030) slice(2800000) deadline(377392098) curr?(1) task?(0)
[ 3640.214571][T52604] se: weight(1048576) vruntime(374604603) slice(2800000) deadline(377398464) curr?(1) task?(0)
[ 3640.226026][T52604] se: weight(1048576) vruntime(374605621) slice(2800000) deadline(377401355) curr?(1) task?(0)
[ 3640.237483][T52604] se: weight(1048576) vruntime(374612188) slice(2800000) deadline(377404226) curr?(1) task?(0)
[ 3640.248937][T52604] se: weight(1048576) vruntime(374611228) slice(2800000) deadline(377411228) curr?(1) task?(0)
[ 3640.260391][T52604] se: weight(1048576) vruntime(374617243) slice(2800000) deadline(377411334) curr?(1) task?(0)
[ 3640.271841][T52604] se: weight(1048576) vruntime(374616339) slice(2800000) deadline(377411762) curr?(1) task?(0)
[ 3640.283294][T52604] se: weight(1048576) vruntime(374620666) slice(2800000) deadline(377416039) curr?(1) task?(0)
[ 3640.294748][T52604] se: weight(1048576) vruntime(374627340) slice(2800000) deadline(377422633) curr?(1) task?(0)
[ 3640.306202][T52604] se: weight(1048576) vruntime(374628606) slice(2800000) deadline(377428606) curr?(1) task?(0)
[ 3640.317659][T52604] se: weight(1048576) vruntime(374636211) slice(2800000) deadline(377431624) curr?(1) task?(0)
[ 3640.329114][T52604] se: weight(1048576) vruntime(374636267) slice(2800000) deadline(377431630) curr?(1) task?(0)
[ 3640.340568][T52604] se: weight(1048576) vruntime(374637943) slice(2800000) deadline(377433287) curr?(1) task?(0)
[ 3640.352020][T52604] se: weight(1048576) vruntime(374635778) slice(2800000) deadline(377435778) curr?(1) task?(0)
[ 3640.363474][T52604] se: weight(1048576) vruntime(374645146) slice(2800000) deadline(377440008) curr?(1) task?(0)
[ 3640.374927][T52604] se: weight(1048576) vruntime(374645651) slice(2800000) deadline(377440624) curr?(1) task?(0)
[ 3640.386383][T52604] se: weight(1048576) vruntime(374647575) slice(2800000) deadline(377441586) curr?(1) task?(0)
[ 3640.397840][T52604] se: weight(1048576) vruntime(374649295) slice(2800000) deadline(377444177) curr?(1) task?(0)
[ 3640.409297][T52604] se: weight(1048576) vruntime(374649488) slice(2800000) deadline(377444591) curr?(1) task?(0)
[ 3640.420751][T52604] se: weight(1048576) vruntime(374655094) slice(2800000) deadline(377449426) curr?(1) task?(0)
[ 3640.432205][T52604] se: weight(1048576) vruntime(374660107) slice(2800000) deadline(377453196) curr?(1) task?(0)
[ 3640.443654][T52604] se: weight(1048576) vruntime(374660573) slice(2800000) deadline(377455074) curr?(1) task?(0)
[ 3640.455107][T52604] se: weight(1048576) vruntime(374664939) slice(2800000) deadline(377457809) curr?(1) task?(0)
[ 3640.466563][T52604] se: weight(1048576) vruntime(374664935) slice(2800000) deadline(377459177) curr?(1) task?(0)
[ 3640.478018][T52604] se: weight(1048576) vruntime(374665938) slice(2800000) deadline(377459819) curr?(1) task?(0)
[ 3640.489475][T52604] se: weight(1048576) vruntime(374668495) slice(2800000) deadline(377463337) curr?(1) task?(0)
[ 3640.500929][T52604] se: weight(1048576) vruntime(374668761) slice(2800000) deadline(377465626) curr?(1) task?(0)
[ 3640.512376][T52604] se: weight(1048576) vruntime(374673009) slice(2800000) deadline(377468031) curr?(1) task?(0)
[ 3640.523827][T52604] se: weight(1048576) vruntime(374674010) slice(2800000) deadline(377468912) curr?(1) task?(0)
[ 3640.535281][T52604] se: weight(1048576) vruntime(374675805) slice(2800000) deadline(377469015) curr?(1) task?(0)
[ 3640.546735][T52604] se: weight(1048576) vruntime(374675425) slice(2800000) deadline(377471579) curr?(1) task?(0)
[ 3640.558190][T52604] se: weight(1048576) vruntime(374680446) slice(2800000) deadline(377474487) curr?(1) task?(0)
[ 3640.569647][T52604] se: weight(1048576) vruntime(374682312) slice(2800000) deadline(377476623) curr?(1) task?(0)
[ 3640.581102][T52604] se: weight(1048576) vruntime(374685179) slice(2800000) deadline(377479581) curr?(1) task?(0)
[ 3640.592555][T52604] se: weight(1048576) vruntime(374687393) slice(2800000) deadline(377479911) curr?(1) task?(0)
[ 3640.604007][T52604] se: weight(1048576) vruntime(374684299) slice(2800000) deadline(377481534) curr?(1) task?(0)
[ 3640.615461][T52604] se: weight(1048576) vruntime(374692877) slice(2800000) deadline(377488009) curr?(1) task?(0)
[ 3640.626915][T52604] se: weight(1048576) vruntime(374694247) slice(2800000) deadline(377488919) curr?(1) task?(0)
[ 3640.638371][T52604] se: weight(1048576) vruntime(374698132) slice(2800000) deadline(377492403) curr?(1) task?(0)
[ 3640.649819][T52604] se: weight(1048576) vruntime(374700158) slice(2800000) deadline(377495581) curr?(1) task?(0)
[ 3640.661275][T52604] se: weight(1048576) vruntime(374707269) slice(2800000) deadline(377502622) curr?(1) task?(0)
[ 3640.672728][T52604] se: weight(1048576) vruntime(374714845) slice(2800000) deadline(377510188) curr?(1) task?(0)
[ 3640.684182][T52604] se: weight(1048576) vruntime(374715734) slice(2800000) deadline(377510947) curr?(1) task?(0)
[ 3640.695632][T52604] se: weight(1048576) vruntime(374711460) slice(2800000) deadline(377511460) curr?(1) task?(0)
[ 3640.707086][T52604] se: weight(1048576) vruntime(374720872) slice(2800000) deadline(377515694) curr?(1) task?(0)
[ 3640.718542][T52604] se: weight(1048576) vruntime(374723932) slice(2800000) deadline(377517072) curr?(1) task?(0)
[ 3640.729997][T52604] se: weight(1048576) vruntime(374722843) slice(2800000) deadline(377517545) curr?(1) task?(0)
[ 3640.741453][T52604] se: weight(1048576) vruntime(374724347) slice(2800000) deadline(377519139) curr?(1) task?(0)
[ 3640.752908][T52604] se: weight(1048576) vruntime(374724931) slice(2800000) deadline(377520264) curr?(1) task?(0)
[ 3640.764354][T52604] se: weight(1048576) vruntime(374727921) slice(2800000) deadline(377523204) curr?(1) task?(0)
[ 3640.775806][T52604] se: weight(1048576) vruntime(374729193) slice(2800000) deadline(377523995) curr?(1) task?(0)
[ 3640.787260][T52604] se: weight(1048576) vruntime(374734754) slice(2800000) deadline(377529636) curr?(1) task?(0)
[ 3640.798714][T52604] se: weight(1048576) vruntime(374739059) slice(2800000) deadline(377533040) curr?(1) task?(0)
[ 3640.810168][T52604] se: weight(1048576) vruntime(374742149) slice(2800000) deadline(377533486) curr?(1) task?(0)
[ 3640.821627][T52604] se: weight(1048576) vruntime(374733760) slice(2800000) deadline(377533760) curr?(1) task?(0)
[ 3640.833084][T52604] se: weight(1048576) vruntime(374739312) slice(2800000) deadline(377533964) curr?(1) task?(0)
[ 3640.844536][T52604] se: weight(1048576) vruntime(374739524) slice(2800000) deadline(377534046) curr?(1) task?(0)
[ 3640.855990][T52604] se: weight(1048576) vruntime(374739316) slice(2800000) deadline(377535080) curr?(1) task?(0)
[ 3640.867442][T52604] se: weight(1048576) vruntime(374739013) slice(2800000) deadline(377536589) curr?(1) task?(0)
[ 3640.878895][T52604] se: weight(1048576) vruntime(374742951) slice(2800000) deadline(377539285) curr?(1) task?(0)
[ 3640.890351][T52604] se: weight(1048576) vruntime(374747732) slice(2800000) deadline(377540961) curr?(1) task?(0)
[ 3640.901806][T52604] se: weight(1048576) vruntime(374746015) slice(2800000) deadline(377541087) curr?(1) task?(0)
[ 3640.913260][T52604] se: weight(1048576) vruntime(374747757) slice(2800000) deadline(377542660) curr?(1) task?(0)
[ 3640.924713][T52604] se: weight(1048576) vruntime(374748011) slice(2800000) deadline(377542913) curr?(1) task?(0)
[ 3640.936167][T52604] se: weight(1048576) vruntime(374748871) slice(2800000) deadline(377544094) curr?(1) task?(0)
[ 3640.947618][T52604] se: weight(1048576) vruntime(374750068) slice(2800000) deadline(377545681) curr?(1) task?(0)
[ 3640.959072][T52604] se: weight(1048576) vruntime(374753520) slice(2800000) deadline(377548012) curr?(1) task?(0)
[ 3640.970529][T52604] se: weight(1048576) vruntime(374755959) slice(2800000) deadline(377551011) curr?(1) task?(0)
[ 3640.981983][T52604] se: weight(1048576) vruntime(374757341) slice(2800000) deadline(377551873) curr?(1) task?(0)
[ 3640.993440][T52604] se: weight(1048576) vruntime(374758811) slice(2800000) deadline(377552661) curr?(1) task?(0)
[ 3641.004895][T52604] se: weight(1048576) vruntime(374766340) slice(2800000) deadline(377557638) curr?(1) task?(0)
[ 3641.016350][T52604] se: weight(1048576) vruntime(374762370) slice(2800000) deadline(377558484) curr?(1) task?(0)
[ 3641.027800][T52604] se: weight(1048576) vruntime(374770276) slice(2800000) deadline(377563085) curr?(1) task?(0)
[ 3641.039255][T52604] se: weight(1048576) vruntime(374775708) slice(2800000) deadline(377575708) curr?(1) task?(0)
[ 3641.050709][T52604] se: weight(1048576) vruntime(374785957) slice(2800000) deadline(377583503) curr?(1) task?(0)
[ 3641.062162][T52604] se: weight(1048576) vruntime(374789459) slice(2800000) deadline(377584392) curr?(1) task?(0)
[ 3641.073610][T52604] se: weight(1048576) vruntime(374797164) slice(2800000) deadline(377591546) curr?(1) task?(0)
[ 3641.085066][T52604] se: weight(1048576) vruntime(374799442) slice(2800000) deadline(377599442) curr?(1) task?(0)
[ 3641.096519][T52604] se: weight(1048576) vruntime(374807875) slice(2800000) deadline(377603499) curr?(1) task?(0)
[ 3641.107971][T52604] se: weight(1048576) vruntime(374809192) slice(2800000) deadline(377604825) curr?(1) task?(0)
[ 3641.119424][T52604] se: weight(1048576) vruntime(374812356) slice(2800000) deadline(377607299) curr?(1) task?(0)
[ 3641.130877][T52604] se: weight(1048576) vruntime(374807725) slice(2800000) deadline(377607725) curr?(1) task?(0)
[ 3641.142334][T52604] se: weight(1048576) vruntime(374820069) slice(2800000) deadline(377614300) curr?(1) task?(0)
[ 3641.153782][T52604] se: weight(1048576) vruntime(374815215) slice(2800000) deadline(377615215) curr?(1) task?(0)
[ 3641.165228][T52604] se: weight(1048576) vruntime(374820421) slice(2800000) deadline(377616235) curr?(1) task?(0)
[ 3641.176682][T52604] se: weight(1048576) vruntime(374830059) slice(2800000) deadline(377624030) curr?(1) task?(0)
[ 3641.188135][T52604] se: weight(1048576) vruntime(374828604) slice(2800000) deadline(377624117) curr?(1) task?(0)
[ 3641.199586][T52604] se: weight(1048576) vruntime(374832371) slice(2800000) deadline(377624860) curr?(1) task?(0)
[ 3641.211040][T52604] se: weight(1048576) vruntime(374842047) slice(2800000) deadline(377637180) curr?(1) task?(0)
[ 3641.222495][T52604] se: weight(1048576) vruntime(374843713) slice(2800000) deadline(377639096) curr?(1) task?(0)
[ 3641.233949][T52604] se: weight(1048576) vruntime(374846067) slice(2800000) deadline(377639307) curr?(1) task?(0)
[ 3641.245406][T52604] se: weight(1048576) vruntime(374844501) slice(2800000) deadline(377639384) curr?(1) task?(0)
[ 3641.256860][T52604] se: weight(1048576) vruntime(374847268) slice(2800000) deadline(377640247) curr?(1) task?(0)
[ 3641.268306][T52604] se: weight(1048576) vruntime(374845913) slice(2800000) deadline(377640996) curr?(1) task?(0)
[ 3641.279755][T52604] se: weight(1048576) vruntime(374849718) slice(2800000) deadline(377645031) curr?(1) task?(0)
[ 3641.291209][T52604] se: weight(1048576) vruntime(374851896) slice(2800000) deadline(377646538) curr?(1) task?(0)
[ 3641.302664][T52604] se: weight(1048576) vruntime(374854229) slice(2800000) deadline(377648160) curr?(1) task?(0)
[ 3641.314117][T52604] se: weight(1048576) vruntime(374854045) slice(2800000) deadline(377648316) curr?(1) task?(0)
[ 3641.325566][T52604] se: weight(1048576) vruntime(374857515) slice(2800000) deadline(377651426) curr?(1) task?(0)
[ 3641.337023][T52604] se: weight(1048576) vruntime(374857246) slice(2800000) deadline(377652439) curr?(1) task?(0)
[ 3641.348478][T52604] se: weight(1048576) vruntime(374852507) slice(2800000) deadline(377652507) curr?(1) task?(0)
[ 3641.359932][T52604] se: weight(1048576) vruntime(374857054) slice(2800000) deadline(377652657) curr?(1) task?(0)
[ 3641.371384][T52604] se: weight(1048576) vruntime(374853532) slice(2800000) deadline(377653532) curr?(1) task?(0)
[ 3641.382836][T52604] se: weight(1048576) vruntime(374859304) slice(2800000) deadline(377654276) curr?(1) task?(0)
[ 3641.394291][T52604] se: weight(1048576) vruntime(374855095) slice(2800000) deadline(377655095) curr?(1) task?(0)
[ 3641.405748][T52604] se: weight(1048576) vruntime(374861393) slice(2800000) deadline(377656406) curr?(1) task?(0)
[ 3641.417203][T52604] se: weight(1048576) vruntime(374862387) slice(2800000) deadline(377657340) curr?(1) task?(0)
[ 3641.428656][T52604] se: weight(1048576) vruntime(374863512) slice(2800000) deadline(377659336) curr?(1) task?(0)
[ 3641.440109][T52604] se: weight(1048576) vruntime(374869312) slice(2800000) deadline(377662792) curr?(1) task?(0)
[ 3641.451560][T52604] se: weight(1048576) vruntime(374876445) slice(2800000) deadline(377671909) curr?(1) task?(0)
[ 3641.463014][T52604] se: weight(1048576) vruntime(374877405) slice(2800000) deadline(377673339) curr?(1) task?(0)
[ 3641.474470][T52604] se: weight(1048576) vruntime(374879689) slice(2800000) deadline(377674671) curr?(1) task?(0)
[ 3641.485924][T52604] se: weight(1048576) vruntime(374886180) slice(2800000) deadline(377680031) curr?(1) task?(0)
[ 3641.497382][T52604] se: weight(1048576) vruntime(374886558) slice(2800000) deadline(377681811) curr?(1) task?(0)
[ 3641.508837][T52604] se: weight(1048576) vruntime(374893848) slice(2800000) deadline(377687478) curr?(1) task?(0)
[ 3641.520290][T52604] se: weight(1048576) vruntime(374892982) slice(2800000) deadline(377688415) curr?(1) task?(0)
[ 3641.531741][T52604] se: weight(1048576) vruntime(374897763) slice(2800000) deadline(377690782) curr?(1) task?(0)
[ 3641.543195][T52604] se: weight(1048576) vruntime(374897085) slice(2800000) deadline(377693299) curr?(1) task?(0)
[ 3641.554650][T52604] se: weight(1048576) vruntime(374901854) slice(2800000) deadline(377696025) curr?(1) task?(0)
[ 3641.566103][T52604] se: weight(1048576) vruntime(374902731) slice(2800000) deadline(377698084) curr?(1) task?(0)
[ 3641.577561][T52604] se: weight(1048576) vruntime(374905212) slice(2800000) deadline(377700636) curr?(1) task?(0)
[ 3641.589016][T52604] se: weight(1048576) vruntime(374909249) slice(2800000) deadline(377702589) curr?(1) task?(0)
[ 3641.600469][T52604] se: weight(1048576) vruntime(374910277) slice(2800000) deadline(377705490) curr?(1) task?(0)
[ 3641.611923][T52604] se: weight(1048576) vruntime(374911259) slice(2800000) deadline(377706081) curr?(1) task?(0)
[ 3641.623377][T52604] se: weight(1048576) vruntime(374922649) slice(2800000) deadline(377718322) curr?(1) task?(0)
[ 3641.634831][T52604] se: weight(1048576) vruntime(374924640) slice(2800000) deadline(377719813) curr?(1) task?(0)
[ 3641.646287][T52604] se: weight(1048576) vruntime(374927810) slice(2800000) deadline(377722322) curr?(1) task?(0)
[ 3641.657742][T52604] se: weight(1048576) vruntime(374927299) slice(2800000) deadline(377723193) curr?(1) task?(0)
[ 3641.669198][T52604] se: weight(1048576) vruntime(374928507) slice(2800000) deadline(377723750) curr?(1) task?(0)
[ 3641.680652][T52604] se: weight(1048576) vruntime(374924555) slice(2800000) deadline(377724555) curr?(1) task?(0)
[ 3641.692105][T52604] se: weight(1048576) vruntime(374940052) slice(2800000) deadline(377735315) curr?(1) task?(0)
[ 3641.703555][T52604] se: weight(1048576) vruntime(374941101) slice(2800000) deadline(377736184) curr?(1) task?(0)
[ 3641.715008][T52604] se: weight(1048576) vruntime(374941171) slice(2800000) deadline(377736463) curr?(1) task?(0)
[ 3641.726464][T52604] se: weight(1048576) vruntime(374945912) slice(2800000) deadline(377740244) curr?(1) task?(0)
[ 3641.737919][T52604] se: weight(1048576) vruntime(374946021) slice(2800000) deadline(377740252) curr?(1) task?(0)
[ 3641.749375][T52604] se: weight(1048576) vruntime(374948745) slice(2800000) deadline(377743848) curr?(1) task?(0)
[ 3641.760830][T52604] se: weight(1048576) vruntime(374950341) slice(2800000) deadline(377744653) curr?(1) task?(0)
[ 3641.772284][T52604] se: weight(1048576) vruntime(374949597) slice(2800000) deadline(377745441) curr?(1) task?(0)
[ 3641.783734][T52604] se: weight(1048576) vruntime(374953565) slice(2800000) deadline(377747866) curr?(1) task?(0)
[ 3641.795187][T52604] se: weight(1048576) vruntime(374952802) slice(2800000) deadline(377750239) curr?(1) task?(0)
[ 3641.806642][T52604] se: weight(1048576) vruntime(374956280) slice(2800000) deadline(377751242) curr?(1) task?(0)
[ 3641.818097][T52604] se: weight(1048576) vruntime(374960137) slice(2800000) deadline(377755059) curr?(1) task?(0)
[ 3641.829554][T52604] se: weight(1048576) vruntime(374962491) slice(2800000) deadline(377757154) curr?(1) task?(0)
[ 3641.841009][T52604] se: weight(1048576) vruntime(374963272) slice(2800000) deadline(377757744) curr?(1) task?(0)
[ 3641.852462][T52604] se: weight(1048576) vruntime(374964738) slice(2800000) deadline(377757877) curr?(1) task?(0)
[ 3641.863915][T52604] se: weight(1048576) vruntime(374965852) slice(2800000) deadline(377759303) curr?(1) task?(0)
[ 3641.875368][T52604] se: weight(1048576) vruntime(374964752) slice(2800000) deadline(377760335) curr?(1) task?(0)
[ 3641.886820][T52604] se: weight(1048576) vruntime(374966061) slice(2800000) deadline(377760983) curr?(1) task?(0)
[ 3641.898277][T52604] se: weight(1048576) vruntime(374968082) slice(2800000) deadline(377763645) curr?(1) task?(0)
[ 3641.909724][T52604] se: weight(1048576) vruntime(374970002) slice(2800000) deadline(377765074) curr?(1) task?(0)
[ 3641.921180][T52604] se: weight(1048576) vruntime(374975951) slice(2800000) deadline(377775951) curr?(1) task?(0)
[ 3641.932634][T52604] se: weight(1048576) vruntime(374977489) slice(2800000) deadline(377777489) curr?(1) task?(0)
[ 3641.944088][T52604] se: weight(1048576) vruntime(374982565) slice(2800000) deadline(377777737) curr?(1) task?(0)
[ 3641.955537][T52604] se: weight(1048576) vruntime(374984857) slice(2800000) deadline(377779999) curr?(1) task?(0)
[ 3641.966992][T52604] se: weight(1048576) vruntime(374988396) slice(2800000) deadline(377783859) curr?(1) task?(0)
[ 3641.978447][T52604] se: weight(1048576) vruntime(374989283) slice(2800000) deadline(377784266) curr?(1) task?(0)
[ 3641.989903][T52604] se: weight(1048576) vruntime(374990713) slice(2800000) deadline(377784995) curr?(1) task?(0)
[ 3642.001359][T52604] se: weight(1048576) vruntime(374990967) slice(2800000) deadline(377785589) curr?(1) task?(0)
[ 3642.012814][T52604] se: weight(1048576) vruntime(374992790) slice(2800000) deadline(377786100) curr?(1) task?(0)
[ 3642.024269][T52604] se: weight(1048576) vruntime(374994122) slice(2800000) deadline(377787993) curr?(1) task?(0)
[ 3642.035721][T52604] se: weight(1048576) vruntime(374994825) slice(2800000) deadline(377789777) curr?(1) task?(0)
[ 3642.047175][T52604] se: weight(1048576) vruntime(374994957) slice(2800000) deadline(377790150) curr?(1) task?(0)
[ 3642.058629][T52604] se: weight(1048576) vruntime(374998605) slice(2800000) deadline(377793738) curr?(1) task?(0)
[ 3642.070084][T52604] se: weight(1048576) vruntime(374998695) slice(2800000) deadline(377793948) curr?(1) task?(0)
[ 3642.081544][T52604] se: weight(1048576) vruntime(375002116) slice(2800000) deadline(377797268) curr?(1) task?(0)
[ 3642.092991][T52604] se: weight(1048576) vruntime(375003915) slice(2800000) deadline(377797516) curr?(1) task?(0)
[ 3642.104445][T52604] se: weight(1048576) vruntime(375003029) slice(2800000) deadline(377797801) curr?(1) task?(0)
[ 3642.115898][T52604] se: weight(1048576) vruntime(375004515) slice(2800000) deadline(377798847) curr?(1) task?(0)
[ 3642.127352][T52604] se: weight(1048576) vruntime(375007135) slice(2800000) deadline(377801606) curr?(1) task?(0)
[ 3642.138806][T52604] se: weight(1048576) vruntime(375002094) slice(2800000) deadline(377802094) curr?(1) task?(0)
[ 3642.150262][T52604] se: weight(1048576) vruntime(375014512) slice(2800000) deadline(377810316) curr?(1) task?(0)
[ 3642.161710][T52604] se: weight(1048576) vruntime(375022122) slice(2800000) deadline(377814430) curr?(1) task?(0)
[ 3642.173156][T52604] se: weight(1048576) vruntime(375019689) slice(2800000) deadline(377814691) curr?(1) task?(0)
[ 3642.184609][T52604] se: weight(1048576) vruntime(375023318) slice(2800000) deadline(377818220) curr?(1) task?(0)
[ 3642.196063][T52604] se: weight(1048576) vruntime(375038805) slice(2800000) deadline(377832546) curr?(1) task?(0)
[ 3642.207514][T52604] se: weight(1048576) vruntime(375046180) slice(2800000) deadline(377846180) curr?(1) task?(0)
[ 3642.218969][T52604] se: weight(1048576) vruntime(375057166) slice(2800000) deadline(377851898) curr?(1) task?(0)
[ 3642.230424][T52604] se: weight(1048576) vruntime(375058461) slice(2800000) deadline(377853373) curr?(1) task?(0)
[ 3642.241878][T52604] se: weight(1048576) vruntime(375054662) slice(2800000) deadline(377854662) curr?(1) task?(0)
[ 3642.253336][T52604] se: weight(1048576) vruntime(375089122) slice(2800000) deadline(377884475) curr?(1) task?(0)
[ 3642.264790][T52604] se: weight(1048576) vruntime(375098118) slice(2800000) deadline(377893090) curr?(1) task?(0)
[ 3642.276236][T52604] se: weight(1048576) vruntime(375103966) slice(2800000) deadline(377899079) curr?(1) task?(0)
[ 3642.287686][T52604] se: weight(1048576) vruntime(375113491) slice(2800000) deadline(377908984) curr?(1) task?(0)
[ 3642.299141][T52604] se: weight(1048576) vruntime(375132516) slice(2800000) deadline(377927779) curr?(1) task?(0)
[ 3642.310596][T52604] se: weight(1048576) vruntime(375154044) slice(2800000) deadline(377948055) curr?(1) task?(0)
[ 3642.322050][T52604] se: weight(1048576) vruntime(375154197) slice(2800000) deadline(377954197) curr?(1) task?(0)
[ 3642.333507][T52604] se: weight(1048576) vruntime(375162198) slice(2800000) deadline(377955668) curr?(1) task?(0)
[ 3642.344962][T52604] se: weight(1048576) vruntime(375239013) slice(2800000) deadline(378032724) curr?(1) task?(0)
[ 3642.356416][T52604] se: weight(1048576) vruntime(375237420) slice(2800000) deadline(378037420) curr?(1) task?(0)
[ 3642.367867][T52604] se: weight(1048576) vruntime(375255259) slice(2800000) deadline(378050382) curr?(1) task?(0)
[ 3642.379320][T52604] se: weight(1048576) vruntime(375259055) slice(2800000) deadline(378051223) curr?(1) task?(0)
[ 3642.390774][T52604] se: weight(1048576) vruntime(375261829) slice(2800000) deadline(378055660) curr?(1) task?(0)
[ 3642.402229][T52604] se: weight(1048576) vruntime(375327137) slice(2800000) deadline(378122760) curr?(1) task?(0)
[ 3642.413685][T52604] se: weight(1048576) vruntime(375333973) slice(2800000) deadline(378127033) curr?(1) task?(0)
[ 3642.425142][T52604] se: weight(1048576) vruntime(375334097) slice(2800000) deadline(378134097) curr?(1) task?(0)
[ 3642.436594][T52604] se: weight(1048576) vruntime(375352575) slice(2800000) deadline(378145875) curr?(1) task?(0)
[ 3642.448048][T52604] se: weight(1048576) vruntime(375347082) slice(2800000) deadline(378147082) curr?(1) task?(0)
[ 3642.459499][T52604] se: weight(1048576) vruntime(375373155) slice(2800000) deadline(378164993) curr?(1) task?(0)
[ 3642.470953][T52604] se: weight(1048576) vruntime(375375100) slice(2800000) deadline(378167799) curr?(1) task?(0)
[ 3642.482409][T52604] se: weight(1048576) vruntime(375392464) slice(2800000) deadline(378186655) curr?(1) task?(0)
[ 3642.493862][T52604] se: weight(1048576) vruntime(375438734) slice(2800000) deadline(378232935) curr?(1) task?(0)
[ 3642.505319][T52604] se: weight(1048576) vruntime(375442183) slice(2800000) deadline(378233610) curr?(1) task?(0)
[ 3642.516775][T52604] se: weight(1048576) vruntime(375474447) slice(2800000) deadline(378268358) curr?(1) task?(0)
[ 3642.528231][T52604] se: weight(1048576) vruntime(375500311) slice(2800000) deadline(378290276) curr?(1) task?(0)
[ 3642.539681][T52604] se: weight(1048576) vruntime(375521103) slice(2800000) deadline(378313682) curr?(1) task?(0)
[ 3642.551135][T52604] se: weight(1048576) vruntime(375528843) slice(2800000) deadline(378328843) curr?(1) task?(0)
[ 3642.562589][T52604] se: weight(1048576) vruntime(375542801) slice(2800000) deadline(378335170) curr?(1) task?(0)
[ 3642.574042][T52604] se: weight(1048576) vruntime(375542775) slice(2800000) deadline(378335844) curr?(1) task?(0)
[ 3642.585491][T52604] se: weight(1048576) vruntime(375543834) slice(2800000) deadline(378335882) curr?(1) task?(0)
[ 3642.596947][T52604] se: weight(1048576) vruntime(375541869) slice(2800000) deadline(378336331) curr?(1) task?(0)
[ 3642.608401][T52604] se: weight(1048576) vruntime(375544678) slice(2800000) deadline(378339650) curr?(1) task?(0)
[ 3642.619853][T52604] se: weight(1048576) vruntime(375570740) slice(2800000) deadline(378365091) curr?(1) task?(0)
[ 3642.631305][T52604] se: weight(1048576) vruntime(375593170) slice(2800000) deadline(378387321) curr?(1) task?(0)
[ 3642.642757][T52604] se: weight(1048576) vruntime(375596169) slice(2800000) deadline(378389960) curr?(1) task?(0)
[ 3642.654214][T52604] se: weight(1048576) vruntime(375595449) slice(2800000) deadline(378391994) curr?(1) task?(0)
[ 3642.665661][T52604] se: weight(1048576) vruntime(375599417) slice(2800000) deadline(378394981) curr?(1) task?(0)
[ 3642.677117][T52604] se: weight(1048576) vruntime(375596317) slice(2800000) deadline(378396317) curr?(1) task?(0)
[ 3642.688570][T52604] se: weight(1048576) vruntime(375603501) slice(2800000) deadline(378403501) curr?(1) task?(0)
[ 3642.700015][T52604] se: weight(1048576) vruntime(375617770) slice(2800000) deadline(378411060) curr?(1) task?(0)
[ 3642.711467][T52604] se: weight(1048576) vruntime(375617901) slice(2800000) deadline(378411561) curr?(1) task?(0)
[ 3642.722921][T52604] se: weight(1048576) vruntime(375628426) slice(2800000) deadline(378421465) curr?(1) task?(0)
[ 3642.734376][T52604] se: weight(1048576) vruntime(375638325) slice(2800000) deadline(378431895) curr?(1) task?(0)
[ 3642.745831][T52604] se: weight(1048576) vruntime(375636757) slice(2800000) deadline(378431990) curr?(1) task?(0)
[ 3642.757287][T52604] se: weight(1048576) vruntime(375637839) slice(2800000) deadline(378432301) curr?(1) task?(0)
[ 3642.768741][T52604] se: weight(1048576) vruntime(375644237) slice(2800000) deadline(378437016) curr?(1) task?(0)
[ 3642.780186][T52604] se: weight(1048576) vruntime(375640962) slice(2800000) deadline(378440962) curr?(1) task?(0)
[ 3642.791637][T52604] se: weight(1048576) vruntime(375647723) slice(2800000) deadline(378447723) curr?(1) task?(0)
[ 3642.803090][T52604] se: weight(1048576) vruntime(375662925) slice(2800000) deadline(378456616) curr?(1) task?(0)
[ 3642.814545][T52604] se: weight(1048576) vruntime(375665957) slice(2800000) deadline(378459357) curr?(1) task?(0)
[ 3642.825997][T52604] se: weight(1048576) vruntime(375673086) slice(2800000) deadline(378467298) curr?(1) task?(0)
[ 3642.837447][T52604] se: weight(1048576) vruntime(375685432) slice(2800000) deadline(378478652) curr?(1) task?(0)
[ 3642.848905][T52604] se: weight(1048576) vruntime(375689304) slice(2800000) deadline(378483365) curr?(1) task?(0)
[ 3642.860358][T52604] se: weight(1048576) vruntime(375690267) slice(2800000) deadline(378484028) curr?(1) task?(0)
[ 3642.871810][T52604] se: weight(1048576) vruntime(375691846) slice(2800000) deadline(378487179) curr?(1) task?(0)
[ 3642.883262][T52604] se: weight(1048576) vruntime(375697741) slice(2800000) deadline(378491010) curr?(1) task?(0)
[ 3642.894715][T52604] se: weight(1048576) vruntime(375698157) slice(2800000) deadline(378492208) curr?(1) task?(0)
[ 3642.906170][T52604] se: weight(1048576) vruntime(375719406) slice(2800000) deadline(378509892) curr?(1) task?(0)
[ 3642.917626][T52604] se: weight(1048576) vruntime(375717481) slice(2800000) deadline(378510550) curr?(1) task?(0)
[ 3642.929072][T52604] se: weight(1048576) vruntime(375732595) slice(2800000) deadline(378526696) curr?(1) task?(0)
[ 3642.940525][T52604] se: weight(1048576) vruntime(375736620) slice(2800000) deadline(378530972) curr?(1) task?(0)
[ 3642.951980][T52604] se: weight(1048576) vruntime(375741505) slice(2800000) deadline(378535016) curr?(1) task?(0)
[ 3642.963429][T52604] se: weight(1048576) vruntime(375750495) slice(2800000) deadline(378544115) curr?(1) task?(0)
[ 3642.974883][T52604] se: weight(1048576) vruntime(375755709) slice(2800000) deadline(378549470) curr?(1) task?(0)
[ 3642.986338][T52604] se: weight(1048576) vruntime(375751092) slice(2800000) deadline(378551092) curr?(1) task?(0)
[ 3642.997793][T52604] se: weight(1048576) vruntime(375759239) slice(2800000) deadline(378553491) curr?(1) task?(0)
[ 3643.009250][T52604] se: weight(1048576) vruntime(375765940) slice(2800000) deadline(378558069) curr?(1) task?(0)
[ 3643.020704][T52604] se: weight(1048576) vruntime(375767087) slice(2800000) deadline(378560047) curr?(1) task?(0)
[ 3643.032151][T52604] se: weight(1048576) vruntime(375774807) slice(2800000) deadline(378568918) curr?(1) task?(0)
[ 3643.043602][T52604] se: weight(1048576) vruntime(375780215) slice(2800000) deadline(378573675) curr?(1) task?(0)
[ 3643.055055][T52604] se: weight(1048576) vruntime(375792903) slice(2800000) deadline(378586103) curr?(1) task?(0)
[ 3643.066511][T52604] se: weight(1048576) vruntime(375793568) slice(2800000) deadline(378590493) curr?(1) task?(0)
[ 3643.077964][T52604] se: weight(1048576) vruntime(375800015) slice(2800000) deadline(378594396) curr?(1) task?(0)
[ 3643.089421][T52604] se: weight(1048576) vruntime(375808427) slice(2800000) deadline(378601276) curr?(1) task?(0)
[ 3643.100879][T52604] se: weight(1048576) vruntime(375807013) slice(2800000) deadline(378602236) curr?(1) task?(0)
[ 3643.112332][T52604] se: weight(1048576) vruntime(375814188) slice(2800000) deadline(378608359) curr?(1) task?(0)
[ 3643.123785][T52604] se: weight(1048576) vruntime(375827605) slice(2800000) deadline(378621235) curr?(1) task?(0)
[ 3643.135238][T52604] se: weight(1048576) vruntime(375849735) slice(2800000) deadline(378643416) curr?(1) task?(0)
[ 3643.146692][T52604] se: weight(1048576) vruntime(375863441) slice(2800000) deadline(378655018) curr?(1) task?(0)
[ 3643.158148][T52604] se: weight(1048576) vruntime(375873585) slice(2800000) deadline(378664682) curr?(1) task?(0)
[ 3643.169596][T52604] se: weight(1048576) vruntime(375879581) slice(2800000) deadline(378673021) curr?(1) task?(0)
[ 3643.181043][T52604] se: weight(1048576) vruntime(375884839) slice(2800000) deadline(378678039) curr?(1) task?(0)
[ 3643.192497][T52604] se: weight(1048576) vruntime(375881184) slice(2800000) deadline(378681184) curr?(1) task?(0)
[ 3643.203950][T52604] se: weight(1048576) vruntime(375897230) slice(2800000) deadline(378690410) curr?(1) task?(0)
[ 3643.215401][T52604] se: weight(1048576) vruntime(375896110) slice(2800000) deadline(378696110) curr?(1) task?(0)
[ 3643.226855][T52604] se: weight(1048576) vruntime(375905541) slice(2800000) deadline(378696858) curr?(1) task?(0)
[ 3643.238311][T52604] se: weight(1048576) vruntime(375906892) slice(2800000) deadline(378702115) curr?(1) task?(0)
[ 3643.249767][T52604] se: weight(1048576) vruntime(375915733) slice(2800000) deadline(378710175) curr?(1) task?(0)
[ 3643.261223][T52604] se: weight(1048576) vruntime(375917549) slice(2800000) deadline(378713093) curr?(1) task?(0)
[ 3643.272678][T52604] se: weight(1048576) vruntime(375930726) slice(2800000) deadline(378724256) curr?(1) task?(0)
[ 3643.284132][T52604] se: weight(1048576) vruntime(375931981) slice(2800000) deadline(378725421) curr?(1) task?(0)
[ 3643.295583][T52604] se: weight(1048576) vruntime(375942373) slice(2800000) deadline(378735703) curr?(1) task?(0)
[ 3643.307036][T52604] se: weight(1048576) vruntime(375946183) slice(2800000) deadline(378739373) curr?(1) task?(0)
[ 3643.318492][T52604] se: weight(1048576) vruntime(375961997) slice(2800000) deadline(378755678) curr?(1) task?(0)
[ 3643.329946][T52604] se: weight(1048576) vruntime(375973086) slice(2800000) deadline(378766105) curr?(1) task?(0)
[ 3643.341403][T52604] se: weight(1048576) vruntime(375976777) slice(2800000) deadline(378771319) curr?(1) task?(0)
[ 3643.352861][T52604] se: weight(1048576) vruntime(375980085) slice(2800000) deadline(378774337) curr?(1) task?(0)
[ 3643.364314][T52604] se: weight(1048576) vruntime(375991218) slice(2800000) deadline(378784909) curr?(1) task?(0)
[ 3643.375766][T52604] se: weight(1048576) vruntime(375995544) slice(2800000) deadline(378789205) curr?(1) task?(0)
[ 3643.387218][T52604] se: weight(1048576) vruntime(376005426) slice(2800000) deadline(378798666) curr?(1) task?(0)
[ 3643.398672][T52604] se: weight(1048576) vruntime(376008945) slice(2800000) deadline(378802355) curr?(1) task?(0)
[ 3643.410128][T52604] se: weight(1048576) vruntime(376020094) slice(2800000) deadline(378813004) curr?(1) task?(0)
[ 3643.421584][T52604] se: weight(1048576) vruntime(376014251) slice(2800000) deadline(378814251) curr?(1) task?(0)
[ 3643.433041][T52604] se: weight(1048576) vruntime(376024819) slice(2800000) deadline(378817498) curr?(1) task?(0)
[ 3643.444495][T52604] se: weight(1048576) vruntime(376033201) slice(2800000) deadline(378826121) curr?(1) task?(0)
[ 3643.455939][T52604] se: weight(1048576) vruntime(376047357) slice(2800000) deadline(378841048) curr?(1) task?(0)
[ 3643.467391][T52604] se: weight(1048576) vruntime(376070306) slice(2800000) deadline(378861112) curr?(1) task?(0)
[ 3643.478844][T52604] se: weight(1048576) vruntime(376069117) slice(2800000) deadline(378862297) curr?(1) task?(0)
[ 3643.490299][T52604] se: weight(1048576) vruntime(376095783) slice(2800000) deadline(378888282) curr?(1) task?(0)
[ 3643.501754][T52604] se: weight(1048576) vruntime(376120673) slice(2800000) deadline(378911639) curr?(1) task?(0)
[ 3643.513211][T52604] se: weight(1048576) vruntime(376121362) slice(2800000) deadline(378913390) curr?(1) task?(0)
[ 3643.524667][T52604] se: weight(1048576) vruntime(376119895) slice(2800000) deadline(378913836) curr?(1) task?(0)
[ 3643.536121][T52604] se: weight(1048576) vruntime(376122168) slice(2800000) deadline(378915658) curr?(1) task?(0)
[ 3643.547573][T52604] se: weight(1048576) vruntime(376123889) slice(2800000) deadline(378917169) curr?(1) task?(0)
[ 3643.559028][T52604] se: weight(1048576) vruntime(376133787) slice(2800000) deadline(378926997) curr?(1) task?(0)
[ 3643.570482][T52604] se: weight(1048576) vruntime(376134365) slice(2800000) deadline(378931180) curr?(1) task?(0)
[ 3643.581936][T52604] se: weight(1048576) vruntime(376143970) slice(2800000) deadline(378935337) curr?(1) task?(0)
[ 3643.593394][T52604] se: weight(1048576) vruntime(376142634) slice(2800000) deadline(378935604) curr?(1) task?(0)
[ 3643.604841][T52604] se: weight(1048576) vruntime(376145740) slice(2800000) deadline(378939671) curr?(1) task?(0)
[ 3643.616294][T52604] se: weight(1048576) vruntime(376144431) slice(2800000) deadline(378941367) curr?(1) task?(0)
[ 3643.627748][T52604] se: weight(1048576) vruntime(376143994) slice(2800000) deadline(378943994) curr?(1) task?(0)
[ 3643.639200][T52604] se: weight(1048576) vruntime(376156518) slice(2800000) deadline(378947024) curr?(1) task?(0)
[ 3643.650654][T52604] se: weight(1048576) vruntime(376162799) slice(2800000) deadline(378956599) curr?(1) task?(0)
[ 3643.662110][T52604] se: weight(1048576) vruntime(376168055) slice(2800000) deadline(378961936) curr?(1) task?(0)
[ 3643.673566][T52604] se: weight(1048576) vruntime(376178010) slice(2800000) deadline(378970909) curr?(1) task?(0)
[ 3643.685013][T52604] se: weight(1048576) vruntime(376201797) slice(2800000) deadline(379001797) curr?(1) task?(0)
[ 3643.696466][T52604] se: weight(1048576) vruntime(376230831) slice(2800000) deadline(379024251) curr?(1) task?(0)
[ 3643.707919][T52604] se: weight(1048576) vruntime(376235497) slice(2800000) deadline(379030139) curr?(1) task?(0)
[ 3643.719370][T52604] se: weight(1048576) vruntime(376244654) slice(2800000) deadline(379038124) curr?(1) task?(0)
[ 3643.730824][T52604] se: weight(1048576) vruntime(376283705) slice(2800000) deadline(379079038) curr?(1) task?(0)
[ 3643.742280][T52604] se: weight(1048576) vruntime(376345645) slice(2800000) deadline(379139987) curr?(1) task?(0)
[ 3643.753736][T52604] se: weight(1048576) vruntime(376346819) slice(2800000) deadline(379146819) curr?(1) task?(0)
[ 3643.765192][T52604] se: weight(1048576) vruntime(376385884) slice(2800000) deadline(379175608) curr?(1) task?(0)
[ 3643.776647][T52604] se: weight(1048576) vruntime(376396248) slice(2800000) deadline(379189618) curr?(1) task?(0)
[ 3643.788101][T52604] se: weight(1048576) vruntime(376428620) slice(2800000) deadline(379223623) curr?(1) task?(0)
[ 3643.799553][T52604] se: weight(1048576) vruntime(376499548) slice(2800000) deadline(379294380) curr?(1) task?(0)
[ 3643.811008][T52604] se: weight(1048576) vruntime(376572281) slice(2800000) deadline(379365641) curr?(1) task?(0)
[ 3643.822463][T52604] se: weight(1048576) vruntime(376591897) slice(2800000) deadline(379385487) curr?(1) task?(0)
[ 3643.833917][T52604] se: weight(1048576) vruntime(376762253) slice(2800000) deadline(379558738) curr?(1) task?(0)
[ 3643.845375][T52604] se: weight(1048576) vruntime(376775262) slice(2800000) deadline(379575262) curr?(1) task?(0)
[ 3643.856831][T52604] se: weight(1048576) vruntime(376872694) slice(2800000) deadline(379667125) curr?(1) task?(0)
[ 3643.868283][T52604] se: weight(1048576) vruntime(376951672) slice(2800000) deadline(379746565) curr?(1) task?(0)
[ 3643.879737][T52604] se: weight(1048576) vruntime(376975946) slice(2800000) deadline(379768796) curr?(1) task?(0)
[ 3643.891189][T52604] se: weight(1048576) vruntime(376992379) slice(2800000) deadline(379787071) curr?(1) task?(0)
[ 3643.902642][T52604] se: weight(1048576) vruntime(377003763) slice(2800000) deadline(379798725) curr?(1) task?(0)
[ 3643.914100][T52604] se: weight(1048576) vruntime(377019516) slice(2800000) deadline(379814859) curr?(1) task?(0)
[ 3643.925556][T52604] se: weight(1048576) vruntime(377073943) slice(2800000) deadline(379868605) curr?(1) task?(0)
[ 3643.937010][T52604] se: weight(1048576) vruntime(377153630) slice(2800000) deadline(379948783) curr?(1) task?(0)
[ 3643.948464][T52604] se: weight(1048576) vruntime(377157752) slice(2800000) deadline(379952334) curr?(1) task?(0)
[ 3643.959916][T52604] se: weight(1048576) vruntime(377242232) slice(2800000) deadline(380037796) curr?(1) task?(0)
[ 3643.971367][T52604] se: weight(1048576) vruntime(377327657) slice(2800000) deadline(380122719) curr?(1) task?(0)
[ 3643.982820][T52604] se: weight(1048576) vruntime(377334887) slice(2800000) deadline(380127776) curr?(1) task?(0)
^ permalink raw reply [flat|nested] 70+ messages in thread
* Re: [PATCH 0/4] sched: Various reweight_entity() fixes
2026-02-10 20:52 ` Vincent Guittot
2026-02-11 5:21 ` Doug Smythies
@ 2026-02-11 8:48 ` Peter Zijlstra
1 sibling, 0 replies; 70+ messages in thread
From: Peter Zijlstra @ 2026-02-11 8:48 UTC (permalink / raw)
To: Vincent Guittot
Cc: K Prateek Nayak, mingo, juri.lelli, dietmar.eggemann, rostedt,
bsegall, mgorman, vschneid, linux-kernel, wangtao554, quzicheng,
wuyun.abel, dsmythies
On Tue, Feb 10, 2026 at 09:52:29PM +0100, Vincent Guittot wrote:
> > Subject: sched/fair: Fix zero_vruntime tracking
> > From: Peter Zijlstra <peterz@infradead.org>
> > Date: Mon Feb 9 15:28:16 CET 2026
> >
> > It turns out that zero_vruntime tracking is broken when there is but a single
> > task running. Current update paths are through __{en,de}queue_entity(), and
> > when there is but a single task, pick_next_task() will always return that one
> > task, and put_prev_set_next_task() will end up in neither function.
> >
> > This can cause entity_key() to grow indefinitely large and cause overflows,
> > leading to much pain and suffering.
> >
> > Furtermore, doing update_zero_vruntime() from __{de,en}queue_entity(), which
> > are called from {set_next,put_prev}_entity() has problems because:
> >
> > - set_next_entity() calls __dequeue_entity() before it does cfs_rq->curr = se.
> > This means the avg_vruntime() will see the removal but not current, missing
> > the entity for accounting.
> >
> > - put_prev_entity() calls __enqueue_entity() before it does cfs_rq->curr =
> > NULL. This means the avg_vruntime() will see the addition *and* current,
> > leading to double accounting.
> >
> > Both cases are incorrect.
> >
> > Noting that avg_vruntime is already called on each {en,de}queue, remove the
> > explicit avg_vruntime() calls (which removes an extra 64bit division for each
> > {en,de}queue) and have avg_vruntime() update zero_vruntime itself.
> >
> > Additionally, have the tick call avg_vruntime() -- discarding the result, but
> > for the side-effect of updating zero_vruntime.
> >
> > While there, optimize avg_vruntime() by noting that the average of one value is
> > rather trivial to compute.
> >
> > Test case:
> > # taskset -c -p 1 $$
> > # taskset -c 2 bash -c 'while :; do :; done&'
> > # cat /sys/kernel/debug/sched/debug | awk '/^cpu#/ {P=0} /^cpu#2,/ {P=1} {if (P) print $0}' | grep -e zero_vruntime -e "^>"
> >
> > PRE:
> > .zero_vruntime : 31316.407903
> > >R bash 487 50787.345112 E 50789.145972 2.800000 50780.298364 16 120 0.000000 0.000000 0.000000 /
> > .zero_vruntime : 382548.253179
> > >R bash 487 427275.204288 E 427276.003584 2.800000 427268.157540 23 120 0.000000 0.000000 0.000000 /
> >
> > POST:
> > .zero_vruntime : 17259.709467
> > >R bash 526 17259.709467 E 17262.509467 2.800000 16915.031624 9 120 0.000000 0.000000 0.000000 /
> > .zero_vruntime : 18702.723356
> > >R bash 526 18702.723356 E 18705.523356 2.800000 18358.045513 9 120 0.000000 0.000000 0.000000 /
> >
> > Fixes: 79f3f9bedd14 ("sched/eevdf: Fix min_vruntime vs avg_vruntime")
> > Reported-by: K Prateek Nayak <kprateek.nayak@amd.com>
> > Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
>
> Hi Peter,
>
> This patch w/ the patchset on top of tip/sched/core create regressions
> for hackbench (tbench doesn't seem to be impacted) on my dragonboard
> rb5
Durr... That was obviously not so expected. Let me go poke.
^ permalink raw reply [flat|nested] 70+ messages in thread
* Re: [PATCH 0/4] sched: Various reweight_entity() fixes
2026-02-11 5:21 ` Doug Smythies
@ 2026-02-11 8:49 ` Vincent Guittot
2026-02-11 9:01 ` Peter Zijlstra
0 siblings, 1 reply; 70+ messages in thread
From: Vincent Guittot @ 2026-02-11 8:49 UTC (permalink / raw)
To: Doug Smythies
Cc: Peter Zijlstra, K Prateek Nayak, mingo, juri.lelli,
dietmar.eggemann, rostedt, bsegall, mgorman, vschneid,
linux-kernel, wangtao554, quzicheng, wuyun.abel
On Wed, 11 Feb 2026 at 06:21, Doug Smythies <dsmythies@telus.net> wrote:
>
> On 2026.02.10 12:52 Vincent Guittot wrote:
> > On Mon, 9 Feb 2026 at 16:47, Peter Zijlstra <peterz@infradead.org> wrote:
> >> On Wed, Feb 04, 2026 at 03:45:58PM +0530, K Prateek Nayak wrote:
> >
> ... delete ...
>
> > This patch w/ the patchset on top of tip/sched/core create regressions
> > for hackbench (tbench doesn't seem to be impacted) on my dragonboard
> > rb5
> > All hackbench tests are regressing. Some results below
> ...
> > hackbench 8 group process socket
> > 0.650(+/-1%) vs 2.361(+/-8.8%) : -263%
> ...
>
> Very interesting.
> I only know of the Phoronix version of hackbench.
> I ran what I believe to be a similar scenario to yours:
> 10 test runs each (the default is 3):
>
> Kernel 6.19-rc8: 23.228 seconds average, deviation 0.39%
> Kernel 6.19-rc8-pz-v2: 85.755 seconds average, deviation 3.33%
> 269% regression. (very similar to Vicent's results)
patch 3 + a default value for sum_shift restore the performance
cfs_rq->sum_shift = SCHED_FIXEDPOINT_SHIFT;
There 2 issues with patch 3
*one scale_load_down remains in avg_vruntime
diff --git a/kernel/sched/fair.c b/kernel/sched/fair.c
index 25c398ff0d59..3143ae7f07b0 100644
--- a/kernel/sched/fair.c
+++ b/kernel/sched/fair.c
@@ -778,7 +778,7 @@ u64 avg_vruntime(struct cfs_rq *cfs_rq)
if (weight) {
if (curr) {
- unsigned long w = scale_load_down(curr->load.weight);
+ unsigned long w =
avg_vruntime_weight(curr->load.weight);
runtime += entity_key(cfs_rq, curr) * w;
weight += w;
and we still use calc_delta_fair() in update_entity_lag() but
calc_delta_fair() use scale_load_down()
>
> System:
> Processor: Intel(R) Core(TM) i5-10600K CPU @ 4.10GHz, 6 cores 12 CPUs.
> CPU frequency scaling driver: intel_pstate.
> CPU frequency scaling governor: powersave.
> HWP: enabled.
> idle governor teo.
>
>
^ permalink raw reply related [flat|nested] 70+ messages in thread
* Re: [PATCH 0/4] sched: Various reweight_entity() fixes
2026-02-11 6:28 ` K Prateek Nayak
@ 2026-02-11 8:50 ` K Prateek Nayak
0 siblings, 0 replies; 70+ messages in thread
From: K Prateek Nayak @ 2026-02-11 8:50 UTC (permalink / raw)
To: Peter Zijlstra
Cc: Doug Smythies, mingo, juri.lelli, vincent.guittot,
dietmar.eggemann, rostedt, bsegall, mgorman, vschneid,
linux-kernel, wangtao554, quzicheng, wuyun.abel
[-- Attachment #1: Type: text/plain, Size: 6412 bytes --]
Hello Peter,
On 2/11/2026 11:58 AM, K Prateek Nayak wrote:
> I'll go back and fix my debug patch to give a full view of series of
> events that leads to this but in the meantime I've added the full log
> below if someone wants to take a look.
Attached is archive of trace. Should expand to give a "timeline.trace"
file. Following are some series of events before the failed pick:
Note: "cfs_rq: depth(1) ..." is the cfs_rq which fails but the first
"dump_h_overflow_cfs_rq: cfs_rq: ..." will note depth as "0" which is
the depth of padding and is not the actual cfs-rq depth.
The lines after "pick_task_fair: cfs_rq of overflow:" dumps the cfs_rq
and the queued entities that failed the pick.
...
[006] ... : __enqueue_entity: Enqueue cfs_rq: depth(1) weight(2169503744) nr_queued(2069) sum_w_vruntime(-7389160032126894080) sum_weight(2169503744) zero_vruntime(18446744052406571137) sum_shift(0) avg_vruntime(18446744052406571137)
[006] ... : __dequeue_entity: Dequeue cfs_rq: depth(1) weight(2169503744) nr_queued(2069) sum_w_vruntime(3512818056739946496) sum_weight(2168455168) zero_vruntime(18446744055883646744) sum_shift(0) avg_vruntime(18446744055883646744)
[006] ... : __enqueue_entity: Enqueue cfs_rq: depth(1) weight(2169503744) nr_queued(2069) sum_w_vruntime(1653261820069150720) sum_weight(2169503744) zero_vruntime(18446744056741357296) sum_shift(0) avg_vruntime(18446744056741357296)
[006] ... : __dequeue_entity: Dequeue cfs_rq: depth(1) weight(2169503744) nr_queued(2069) sum_w_vruntime(3337798565006147584) sum_weight(2168455168) zero_vruntime(18446744055964215508) sum_shift(0) avg_vruntime(18446744055964215508)
...
[006] ... : __enqueue_entity: Enqueue cfs_rq: depth(1) weight(2169503744) nr_queued(2069) sum_w_vruntime(-4817868778594369536) sum_weight(2169503744) zero_vruntime(18446744051221380982) sum_shift(0) avg_vruntime(18446744051221380982)
[006] ... : __dequeue_entity: Dequeue cfs_rq: depth(1) weight(2169503744) nr_queued(2069) sum_w_vruntime(8703580922935508992) sum_weight(2168455168) zero_vruntime(18446744053489887930) sum_shift(0) avg_vruntime(18446744053489887930)
...
[006] ... : __enqueue_entity: Enqueue cfs_rq: depth(1) weight(2169503744) nr_queued(2069) sum_w_vruntime(1049195167414747136) sum_weight(2169503744) zero_vruntime(18446744057019812035) sum_shift(0) avg_vruntime(18446744057019812035)
[006] ... : __dequeue_entity: Dequeue cfs_rq: depth(1) weight(2169503744) nr_queued(2069) sum_w_vruntime(2118331978874880000) sum_weight(2168455168) zero_vruntime(18446744056526599437) sum_shift(0) avg_vruntime(18446744056526599437)
...
[006] ... : __enqueue_entity: Enqueue cfs_rq: depth(1) weight(2169503744) nr_queued(2069) sum_w_vruntime(8649466989629145088) sum_weight(2169503744) zero_vruntime(18446744053516583405) sum_shift(0) avg_vruntime(18446744053516583405)
[006] ... : __dequeue_entity: Dequeue cfs_rq: depth(1) weight(2169503744) nr_queued(2069) sum_w_vruntime(-984823152929406976) sum_weight(2168455168) zero_vruntime(18446744049450913118) sum_shift(0) avg_vruntime(18446744049450913118)
...
[006] ... : pick_task_fair: cfs_rq of overflow: /* Essentially failed pick. */
[006] ... : dump_h_overflow_cfs_rq: cfs_rq: ... weight(2169503744) nr_queued(2069) sum_w_vruntime(-59587237455593472) sum_weight(2168455168) zero_vruntime(18446744049024233365) sum_shift(0) avg_vruntime(18446744049024233365)
[006] ... : dump_h_overflow_entity: se: weight(1048576) vruntime(18446744057295755695) slice(2800000) deadline(18446744057298552230) curr?(1) task?(1) delayed?(0) se_depth(1)
[006] ... : dump_h_overflow_entity: se: weight(1048576) vruntime(18446744057379145967) slice(2800000) deadline(18446744057381940989) curr?(0) task?(1) delayed?(0) se_depth(1)
[006] ... : dump_h_overflow_entity: se: weight(1048576) vruntime(18446744057463106601) slice(2800000) deadline(18446744057465901974) curr?(0) task?(1) delayed?(0) se_depth(1)
[006] ... : dump_h_overflow_entity: se: weight(1048576) vruntime(18446744057487667304) slice(2800000) deadline(18446744057490461976) curr?(0) task?(1) delayed?(0) se_depth(1)
[006] ... : dump_h_overflow_entity: se: weight(1048576) vruntime(18446744058420769904) slice(2800000) deadline(18446744058423566108) curr?(0) task?(1) delayed?(0) se_depth(1)
[006] ... : dump_h_overflow_entity: se: weight(1048576) vruntime(18446744058486927372) slice(2800000) deadline(18446744058489723636) curr?(0) task?(1) delayed?(0) se_depth(1)
[006] ... : dump_h_overflow_entity: se: weight(1048576) vruntime(18446744061273836896) slice(2800000) deadline(18446744061276631077) curr?(0) task?(1) delayed?(0) se_depth(1)
[006] ... : dump_h_overflow_entity: se: weight(1048576) vruntime(18446744061535759861) slice(2800000) deadline(18446744061538554473) curr?(0) task?(1) delayed?(0) se_depth(1)
[006] ... : dump_h_overflow_entity: se: weight(1048576) vruntime(18446744061788668421) slice(2800000) deadline(18446744061791464976) curr?(0) task?(1) delayed?(0) se_depth(1)
[006] ... : dump_h_overflow_entity: se: weight(1048576) vruntime(18446744062846656914) slice(2800000) deadline(18446744062849454680) curr?(0) task?(1) delayed?(0) se_depth(1)
[006] ... : dump_h_overflow_entity: se: weight(1048576) vruntime(18446744064164417134) slice(2800000) deadline(18446744064167214230) curr?(0) task?(1) delayed?(0) se_depth(1)
[006] ... : dump_h_overflow_entity: se: weight(1048576) vruntime(18446744065239426914) slice(2800000) deadline(18446744065242224540) curr?(0) task?(1) delayed?(0) se_depth(1)
[006] ... : dump_h_overflow_entity: se: weight(1048576) vruntime(880604900) slice(2800000) deadline(883328346) curr?(0) task?(1) delayed?(0) se_depth(1)
[006] ... : dump_h_overflow_entity: se: weight(1048576) vruntime(880537321) slice(2800000) deadline(883331492) curr?(0) task?(1) delayed?(0) se_depth(1)
[006] ... : dump_h_overflow_entity: se: weight(1048576) vruntime(880537194) slice(2800000) deadline(883333328) curr?(0) task?(1) delayed?(0) se_depth(1)
[006] ... : dump_h_overflow_entity: se: weight(1048576) vruntime(880540318) slice(2800000) deadline(883334689) curr?(0) task?(1) delayed?(0) se_depth(1)
...
The avg_vruntime(18446744049024233365) = -24685318251 (s64) is smaller
than that of all the vruntime of queued entities.
Peter, Could it be the "left bias" in avg_vruntime() coming into play
with larger "cfs_rq->sum_weight"?
--
Thanks and Regards,
Prateek
[-- Attachment #2: timeline.tar.gz --]
[-- Type: application/x-gzip, Size: 1200020 bytes --]
^ permalink raw reply [flat|nested] 70+ messages in thread
* Re: [PATCH 0/4] sched: Various reweight_entity() fixes
2026-02-11 8:49 ` Vincent Guittot
@ 2026-02-11 9:01 ` Peter Zijlstra
2026-02-11 10:48 ` Peter Zijlstra
0 siblings, 1 reply; 70+ messages in thread
From: Peter Zijlstra @ 2026-02-11 9:01 UTC (permalink / raw)
To: Vincent Guittot
Cc: Doug Smythies, K Prateek Nayak, mingo, juri.lelli,
dietmar.eggemann, rostedt, bsegall, mgorman, vschneid,
linux-kernel, wangtao554, quzicheng, wuyun.abel
On Wed, Feb 11, 2026 at 09:49:57AM +0100, Vincent Guittot wrote:
> On Wed, 11 Feb 2026 at 06:21, Doug Smythies <dsmythies@telus.net> wrote:
> >
> > On 2026.02.10 12:52 Vincent Guittot wrote:
> > > On Mon, 9 Feb 2026 at 16:47, Peter Zijlstra <peterz@infradead.org> wrote:
> > >> On Wed, Feb 04, 2026 at 03:45:58PM +0530, K Prateek Nayak wrote:
> > >
> > ... delete ...
> >
> > > This patch w/ the patchset on top of tip/sched/core create regressions
> > > for hackbench (tbench doesn't seem to be impacted) on my dragonboard
> > > rb5
> > > All hackbench tests are regressing. Some results below
> > ...
> > > hackbench 8 group process socket
> > > 0.650(+/-1%) vs 2.361(+/-8.8%) : -263%
> > ...
> >
> > Very interesting.
> > I only know of the Phoronix version of hackbench.
> > I ran what I believe to be a similar scenario to yours:
> > 10 test runs each (the default is 3):
> >
> > Kernel 6.19-rc8: 23.228 seconds average, deviation 0.39%
> > Kernel 6.19-rc8-pz-v2: 85.755 seconds average, deviation 3.33%
> > 269% regression. (very similar to Vicent's results)
>
> patch 3 + a default value for sum_shift restore the performance
> cfs_rq->sum_shift = SCHED_FIXEDPOINT_SHIFT;
Hurmph.. I really wanted to do away with that, because those small
weights are fairly common in the cgroup shares thing, and will be more
common still if we do a flat pick.
> There 2 issues with patch 3
>
> *one scale_load_down remains in avg_vruntime
>
> diff --git a/kernel/sched/fair.c b/kernel/sched/fair.c
> index 25c398ff0d59..3143ae7f07b0 100644
> --- a/kernel/sched/fair.c
> +++ b/kernel/sched/fair.c
> @@ -778,7 +778,7 @@ u64 avg_vruntime(struct cfs_rq *cfs_rq)
>
> if (weight) {
> if (curr) {
> - unsigned long w = scale_load_down(curr->load.weight);
> + unsigned long w =
> avg_vruntime_weight(curr->load.weight);
>
> runtime += entity_key(cfs_rq, curr) * w;
> weight += w;
AAARGHHH!! Sorry about that, clearly I've not been careful with
reshuffling patches :-(
> and we still use calc_delta_fair() in update_entity_lag() but
> calc_delta_fair() use scale_load_down()
Hmmm, indeed, let me see if I can do something about that. Perhaps just
eat the 64bit division on 64bit systems.
Anyway, let me go poke at all this.
^ permalink raw reply [flat|nested] 70+ messages in thread
* Re: [PATCH 0/4] sched: Various reweight_entity() fixes
2026-02-11 9:01 ` Peter Zijlstra
@ 2026-02-11 10:48 ` Peter Zijlstra
2026-02-11 10:49 ` Peter Zijlstra
` (3 more replies)
0 siblings, 4 replies; 70+ messages in thread
From: Peter Zijlstra @ 2026-02-11 10:48 UTC (permalink / raw)
To: Vincent Guittot
Cc: Doug Smythies, K Prateek Nayak, mingo, juri.lelli,
dietmar.eggemann, rostedt, bsegall, mgorman, vschneid,
linux-kernel, wangtao554, quzicheng, wuyun.abel
On Wed, Feb 11, 2026 at 10:01:44AM +0100, Peter Zijlstra wrote:
> > There 2 issues with patch 3
> >
> > *one scale_load_down remains in avg_vruntime
> >
> > diff --git a/kernel/sched/fair.c b/kernel/sched/fair.c
> > index 25c398ff0d59..3143ae7f07b0 100644
> > --- a/kernel/sched/fair.c
> > +++ b/kernel/sched/fair.c
> > @@ -778,7 +778,7 @@ u64 avg_vruntime(struct cfs_rq *cfs_rq)
> >
> > if (weight) {
> > if (curr) {
> > - unsigned long w = scale_load_down(curr->load.weight);
> > + unsigned long w =
> > avg_vruntime_weight(curr->load.weight);
> >
> > runtime += entity_key(cfs_rq, curr) * w;
> > weight += w;
>
> AAARGHHH!! Sorry about that, clearly I've not been careful with
> reshuffling patches :-(
So with that one fixed; I get (as queue/sched/core of just now):
base:
1: 0.25431 +- 0.00226 seconds time elapsed ( +- 0.89% )
2: 0.52522 +- 0.00304 seconds time elapsed ( +- 0.58% )
5: 1.10452 +- 0.00509 seconds time elapsed ( +- 0.46% )
10: 2.00673 +- 0.00761 seconds time elapsed ( +- 0.38% )
20: 3.81795 +- 0.00347 seconds time elapsed ( +- 0.09% )
40: 7.0551 +- 0.0112 seconds time elapsed ( +- 0.16% )
+1 patches/peterz-sched-fair-fix-zero_vruntime.patch
1: 0.25231 +- 0.00328 seconds time elapsed ( +- 1.30% )
2: 0.52794 +- 0.00337 seconds time elapsed ( +- 0.64% )
5: 1.09336 +- 0.00391 seconds time elapsed ( +- 0.36% )
10: 1.98787 +- 0.00660 seconds time elapsed ( +- 0.33% )
20: 3.75865 +- 0.00782 seconds time elapsed ( +- 0.21% )
40: 7.0208 +- 0.0102 seconds time elapsed ( +- 0.15% )
+2 patches/peterz-sched-fair-curb-set_protect_slice.patch
1: 0.25421 +- 0.00351 seconds time elapsed ( +- 1.38% )
2: 0.53178 +- 0.00308 seconds time elapsed ( +- 0.58% )
5: 1.09421 +- 0.00462 seconds time elapsed ( +- 0.42% )
10: 1.99843 +- 0.00289 seconds time elapsed ( +- 0.14% )
20: 3.77249 +- 0.00676 seconds time elapsed ( +- 0.18% )
40: 7.0371 +- 0.0143 seconds time elapsed ( +- 0.20% )
+3 patches/wang_tao-sched_eevdf-update_se-_vprot_in_reweight_entity.patch
1: 0.25141 +- 0.00342 seconds time elapsed ( +- 1.36% )
2: 0.53294 +- 0.00474 seconds time elapsed ( +- 0.89% )
5: 1.10944 +- 0.00447 seconds time elapsed ( +- 0.40% )
10: 2.00012 +- 0.00366 seconds time elapsed ( +- 0.18% )
20: 3.77650 +- 0.00796 seconds time elapsed ( +- 0.21% )
40: 7.0455 +- 0.0145 seconds time elapsed ( +- 0.21% )
+4 patches/peter_zijlstra-sched_fair-increase_max_lag_clamping.patch
1: 0.25096 +- 0.00415 seconds time elapsed ( +- 1.65% )
2: 0.53635 +- 0.00372 seconds time elapsed ( +- 0.69% )
5: 1.12040 +- 0.00549 seconds time elapsed ( +- 0.49% )
10: 2.00447 +- 0.00518 seconds time elapsed ( +- 0.26% )
20: 3.7682 +- 0.0104 seconds time elapsed ( +- 0.28% )
40: 7.0023 +- 0.0141 seconds time elapsed ( +- 0.20% )
+5 patches/peterz-sched-increase-avg-bits.patch
1: 0.24866 +- 0.00284 seconds time elapsed ( +- 1.14% )
2: 0.52756 +- 0.00310 seconds time elapsed ( +- 0.59% )
5: 1.09946 +- 0.00643 seconds time elapsed ( +- 0.58% )
10: 1.98256 +- 0.00398 seconds time elapsed ( +- 0.20% )
20: 3.75988 +- 0.00611 seconds time elapsed ( +- 0.16% )
40: 6.9833 +- 0.0113 seconds time elapsed ( +- 0.16% )
+6 patches/peterz-sched-revert-reweight-entity-thingy.patch
1: 0.25302 +- 0.00285 seconds time elapsed ( +- 1.13% )
2: 0.53040 +- 0.00383 seconds time elapsed ( +- 0.72% )
5: 1.08806 +- 0.00341 seconds time elapsed ( +- 0.31% )
10: 1.97696 +- 0.00592 seconds time elapsed ( +- 0.30% )
20: 3.75393 +- 0.00622 seconds time elapsed ( +- 0.17% )
40: 6.9794 +- 0.0139 seconds time elapsed ( +- 0.20% )
Now let me go check on that latency thing from Doug (although hopefully
that was the same boo-boo).
^ permalink raw reply [flat|nested] 70+ messages in thread
* Re: [PATCH 0/4] sched: Various reweight_entity() fixes
2026-02-11 10:48 ` Peter Zijlstra
@ 2026-02-11 10:49 ` Peter Zijlstra
2026-02-11 11:15 ` Vincent Guittot
` (2 subsequent siblings)
3 siblings, 0 replies; 70+ messages in thread
From: Peter Zijlstra @ 2026-02-11 10:49 UTC (permalink / raw)
To: Vincent Guittot
Cc: Doug Smythies, K Prateek Nayak, mingo, juri.lelli,
dietmar.eggemann, rostedt, bsegall, mgorman, vschneid,
linux-kernel, wangtao554, quzicheng, wuyun.abel
On Wed, Feb 11, 2026 at 11:48:33AM +0100, Peter Zijlstra wrote:
> On Wed, Feb 11, 2026 at 10:01:44AM +0100, Peter Zijlstra wrote:
>
> > > There 2 issues with patch 3
> > >
> > > *one scale_load_down remains in avg_vruntime
> > >
> > > diff --git a/kernel/sched/fair.c b/kernel/sched/fair.c
> > > index 25c398ff0d59..3143ae7f07b0 100644
> > > --- a/kernel/sched/fair.c
> > > +++ b/kernel/sched/fair.c
> > > @@ -778,7 +778,7 @@ u64 avg_vruntime(struct cfs_rq *cfs_rq)
> > >
> > > if (weight) {
> > > if (curr) {
> > > - unsigned long w = scale_load_down(curr->load.weight);
> > > + unsigned long w =
> > > avg_vruntime_weight(curr->load.weight);
> > >
> > > runtime += entity_key(cfs_rq, curr) * w;
> > > weight += w;
> >
> > AAARGHHH!! Sorry about that, clearly I've not been careful with
> > reshuffling patches :-(
>
> So with that one fixed; I get (as queue/sched/core of just now):
In case this wasn't clear; this is hackbench as per:
for i in 1 2 5 10 20 40 ; do
echo -n "${i}: "
perf stat --null --repeat 10 -- perf bench sched messaging -g $i -t -l 10000 2>&1 | grep "seconds time elapsed"
done
> base:
>
> 1: 0.25431 +- 0.00226 seconds time elapsed ( +- 0.89% )
> 2: 0.52522 +- 0.00304 seconds time elapsed ( +- 0.58% )
> 5: 1.10452 +- 0.00509 seconds time elapsed ( +- 0.46% )
> 10: 2.00673 +- 0.00761 seconds time elapsed ( +- 0.38% )
> 20: 3.81795 +- 0.00347 seconds time elapsed ( +- 0.09% )
> 40: 7.0551 +- 0.0112 seconds time elapsed ( +- 0.16% )
>
> +1 patches/peterz-sched-fair-fix-zero_vruntime.patch
>
> 1: 0.25231 +- 0.00328 seconds time elapsed ( +- 1.30% )
> 2: 0.52794 +- 0.00337 seconds time elapsed ( +- 0.64% )
> 5: 1.09336 +- 0.00391 seconds time elapsed ( +- 0.36% )
> 10: 1.98787 +- 0.00660 seconds time elapsed ( +- 0.33% )
> 20: 3.75865 +- 0.00782 seconds time elapsed ( +- 0.21% )
> 40: 7.0208 +- 0.0102 seconds time elapsed ( +- 0.15% )
>
> +2 patches/peterz-sched-fair-curb-set_protect_slice.patch
>
> 1: 0.25421 +- 0.00351 seconds time elapsed ( +- 1.38% )
> 2: 0.53178 +- 0.00308 seconds time elapsed ( +- 0.58% )
> 5: 1.09421 +- 0.00462 seconds time elapsed ( +- 0.42% )
> 10: 1.99843 +- 0.00289 seconds time elapsed ( +- 0.14% )
> 20: 3.77249 +- 0.00676 seconds time elapsed ( +- 0.18% )
> 40: 7.0371 +- 0.0143 seconds time elapsed ( +- 0.20% )
>
> +3 patches/wang_tao-sched_eevdf-update_se-_vprot_in_reweight_entity.patch
>
> 1: 0.25141 +- 0.00342 seconds time elapsed ( +- 1.36% )
> 2: 0.53294 +- 0.00474 seconds time elapsed ( +- 0.89% )
> 5: 1.10944 +- 0.00447 seconds time elapsed ( +- 0.40% )
> 10: 2.00012 +- 0.00366 seconds time elapsed ( +- 0.18% )
> 20: 3.77650 +- 0.00796 seconds time elapsed ( +- 0.21% )
> 40: 7.0455 +- 0.0145 seconds time elapsed ( +- 0.21% )
>
> +4 patches/peter_zijlstra-sched_fair-increase_max_lag_clamping.patch
>
> 1: 0.25096 +- 0.00415 seconds time elapsed ( +- 1.65% )
> 2: 0.53635 +- 0.00372 seconds time elapsed ( +- 0.69% )
> 5: 1.12040 +- 0.00549 seconds time elapsed ( +- 0.49% )
> 10: 2.00447 +- 0.00518 seconds time elapsed ( +- 0.26% )
> 20: 3.7682 +- 0.0104 seconds time elapsed ( +- 0.28% )
> 40: 7.0023 +- 0.0141 seconds time elapsed ( +- 0.20% )
>
> +5 patches/peterz-sched-increase-avg-bits.patch
>
> 1: 0.24866 +- 0.00284 seconds time elapsed ( +- 1.14% )
> 2: 0.52756 +- 0.00310 seconds time elapsed ( +- 0.59% )
> 5: 1.09946 +- 0.00643 seconds time elapsed ( +- 0.58% )
> 10: 1.98256 +- 0.00398 seconds time elapsed ( +- 0.20% )
> 20: 3.75988 +- 0.00611 seconds time elapsed ( +- 0.16% )
> 40: 6.9833 +- 0.0113 seconds time elapsed ( +- 0.16% )
>
> +6 patches/peterz-sched-revert-reweight-entity-thingy.patch
>
> 1: 0.25302 +- 0.00285 seconds time elapsed ( +- 1.13% )
> 2: 0.53040 +- 0.00383 seconds time elapsed ( +- 0.72% )
> 5: 1.08806 +- 0.00341 seconds time elapsed ( +- 0.31% )
> 10: 1.97696 +- 0.00592 seconds time elapsed ( +- 0.30% )
> 20: 3.75393 +- 0.00622 seconds time elapsed ( +- 0.17% )
> 40: 6.9794 +- 0.0139 seconds time elapsed ( +- 0.20% )
>
>
> Now let me go check on that latency thing from Doug (although hopefully
> that was the same boo-boo).
^ permalink raw reply [flat|nested] 70+ messages in thread
* Re: [PATCH 0/4] sched: Various reweight_entity() fixes
2026-02-11 10:48 ` Peter Zijlstra
2026-02-11 10:49 ` Peter Zijlstra
@ 2026-02-11 11:15 ` Vincent Guittot
2026-02-11 16:28 ` Peter Zijlstra
2026-02-11 16:21 ` Peter Zijlstra
2026-02-11 23:25 ` Doug Smythies
3 siblings, 1 reply; 70+ messages in thread
From: Vincent Guittot @ 2026-02-11 11:15 UTC (permalink / raw)
To: Peter Zijlstra
Cc: Doug Smythies, K Prateek Nayak, mingo, juri.lelli,
dietmar.eggemann, rostedt, bsegall, mgorman, vschneid,
linux-kernel, wangtao554, quzicheng, wuyun.abel
On Wed, 11 Feb 2026 at 11:48, Peter Zijlstra <peterz@infradead.org> wrote:
>
> On Wed, Feb 11, 2026 at 10:01:44AM +0100, Peter Zijlstra wrote:
>
> > > There 2 issues with patch 3
> > >
> > > *one scale_load_down remains in avg_vruntime
> > >
> > > diff --git a/kernel/sched/fair.c b/kernel/sched/fair.c
> > > index 25c398ff0d59..3143ae7f07b0 100644
> > > --- a/kernel/sched/fair.c
> > > +++ b/kernel/sched/fair.c
> > > @@ -778,7 +778,7 @@ u64 avg_vruntime(struct cfs_rq *cfs_rq)
> > >
> > > if (weight) {
> > > if (curr) {
> > > - unsigned long w = scale_load_down(curr->load.weight);
> > > + unsigned long w =
> > > avg_vruntime_weight(curr->load.weight);
> > >
> > > runtime += entity_key(cfs_rq, curr) * w;
> > > weight += w;
> >
> > AAARGHHH!! Sorry about that, clearly I've not been careful with
> > reshuffling patches :-(
>
> So with that one fixed; I get (as queue/sched/core of just now):
yes, this is the root cause of the regression
Regarding the use of calc_delta_fair() in update_entity_lag(), we use
calc_delta_fair() for updating vruntime, deadline, vprot and vlag and
I wonder how this diff of granularity compared to avg_vruntime can be
an issue for sched_entity with a small weight
>
> base:
>
> 1: 0.25431 +- 0.00226 seconds time elapsed ( +- 0.89% )
> 2: 0.52522 +- 0.00304 seconds time elapsed ( +- 0.58% )
> 5: 1.10452 +- 0.00509 seconds time elapsed ( +- 0.46% )
> 10: 2.00673 +- 0.00761 seconds time elapsed ( +- 0.38% )
> 20: 3.81795 +- 0.00347 seconds time elapsed ( +- 0.09% )
> 40: 7.0551 +- 0.0112 seconds time elapsed ( +- 0.16% )
>
> +1 patches/peterz-sched-fair-fix-zero_vruntime.patch
>
> 1: 0.25231 +- 0.00328 seconds time elapsed ( +- 1.30% )
> 2: 0.52794 +- 0.00337 seconds time elapsed ( +- 0.64% )
> 5: 1.09336 +- 0.00391 seconds time elapsed ( +- 0.36% )
> 10: 1.98787 +- 0.00660 seconds time elapsed ( +- 0.33% )
> 20: 3.75865 +- 0.00782 seconds time elapsed ( +- 0.21% )
> 40: 7.0208 +- 0.0102 seconds time elapsed ( +- 0.15% )
>
> +2 patches/peterz-sched-fair-curb-set_protect_slice.patch
>
> 1: 0.25421 +- 0.00351 seconds time elapsed ( +- 1.38% )
> 2: 0.53178 +- 0.00308 seconds time elapsed ( +- 0.58% )
> 5: 1.09421 +- 0.00462 seconds time elapsed ( +- 0.42% )
> 10: 1.99843 +- 0.00289 seconds time elapsed ( +- 0.14% )
> 20: 3.77249 +- 0.00676 seconds time elapsed ( +- 0.18% )
> 40: 7.0371 +- 0.0143 seconds time elapsed ( +- 0.20% )
>
> +3 patches/wang_tao-sched_eevdf-update_se-_vprot_in_reweight_entity.patch
>
> 1: 0.25141 +- 0.00342 seconds time elapsed ( +- 1.36% )
> 2: 0.53294 +- 0.00474 seconds time elapsed ( +- 0.89% )
> 5: 1.10944 +- 0.00447 seconds time elapsed ( +- 0.40% )
> 10: 2.00012 +- 0.00366 seconds time elapsed ( +- 0.18% )
> 20: 3.77650 +- 0.00796 seconds time elapsed ( +- 0.21% )
> 40: 7.0455 +- 0.0145 seconds time elapsed ( +- 0.21% )
>
> +4 patches/peter_zijlstra-sched_fair-increase_max_lag_clamping.patch
>
> 1: 0.25096 +- 0.00415 seconds time elapsed ( +- 1.65% )
> 2: 0.53635 +- 0.00372 seconds time elapsed ( +- 0.69% )
> 5: 1.12040 +- 0.00549 seconds time elapsed ( +- 0.49% )
> 10: 2.00447 +- 0.00518 seconds time elapsed ( +- 0.26% )
> 20: 3.7682 +- 0.0104 seconds time elapsed ( +- 0.28% )
> 40: 7.0023 +- 0.0141 seconds time elapsed ( +- 0.20% )
>
> +5 patches/peterz-sched-increase-avg-bits.patch
>
> 1: 0.24866 +- 0.00284 seconds time elapsed ( +- 1.14% )
> 2: 0.52756 +- 0.00310 seconds time elapsed ( +- 0.59% )
> 5: 1.09946 +- 0.00643 seconds time elapsed ( +- 0.58% )
> 10: 1.98256 +- 0.00398 seconds time elapsed ( +- 0.20% )
> 20: 3.75988 +- 0.00611 seconds time elapsed ( +- 0.16% )
> 40: 6.9833 +- 0.0113 seconds time elapsed ( +- 0.16% )
>
> +6 patches/peterz-sched-revert-reweight-entity-thingy.patch
>
> 1: 0.25302 +- 0.00285 seconds time elapsed ( +- 1.13% )
> 2: 0.53040 +- 0.00383 seconds time elapsed ( +- 0.72% )
> 5: 1.08806 +- 0.00341 seconds time elapsed ( +- 0.31% )
> 10: 1.97696 +- 0.00592 seconds time elapsed ( +- 0.30% )
> 20: 3.75393 +- 0.00622 seconds time elapsed ( +- 0.17% )
> 40: 6.9794 +- 0.0139 seconds time elapsed ( +- 0.20% )
>
>
> Now let me go check on that latency thing from Doug (although hopefully
> that was the same boo-boo).
^ permalink raw reply [flat|nested] 70+ messages in thread
* Re: [PATCH 0/4] sched: Various reweight_entity() fixes
2026-02-11 10:48 ` Peter Zijlstra
2026-02-11 10:49 ` Peter Zijlstra
2026-02-11 11:15 ` Vincent Guittot
@ 2026-02-11 16:21 ` Peter Zijlstra
2026-02-12 5:54 ` Doug Smythies
2026-02-12 7:46 ` Peter Zijlstra
2026-02-11 23:25 ` Doug Smythies
3 siblings, 2 replies; 70+ messages in thread
From: Peter Zijlstra @ 2026-02-11 16:21 UTC (permalink / raw)
To: Vincent Guittot
Cc: Doug Smythies, K Prateek Nayak, mingo, juri.lelli,
dietmar.eggemann, rostedt, bsegall, mgorman, vschneid,
linux-kernel, wangtao554, quzicheng, wuyun.abel
On Wed, Feb 11, 2026 at 11:48:33AM +0100, Peter Zijlstra wrote:
> Now let me go check on that latency thing from Doug (although hopefully
> that was the same boo-boo).
Only ~3 hours so far, I'll let it run overnight.
So on my ADL with P-cores only (unplug the E things):
$ NR=`grep -c processor /proc/cpuinfo`; for ((i=0; i<$NR; i++)) do yes > /dev/null & done
$ turbostat --quiet --Summary --show Busy%,Bzy_MHz,IRQ,PkgWatt,PkgTmp,TSC_MHz,Time_Of_Day_Seconds,usec --interval 1 --out /dev/shm/turbo.log
$ gawk '/^usec/ {next} { if (T) { d=$2-T; bucket[int(d*1000)]++; } T=$2 } END { for (i in bucket) { printf "%0.3f: %d\n", i/1000, bucket[i] }}' < /dev/shm/turbo.log
1.000: 4943
1.001: 5000
1.002: 21
1.003: 10
1.004: 1
1.005: 1
Which seems to suggest things are looking better again.
^ permalink raw reply [flat|nested] 70+ messages in thread
* Re: [PATCH 0/4] sched: Various reweight_entity() fixes
2026-02-11 11:15 ` Vincent Guittot
@ 2026-02-11 16:28 ` Peter Zijlstra
2026-02-12 7:43 ` K Prateek Nayak
0 siblings, 1 reply; 70+ messages in thread
From: Peter Zijlstra @ 2026-02-11 16:28 UTC (permalink / raw)
To: Vincent Guittot
Cc: Doug Smythies, K Prateek Nayak, mingo, juri.lelli,
dietmar.eggemann, rostedt, bsegall, mgorman, vschneid,
linux-kernel, wangtao554, quzicheng, wuyun.abel
On Wed, Feb 11, 2026 at 12:15:48PM +0100, Vincent Guittot wrote:
> Regarding the use of calc_delta_fair() in update_entity_lag(), we use
> calc_delta_fair() for updating vruntime, deadline, vprot and vlag and
> I wonder how this diff of granularity compared to avg_vruntime can be
> an issue for sched_entity with a small weight
It will effectively inflate their weight.
The below seems to 'work' -- it builds, boots and builds a kernel.
We could perhaps look at doing that reciprocal thing on unsigned long,
but meh.
---
Subject: sched/fair: Use full weight to __calc_delta()
From: Peter Zijlstra <peterz@infradead.org>
Date: Wed Feb 11 17:07:58 CET 2026
Since we now use the full weight for avg_vruntime(), also make
__calc_delta() use the full value.
Since weight is effectively NICE_0_LOAD, this is 20 bits on 64bit.
This leaves 44 bits for delta_exec, which is ~16k seconds, way longer
than any one tick would ever be, so no worry about overflow.
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
---
kernel/sched/fair.c | 4 ++++
1 file changed, 4 insertions(+)
--- a/kernel/sched/fair.c
+++ b/kernel/sched/fair.c
@@ -259,6 +259,7 @@ static void __update_inv_weight(struct l
*/
static u64 __calc_delta(u64 delta_exec, unsigned long weight, struct load_weight *lw)
{
+#ifdef CONFIG_32BIT
u64 fact = scale_load_down(weight);
u32 fact_hi = (u32)(fact >> 32);
int shift = WMULT_SHIFT;
@@ -282,6 +283,9 @@ static u64 __calc_delta(u64 delta_exec,
}
return mul_u64_u32_shr(delta_exec, fact, shift);
+#else
+ return (delta_exec * weight) / lw->weight;
+#endif
}
/*
^ permalink raw reply [flat|nested] 70+ messages in thread
* RE: [PATCH 0/4] sched: Various reweight_entity() fixes
2026-02-10 18:09 ` K Prateek Nayak
2026-02-10 18:35 ` Peter Zijlstra
@ 2026-02-11 23:09 ` Doug Smythies
1 sibling, 0 replies; 70+ messages in thread
From: Doug Smythies @ 2026-02-11 23:09 UTC (permalink / raw)
To: 'K Prateek Nayak', 'Peter Zijlstra'
Cc: mingo, juri.lelli, vincent.guittot, dietmar.eggemann, rostedt,
bsegall, mgorman, vschneid, linux-kernel, wangtao554, quzicheng,
wuyun.abel, Doug Smythies
[-- Attachment #1: Type: text/plain, Size: 1394 bytes --]
On 2026.02.10 10:09 K Prateek Nayak wrote:
> On 2/10/2026 9:11 PM, Doug Smythies wrote:
>> My test computer also hung under the heavy heavy load test,
>> albeit at a higher load than before.
>> There was no log information that I could find after the re-boot.
>
> Could you run the same scenario with PARANOID_AVG:
>
> echo PARANOID_AVG > /sys/kernel/debug/sched/features
>
> and once you are past the point when the system would have usually
> hung, can check if the "sum_shifts" reported for cfs_rq in the
> debugfs have changed to some non-zero value:
>
> grep "shift.*: [^0]$" /sys/kernel/debug/sched/debug
>
> I'm assuming this is the same "yes" x 12500 copies bomb that failed.
> Let me see if I can reproduce this on my setup by leaving it going
> overnight on a limited cpuset.
>
> Since you mentioned there is some bound to the number of copies when
> the hang is observed, can you please share your system details and
> the number of CPUs it has?
I tried several times with PARANOID_AVG during my original work
with what I am calling "V1" of Peter's patch set. That was last week.
I never got a non-zero value.
Today, with what I am calling "V3" of Peter's patch set, I was
not able to get past the NO_PARANOID_AVG conditions.
I also never saw a non-zero value while trying as the number
of tasks ramped up.
An updated tasks verses elapsed time graph is attached.
... Doug
[-- Attachment #2: pz-tasks.png --]
[-- Type: image/png, Size: 36364 bytes --]
^ permalink raw reply [flat|nested] 70+ messages in thread
* RE: [PATCH 0/4] sched: Various reweight_entity() fixes
2026-02-11 10:48 ` Peter Zijlstra
` (2 preceding siblings ...)
2026-02-11 16:21 ` Peter Zijlstra
@ 2026-02-11 23:25 ` Doug Smythies
3 siblings, 0 replies; 70+ messages in thread
From: Doug Smythies @ 2026-02-11 23:25 UTC (permalink / raw)
To: 'Peter Zijlstra', 'Vincent Guittot'
Cc: 'K Prateek Nayak', mingo, juri.lelli, dietmar.eggemann,
rostedt, bsegall, mgorman, vschneid, linux-kernel, wangtao554,
quzicheng, Doug Smythies
On 2026.02.11 02:49 Peter Zijlstra wrote:
> On Wed, Feb 11, 2026 at 10:01:44AM +0100, Peter Zijlstra wrote:
>
>>> There 2 issues with patch 3
>>>
>>> *one scale_load_down remains in avg_vruntime
>>>
>>> diff --git a/kernel/sched/fair.c b/kernel/sched/fair.c
>>> index 25c398ff0d59..3143ae7f07b0 100644
>>> --- a/kernel/sched/fair.c
>>> +++ b/kernel/sched/fair.c
>>> @@ -778,7 +778,7 @@ u64 avg_vruntime(struct cfs_rq *cfs_rq)
>>>
>>> if (weight) {
>>> if (curr) {
>>> - unsigned long w = scale_load_down(curr->load.weight);
>>> + unsigned long w =
>>> avg_vruntime_weight(curr->load.weight);
>>>
>>> runtime += entity_key(cfs_rq, curr) * w;
>>> weight += w;
>>
>> AAARGHHH!! Sorry about that, clearly I've not been careful with
>> reshuffling patches :-(
>
> So with that one fixed; I get (as queue/sched/core of just now):
>
... snip...
For the Phoronix version of hackbench I now get (I call this "V3"):
Run 1 of 2, 10 tests per run: 22.875 seconds average, Deviation 0.25%
Run 2 of 2, 10 tests per run: 22.979 seconds average, Deviation 0.16%
Test conditions same as yesterday for "V2" (was 85.755 seconds average, deviation 3.33%)
Processor Test Configuration 8 and "Process".
Conclusion: great.
> Now let me go check on that latency thing from Doug (although hopefully
> that was the same boo-boo).
I am starting that test now.
... Doug
^ permalink raw reply [flat|nested] 70+ messages in thread
* RE: [PATCH 0/4] sched: Various reweight_entity() fixes
2026-02-11 16:21 ` Peter Zijlstra
@ 2026-02-12 5:54 ` Doug Smythies
2026-02-12 7:51 ` Peter Zijlstra
2026-02-12 7:46 ` Peter Zijlstra
1 sibling, 1 reply; 70+ messages in thread
From: Doug Smythies @ 2026-02-12 5:54 UTC (permalink / raw)
To: 'Peter Zijlstra', 'Vincent Guittot'
Cc: 'K Prateek Nayak', mingo, juri.lelli, dietmar.eggemann,
rostedt, bsegall, mgorman, vschneid, linux-kernel, wangtao554,
quzicheng, Doug Smythies
On 2026.02.11 08:22 Peter Zijlstra wrote:
> On Wed, Feb 11, 2026 at 11:48:33AM +0100, Peter Zijlstra wrote:
>
>> Now let me go check on that latency thing from Doug (although hopefully
>> that was the same boo-boo).
>
> Only ~3 hours so far, I'll let it run overnight.
>
> So on my ADL with P-cores only (unplug the E things):
>
> $ NR=`grep -c processor /proc/cpuinfo`; for ((i=0; i<$NR; i++)) do yes > /dev/null & done
> $ turbostat --quiet --Summary --show Busy%,Bzy_MHz,IRQ,PkgWatt,PkgTmp,TSC_MHz,Time_Of_Day_Seconds,usec --interval 1 --out
/dev/shm/turbo.log
>
> $ gawk '/^usec/ {next} { if (T) { d=$2-T; bucket[int(d*1000)]++; } T=$2 } END { for (i in bucket) { printf "%0.3f: %d\n", i/1000,
bucket[i] }}' < /dev/shm/turbo.log
> 1.000: 4943
> 1.001: 5000
> 1.002: 21
> 1.003: 10
> 1.004: 1
> 1.005: 1
>
> Which seems to suggest things are looking better again.
Same here, 6 hours and 20 minutes so far, and I'll leave it overnight:
By the way, thank you for the cool parsing and histogram command line.
$ gawk '/^usec/ {next} { if (T) { d=$2-T; bucket[int(d*1000)]++; } T=$2 } END { for (i in bucket) { printf "%0.3f: %d\n", i/1000,
bucket[i] }}' < /dev/shm/turbo.log
1.000: 12381
1.001: 10388
1.002: 32
1.003: 20
1.004: 9
1.005: 2
1.006: 2
System:
Processor: Intel(R) Core(TM) i5-10600K CPU @ 4.10GHz, 6 cores 12 CPUs.
CPU frequency scaling driver: intel_pstate.
CPU frequency scaling governor: powersave.
HWP: enabled.
idle governor teo.
^ permalink raw reply [flat|nested] 70+ messages in thread
* Re: [PATCH 0/4] sched: Various reweight_entity() fixes
2026-02-11 16:28 ` Peter Zijlstra
@ 2026-02-12 7:43 ` K Prateek Nayak
2026-02-12 11:59 ` Peter Zijlstra
0 siblings, 1 reply; 70+ messages in thread
From: K Prateek Nayak @ 2026-02-12 7:43 UTC (permalink / raw)
To: Peter Zijlstra, Vincent Guittot
Cc: Doug Smythies, mingo, juri.lelli, dietmar.eggemann, rostedt,
bsegall, mgorman, vschneid, linux-kernel, wangtao554, quzicheng,
wuyun.abel
Hello Peter,
On 2/11/2026 9:58 PM, Peter Zijlstra wrote:
> On Wed, Feb 11, 2026 at 12:15:48PM +0100, Vincent Guittot wrote:
>
>> Regarding the use of calc_delta_fair() in update_entity_lag(), we use
>> calc_delta_fair() for updating vruntime, deadline, vprot and vlag and
>> I wonder how this diff of granularity compared to avg_vruntime can be
>> an issue for sched_entity with a small weight
>
> It will effectively inflate their weight.
>
> The below seems to 'work' -- it builds, boots and builds a kernel.
>
> We could perhaps look at doing that reciprocal thing on unsigned long,
> but meh.
So I was testing peterz:sched/core at commit 84230c0ac1cf ("sched/fair:
Use full weight to __calc_delta()") and it still crashes for the
exorbitantly large copies of "yes" running on 6 cores.
Here is what I've found out from today's crash on dumping the offending
cfs_rq:
...
Enqueue cfs_rq: depth(1) weight(2144337920) nr_queued(2045) sum_w_vruntime(18343811230990336) sum_weight(2144337920) zero_vruntime(18337852274) sum_shift(0) avg_vruntime(18337852274)
Dequeue cfs_rq: depth(1) weight(2144337920) nr_queued(2045) sum_w_vruntime(1303379968) sum_weight(2143289344) zero_vruntime(18354971669) sum_shift(0) avg_vruntime(18354971669)
Enqueue cfs_rq: depth(1) weight(2152726528) nr_queued(2053) sum_w_vruntime(-31233567079006208) sum_weight(2152726528) zero_vruntime(18360916028) sum_shift(0) avg_vruntime(18360916028)
Dequeue cfs_rq: depth(1) weight(2152726528) nr_queued(2053) sum_w_vruntime(-25773095996358656) sum_weight(2151677952) zero_vruntime(18366916795) sum_shift(0) avg_vruntime(18366916795)
Enqueue cfs_rq: depth(1) weight(2152726528) nr_queued(2053) sum_w_vruntime(-195993505307295744) sum_weight(2152726528) zero_vruntime(18437453448) sum_shift(0) avg_vruntime(18437453448)
Dequeue cfs_rq: depth(1) weight(2152726528) nr_queued(2053) sum_w_vruntime(-355777007188967424) sum_weight(2151677952) zero_vruntime(18520289238) sum_shift(0) avg_vruntime(18520289238)
Enqueue cfs_rq: depth(1) weight(2152726528) nr_queued(2053) sum_w_vruntime(-1523774576650092544) sum_weight(2152726528) zero_vruntime(19054245803) sum_shift(0) avg_vruntime(19054245803)
Dequeue cfs_rq: depth(1) weight(2152726528) nr_queued(2053) sum_w_vruntime(-3015239905359953920) sum_weight(2151677952) zero_vruntime(19756286051) sum_shift(0) avg_vruntime(19756286051)
# I'm suspecting something goes sideways at this point looking at
# the big jump that comes after in avg_vruntime()
# "6222537296247259136" has bit 63 set so could it be a wraparound
# in sum_w_vruntime?
Enqueue cfs_rq: depth(1) weight(2152726528) nr_queued(2053) sum_w_vruntime(6222537296247259136) sum_weight(2152726528) zero_vruntime(24024889432) sum_shift(0) avg_vruntime(24024889432)
Dequeue cfs_rq: depth(1) weight(2152726528) nr_queued(2053) sum_w_vruntime(-5928597400870453248) sum_weight(2151677952) zero_vruntime(21110281285) sum_shift(0) avg_vruntime(21110281285)
cfs_rq of failed pick:
cfs_rq: depth(0) weight(2176843776) nr_queued(2076) sum_w_vruntime(-90907067772043264) sum_weight(2175795200) zero_vruntime(26921355273)
se: weight(1048576) vruntime(843832351) slice(2800000) deadline(846630448) curr?(1) task?(1) delayed?(0) se_depth(1)
se: weight(1048576) vruntime(839841550) slice(2800000) deadline(842635020) curr?(0) task?(1) delayed?(0) se_depth(1)
...
# Many entities have weight 1048576, and and vruntime around ~850,000
....
se: weight(1048576) vruntime(843832916) slice(2800000) deadline(846629681) curr?(0) task?(1) delayed?(0) se_depth(1)
se: weight(1048576) vruntime(843833563) slice(2800000) deadline(846630939) curr?(0) task?(1) delayed?(0) se_depth(1)
se: weight(1048576) vruntime(843840684) slice(2800000) deadline(846633192) curr?(0) task?(1) delayed?(0) se_depth(1)
se: weight(1048576) vruntime(18344670326) slice(2800000) deadline(18347465508) curr?(0) task?(1) delayed?(0) se_depth(1)
se: weight(1048576) vruntime(18344679852) slice(2800000) deadline(18347475866) curr?(0) task?(1) delayed?(0) se_depth(1)
se: weight(1048576) vruntime(18344682061) slice(2800000) deadline(18347477764) curr?(0) task?(1) delayed?(0) se_depth(1)
...
# Many entities have weight 1048576, and and vruntime around ~18,344,682,061
I'm running with CONFIG_HZ=250. In vruntime_eligible() we have for curr:
entity_key(curr) = -26077522922LL
weight = 1048576UL
For the cfs_rq we get:
avg = sum_w_runtime + (entity_key * weight) = -118251332447502336LL
load = sum_weight + weight = 2176843776UL
But on the way to check eligibility we compute:
entity_key * load = -56766693466253033472 (in python)
entity_key * load = -1426461245124378624LL (in C)
vruntime_eligible() returns false always as a result of the overflow and
we land in a pickle. Not sure if sum_w_vruntime itself can suffer from
a wrap around that leads to all this.
Parsing the stats based on the dump in Python gives me:
Total weight: 2176843776 (checks out)
Total weighted vruntime: 3145101113938673664
Avg (floating point): 1444798725.849711
Avg (signed 64-bit): 1444798725
Avg (unsigned 64-bit): 1444798725
which is a bit far off from the dumped stats of cfs_rq.
--
Thanks and Regards,
Prateek
^ permalink raw reply [flat|nested] 70+ messages in thread
* Re: [PATCH 0/4] sched: Various reweight_entity() fixes
2026-02-11 16:21 ` Peter Zijlstra
2026-02-12 5:54 ` Doug Smythies
@ 2026-02-12 7:46 ` Peter Zijlstra
1 sibling, 0 replies; 70+ messages in thread
From: Peter Zijlstra @ 2026-02-12 7:46 UTC (permalink / raw)
To: Vincent Guittot
Cc: Doug Smythies, K Prateek Nayak, mingo, juri.lelli,
dietmar.eggemann, rostedt, bsegall, mgorman, vschneid,
linux-kernel, wangtao554, quzicheng, wuyun.abel
On Wed, Feb 11, 2026 at 05:21:49PM +0100, Peter Zijlstra wrote:
> On Wed, Feb 11, 2026 at 11:48:33AM +0100, Peter Zijlstra wrote:
>
> > Now let me go check on that latency thing from Doug (although hopefully
> > that was the same boo-boo).
>
> Only ~3 hours so far, I'll let it run overnight.
>
> So on my ADL with P-cores only (unplug the E things):
>
> $ NR=`grep -c processor /proc/cpuinfo`; for ((i=0; i<$NR; i++)) do yes > /dev/null & done
> $ turbostat --quiet --Summary --show Busy%,Bzy_MHz,IRQ,PkgWatt,PkgTmp,TSC_MHz,Time_Of_Day_Seconds,usec --interval 1 --out /dev/shm/turbo.log
>
> $ gawk '/^usec/ {next} { if (T) { d=$2-T; bucket[int(d*1000)]++; } T=$2 } END { for (i in bucket) { printf "%0.3f: %d\n", i/1000, bucket[i] }}' < /dev/shm/turbo.log
> 1.000: 4943
> 1.001: 5000
> 1.002: 21
> 1.003: 10
> 1.004: 1
> 1.005: 1
>
At 18+ hours:
1.000: 32458
1.001: 32973
1.002: 121
1.003: 63
1.004: 6
1.005: 2
I think we can consider this good :-) *phew*
^ permalink raw reply [flat|nested] 70+ messages in thread
* Re: [PATCH 0/4] sched: Various reweight_entity() fixes
2026-02-12 5:54 ` Doug Smythies
@ 2026-02-12 7:51 ` Peter Zijlstra
2026-02-12 15:47 ` Doug Smythies
0 siblings, 1 reply; 70+ messages in thread
From: Peter Zijlstra @ 2026-02-12 7:51 UTC (permalink / raw)
To: Doug Smythies
Cc: 'Vincent Guittot', 'K Prateek Nayak', mingo,
juri.lelli, dietmar.eggemann, rostedt, bsegall, mgorman, vschneid,
linux-kernel, wangtao554, quzicheng
On Wed, Feb 11, 2026 at 09:54:40PM -0800, Doug Smythies wrote:
> Same here, 6 hours and 20 minutes so far, and I'll leave it overnight:
Excellent!
> By the way, thank you for the cool parsing and histogram command line.
No problem. I love awk :-) Its just small enough to re-learn by reading
the man page.
I always struggle with things like perl and python because I don't use
them enough to retain stuff, and then I'm left endlessly googling how
the heck things worked again. But awk fits in a single 'short' manpage.
^ permalink raw reply [flat|nested] 70+ messages in thread
* Re: [PATCH 0/4] sched: Various reweight_entity() fixes
2026-02-12 7:43 ` K Prateek Nayak
@ 2026-02-12 11:59 ` Peter Zijlstra
2026-02-12 17:16 ` Peter Zijlstra
0 siblings, 1 reply; 70+ messages in thread
From: Peter Zijlstra @ 2026-02-12 11:59 UTC (permalink / raw)
To: K Prateek Nayak
Cc: Vincent Guittot, Doug Smythies, mingo, juri.lelli,
dietmar.eggemann, rostedt, bsegall, mgorman, vschneid,
linux-kernel, wangtao554, quzicheng, wuyun.abel
On Thu, Feb 12, 2026 at 01:13:30PM +0530, K Prateek Nayak wrote:
> Hello Peter,
>
> On 2/11/2026 9:58 PM, Peter Zijlstra wrote:
> > On Wed, Feb 11, 2026 at 12:15:48PM +0100, Vincent Guittot wrote:
> >
> >> Regarding the use of calc_delta_fair() in update_entity_lag(), we use
> >> calc_delta_fair() for updating vruntime, deadline, vprot and vlag and
> >> I wonder how this diff of granularity compared to avg_vruntime can be
> >> an issue for sched_entity with a small weight
> >
> > It will effectively inflate their weight.
> >
> > The below seems to 'work' -- it builds, boots and builds a kernel.
> >
> > We could perhaps look at doing that reciprocal thing on unsigned long,
> > but meh.
>
> So I was testing peterz:sched/core at commit 84230c0ac1cf ("sched/fair:
> Use full weight to __calc_delta()") and it still crashes for the
> exorbitantly large copies of "yes" running on 6 cores.
Ah yes, our next great adventure :-)
> Here is what I've found out from today's crash on dumping the offending
> cfs_rq:
>
> ...
> Enqueue cfs_rq: depth(1) weight(2144337920) nr_queued(2045) sum_w_vruntime(18343811230990336) sum_weight(2144337920) zero_vruntime(18337852274) sum_shift(0) avg_vruntime(18337852274)
> Dequeue cfs_rq: depth(1) weight(2144337920) nr_queued(2045) sum_w_vruntime(1303379968) sum_weight(2143289344) zero_vruntime(18354971669) sum_shift(0) avg_vruntime(18354971669)
This is about where things go sideways... (see argument below)
> Enqueue cfs_rq: depth(1) weight(2152726528) nr_queued(2053) sum_w_vruntime(-31233567079006208) sum_weight(2152726528) zero_vruntime(18360916028) sum_shift(0) avg_vruntime(18360916028)
> Dequeue cfs_rq: depth(1) weight(2152726528) nr_queued(2053) sum_w_vruntime(-25773095996358656) sum_weight(2151677952) zero_vruntime(18366916795) sum_shift(0) avg_vruntime(18366916795)
> Enqueue cfs_rq: depth(1) weight(2152726528) nr_queued(2053) sum_w_vruntime(-195993505307295744) sum_weight(2152726528) zero_vruntime(18437453448) sum_shift(0) avg_vruntime(18437453448)
> Dequeue cfs_rq: depth(1) weight(2152726528) nr_queued(2053) sum_w_vruntime(-355777007188967424) sum_weight(2151677952) zero_vruntime(18520289238) sum_shift(0) avg_vruntime(18520289238)
> Enqueue cfs_rq: depth(1) weight(2152726528) nr_queued(2053) sum_w_vruntime(-1523774576650092544) sum_weight(2152726528) zero_vruntime(19054245803) sum_shift(0) avg_vruntime(19054245803)
> Dequeue cfs_rq: depth(1) weight(2152726528) nr_queued(2053) sum_w_vruntime(-3015239905359953920) sum_weight(2151677952) zero_vruntime(19756286051) sum_shift(0) avg_vruntime(19756286051)
This is definitely weird; so all these tasks should be more or less
equally spread out around avg_runtime with a +- of that lag bound. This
means that sum_w_vruntime should be in the order of walltime-delta.
To see this; let us remind that:
dt_i
dv_i = ----
w_i
dt
dV = -- ; where: W = \Sum w_i and dt = \Sum dt_i
W
(Virtual) lag is then defined as the difference between V and v_i. In
the fluid model the lag is 0 -- since everybody always advances equally.
In the discrete model this is translated to \Sum lag_i := 0. Anyway, it
can be shown that \Sum vlag_i := 0, is equivalent to:
\Sum w_i * v_i
V = --------------
W
In differential form that gives:
dt_i
\Sum w_i * ----
w_i \Sum dt_i dt
dV = ---------------- = --------- = --
W W W
Now: sum_w_vruntime := dt-dt_curr, sum_weight := W-w_curr
[ one way of looking at it is that sum_w_vruntime + curr->vruntime
carries the remainder of the division, while zero_vruntime carries whe
whole part ]
Anyway, your trace shows both zero_vruntime and avg_vruntime increasing,
this means dt is positive. However, at the same time it shows
sum_w_vruntime being increasingly negative.
The only way this can be is for curr->vruntime to be increasinly
positive such that the sum ends up being a 'small' positive number.
IOW, we're not running the right tasks (and wrecking the lag bounds in
the process).
>
> # I'm suspecting something goes sideways at this point looking at
> # the big jump that comes after in avg_vruntime()
> # "6222537296247259136" has bit 63 set so could it be a wraparound
> # in sum_w_vruntime?
>
> Enqueue cfs_rq: depth(1) weight(2152726528) nr_queued(2053) sum_w_vruntime(6222537296247259136) sum_weight(2152726528) zero_vruntime(24024889432) sum_shift(0) avg_vruntime(24024889432)
> Dequeue cfs_rq: depth(1) weight(2152726528) nr_queued(2053) sum_w_vruntime(-5928597400870453248) sum_weight(2151677952) zero_vruntime(21110281285) sum_shift(0) avg_vruntime(21110281285)
>
> cfs_rq of failed pick:
> cfs_rq: depth(0) weight(2176843776) nr_queued(2076) sum_w_vruntime(-90907067772043264) sum_weight(2175795200) zero_vruntime(26921355273)
> se: weight(1048576) vruntime(843832351) slice(2800000) deadline(846630448) curr?(1) task?(1) delayed?(0) se_depth(1)
> se: weight(1048576) vruntime(839841550) slice(2800000) deadline(842635020) curr?(0) task?(1) delayed?(0) se_depth(1)
> ...
>
> # Many entities have weight 1048576, and and vruntime around ~850,000
>
> ....
> se: weight(1048576) vruntime(843832916) slice(2800000) deadline(846629681) curr?(0) task?(1) delayed?(0) se_depth(1)
> se: weight(1048576) vruntime(843833563) slice(2800000) deadline(846630939) curr?(0) task?(1) delayed?(0) se_depth(1)
> se: weight(1048576) vruntime(843840684) slice(2800000) deadline(846633192) curr?(0) task?(1) delayed?(0) se_depth(1)
> se: weight(1048576) vruntime(18344670326) slice(2800000) deadline(18347465508) curr?(0) task?(1) delayed?(0) se_depth(1)
> se: weight(1048576) vruntime(18344679852) slice(2800000) deadline(18347475866) curr?(0) task?(1) delayed?(0) se_depth(1)
> se: weight(1048576) vruntime(18344682061) slice(2800000) deadline(18347477764) curr?(0) task?(1) delayed?(0) se_depth(1)
> ...
>
> # Many entities have weight 1048576, and and vruntime around ~18,344,682,061
>
>
> I'm running with CONFIG_HZ=250. In vruntime_eligible() we have for curr:
>
> entity_key(curr) = -26077522922LL
> weight = 1048576UL
>
>
> For the cfs_rq we get:
>
> avg = sum_w_runtime + (entity_key * weight) = -118251332447502336LL
> load = sum_weight + weight = 2176843776UL
>
>
> But on the way to check eligibility we compute:
>
> entity_key * load = -56766693466253033472 (in python)
> entity_key * load = -1426461245124378624LL (in C)
>
>
> vruntime_eligible() returns false always as a result of the overflow and
> we land in a pickle. Not sure if sum_w_vruntime itself can suffer from
> a wrap around that leads to all this.
>
> Parsing the stats based on the dump in Python gives me:
>
> Total weight: 2176843776 (checks out)
> Total weighted vruntime: 3145101113938673664
>
> Avg (floating point): 1444798725.849711
> Avg (signed 64-bit): 1444798725
> Avg (unsigned 64-bit): 1444798725
>
> which is a bit far off from the dumped stats of cfs_rq.
So eligibility is lag > 0, or v_i < V. Thus we have:
v_i < V_0 + dt/W
Because divisions are expensive, we've rearranged things:
(v_i - V_0) < dt/W
(v_i - V_0) * W < dt
Now, (v_i - V_0) is entity_key() and we've argued that:
(v_i - V_0) * w_i ~ 44 bits
But now we do * W, which is n*w_i (assuming, as is the case here that
all our tasks of equal weight). Still this would allow n to be of the
order of 20 bits, far larger than the 2k it is.
But yes, if (v_i - V_0) far exceeds the limits imposed by the lag
bounds, this will go sideways.
Let me go puzzle...
For you, slice+TICK_NSEC should be something like: 6800000, and given
everything is weight '1', we would expect vruntime to always be:
avg_vruntime +- 6800000
But that is clearly not happening.
^ permalink raw reply [flat|nested] 70+ messages in thread
* RE: [PATCH 0/4] sched: Various reweight_entity() fixes
2026-02-12 7:51 ` Peter Zijlstra
@ 2026-02-12 15:47 ` Doug Smythies
0 siblings, 0 replies; 70+ messages in thread
From: Doug Smythies @ 2026-02-12 15:47 UTC (permalink / raw)
To: 'Peter Zijlstra'
Cc: 'Vincent Guittot', 'K Prateek Nayak', mingo,
juri.lelli, dietmar.eggemann, rostedt, bsegall, mgorman, vschneid,
linux-kernel, wangtao554, quzicheng, Doug Smythies
On 2026.02.11 23:52 Peter Zijlstra wrote:
> On Wed, Feb 11, 2026 at 09:54:40PM -0800, Doug Smythies wrote:
>
>> Same here, 6 hours and 20 minutes so far, and I'll leave it overnight:
>
> Excellent!
>
>> By the way, thank you for the cool parsing and histogram command line.
>
> No problem. I love awk :-) Its just small enough to re-learn by reading
> the man page.
>
> I always struggle with things like perl and python because I don't use
> them enough to retain stuff, and then I'm left endlessly googling how
> the heck things worked again. But awk fits in a single 'short' manpage.
We already know all is good, but just for completeness after overnight:
14 hours and 46 minutes:
Cool method:
$ gawk '/^usec/ {next} { if (T) { d=$2-T; bucket[int(d*1000)]++; } T=$2 } END { for (i in bucket) { printf "%0.3f: %d\n", i/1000,
bucket[i] }}' < /dev/shm/turbo.log
1.000: 28858
1.001: 24052
1.002: 87
1.003: 56
1.004: 31
1.005: 11
1.006: 8
1.008: 2
My old way. Interesting differences, likely due to subtle differences in subtracting 2 16 digit numbers:
cat v3.his
1.000, 32974
1.001, 20012
1.002, 86
1.003, 57
1.004, 31
1.005, 11
1.006, 8
1.008, 2
Total: 53181 : Total >= 10 mSec: 0 ( 0.00 percent)
^ permalink raw reply [flat|nested] 70+ messages in thread
* Re: [PATCH 0/4] sched: Various reweight_entity() fixes
2026-02-12 11:59 ` Peter Zijlstra
@ 2026-02-12 17:16 ` Peter Zijlstra
2026-02-12 17:24 ` Vincent Guittot
2026-02-12 19:29 ` Peter Zijlstra
0 siblings, 2 replies; 70+ messages in thread
From: Peter Zijlstra @ 2026-02-12 17:16 UTC (permalink / raw)
To: K Prateek Nayak
Cc: Vincent Guittot, Doug Smythies, mingo, juri.lelli,
dietmar.eggemann, rostedt, bsegall, mgorman, vschneid,
linux-kernel, wangtao554, quzicheng, wuyun.abel
On Thu, Feb 12, 2026 at 12:59:43PM +0100, Peter Zijlstra wrote:
> On Thu, Feb 12, 2026 at 01:13:30PM +0530, K Prateek Nayak wrote:
> > Enqueue cfs_rq: depth(1) weight(2144337920) nr_queued(2045) sum_w_vruntime(18343811230990336) sum_weight(2144337920) zero_vruntime(18337852274) sum_shift(0) avg_vruntime(18337852274)
> > Dequeue cfs_rq: depth(1) weight(2144337920) nr_queued(2045) sum_w_vruntime(1303379968) sum_weight(2143289344) zero_vruntime(18354971669) sum_shift(0) avg_vruntime(18354971669)
After staring at waaay too many traces of my own, which confirm what
you're seeing, but didn't want to make any sense either...
... I thinks I found it ...
Note that sum_weight, that has _just_ flipped bit 31 and thus turned
negative *if* it were a 32bit number. Every time, exactly at this point
things started to go sideways.
So I went looking for where this might be and I found the below.
My latest run has passed 0x8000000/(1024*1024) = 2048 tasks and is still
running. Numbers are still sane, fingers crossed.
---
diff --git a/kernel/sched/fair.c b/kernel/sched/fair.c
index 5b1a2abb727e..de155be02411 100644
--- a/kernel/sched/fair.c
+++ b/kernel/sched/fair.c
@@ -797,7 +797,11 @@ u64 avg_vruntime(struct cfs_rq *cfs_rq)
if (runtime < 0)
runtime -= (weight - 1);
+#ifndef CONFIG_64BIT
delta = div_s64(runtime, weight);
+#else
+ delta = runtime / weight;
+#endif
} else if (curr) {
/*
* When there is but one element, it is the average.
^ permalink raw reply related [flat|nested] 70+ messages in thread
* Re: [PATCH 0/4] sched: Various reweight_entity() fixes
2026-02-12 17:16 ` Peter Zijlstra
@ 2026-02-12 17:24 ` Vincent Guittot
2026-02-12 19:31 ` Peter Zijlstra
2026-02-12 19:29 ` Peter Zijlstra
1 sibling, 1 reply; 70+ messages in thread
From: Vincent Guittot @ 2026-02-12 17:24 UTC (permalink / raw)
To: Peter Zijlstra
Cc: K Prateek Nayak, Doug Smythies, mingo, juri.lelli,
dietmar.eggemann, rostedt, bsegall, mgorman, vschneid,
linux-kernel, wangtao554, quzicheng, wuyun.abel
On Thu, 12 Feb 2026 at 18:16, Peter Zijlstra <peterz@infradead.org> wrote:
>
> On Thu, Feb 12, 2026 at 12:59:43PM +0100, Peter Zijlstra wrote:
> > On Thu, Feb 12, 2026 at 01:13:30PM +0530, K Prateek Nayak wrote:
>
> > > Enqueue cfs_rq: depth(1) weight(2144337920) nr_queued(2045) sum_w_vruntime(18343811230990336) sum_weight(2144337920) zero_vruntime(18337852274) sum_shift(0) avg_vruntime(18337852274)
> > > Dequeue cfs_rq: depth(1) weight(2144337920) nr_queued(2045) sum_w_vruntime(1303379968) sum_weight(2143289344) zero_vruntime(18354971669) sum_shift(0) avg_vruntime(18354971669)
>
> After staring at waaay too many traces of my own, which confirm what
> you're seeing, but didn't want to make any sense either...
>
> ... I thinks I found it ...
>
> Note that sum_weight, that has _just_ flipped bit 31 and thus turned
> negative *if* it were a 32bit number. Every time, exactly at this point
> things started to go sideways.
>
> So I went looking for where this might be and I found the below.
>
> My latest run has passed 0x8000000/(1024*1024) = 2048 tasks and is still
> running. Numbers are still sane, fingers crossed.
>
>
> ---
>
>
> diff --git a/kernel/sched/fair.c b/kernel/sched/fair.c
> index 5b1a2abb727e..de155be02411 100644
> --- a/kernel/sched/fair.c
> +++ b/kernel/sched/fair.c
> @@ -797,7 +797,11 @@ u64 avg_vruntime(struct cfs_rq *cfs_rq)
> if (runtime < 0)
> runtime -= (weight - 1);
>
> +#ifndef CONFIG_64BIT
> delta = div_s64(runtime, weight);
> +#else
> + delta = runtime / weight;
> +#endif
Good catch
Don't we have the same problem with the div_s64 in place_entity ?
> } else if (curr) {
> /*
> * When there is but one element, it is the average.
^ permalink raw reply [flat|nested] 70+ messages in thread
* Re: [PATCH 0/4] sched: Various reweight_entity() fixes
2026-02-12 17:16 ` Peter Zijlstra
2026-02-12 17:24 ` Vincent Guittot
@ 2026-02-12 19:29 ` Peter Zijlstra
2026-02-12 19:37 ` Doug Smythies
2026-02-13 6:04 ` K Prateek Nayak
1 sibling, 2 replies; 70+ messages in thread
From: Peter Zijlstra @ 2026-02-12 19:29 UTC (permalink / raw)
To: K Prateek Nayak
Cc: Vincent Guittot, Doug Smythies, mingo, juri.lelli,
dietmar.eggemann, rostedt, bsegall, mgorman, vschneid,
linux-kernel, wangtao554, quzicheng, wuyun.abel
On Thu, Feb 12, 2026 at 06:16:11PM +0100, Peter Zijlstra wrote:
> On Thu, Feb 12, 2026 at 12:59:43PM +0100, Peter Zijlstra wrote:
> > On Thu, Feb 12, 2026 at 01:13:30PM +0530, K Prateek Nayak wrote:
>
> > > Enqueue cfs_rq: depth(1) weight(2144337920) nr_queued(2045) sum_w_vruntime(18343811230990336) sum_weight(2144337920) zero_vruntime(18337852274) sum_shift(0) avg_vruntime(18337852274)
> > > Dequeue cfs_rq: depth(1) weight(2144337920) nr_queued(2045) sum_w_vruntime(1303379968) sum_weight(2143289344) zero_vruntime(18354971669) sum_shift(0) avg_vruntime(18354971669)
>
> After staring at waaay too many traces of my own, which confirm what
> you're seeing, but didn't want to make any sense either...
>
> ... I thinks I found it ...
>
> Note that sum_weight, that has _just_ flipped bit 31 and thus turned
> negative *if* it were a 32bit number. Every time, exactly at this point
> things started to go sideways.
>
> So I went looking for where this might be and I found the below.
>
> My latest run has passed 0x8000000/(1024*1024) = 2048 tasks and is still
> running. Numbers are still sane, fingers crossed.
>
I made it all the way to 3k tasks on the one CPU and all is well.
^ permalink raw reply [flat|nested] 70+ messages in thread
* Re: [PATCH 0/4] sched: Various reweight_entity() fixes
2026-02-12 17:24 ` Vincent Guittot
@ 2026-02-12 19:31 ` Peter Zijlstra
2026-02-13 5:22 ` K Prateek Nayak
0 siblings, 1 reply; 70+ messages in thread
From: Peter Zijlstra @ 2026-02-12 19:31 UTC (permalink / raw)
To: Vincent Guittot
Cc: K Prateek Nayak, Doug Smythies, mingo, juri.lelli,
dietmar.eggemann, rostedt, bsegall, mgorman, vschneid,
linux-kernel, wangtao554, quzicheng, wuyun.abel
On Thu, Feb 12, 2026 at 06:24:27PM +0100, Vincent Guittot wrote:
> > diff --git a/kernel/sched/fair.c b/kernel/sched/fair.c
> > index 5b1a2abb727e..de155be02411 100644
> > --- a/kernel/sched/fair.c
> > +++ b/kernel/sched/fair.c
> > @@ -797,7 +797,11 @@ u64 avg_vruntime(struct cfs_rq *cfs_rq)
> > if (runtime < 0)
> > runtime -= (weight - 1);
> >
> > +#ifndef CONFIG_64BIT
> > delta = div_s64(runtime, weight);
> > +#else
> > + delta = runtime / weight;
> > +#endif
>
> Good catch
>
> Don't we have the same problem with the div_s64 in place_entity ?
Indeed so. Let me go fix both and push out a new set. I'll post all the
patches tomorrow once the robot has blessed them.
^ permalink raw reply [flat|nested] 70+ messages in thread
* RE: [PATCH 0/4] sched: Various reweight_entity() fixes
2026-02-12 19:29 ` Peter Zijlstra
@ 2026-02-12 19:37 ` Doug Smythies
2026-02-13 6:04 ` K Prateek Nayak
1 sibling, 0 replies; 70+ messages in thread
From: Doug Smythies @ 2026-02-12 19:37 UTC (permalink / raw)
To: 'Peter Zijlstra', 'K Prateek Nayak'
Cc: 'Vincent Guittot', mingo, juri.lelli, dietmar.eggemann,
rostedt, bsegall, mgorman, vschneid, linux-kernel, wangtao554,
quzicheng, Doug Smythies
On 2026.02.12 11:29 Peter Zijlstra wrote:
> On Thu, Feb 12, 2026 at 06:16:11PM +0100, Peter Zijlstra wrote:
>> On Thu, Feb 12, 2026 at 12:59:43PM +0100, Peter Zijlstra wrote:
>>> On Thu, Feb 12, 2026 at 01:13:30PM +0530, K Prateek Nayak wrote:
>>
>>>> Enqueue cfs_rq: depth(1) weight(2144337920) nr_queued(2045) sum_w_vruntime(18343811230990336) sum_weight(2144337920)
zero_vruntime(18337852274) sum_shift(0) avg_vruntime(18337852274)
>>>> Dequeue cfs_rq: depth(1) weight(2144337920) nr_queued(2045) sum_w_vruntime(1303379968) sum_weight(2143289344)
zero_vruntime(18354971669) sum_shift(0) avg_vruntime(18354971669)
>>
>> After staring at waaay too many traces of my own, which confirm what
>> you're seeing, but didn't want to make any sense either...
>>
>> ... I thinks I found it ...
>>
>> Note that sum_weight, that has _just_ flipped bit 31 and thus turned
>> negative *if* it were a 32bit number. Every time, exactly at this point
>> things started to go sideways.
>>
>> So I went looking for where this might be and I found the below.
>>
>> My latest run has passed 0x8000000/(1024*1024) = 2048 tasks and is still
>> running. Numbers are still sane, fingers crossed.
>>
>
> I made it all the way to 3k tasks on the one CPU and all is well.
I got to the full 20,000 X yes tasks on my test computer. All good.
^ permalink raw reply [flat|nested] 70+ messages in thread
* Re: [PATCH 0/4] sched: Various reweight_entity() fixes
2026-02-12 19:31 ` Peter Zijlstra
@ 2026-02-13 5:22 ` K Prateek Nayak
2026-02-13 6:44 ` Peter Zijlstra
0 siblings, 1 reply; 70+ messages in thread
From: K Prateek Nayak @ 2026-02-13 5:22 UTC (permalink / raw)
To: Peter Zijlstra, Vincent Guittot
Cc: Doug Smythies, mingo, juri.lelli, dietmar.eggemann, rostedt,
bsegall, mgorman, vschneid, linux-kernel, wangtao554, quzicheng,
wuyun.abel
On 2/13/2026 1:01 AM, Peter Zijlstra wrote:
> On Thu, Feb 12, 2026 at 06:24:27PM +0100, Vincent Guittot wrote:
>
>>> diff --git a/kernel/sched/fair.c b/kernel/sched/fair.c
>>> index 5b1a2abb727e..de155be02411 100644
>>> --- a/kernel/sched/fair.c
>>> +++ b/kernel/sched/fair.c
>>> @@ -797,7 +797,11 @@ u64 avg_vruntime(struct cfs_rq *cfs_rq)
>>> if (runtime < 0)
>>> runtime -= (weight - 1);
>>>
>>> +#ifndef CONFIG_64BIT
>>> delta = div_s64(runtime, weight);
>>> +#else
>>> + delta = runtime / weight;
>>> +#endif
>>
>> Good catch
>>
>> Don't we have the same problem with the div_s64 in place_entity ?
>
> Indeed so. Let me go fix both and push out a new set. I'll post all the
> patches tomorrow once the robot has blessed them.
rescale_entity() adds a bunch more of those. Don't those need changing
too? (I'm looking at the current sched/core at b4d41dc4bf30). And a
wrapper around this pattern would be much appreciated with the amount
of ifdeffry that gets added
--
Thanks and Regards,
Prateek
^ permalink raw reply [flat|nested] 70+ messages in thread
* Re: [PATCH 0/4] sched: Various reweight_entity() fixes
2026-02-12 19:29 ` Peter Zijlstra
2026-02-12 19:37 ` Doug Smythies
@ 2026-02-13 6:04 ` K Prateek Nayak
1 sibling, 0 replies; 70+ messages in thread
From: K Prateek Nayak @ 2026-02-13 6:04 UTC (permalink / raw)
To: Peter Zijlstra
Cc: Vincent Guittot, Doug Smythies, mingo, juri.lelli,
dietmar.eggemann, rostedt, bsegall, mgorman, vschneid,
linux-kernel, wangtao554, quzicheng, wuyun.abel
Hello Peter,
On 2/13/2026 12:59 AM, Peter Zijlstra wrote:
> On Thu, Feb 12, 2026 at 06:16:11PM +0100, Peter Zijlstra wrote:
>> On Thu, Feb 12, 2026 at 12:59:43PM +0100, Peter Zijlstra wrote:
>>> On Thu, Feb 12, 2026 at 01:13:30PM +0530, K Prateek Nayak wrote:
>>
>>>> Enqueue cfs_rq: depth(1) weight(2144337920) nr_queued(2045) sum_w_vruntime(18343811230990336) sum_weight(2144337920) zero_vruntime(18337852274) sum_shift(0) avg_vruntime(18337852274)
>>>> Dequeue cfs_rq: depth(1) weight(2144337920) nr_queued(2045) sum_w_vruntime(1303379968) sum_weight(2143289344) zero_vruntime(18354971669) sum_shift(0) avg_vruntime(18354971669)
>>
>> After staring at waaay too many traces of my own, which confirm what
>> you're seeing, but didn't want to make any sense either...
>>
>> ... I thinks I found it ...
>>
>> Note that sum_weight, that has _just_ flipped bit 31 and thus turned
>> negative *if* it were a 32bit number. Every time, exactly at this point
>> things started to go sideways.
>>
>> So I went looking for where this might be and I found the below.
>>
>> My latest run has passed 0x8000000/(1024*1024) = 2048 tasks and is still
>> running. Numbers are still sane, fingers crossed.
>>
>
> I made it all the way to 3k tasks on the one CPU and all is well.
So the current peterz:sched/core refused to boot to prompt for (hopefully
it is just you forgetting to push out the latest branch ;-)
I have the following situation:
Pick failed to find eligible entities. Dumping cfs_rq
cfs_rq: depth(0) weight(3145728) nr_queued(3) sum_w_vruntime(-3074459814163644416) sum_weight(3145728) zero_vruntime(18446688365342623754) sum_shift(0)
cfs_rq after avg_vruntime(): sum_w_vruntime(1048576) sum_weight(3145728) zero_vruntime(18446687387998169890) avg_vruntime(18446687387998169890)
se: weight(1048576) vruntime(18446691297375985345) slice(700000) deadline(18446691297376644150) curr?(1) task?(1) se_depth(0) eligible?(1)
se: weight(1048576) vruntime(18446682501282949076) slice(700000) deadline(18446682501283649076) curr?(0) task?(1) se_depth(0) eligible?(0)
se: weight(1048576) vruntime(18446688365342622487) slice(700000) deadline(18446688365342972487) curr?(0) task?(1) se_depth(0) eligible?(0)
se: weight(1048576) vruntime(18446691297368938108) slice(700000) deadline(18446691297369619108) curr?(0) task?(1) se_depth(0) eligible?(1)
Note: sum_w_vruntime grows pretty large before but on calling
avg_vruntime(), things are back to normal.
Since this is so early into the boot I traced the heck out of
it and one of the observation was how the sum_weight() keeps
growing from the initial zero_vruntime:
Legend: '|' is a place_entity(), "->" is enqueue, "<-" is dequeue.
If the line contains "*" it is "before" the action.
Without the "*" is "after" the action.
Line with only "cfs_rq" line before and after avg_vruntime() in entity_tick()
vruntime: CPU(0) se vruntime(18446744073708503040) vlag(0) deadline(0) | cfs_rq sum_w_vruntime(0) sum_weight(0) zero_vruntime(18446744073708503040)
vruntime: CPU(0) *se vruntime(18446744073708503040) vlag(0) deadline(18446744073708853040) -> cfs_rq sum_w_vruntime(0) sum_weight(0) zero_vruntime(18446744073708503040)
vruntime: CPU(0) se vruntime(18446744073708503040) vlag(0) deadline(18446744073708853040) -> cfs_rq sum_w_vruntime(0) sum_weight(1048576) zero_vruntime(18446744073708503040)
vruntime: CPU(0) se vruntime(18446744073708503040) vlag(0) deadline(0) | cfs_rq sum_w_vruntime(0) sum_weight(1048576) zero_vruntime(18446744073708503040)
vruntime: CPU(0) *se vruntime(18446744073708503040) vlag(0) deadline(18446744073708853040) -> cfs_rq sum_w_vruntime(0) sum_weight(1048576) zero_vruntime(18446744073708503040)
vruntime: CPU(0) se vruntime(18446744073708503040) vlag(0) deadline(18446744073708853040) -> cfs_rq sum_w_vruntime(0) sum_weight(2097152) zero_vruntime(18446744073708503040)
vruntime: CPU(0) *se vruntime(18446744073708503040) vlag(0) deadline(18446744073708853040) <- cfs_rq sum_w_vruntime(0) sum_weight(2097152) zero_vruntime(18446744073708503040)
vruntime: CPU(0) se vruntime(18446744073708503040) vlag(0) deadline(18446744073708853040) <- cfs_rq sum_w_vruntime(0) sum_weight(1048576) zero_vruntime(18446744073708503040)
vruntime: CPU(0) *cfs_rq: cfs_rq sum_w_vruntime(0) sum_weight(1048576) zero_vruntime(18446744073708503040)
At this point:
curr->vruntime = 951329; /* should be same as computed avg */
u64 zero_vruntime = (u64)(-1048576LL); /* From init */
s64 sum_w_vruntime = 0;
s64 delta = curr->vruntime - cfs_rq->zero_vruntime = 1999905; /* Net positive. */
sum_w_vruntime -= 1999905 * sum_weight;
sum_w_vruntime = -2097052385280; /* Checks out! */
vruntime: CPU(0) cfs_rq: cfs_rq sum_w_vruntime(-2097052385280) sum_weight(1048576) zero_vruntime(951329) avg_vruntime(951329)
After this point all delta are positive and we keep
subtracting from sum_w_vruntime.
vruntime: CPU(0) *cfs_rq: cfs_rq sum_w_vruntime(-2097052385280) sum_weight(1048576) zero_vruntime(951329)
vruntime: CPU(0) cfs_rq: cfs_rq sum_w_vruntime(-4194182365184) sum_weight(1048576) zero_vruntime(2951308) avg_vruntime(2951308)
vruntime: CPU(0) *cfs_rq: cfs_rq sum_w_vruntime(-4194182365184) sum_weight(1048576) zero_vruntime(2951308)
vruntime: CPU(0) cfs_rq: cfs_rq sum_w_vruntime(-6291298713600) sum_weight(1048576) zero_vruntime(4951274) avg_vruntime(4951274)
vruntime: CPU(0) *cfs_rq: cfs_rq sum_w_vruntime(-6291298713600) sum_weight(1048576) zero_vruntime(4951274)
vruntime: CPU(0) cfs_rq: cfs_rq sum_w_vruntime(-8388566056960) sum_weight(1048576) zero_vruntime(6951384) avg_vruntime(6951384)
vruntime: CPU(0) *cfs_rq: cfs_rq sum_w_vruntime(-8388566056960) sum_weight(1048576) zero_vruntime(6951384)
vruntime: CPU(0) cfs_rq: cfs_rq sum_w_vruntime(-10485571256320) sum_weight(1048576) zero_vruntime(8951244) avg_vruntime(8951244)
vruntime: CPU(0) *cfs_rq: cfs_rq sum_w_vruntime(-10485571256320) sum_weight(1048576) zero_vruntime(8951244)
vruntime: CPU(0) cfs_rq: cfs_rq sum_w_vruntime(-12582749470720) sum_weight(1048576) zero_vruntime(10951269) avg_vruntime(10951269)
vruntime: CPU(0) *cfs_rq: cfs_rq sum_w_vruntime(-12582749470720) sum_weight(1048576) zero_vruntime(10951269)
vruntime: CPU(0) cfs_rq: cfs_rq sum_w_vruntime(-14680032542720) sum_weight(1048576) zero_vruntime(12951394) avg_vruntime(12951394)
I still haven't found how we end up at a situation where avg_vruntime
is close to -56685711381726LL at the time of crash :-(
Will update if I find something.
--
Thanks and Regards,
Prateek
^ permalink raw reply [flat|nested] 70+ messages in thread
* Re: [PATCH 0/4] sched: Various reweight_entity() fixes
2026-02-13 5:22 ` K Prateek Nayak
@ 2026-02-13 6:44 ` Peter Zijlstra
2026-02-13 10:50 ` Peter Zijlstra
0 siblings, 1 reply; 70+ messages in thread
From: Peter Zijlstra @ 2026-02-13 6:44 UTC (permalink / raw)
To: K Prateek Nayak
Cc: Vincent Guittot, Doug Smythies, mingo, juri.lelli,
dietmar.eggemann, rostedt, bsegall, mgorman, vschneid,
linux-kernel, wangtao554, quzicheng, wuyun.abel
On Fri, Feb 13, 2026 at 10:52:38AM +0530, K Prateek Nayak wrote:
> On 2/13/2026 1:01 AM, Peter Zijlstra wrote:
> > On Thu, Feb 12, 2026 at 06:24:27PM +0100, Vincent Guittot wrote:
> >
> >>> diff --git a/kernel/sched/fair.c b/kernel/sched/fair.c
> >>> index 5b1a2abb727e..de155be02411 100644
> >>> --- a/kernel/sched/fair.c
> >>> +++ b/kernel/sched/fair.c
> >>> @@ -797,7 +797,11 @@ u64 avg_vruntime(struct cfs_rq *cfs_rq)
> >>> if (runtime < 0)
> >>> runtime -= (weight - 1);
> >>>
> >>> +#ifndef CONFIG_64BIT
> >>> delta = div_s64(runtime, weight);
> >>> +#else
> >>> + delta = runtime / weight;
> >>> +#endif
> >>
> >> Good catch
> >>
> >> Don't we have the same problem with the div_s64 in place_entity ?
> >
> > Indeed so. Let me go fix both and push out a new set. I'll post all the
> > patches tomorrow once the robot has blessed them.
>
> rescale_entity() adds a bunch more of those. Don't those need changing
> too? (I'm looking at the current sched/core at b4d41dc4bf30). And a
> wrapper around this pattern would be much appreciated with the amount
> of ifdeffry that gets added
rescale_entity() should be okay, that's just a single entity and not a
weight sum.
As to wrapper, I just went through math64.h and it appears we have
div64_long() that might just DTRT, but I really need to go wake up
first.
And as you noted, the current branch doesn't boot :/ No idea what I
messed up last night, but I did push without test building. I only
folded those two division fixed and figured what could possibly go wrong
:-)
Anyway, let me get the kids to school, have breakfast and I'll go figure
out WTF I messed up.
^ permalink raw reply [flat|nested] 70+ messages in thread
* Re: [PATCH 0/4] sched: Various reweight_entity() fixes
2026-02-13 6:44 ` Peter Zijlstra
@ 2026-02-13 10:50 ` Peter Zijlstra
2026-02-13 14:29 ` K Prateek Nayak
2026-02-14 6:31 ` Doug Smythies
0 siblings, 2 replies; 70+ messages in thread
From: Peter Zijlstra @ 2026-02-13 10:50 UTC (permalink / raw)
To: K Prateek Nayak
Cc: Vincent Guittot, Doug Smythies, mingo, juri.lelli,
dietmar.eggemann, rostedt, bsegall, mgorman, vschneid,
linux-kernel, wangtao554, quzicheng, wuyun.abel
On Fri, Feb 13, 2026 at 07:44:24AM +0100, Peter Zijlstra wrote:
> As to wrapper, I just went through math64.h and it appears we have
> div64_long() that might just DTRT, but I really need to go wake up
> first.
>
> And as you noted, the current branch doesn't boot :/ No idea what I
> messed up last night, but I did push without test building. I only
> folded those two division fixed and figured what could possibly go wrong
> :-)
It's now got div64_long() throughout.
I've build and booted each commit in a vm; build and booted the combined
stack on 2 different physical machines and re-ran the various
benchmarks.
Works-for-me.
^ permalink raw reply [flat|nested] 70+ messages in thread
* Re: [PATCH 0/4] sched: Various reweight_entity() fixes
2026-02-13 10:50 ` Peter Zijlstra
@ 2026-02-13 14:29 ` K Prateek Nayak
2026-02-14 6:31 ` Doug Smythies
1 sibling, 0 replies; 70+ messages in thread
From: K Prateek Nayak @ 2026-02-13 14:29 UTC (permalink / raw)
To: Peter Zijlstra
Cc: Vincent Guittot, Doug Smythies, mingo, juri.lelli,
dietmar.eggemann, rostedt, bsegall, mgorman, vschneid,
linux-kernel, wangtao554, quzicheng, wuyun.abel
On 2/13/2026 4:20 PM, Peter Zijlstra wrote:
> On Fri, Feb 13, 2026 at 07:44:24AM +0100, Peter Zijlstra wrote:
>> As to wrapper, I just went through math64.h and it appears we have
>> div64_long() that might just DTRT, but I really need to go wake up
>> first.
>>
>> And as you noted, the current branch doesn't boot :/ No idea what I
>> messed up last night, but I did push without test building. I only
>> folded those two division fixed and figured what could possibly go wrong
>> :-)
>
> It's now got div64_long() throughout.
>
> I've build and booted each commit in a vm; build and booted the combined
> stack on 2 different physical machines and re-ran the various
> benchmarks.
>
> Works-for-me.
Booted fine on this side as well. Will take it for a spin with the usual
set of tests and report back with the results.
--
Thanks and Regards,
Prateek
^ permalink raw reply [flat|nested] 70+ messages in thread
* RE: [PATCH 0/4] sched: Various reweight_entity() fixes
2026-02-13 10:50 ` Peter Zijlstra
2026-02-13 14:29 ` K Prateek Nayak
@ 2026-02-14 6:31 ` Doug Smythies
2026-02-21 22:51 ` Doug Smythies
1 sibling, 1 reply; 70+ messages in thread
From: Doug Smythies @ 2026-02-14 6:31 UTC (permalink / raw)
To: 'Peter Zijlstra', 'K Prateek Nayak'
Cc: 'Vincent Guittot', mingo, juri.lelli, dietmar.eggemann,
rostedt, bsegall, mgorman, vschneid, linux-kernel, wangtao554,
quzicheng, Doug Smythies
[-- Attachment #1: Type: text/plain, Size: 3445 bytes --]
On 2026.02.13 02:50 Peter Zijlstra wrote:
> On Fri, Feb 13, 2026 at 07:44:24AM +0100, Peter Zijlstra wrote:
>> As to wrapper, I just went through math64.h and it appears we have
>> div64_long() that might just DTRT, but I really need to go wake up
>> first.
>>
>> And as you noted, the current branch doesn't boot :/ No idea what I
>> messed up last night, but I did push without test building. I only
>> folded those two division fixed and figured what could possibly go wrong
>> :-)
>
> It's now got div64_long() throughout.
>
> I've build and booted each commit in a vm; build and booted the combined
> stack on 2 different physical machines and re-ran the various
> benchmarks.
>
> Works-for-me.
Works for me also.
Note: I am calling this "V5" (version 5).
But: please consider if there is an issue or not with test 3 below,
mainly detailed in the attached graphs.
Testing order was from least to most time consuming.
1.) Phoronix version of hackbench, same settings as my previous reports:
Run 1 of 2, 10 tests per run: Average: 22.685 Seconds; Deviation: 0.27%
Run 2 of 2, 10 tests per run: Average: 22.775 Seconds; Deviation: 0.24%
Conclusion: Pass.
2.) a ridiculous number of threads test. Each thread mostly sleeps.
Note 1: Not previously mentioned, but I have been doing this test for years, just to see if it works.
Note 2: Other default limits need to be increased for this test. Example:
doug@s19:~$ cat /sys/fs/cgroup/user.slice/user-1000.slice/pids.max
84080
doug@s19:~$ echo 400000 | sudo tee /sys/fs/cgroup/user.slice/user-1000.slice/pids.max
400000
doug@s19:~$ cat /sys/fs/cgroup/user.slice/user-1000.slice/pids.max
400000
Note 3: The maximum number of threads attempted is determined by the amount of system memory.
In my case the memory limit is around 220,000 threads.
Note 4: There never was an issue with this test, even for previous versions of this patch set.
Details:
doug@s19:~$ cat /sys/fs/cgroup/user.slice/user-1000.slice/pids.current
220015
doug@s19:~$ uptime
08:22:23 up 26 min, 4 users, load average: 0.99, 15.19, 36.38
doug@s19:~$ free -m
total used free shared buff/cache available
Mem: 31928 28767 2985 5 568 3161
Swap: 8191 0 8191
Conclusion: Pass.
3.) a ridiculous load. Each thread is 100% load, no sleep. 20,000 X yes:
Conclusion: Pass?
Observation: The spin out rate of tasks is "clunky" not smooth. It used to be smooth.
A couple of graphs are attached. Note that actual sample times are now used,
after a nominal sleep of 2 seconds between samples. Sometimes the actual
gap is over 1 minute. It takes considerably longer, 2,200 seconds verses
1,309 seconds to spin out the 20,000 takes for V5 verses kernel 6.19-rc8.
4.) Back to the original complaint from a year ago [1]: With a ridiculous load, is there a big delay for SSH login?
Note 1: I don't care either way, I just tried it.
Details: SSH login times were all between 6 and 8 seconds.
Conclusion: Pass.
5.) Under 100.0% load (in my case 12 X yes) are there unreasonably long times between samples for turbostat?
Histograms (3 hours and 39 minutes test run time):
Peter's cool way:
$ gawk '/^usec/ {next} { if (T) { d=$2-T; bucket[int(d*1000)]++; } T=$2 } END { for (i in bucket) { printf "%0.3f: %d\n", i/1000,
bucket[i] }}' < /dev/shm/turbo.log
1.000: 6870
1.001: 5647
1.002: 25
1.003: 6
1.005: 1
My old way: Not done.
[1] https://lore.kernel.org/lkml/002401dbb6bd$4527ec00$cf77c400$@telus.net/
[-- Attachment #2: pz-task-sample-gaps.png --]
[-- Type: image/png, Size: 20694 bytes --]
[-- Attachment #3: pz-task-rate.png --]
[-- Type: image/png, Size: 24313 bytes --]
^ permalink raw reply [flat|nested] 70+ messages in thread
* Re: [PATCH 0/4] sched: Various reweight_entity() fixes
2026-01-30 9:34 [PATCH 0/4] sched: Various reweight_entity() fixes Peter Zijlstra
` (5 preceding siblings ...)
2026-02-03 6:45 ` K Prateek Nayak
@ 2026-02-14 7:20 ` Shubhang Kaushik
2026-02-16 3:14 ` K Prateek Nayak
2026-02-17 4:20 ` K Prateek Nayak
2026-02-18 18:37 ` Shubhang Kaushik
8 siblings, 1 reply; 70+ messages in thread
From: Shubhang Kaushik @ 2026-02-14 7:20 UTC (permalink / raw)
To: Peter Zijlstra, mingo
Cc: juri.lelli, vincent.guittot, dietmar.eggemann, rostedt, bsegall,
mgorman, vschneid, linux-kernel, wangtao554, quzicheng,
kprateek.nayak, wuyun.abel, dsmythies
[-- Attachment #1: Type: text/plain, Size: 6073 bytes --]
Hi Peter,
On Fri, 30 Jan 2026, Peter Zijlstra wrote:
> Two issues related to reweight_entity() were raised; poking at all that got me
> these patches.
>
> They're in queue.git/sched/core and I spend most of yesterday staring at traces
> trying to find anything wrong. So far, so good.
>
> Please test.
>
>
I’m seeing a consistent NULL pointer dereference in pick_task_fair() when
running hackbench on an Ampere Altra (80 cores arm64). This is happening
after applying the complete patchset on the latest 6.19.0+ kernel with
PREEMPT_DYNAMIC (full), CONFIG_SCHED_CLUSTER and NOHZ_FULL enabled.
The system triggers a level 2 translation fault because pick_eevdf()
returns NULL despite the runqueue having active tasks (cfs_rq->nr_running
> 0). When pick_next_task_fair() attempts to dereference this NULL pointer
to access the task structure, the kernel Oopses at
pick_task_fair+0x48/0x148.
pick_task_fair <- pick_eevdf() <- [active tasks]
The root cause is an underflow in reweight_entity():
se->vprot -= avruntime;
Under heavy load, the average runtime can sometimes be larger than the
protection time. Because these are unsigned numbers, the result wraps
around to a large value instead of becoming zero.
[ 1284.596683] Mem abort info: [ 1284.596684] ESR = 0x0000000096000006
[ 1284.596685] EC = 0x25: DABT (current EL), IL = 32 bits
[ 1284.596687] SET = 0, FnV = 0
[ 1284.596688] EA = 0, S1PTW = 0
[ 1284.596689] FSC = 0x06: level 2 translation fault
[ 1284.596690] Data abort info:
[ 1284.596690] ISV = 0, ISS = 0x00000006, ISS2 = 0x00000000
[ 1284.596692] CM = 0, WnR = 0, TnD = 0, TagAccess = 0
[ 1284.596693] GCS = 0, Overlay = 0, DirtyBit = 0, Xs = 0
[ 1284.596694] user pgtable: 4k pages, 48-bit VAs, pgdp=00000801917ee000
[ 1284.596695] [0000000000000051] pgd=08000801917ef403,
p4d=08000801917ef403, pud=08000801a6ed8403, pmd=0000000000000000
[ 1284.597314] Internal error: Oops: 0000000096000006 [#1] SMP
[ 1284.670270] Modules linked in: joydev rfkill mlx5_ib ib_uverbs ib_core
sunrpc binfmt_misc mlx5_core acpi_ipmi ipmi_ssif ipmi_devintf cdc_ether
mlxfw usbnet psample mii arm_spe_pmu tls ipmi_msghandler arm_cmn
arm_dmc620_pmu vfat fat arm_dsu_pmu cppc_cpufreq acpi_tad loop nfnetlink
zram xfs uas usb_storage ast ghash_ce sbsa_gwdt nvme i2c_algo_bit
nvme_core xgene_hwmon i2c_dev fuse
[ 1284.703809] CPU: 76 UID: 1000 PID: 17906 Comm: hackbench_bin Tainted: G
W 6.19.0+ #166 PREEMPT(full)
[ 1284.714492] Tainted: [W]=WARN
[ 1284.717447] Hardware name: WIWYNN Mt.Jade Server System
B81.03001.0014/Mt.Jade Motherboard, BIOS 2.10.20230517-1P (SCP:
2.10.20230517) 2023/05/17
[ 1284.730472] pstate: 004000c9 (nzcv daIF +PAN -UAO -TCO -DIT -SSBS
BTYPE=--)
[ 1284.737420] pc : pick_task_fair+0x48/0x148
[ 1284.741508] lr : pick_task_fair+0x48/0x148
[ 1284.745592] sp : ffff8000f92337d0
[ 1284.748894] x29: ffff8000f92337d0 x28: ffff080094f01f00 x27:
ffff08012dc43300
[ 1284.756017] x26: ffff0801298189f0 x25: ffff63d900a14000 x24:
0000000000000001
[ 1284.763140] x23: ffff080129818000 x22: 0000000000000000 x21:
ffff083e61642e80
[ 1284.770263] x20: ffff083e61643000 x19: ffff083e61643000 x18:
0000000000000000
[ 1284.777385] x17: 0000000000000000 x16: 0000000000000000 x15:
ffff08011fc4f200
[ 1284.784508] x14: 000000000041fdf0 x13: 0000000000000004 x12:
0000000004aca7c0
[ 1284.791631] x11: ffffa4656247fa30 x10: ffffa46562818c48 x9 :
ffffa4655e0620c8
[ 1284.798754] x8 : 0000000000000001 x7 : 0000000000000002 x6 :
0000000000000002
[ 1284.805877] x5 : 000000000000000b x4 : 00000000057ae40b x3 :
fff73c190d1b5a9c
[ 1284.813000] x2 : 0000002f3f70fd54 x1 : 02eb323b0f008a9a x0 :
0000000000000000
[ 1284.820124] Call trace:
[ 1284.822558] pick_task_fair+0x48/0x148 (P)
[ 1284.826643] pick_next_task_fair+0x34/0x250
[ 1284.830815] __pick_next_task+0x4c/0x260
[ 1284.834727] pick_next_task+0x40/0xb68
[ 1284.838463] __schedule+0x184/0x790
[ 1284.841942] preempt_schedule_common+0x28/0x50
[ 1284.846374] dynamic_preempt_schedule+0x30/0x40
[ 1284.850893] kfree+0x2e8/0x448
[ 1284.853936] skb_free_head+0x54/0xc0
[ 1284.857501] skb_release_data+0x164/0x230
[ 1284.861499] consume_skb+0x78/0x1b0
[ 1284.864975] unix_stream_read_generic+0x818/0x950
[ 1284.869668] unix_stream_recvmsg+0xa4/0xc0
[ 1284.873753] sock_recvmsg+0x78/0xd0
[ 1284.877230] sock_read_iter+0xa4/0x118
[ 1284.880967] new_sync_read+0x18c/0x1b8
[ 1284.884704] vfs_read+0x1a4/0x200
[ 1284.888006] ksys_read+0xf4/0x118
[ 1284.891308] __arm64_sys_read+0x24/0x40
[ 1284.895132] invoke_syscall+0x6c/0x100
[ 1284.898869] el0_svc_common.constprop.0+0x48/0xf0
[ 1284.903561] do_el0_svc+0x24/0x38
[ 1284.906864] el0_svc+0x54/0x2f0
[ 1284.909993] el0t_64_sync_handler+0xa0/0xe8
[ 1284.914164] el0t_64_sync+0x19c/0x1a0
[ 1284.917815] Code: d503201f 52800021 aa1303e0 97ffab6f (39414401)
I was able to fix this by preventing the underflow in reweight_entity()
and resetting the state in set_next_entity().
By using time_after64(), I cap the value at 0 instead of letting it wrap
to a large number. I also added a reset (se->vprot = se->vruntime) to
ensure the protection state stays synchronized with actual progress,
clearing out any mismatch from the reweighting phase.
a/kernel/sched/fair.c +++ b/kernel/sched/fair.c
@@ -3972,7 +3972,7 @@ static void reweight_entity(struct cfs_rq *cfs_rq,
struct sched_entity *se,
se->deadline -= avruntime;
se->rel_deadline = 1;
if (curr && protect_slice(se)) {
- se->vprot -= avruntime;
+ se->vprot = (time_after64(se->vprot, avruntime)) ?
se->vprot - avruntime : 0;
rel_vprot = true;
}
@@ -5608,6 +5608,8 @@ set_next_entity(struct cfs_rq *cfs_rq, struct
sched_entity *se, bool first)
if (first)
set_protect_slice(cfs_rq, se);
+ else
+ se->vprot = se->vruntime;
}
Tested-by: Shubhang Kaushik <shubhang@os.amperecomputing.com>
Regards,
Shubhang Kaushik
^ permalink raw reply [flat|nested] 70+ messages in thread
* Re: [PATCH 0/4] sched: Various reweight_entity() fixes
2026-02-14 7:20 ` Shubhang Kaushik
@ 2026-02-16 3:14 ` K Prateek Nayak
2026-02-16 10:59 ` Dietmar Eggemann
2026-02-17 22:02 ` Shubhang Kaushik
0 siblings, 2 replies; 70+ messages in thread
From: K Prateek Nayak @ 2026-02-16 3:14 UTC (permalink / raw)
To: Shubhang Kaushik, Peter Zijlstra, mingo
Cc: juri.lelli, vincent.guittot, dietmar.eggemann, rostedt, bsegall,
mgorman, vschneid, linux-kernel, wangtao554, quzicheng,
wuyun.abel, dsmythies
Hello Shubhang,
On 2/14/2026 12:50 PM, Shubhang Kaushik wrote:
> Hi Peter,
>
> On Fri, 30 Jan 2026, Peter Zijlstra wrote:
>
>> Two issues related to reweight_entity() were raised; poking at all that got me
>> these patches.
>>
>> They're in queue.git/sched/core and I spend most of yesterday staring at traces
>> trying to find anything wrong. So far, so good.
>>
>> Please test.
>>
>>
>
> I’m seeing a consistent NULL pointer dereference in pick_task_fair() when running hackbench on an Ampere Altra (80 cores arm64). This is happening after applying the complete patchset on the latest 6.19.0+ kernel with PREEMPT_DYNAMIC (full), CONFIG_SCHED_CLUSTER and NOHZ_FULL enabled.
Can you confirm you using the latest changes from:
git.kernel.org/pub/scm/linux/kernel/git/peterz/queue.git sched/core
at commit bdba3187771c ("sched/fair: Use full weight to __calc_delta()")
since this series has undergone some churn throughout the week?
>
> The system triggers a level 2 translation fault because pick_eevdf() returns NULL despite the runqueue having active tasks (cfs_rq->nr_running
>> 0). When pick_next_task_fair() attempts to dereference this NULL pointer
> to access the task structure, the kernel Oopses at pick_task_fair+0x48/0x148.
>
> pick_task_fair <- pick_eevdf() <- [active tasks]
>
> The root cause is an underflow in reweight_entity():
> se->vprot -= avruntime;
But how does it cause failure to pick? All vrpot does at pick is:
/* curr needs to be queued and eligible first. */
if (curr && (!curr->on_rq || !entity_eligible(cfs_rq, curr)))
curr = NULL;
/* vprot only helps for early return below. */
if (curr && protect && protect_slice(curr))
return curr;
Worst case "curr" runs till it loses eligibility even if vprot wraps
and becomes a large value and moreover, wouldn't vruntime_cmp() in
protect_slice() which compares the signed difference catch it?
--
Thanks and Regards,
Prateek
^ permalink raw reply [flat|nested] 70+ messages in thread
* Re: [PATCH 0/4] sched: Various reweight_entity() fixes
2026-02-16 3:14 ` K Prateek Nayak
@ 2026-02-16 10:59 ` Dietmar Eggemann
2026-02-17 14:37 ` Dietmar Eggemann
2026-02-17 22:02 ` Shubhang Kaushik
1 sibling, 1 reply; 70+ messages in thread
From: Dietmar Eggemann @ 2026-02-16 10:59 UTC (permalink / raw)
To: K Prateek Nayak, Shubhang Kaushik, Peter Zijlstra, mingo
Cc: juri.lelli, vincent.guittot, rostedt, bsegall, mgorman, vschneid,
linux-kernel, wangtao554, quzicheng, wuyun.abel, dsmythies
On 16.02.26 04:14, K Prateek Nayak wrote:
> Hello Shubhang,
>
> On 2/14/2026 12:50 PM, Shubhang Kaushik wrote:
>> Hi Peter,
>>
>> On Fri, 30 Jan 2026, Peter Zijlstra wrote:
>>
>>> Two issues related to reweight_entity() were raised; poking at all that got me
>>> these patches.
>>>
>>> They're in queue.git/sched/core and I spend most of yesterday staring at traces
>>> trying to find anything wrong. So far, so good.
>>>
>>> Please test.
>>>
>>>
>>
>> I’m seeing a consistent NULL pointer dereference in pick_task_fair() when running hackbench on an Ampere Altra (80 cores arm64). This is happening after applying the complete patchset on the latest 6.19.0+ kernel with PREEMPT_DYNAMIC (full), CONFIG_SCHED_CLUSTER and NOHZ_FULL enabled.
>
> Can you confirm you using the latest changes from:
>
> git.kernel.org/pub/scm/linux/kernel/git/peterz/queue.git sched/core
>
> at commit bdba3187771c ("sched/fair: Use full weight to __calc_delta()")
> since this series has undergone some churn throughout the week?
I saw the same issue on my Arm64 big.Little board (12 CPUs) with the old
'queue.git sched/core' (i.e before s/div_s64()/div64_long()) in:
sched/fair: Increase weight bits for avg_vruntime
and test:
for ((i=0; i<20000; i++)) do yes > /dev/null & done
It's gone with:
git.kernel.org/pub/scm/linux/kernel/git/peterz/queue.git sched/core
commit bdba3187771c ("sched/fair: Use full weight to __calc_delta()")
Tested-by: Dietmar Eggemann <dietmar.eggemann@arm.com>
[...]
^ permalink raw reply [flat|nested] 70+ messages in thread
* Re: [PATCH 0/4] sched: Various reweight_entity() fixes
2026-01-30 9:34 [PATCH 0/4] sched: Various reweight_entity() fixes Peter Zijlstra
` (6 preceding siblings ...)
2026-02-14 7:20 ` Shubhang Kaushik
@ 2026-02-17 4:20 ` K Prateek Nayak
2026-02-18 18:37 ` Shubhang Kaushik
8 siblings, 0 replies; 70+ messages in thread
From: K Prateek Nayak @ 2026-02-17 4:20 UTC (permalink / raw)
To: Peter Zijlstra, mingo
Cc: juri.lelli, vincent.guittot, dietmar.eggemann, rostedt, bsegall,
mgorman, vschneid, linux-kernel, wangtao554, quzicheng,
wuyun.abel, dsmythies
Hello Peter,
On 1/30/2026 3:04 PM, Peter Zijlstra wrote:
> Two issues related to reweight_entity() were raised; poking at all that got me
> these patches.
>
> They're in queue.git/sched/core and I spend most of yesterday staring at traces
> trying to find anything wrong. So far, so good.
>
> Please test.
For queue:sched/core at commit bdba3187771c ("sched/fair: Use full
weight to __calc_delta()"), here are the results:
o tl;dr
No consistent regressions observed so far. Ones that have a large
%diff either have a small baseline (like < 10us latency for schbench)
or have a large CV (like for 16-groups of hackbench).
Feel free to include:
Tested-by: K Prateek Nayak <kprateek.nayak@amd.com>
o Full results
Baseline was commit cee73b1e840c ("Merge tag 'riscv-for-linus-7.0-mw1'
of git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux"). Testing
was done on a 2 x 128C/256T 4th Generation EPYC system (Zen4c) with
boost enabled and C2 disabled.
==================================================================
Test : hackbench
Units : Normalized time in seconds
Interpretation: Lower is better
Statistic : AMean
==================================================================
Case: upstream:cee73b1e840c[pct imp](CV) queue:sched/core[pct imp](CV)
1-groups 1.00 [ -0.00](11.97) 1.09 [ -8.80](15.94)
2-groups 1.00 [ -0.00](14.01) 1.07 [ -7.40]( 8.55)
4-groups 1.00 [ -0.00]( 8.54) 0.98 [ 1.60]( 6.49)
8-groups 1.00 [ -0.00]( 2.78) 1.03 [ -3.01]( 2.35)
16-groups 1.00 [ -0.00]( 3.64) 1.08 [ -7.55]( 7.69)
==================================================================
Test : tbench
Units : Normalized throughput
Interpretation: Higher is better
Statistic : AMean
==================================================================
Clients: upstream:cee73b1e840c[pct imp](CV) queue:sched/core[pct imp](CV)
1 1.00 [ 0.00]( 0.20) 1.01 [ 1.04]( 0.06)
2 1.00 [ 0.00]( 0.37) 1.01 [ 1.22]( 0.07)
4 1.00 [ 0.00]( 0.37) 1.02 [ 1.53]( 0.35)
8 1.00 [ 0.00]( 0.43) 1.01 [ 1.10]( 0.57)
16 1.00 [ 0.00]( 0.11) 1.01 [ 0.83]( 0.25)
32 1.00 [ 0.00]( 1.61) 1.01 [ 0.86]( 0.57)
64 1.00 [ 0.00]( 0.19) 1.00 [ 0.21]( 1.48)
128 1.00 [ 0.00]( 0.22) 0.99 [ -1.23]( 1.53)
256 1.00 [ 0.00]( 0.22) 1.01 [ 0.58]( 0.42)
512 1.00 [ 0.00]( 2.23) 1.02 [ 1.83]( 3.35)
1024 1.00 [ 0.00]( 0.58) 1.00 [ 0.10]( 0.45)
2048 1.00 [ 0.00]( 0.46) 1.01 [ 0.51]( 0.07)
==================================================================
Test : stream-10
Units : Normalized Bandwidth, MB/s
Interpretation: Higher is better
Statistic : HMean
==================================================================
Test: upstream:cee73b1e840c[pct imp](CV) queue:sched/core[pct imp](CV)
Copy 1.00 [ 0.00]( 0.94) 1.00 [ -0.31]( 1.61)
Scale 1.00 [ 0.00]( 0.85) 1.00 [ -0.45]( 2.04)
Add 1.00 [ 0.00]( 0.84) 0.99 [ -0.55]( 1.77)
Triad 1.00 [ 0.00]( 0.78) 1.00 [ -0.46]( 1.63)
==================================================================
Test : stream-100
Units : Normalized Bandwidth, MB/s
Interpretation: Higher is better
Statistic : HMean
==================================================================
Test: upstream:cee73b1e840c[pct imp](CV) queue:sched/core[pct imp](CV)
Copy 1.00 [ 0.00]( 1.16) 1.00 [ 0.34]( 0.45)
Scale 1.00 [ 0.00]( 1.53) 1.01 [ 0.59]( 0.53)
Add 1.00 [ 0.00]( 1.14) 1.01 [ 0.60]( 0.47)
Triad 1.00 [ 0.00]( 1.14) 1.01 [ 0.52]( 0.34)
==================================================================
Test : netperf
Units : Normalized Througput
Interpretation: Higher is better
Statistic : AMean
==================================================================
Clients: upstream:cee73b1e840c[pct imp](CV) queue:sched/core[pct imp](CV)
1-clients 1.00 [ 0.00]( 0.14) 1.01 [ 0.96]( 0.10)
2-clients 1.00 [ 0.00]( 0.34) 1.01 [ 0.92]( 0.24)
4-clients 1.00 [ 0.00]( 0.13) 1.01 [ 0.71]( 0.94)
8-clients 1.00 [ 0.00]( 0.46) 1.01 [ 0.69]( 0.27)
16-clients 1.00 [ 0.00]( 0.62) 1.01 [ 0.74]( 0.91)
32-clients 1.00 [ 0.00]( 1.19) 1.01 [ 1.04]( 1.19)
64-clients 1.00 [ 0.00]( 1.81) 1.01 [ 0.62]( 1.64)
128-clients 1.00 [ 0.00]( 1.90) 1.00 [ 0.30]( 1.93)
256-clients 1.00 [ 0.00]( 1.76) 1.00 [ 0.27]( 1.75)
512-clients 1.00 [ 0.00]( 6.23) 0.99 [ -0.52]( 5.66)
768-clients 1.00 [ 0.00](33.00) 0.99 [ -0.91](34.32)
1024-clients 1.00 [ 0.00](38.21) 1.00 [ -0.18](32.98)
==================================================================
Test : schbench
Units : Normalized 99th percentile latency in us
Interpretation: Lower is better
Statistic : Median
==================================================================
#workers: upstream:cee73b1e840c[pct imp](CV) queue:sched/core[pct imp](CV)
1 1.00 [ -0.00](15.02) 1.47 [-47.06](32.99)
2 1.00 [ -0.00](17.83) 0.97 [ 2.94]( 4.58)
4 1.00 [ -0.00](12.22) 1.00 [ -0.00]( 3.07)
8 1.00 [ -0.00]( 2.38) 1.00 [ -0.00]( 2.38)
16 1.00 [ -0.00]( 1.92) 1.08 [ -7.69]( 3.15)
32 1.00 [ -0.00]( 2.37) 1.00 [ -0.00]( 0.78)
64 1.00 [ -0.00]( 0.85) 1.01 [ -0.85]( 3.92)
128 1.00 [ -0.00]( 1.21) 1.00 [ -0.48]( 1.47)
256 1.00 [ -0.00]( 0.39) 1.00 [ -0.00](12.20)
512 1.00 [ -0.00]( 0.20) 1.02 [ -2.07]( 2.04)
768 1.00 [ -0.00]( 5.68) 0.97 [ 3.11]( 7.62)
1024 1.00 [ -0.00]( 4.23) 1.01 [ -0.77]( 4.71)
==================================================================
Test : new-schbench-requests-per-second
Units : Normalized Requests per second
Interpretation: Higher is better
Statistic : Median
==================================================================
#workers: upstream:cee73b1e840c[pct imp](CV) queue:sched/core[pct imp](CV)
1 1.00 [ 0.00]( 0.00) 1.00 [ 0.00]( 0.00)
2 1.00 [ 0.00]( 0.15) 1.00 [ -0.29]( 0.00)
4 1.00 [ 0.00]( 0.00) 1.00 [ -0.29]( 0.00)
8 1.00 [ 0.00]( 0.00) 1.00 [ -0.29]( 0.00)
16 1.00 [ 0.00]( 0.15) 1.00 [ -0.29]( 0.15)
32 1.00 [ 0.00]( 0.15) 0.99 [ -0.59]( 0.15)
64 1.00 [ 0.00]( 0.15) 0.99 [ -0.59]( 0.00)
128 1.00 [ 0.00](13.29) 0.84 [-16.00](16.15)
256 1.00 [ 0.00]( 0.00) 1.00 [ 0.00]( 0.00)
512 1.00 [ 0.00]( 1.72) 1.00 [ 0.00]( 1.26)
768 1.00 [ 0.00]( 0.44) 0.99 [ -1.18]( 0.00)
1024 1.00 [ 0.00]( 0.37) 0.99 [ -0.54]( 0.42)
==================================================================
Test : new-schbench-wakeup-latency
Units : Normalized 99th percentile latency in us
Interpretation: Lower is better
Statistic : Median
==================================================================
#workers: upstream:cee73b1e840c[pct imp](CV) queue:sched/core[pct imp](CV)
1 1.00 [ -0.00](14.91) 1.25 [-25.00](11.07)
2 1.00 [ -0.00](18.20) 1.00 [ -0.00]( 4.43)
4 1.00 [ -0.00](15.10) 0.92 [ 7.69]( 9.11)
8 1.00 [ -0.00]( 4.84) 1.00 [ -0.00]( 0.00)
16 1.00 [ -0.00]( 0.00) 1.09 [ -9.09]( 4.43)
32 1.00 [ -0.00]( 4.84) 0.91 [ 9.09]( 0.00)
64 1.00 [ -0.00](10.68) 1.00 [ -0.00]( 5.53)
128 1.00 [ -0.00]( 9.68) 1.20 [-20.00]( 9.11)
256 1.00 [ -0.00]( 3.88) 0.96 [ 4.37]( 2.17)
512 1.00 [ -0.00]( 1.80) 1.00 [ -0.37]( 1.43)
768 1.00 [ -0.00]( 0.92) 1.00 [ -0.00]( 0.00)
1024 1.00 [ -0.00]( 0.00) 1.00 [ -0.00]( 2.64)
==================================================================
Test : new-schbench-request-latency
Units : Normalized 99th percentile latency in us
Interpretation: Lower is better
Statistic : Median
==================================================================
#workers: upstream:cee73b1e840c[pct imp](CV) queue:sched/core[pct imp](CV)
1 1.00 [ -0.00]( 0.27) 1.00 [ -0.00]( 0.00)
2 1.00 [ -0.00]( 0.00) 1.00 [ -0.26]( 0.00)
4 1.00 [ -0.00]( 0.14) 1.00 [ -0.26]( 0.00)
8 1.00 [ -0.00]( 0.00) 1.00 [ -0.26]( 0.00)
16 1.00 [ -0.00]( 0.14) 1.00 [ -0.26]( 0.00)
32 1.00 [ -0.00]( 0.27) 1.01 [ -0.53]( 0.49)
64 1.00 [ -0.00]( 0.14) 1.01 [ -0.53](30.11)
128 1.00 [ -0.00]( 2.99) 1.04 [ -4.41]( 3.96)
256 1.00 [ -0.00]( 0.52) 0.99 [ 1.15]( 0.43)
512 1.00 [ -0.00]( 2.81) 1.01 [ -1.22]( 2.69)
768 1.00 [ -0.00]( 0.46) 0.97 [ 3.27]( 0.46)
1024 1.00 [ -0.00]( 0.14) 1.00 [ -0.35]( 0.29)
I reran hackbench just to make sure the regression was a blip and as
expected there isn't any regression on the rerun:
==================================================================
Test : hackbench-rerun
Units : Normalized time in seconds
Interpretation: Lower is better
Statistic : AMean
==================================================================
Case: upstream:cee73b1e840c[pct imp](CV) queue:sched/core[pct imp](CV)
1-groups 1.00 [ -0.00](13.66) 0.93 [ 6.88]( 3.91)
2-groups 1.00 [ -0.00]( 9.40) 0.87 [ 12.95](14.81)
4-groups 1.00 [ -0.00]( 3.58) 0.98 [ 2.03]( 3.67)
8-groups 1.00 [ -0.00]( 3.52) 1.01 [ -1.28]( 2.73)
16-groups 1.00 [ -0.00]( 7.05) 0.99 [ 1.11]( 3.96)
--
Thanks and Regards,
Prateek
^ permalink raw reply [flat|nested] 70+ messages in thread
* Re: [PATCH 0/4] sched: Various reweight_entity() fixes
2026-02-16 10:59 ` Dietmar Eggemann
@ 2026-02-17 14:37 ` Dietmar Eggemann
0 siblings, 0 replies; 70+ messages in thread
From: Dietmar Eggemann @ 2026-02-17 14:37 UTC (permalink / raw)
To: K Prateek Nayak, Shubhang Kaushik, Peter Zijlstra, mingo
Cc: juri.lelli, vincent.guittot, rostedt, bsegall, mgorman, vschneid,
linux-kernel, wangtao554, quzicheng, wuyun.abel, dsmythies
On 16.02.26 11:59, Dietmar Eggemann wrote:
> On 16.02.26 04:14, K Prateek Nayak wrote:
>> Hello Shubhang,
>>
>> On 2/14/2026 12:50 PM, Shubhang Kaushik wrote:
>>> Hi Peter,
>>>
>>> On Fri, 30 Jan 2026, Peter Zijlstra wrote:
[...]
> I saw the same issue on my Arm64 big.Little board (12 CPUs) with the old
> 'queue.git sched/core' (i.e before s/div_s64()/div64_long()) in:
>
> sched/fair: Increase weight bits for avg_vruntime
>
> and test:
>
> for ((i=0; i<20000; i++)) do yes > /dev/null & done
>
> It's gone with:
>
> git.kernel.org/pub/scm/linux/kernel/git/peterz/queue.git sched/core
>
> commit bdba3187771c ("sched/fair: Use full weight to __calc_delta()")
>
> Tested-by: Dietmar Eggemann <dietmar.eggemann@arm.com>
>
> [...]
No regression spotted on 'hammerdb - mysqld' ('client/LDG - server/SUT'
running on different ARM64 VMs)
AWS VM LDG (c7g.16xlarge) and SUT (m7gd.16xlarge ('maxcpus=16 nr_cpus=16').
Kernel | Throughput | P50 latency. |
aarch64 | (NOPM) | (larger is worse) |
--------------------+-------------+-------------------+
tip sched/core * | baseline | baseline |
queue sched/core ** | +0.8% | -1.0% |
--------------------+-------------+--------------------
* e34881c84c25 - sched: Re-evaluate scheduling when migrating queued
tasks out of throttled cgroups (2026-02-03 Zicheng Qu)
** bdba3187771c - sched/fair: Use full weight to __calc_delta()
(2026-02-13 Peter Zijlstra)
^ permalink raw reply [flat|nested] 70+ messages in thread
* Re: [PATCH 0/4] sched: Various reweight_entity() fixes
2026-02-16 3:14 ` K Prateek Nayak
2026-02-16 10:59 ` Dietmar Eggemann
@ 2026-02-17 22:02 ` Shubhang Kaushik
1 sibling, 0 replies; 70+ messages in thread
From: Shubhang Kaushik @ 2026-02-17 22:02 UTC (permalink / raw)
To: K Prateek Nayak, Peter Zijlstra, mingo
Cc: juri.lelli, vincent.guittot, dietmar.eggemann, rostedt, bsegall,
mgorman, vschneid, linux-kernel, wangtao554, quzicheng,
wuyun.abel, dsmythies
[-- Attachment #1: Type: text/plain, Size: 2988 bytes --]
Hi Prateek,
On Mon, 16 Feb 2026, K Prateek Nayak wrote:
> Hello Shubhang,
>
> On 2/14/2026 12:50 PM, Shubhang Kaushik wrote:
>> Hi Peter,
>>
>> On Fri, 30 Jan 2026, Peter Zijlstra wrote:
>>
>>> Two issues related to reweight_entity() were raised; poking at all that got me
>>> these patches.
>>>
>>> They're in queue.git/sched/core and I spend most of yesterday staring at traces
>>> trying to find anything wrong. So far, so good.
>>>
>>> Please test.
>>>
>>>
>>
>> I’m seeing a consistent NULL pointer dereference in pick_task_fair() when running hackbench on an Ampere Altra (80 cores arm64). This is happening after applying the complete patchset on the latest 6.19.0+ kernel with PREEMPT_DYNAMIC (full), CONFIG_SCHED_CLUSTER and NOHZ_FULL enabled.
>
> Can you confirm you using the latest changes from:
>
> git.kernel.org/pub/scm/linux/kernel/git/peterz/queue.git sched/core
>
> at commit bdba3187771c ("sched/fair: Use full weight to __calc_delta()")
> since this series has undergone some churn throughout the week?
>
Okay. I was not using commit bdba3187771c in my first test. After
updating to that commit on sched/core, the issue is resolved on my
machine.
>>
>> The system triggers a level 2 translation fault because pick_eevdf() returns NULL despite the runqueue having active tasks (cfs_rq->nr_running
>>> 0). When pick_next_task_fair() attempts to dereference this NULL pointer
>> to access the task structure, the kernel Oopses at pick_task_fair+0x48/0x148.
>>
>> pick_task_fair <- pick_eevdf() <- [active tasks]
>>
>> The root cause is an underflow in reweight_entity():
>> se->vprot -= avruntime;
>
> But how does it cause failure to pick? All vrpot does at pick is:
>
> /* curr needs to be queued and eligible first. */
> if (curr && (!curr->on_rq || !entity_eligible(cfs_rq, curr)))
> curr = NULL;
>
Because of the precision drift, the min_vruntime jumps ahead of the
actual task runtime. This made the task look ineligible, so curr was
being set to NULL.
> /* vprot only helps for early return below. */
> if (curr && protect && protect_slice(curr))
> return curr;
>
Since curr was already NULL from the step above, the code skipped this
protection check entirely. It then tried to search the rest of the tree
for a new task. But again, as the math was broken it found nothing and
returned NULL. That’s why the kernel crashed.
>
> Worst case "curr" runs till it loses eligibility even if vprot wraps
> and becomes a large value and moreover, wouldn't vruntime_cmp() in
> protect_slice() which compares the signed difference catch it?
>
> --
> Thanks and Regards,
> Prateek
>
>
The vruntime_cmp() should the handle the math, but the drift made
the comparison logic invalid. The rounding errors in set_protect_slice()
caused vprot and vruntime to be out of sync, breaking the eligibility
invariants.
Commit bdba3187771c restores the symmetry using 64-bit math which
prevents the NULL return.
Regards,
Shubhang Kaushik
^ permalink raw reply [flat|nested] 70+ messages in thread
* Re: [PATCH 0/4] sched: Various reweight_entity() fixes
2026-01-30 9:34 [PATCH 0/4] sched: Various reweight_entity() fixes Peter Zijlstra
` (7 preceding siblings ...)
2026-02-17 4:20 ` K Prateek Nayak
@ 2026-02-18 18:37 ` Shubhang Kaushik
2026-02-19 7:53 ` Peter Zijlstra
8 siblings, 1 reply; 70+ messages in thread
From: Shubhang Kaushik @ 2026-02-18 18:37 UTC (permalink / raw)
To: Peter Zijlstra, mingo
Cc: juri.lelli, vincent.guittot, dietmar.eggemann, rostedt, bsegall,
mgorman, vschneid, linux-kernel, wangtao554, quzicheng,
kprateek.nayak, wuyun.abel, dsmythies
Hello Peter,
On Fri, 30 Jan 2026, Peter Zijlstra wrote:
> Two issues related to reweight_entity() were raised; poking at all that got me
> these patches.
>
> They're in queue.git/sched/core and I spend most of yesterday staring at traces
> trying to find anything wrong. So far, so good.
>
> Please test.
>
>
Analysis of commit bdba3187771c ("sched/fair: Use full weight to
__calc_delta()") confirms it resolves a scaling bottleneck present in the
v7.0-rc baseline (cee73b1e840c).
On Ampere Altra (80 cores) non-SMT SMP with CONFIG_NOHZ_FULL and
CONFIG_SCHED_CLUSTER enabled, the baseline suffered from vruntime
distortion that caused significant scheduling jitter, resulting in
measurable performance cliffs under high parallel load.
Llama AIO for Inference Scaling : The baseline shows a performance cliffs
at high thread counts, due to the scheduler miscalculating time slices
for tail threads, which forced the entire synchronous inference batch to
wait. The patch corrects the delta calculation for predictable scaling.
n_threads Baseline (cee73b1e840c) Patched (bdba3187771c) Diff
51 8.46 t/s 12.12 t/s +43.3%
52 17.75 t/s 22.26 t/s +25.4%
64 12.40 t/s 14.66 t/s +18.2%
Hackbench scaling in the baseline was non-linear indicating excessive
scheduling overhead as process counts increased. By using the full weight
for delta calculations, the patch reduces unnecessary migrations and
improves message throughput.
Task Count Baseline(sec) Patched(sec) Throughput
16 Processes 51.25s 44.09s +16.2%
32 Processes 92.42s 78.09s +18.3%
Tested-by: Shubhang Kaushik <shubhang@os.amperecomputing.com>
Regards,
Shubhang Kaushik
^ permalink raw reply [flat|nested] 70+ messages in thread
* Re: [PATCH 0/4] sched: Various reweight_entity() fixes
2026-02-18 18:37 ` Shubhang Kaushik
@ 2026-02-19 7:53 ` Peter Zijlstra
0 siblings, 0 replies; 70+ messages in thread
From: Peter Zijlstra @ 2026-02-19 7:53 UTC (permalink / raw)
To: Shubhang Kaushik
Cc: mingo, juri.lelli, vincent.guittot, dietmar.eggemann, rostedt,
bsegall, mgorman, vschneid, linux-kernel, wangtao554, quzicheng,
kprateek.nayak, wuyun.abel, dsmythies
On Wed, Feb 18, 2026 at 10:37:19AM -0800, Shubhang Kaushik wrote:
> Hello Peter,
>
> On Fri, 30 Jan 2026, Peter Zijlstra wrote:
>
> > Two issues related to reweight_entity() were raised; poking at all that got me
> > these patches.
> >
> > They're in queue.git/sched/core and I spend most of yesterday staring at traces
> > trying to find anything wrong. So far, so good.
> >
> > Please test.
> >
> >
>
> Analysis of commit bdba3187771c ("sched/fair: Use full weight to
> __calc_delta()") confirms it resolves a scaling bottleneck present in the
> v7.0-rc baseline (cee73b1e840c).
>
> On Ampere Altra (80 cores) non-SMT SMP with CONFIG_NOHZ_FULL and
> CONFIG_SCHED_CLUSTER enabled, the baseline suffered from vruntime distortion
> that caused significant scheduling jitter, resulting in measurable
> performance cliffs under high parallel load.
>
> Llama AIO for Inference Scaling : The baseline shows a performance cliffs at
> high thread counts, due to the scheduler miscalculating time slices for tail
> threads, which forced the entire synchronous inference batch to wait. The
> patch corrects the delta calculation for predictable scaling.
>
> n_threads Baseline (cee73b1e840c) Patched (bdba3187771c) Diff
> 51 8.46 t/s 12.12 t/s +43.3%
> 52 17.75 t/s 22.26 t/s +25.4%
> 64 12.40 t/s 14.66 t/s +18.2%
>
> Hackbench scaling in the baseline was non-linear indicating excessive
> scheduling overhead as process counts increased. By using the full weight
> for delta calculations, the patch reduces unnecessary migrations and
> improves message throughput.
>
> Task Count Baseline(sec) Patched(sec) Throughput
> 16 Processes 51.25s 44.09s +16.2%
> 32 Processes 92.42s 78.09s +18.3%
>
> Tested-by: Shubhang Kaushik <shubhang@os.amperecomputing.com>
These are excellent results, thanks!
Let me finally get around to posting them.
^ permalink raw reply [flat|nested] 70+ messages in thread
* RE: [PATCH 0/4] sched: Various reweight_entity() fixes
2026-02-14 6:31 ` Doug Smythies
@ 2026-02-21 22:51 ` Doug Smythies
0 siblings, 0 replies; 70+ messages in thread
From: Doug Smythies @ 2026-02-21 22:51 UTC (permalink / raw)
To: 'Peter Zijlstra', 'K Prateek Nayak'
Cc: 'Vincent Guittot', mingo, juri.lelli, dietmar.eggemann,
rostedt, bsegall, mgorman, vschneid, linux-kernel, wangtao554,
quzicheng, Doug Smythies
On 2026.02.13 22:31 Doug Smythies wrote:
> On 2026.02.13 02:50 Peter Zijlstra wrote:
>> On Fri, Feb 13, 2026 at 07:44:24AM +0100, Peter Zijlstra wrote:
>>> As to wrapper, I just went through math64.h and it appears we have
>>> div64_long() that might just DTRT, but I really need to go wake up
>>> first.
>>>
>>> And as you noted, the current branch doesn't boot :/ No idea what I
>>> messed up last night, but I did push without test building. I only
>>> folded those two division fixed and figured what could possibly go wrong
>>> :-)
>>
>> It's now got div64_long() throughout.
>>
>> I've build and booted each commit in a vm; build and booted the combined
>> stack on 2 different physical machines and re-ran the various
>> benchmarks.
>>
>> Works-for-me.
>
> Works for me also.
>
> Note: I am calling this "V5" (version 5).
>
> But: please consider if there is an issue or not with test 3 below,
> mainly detailed in the attached graphs.
... snip ...
> 3.) a ridiculous load. Each thread is 100% load, no sleep. 20,000 X yes:
> Conclusion: Pass?
> Observation: The spin out rate of tasks is "clunky" not smooth. It used to be smooth.
> A couple of graphs are attached. Note that actual sample times are now used,
> after a nominal sleep of 2 seconds between samples. Sometimes the actual
> gap is over 1 minute. It takes considerably longer, 2,200 seconds verses
> 1,309 seconds to spin out the 20,000 takes for V5 verses kernel 6.19-rc8.
Just a follow up:
The above reported concern with this test never had anything to do with this
patch series. It had everything to do with commit 7dadeaa6e851:
sched: Further restrict the preemption modes
and my use of the Ubuntu kernel configuration. In the header of the commit
it says:
While Lazy has been the recommended setting for a while,
not all distributions have managed to make the switch yet.
Force things along.
The kernel configuration was automatically modified eliminating
PREEMPT_VOLUNTARY and leaving PREEMPT_LAZY disabled.
Once I set PREEMPT_LAZY the above noted concern was gone
(although I am still testing).
References:
https://lore.kernel.org/all/20251219101502.GB1132199@noisy.programming.kicks-ass.net/
^ permalink raw reply [flat|nested] 70+ messages in thread
end of thread, other threads:[~2026-02-21 22:51 UTC | newest]
Thread overview: 70+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-01-30 9:34 [PATCH 0/4] sched: Various reweight_entity() fixes Peter Zijlstra
2026-01-30 9:34 ` [PATCH 1/4] sched/fair: Only set slice protection at pick time Peter Zijlstra
2026-01-30 15:52 ` Vincent Guittot
2026-01-30 9:34 ` [PATCH 2/4] sched/eevdf: Update se->vprot in reweight_entity() Peter Zijlstra
2026-01-30 16:20 ` Vincent Guittot
2026-01-30 9:34 ` [PATCH 3/4] sched/fair: Increase weight bits for avg_vruntime Peter Zijlstra
2026-01-30 9:34 ` [PATCH 4/4] sched/fair: Revert 6d71a9c61604 ("sched/fair: Fix EEVDF entity placement bug causing scheduling lag") Peter Zijlstra
2026-01-31 1:47 ` Zhang Qiao
2026-01-31 15:21 ` Peter Zijlstra
2026-02-02 9:12 ` Peter Zijlstra
2026-02-02 9:24 ` Peter Zijlstra
2026-02-02 11:23 ` Zhang Qiao
2026-02-01 17:13 ` [PATCH 0/4] sched: Various reweight_entity() fixes Doug Smythies
2026-02-03 6:45 ` K Prateek Nayak
2026-02-03 11:11 ` Peter Zijlstra
2026-02-03 12:19 ` K Prateek Nayak
2026-02-03 16:36 ` Doug Smythies
2026-02-10 18:13 ` Peter Zijlstra
2026-02-11 5:51 ` Doug Smythies
2026-02-04 10:15 ` K Prateek Nayak
2026-02-09 15:47 ` Peter Zijlstra
2026-02-09 16:52 ` K Prateek Nayak
2026-02-10 5:16 ` K Prateek Nayak
2026-02-10 10:29 ` Peter Zijlstra
2026-02-10 15:41 ` Doug Smythies
2026-02-10 18:09 ` K Prateek Nayak
2026-02-10 18:35 ` Peter Zijlstra
2026-02-10 20:04 ` K Prateek Nayak
2026-02-11 6:28 ` K Prateek Nayak
2026-02-11 8:50 ` K Prateek Nayak
2026-02-11 23:09 ` Doug Smythies
2026-02-10 18:52 ` Peter Zijlstra
2026-02-10 20:52 ` Vincent Guittot
2026-02-11 5:21 ` Doug Smythies
2026-02-11 8:49 ` Vincent Guittot
2026-02-11 9:01 ` Peter Zijlstra
2026-02-11 10:48 ` Peter Zijlstra
2026-02-11 10:49 ` Peter Zijlstra
2026-02-11 11:15 ` Vincent Guittot
2026-02-11 16:28 ` Peter Zijlstra
2026-02-12 7:43 ` K Prateek Nayak
2026-02-12 11:59 ` Peter Zijlstra
2026-02-12 17:16 ` Peter Zijlstra
2026-02-12 17:24 ` Vincent Guittot
2026-02-12 19:31 ` Peter Zijlstra
2026-02-13 5:22 ` K Prateek Nayak
2026-02-13 6:44 ` Peter Zijlstra
2026-02-13 10:50 ` Peter Zijlstra
2026-02-13 14:29 ` K Prateek Nayak
2026-02-14 6:31 ` Doug Smythies
2026-02-21 22:51 ` Doug Smythies
2026-02-12 19:29 ` Peter Zijlstra
2026-02-12 19:37 ` Doug Smythies
2026-02-13 6:04 ` K Prateek Nayak
2026-02-11 16:21 ` Peter Zijlstra
2026-02-12 5:54 ` Doug Smythies
2026-02-12 7:51 ` Peter Zijlstra
2026-02-12 15:47 ` Doug Smythies
2026-02-12 7:46 ` Peter Zijlstra
2026-02-11 23:25 ` Doug Smythies
2026-02-11 8:48 ` Peter Zijlstra
2026-02-04 10:44 ` Peter Zijlstra
2026-02-14 7:20 ` Shubhang Kaushik
2026-02-16 3:14 ` K Prateek Nayak
2026-02-16 10:59 ` Dietmar Eggemann
2026-02-17 14:37 ` Dietmar Eggemann
2026-02-17 22:02 ` Shubhang Kaushik
2026-02-17 4:20 ` K Prateek Nayak
2026-02-18 18:37 ` Shubhang Kaushik
2026-02-19 7:53 ` Peter Zijlstra
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox