mirror of
https://github.com/haproxy/haproxy.git
synced 2026-04-21 06:06:59 -04:00
MINOR: sched: do not punish self-waking tasklets anymore
Nowadays due to yield etc, it's counter-productive to permanently punish self-waking tasklets, let's abandon this principle as it prevent finer task priority handling. We continue to check for the TASK_SELF_WAKING flag to place a task into TL_BULK in case some code wants to make use of it in the future (similarly to TASK_HEAVY), but no code sets it anymore. It could possible make sense in the future to replace this flag with a one-shot variant requesting low-priority.
This commit is contained in:
parent
9852d5be26
commit
6982c2539f
1 changed files with 0 additions and 2 deletions
|
|
@ -148,7 +148,6 @@ void __tasklet_wakeup_on(struct tasklet *tl, int thr)
|
|||
th_ctx->tl_class_mask |= 1 << TL_BULK;
|
||||
}
|
||||
else if ((struct task *)tl == th_ctx->current) {
|
||||
_HA_ATOMIC_OR(&tl->state, TASK_SELF_WAKING);
|
||||
LIST_APPEND(&th_ctx->tasklets[TL_BULK], &tl->list);
|
||||
th_ctx->tl_class_mask |= 1 << TL_BULK;
|
||||
}
|
||||
|
|
@ -187,7 +186,6 @@ struct list *__tasklet_wakeup_after(struct list *head, struct tasklet *tl)
|
|||
th_ctx->tl_class_mask |= 1 << TL_BULK;
|
||||
}
|
||||
else if ((struct task *)tl == th_ctx->current) {
|
||||
_HA_ATOMIC_OR(&tl->state, TASK_SELF_WAKING);
|
||||
LIST_INSERT(&th_ctx->tasklets[TL_BULK], &tl->list);
|
||||
th_ctx->tl_class_mask |= 1 << TL_BULK;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue