Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Task management functions. |
| 3 | * |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 4 | * Copyright 2000-2009 Willy Tarreau <w@1wt.eu> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5 | * |
| 6 | * This program is free software; you can redistribute it and/or |
| 7 | * modify it under the terms of the GNU General Public License |
| 8 | * as published by the Free Software Foundation; either version |
| 9 | * 2 of the License, or (at your option) any later version. |
| 10 | * |
| 11 | */ |
| 12 | |
Willy Tarreau | 87bed62 | 2009-03-08 22:25:28 +0100 | [diff] [blame] | 13 | #include <string.h> |
| 14 | |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 15 | #include <import/eb32tree.h> |
| 16 | |
Willy Tarreau | 4c7e4b7 | 2020-05-27 12:58:42 +0200 | [diff] [blame] | 17 | #include <haproxy/api.h> |
Willy Tarreau | 5d9ddc5 | 2021-10-06 19:54:09 +0200 | [diff] [blame] | 18 | #include <haproxy/activity.h> |
Willy Tarreau | e7723bd | 2020-06-24 11:11:02 +0200 | [diff] [blame] | 19 | #include <haproxy/cfgparse.h> |
Willy Tarreau | 5554264 | 2021-10-08 09:33:24 +0200 | [diff] [blame] | 20 | #include <haproxy/clock.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 21 | #include <haproxy/fd.h> |
Willy Tarreau | 853b297 | 2020-05-27 18:01:47 +0200 | [diff] [blame] | 22 | #include <haproxy/list.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 23 | #include <haproxy/pool.h> |
Willy Tarreau | cea0e1b | 2020-06-04 17:25:40 +0200 | [diff] [blame] | 24 | #include <haproxy/task.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 25 | #include <haproxy/tools.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 26 | |
Willy Tarreau | e08f4bf | 2021-05-08 20:10:13 +0200 | [diff] [blame] | 27 | extern struct task *process_stream(struct task *t, void *context, unsigned int state); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 28 | |
Willy Tarreau | 8ceae72 | 2018-11-26 11:58:30 +0100 | [diff] [blame] | 29 | DECLARE_POOL(pool_head_task, "task", sizeof(struct task)); |
| 30 | DECLARE_POOL(pool_head_tasklet, "tasklet", sizeof(struct tasklet)); |
Willy Tarreau | 96bcfd7 | 2007-04-29 10:41:56 +0200 | [diff] [blame] | 31 | |
Thierry FOURNIER | d697596 | 2017-07-12 14:31:10 +0200 | [diff] [blame] | 32 | /* This is the memory pool containing all the signal structs. These |
Joseph Herlant | cf92b6d | 2018-11-15 14:19:23 -0800 | [diff] [blame] | 33 | * struct are used to store each required signal between two tasks. |
Thierry FOURNIER | d697596 | 2017-07-12 14:31:10 +0200 | [diff] [blame] | 34 | */ |
Willy Tarreau | 8ceae72 | 2018-11-26 11:58:30 +0100 | [diff] [blame] | 35 | DECLARE_POOL(pool_head_notification, "notification", sizeof(struct notification)); |
Thierry FOURNIER | d697596 | 2017-07-12 14:31:10 +0200 | [diff] [blame] | 36 | |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 37 | unsigned int niced_tasks = 0; /* number of niced tasks in the run queue */ |
Emeric Brun | 0194897 | 2017-03-30 15:37:25 +0200 | [diff] [blame] | 38 | |
Willy Tarreau | ef28dc1 | 2019-05-28 18:48:07 +0200 | [diff] [blame] | 39 | __decl_aligned_rwlock(wq_lock); /* RW lock related to the wait queue */ |
Willy Tarreau | 964c936 | 2007-01-07 00:38:00 +0100 | [diff] [blame] | 40 | |
Olivier Houchard | b1ca58b | 2018-06-06 14:22:03 +0200 | [diff] [blame] | 41 | #ifdef USE_THREAD |
Willy Tarreau | c6ba9a0 | 2021-02-20 12:49:54 +0100 | [diff] [blame] | 42 | struct eb_root timers; /* sorted timers tree, global, accessed under wq_lock */ |
Olivier Houchard | b1ca58b | 2018-06-06 14:22:03 +0200 | [diff] [blame] | 43 | #endif |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 44 | |
Willy Tarreau | 8d8747a | 2018-10-15 16:12:48 +0200 | [diff] [blame] | 45 | |
Willy Tarreau | eb8c2c6 | 2020-06-30 11:48:48 +0200 | [diff] [blame] | 46 | |
| 47 | /* Flags the task <t> for immediate destruction and puts it into its first |
| 48 | * thread's shared tasklet list if not yet queued/running. This will bypass |
| 49 | * the priority scheduling and make the task show up as fast as possible in |
| 50 | * the other thread's queue. Note that this operation isn't idempotent and is |
| 51 | * not supposed to be run on the same task from multiple threads at once. It's |
| 52 | * the caller's responsibility to make sure it is the only one able to kill the |
| 53 | * task. |
| 54 | */ |
| 55 | void task_kill(struct task *t) |
| 56 | { |
Willy Tarreau | 144f84a | 2021-03-02 16:09:26 +0100 | [diff] [blame] | 57 | unsigned int state = t->state; |
Willy Tarreau | eb8c2c6 | 2020-06-30 11:48:48 +0200 | [diff] [blame] | 58 | unsigned int thr; |
| 59 | |
| 60 | BUG_ON(state & TASK_KILLED); |
| 61 | |
| 62 | while (1) { |
| 63 | while (state & (TASK_RUNNING | TASK_QUEUED)) { |
| 64 | /* task already in the queue and about to be executed, |
| 65 | * or even currently running. Just add the flag and be |
| 66 | * done with it, the process loop will detect it and kill |
| 67 | * it. The CAS will fail if we arrive too late. |
| 68 | */ |
| 69 | if (_HA_ATOMIC_CAS(&t->state, &state, state | TASK_KILLED)) |
| 70 | return; |
| 71 | } |
| 72 | |
| 73 | /* We'll have to wake it up, but we must also secure it so that |
| 74 | * it doesn't vanish under us. TASK_QUEUED guarantees nobody will |
| 75 | * add past us. |
| 76 | */ |
| 77 | if (_HA_ATOMIC_CAS(&t->state, &state, state | TASK_QUEUED | TASK_KILLED)) { |
| 78 | /* Bypass the tree and go directly into the shared tasklet list. |
| 79 | * Note: that's a task so it must be accounted for as such. Pick |
| 80 | * the task's first thread for the job. |
| 81 | */ |
Willy Tarreau | 29ffe26 | 2022-06-15 14:31:38 +0200 | [diff] [blame] | 82 | thr = t->tid >= 0 ? t->tid : tid; |
Willy Tarreau | 54d3117 | 2020-07-02 14:14:00 +0200 | [diff] [blame] | 83 | |
| 84 | /* Beware: tasks that have never run don't have their ->list empty yet! */ |
Willy Tarreau | 1a9c922 | 2021-10-01 11:30:33 +0200 | [diff] [blame] | 85 | MT_LIST_APPEND(&ha_thread_ctx[thr].shared_tasklet_list, |
Willy Tarreau | cc5cd5b | 2022-01-28 09:48:12 +0100 | [diff] [blame] | 86 | list_to_mt_list(&((struct tasklet *)t)->list)); |
Willy Tarreau | 1a9c922 | 2021-10-01 11:30:33 +0200 | [diff] [blame] | 87 | _HA_ATOMIC_INC(&ha_thread_ctx[thr].rq_total); |
| 88 | _HA_ATOMIC_INC(&ha_thread_ctx[thr].tasks_in_list); |
Willy Tarreau | f3efef4 | 2022-06-20 09:14:40 +0200 | [diff] [blame] | 89 | wake_thread(thr); |
Willy Tarreau | 54d3117 | 2020-07-02 14:14:00 +0200 | [diff] [blame] | 90 | return; |
Willy Tarreau | eb8c2c6 | 2020-06-30 11:48:48 +0200 | [diff] [blame] | 91 | } |
| 92 | } |
| 93 | } |
| 94 | |
Amaury Denoyelle | 7b36833 | 2021-07-28 16:12:57 +0200 | [diff] [blame] | 95 | /* Equivalent of task_kill for tasklets. Mark the tasklet <t> for destruction. |
| 96 | * It will be deleted on the next scheduler invocation. This function is |
| 97 | * thread-safe : a thread can kill a tasklet of another thread. |
| 98 | */ |
| 99 | void tasklet_kill(struct tasklet *t) |
| 100 | { |
| 101 | unsigned int state = t->state; |
| 102 | unsigned int thr; |
| 103 | |
| 104 | BUG_ON(state & TASK_KILLED); |
| 105 | |
| 106 | while (1) { |
| 107 | while (state & (TASK_IN_LIST)) { |
| 108 | /* Tasklet already in the list ready to be executed. Add |
| 109 | * the killed flag and wait for the process loop to |
| 110 | * detect it. |
| 111 | */ |
| 112 | if (_HA_ATOMIC_CAS(&t->state, &state, state | TASK_KILLED)) |
| 113 | return; |
| 114 | } |
| 115 | |
| 116 | /* Mark the tasklet as killed and wake the thread to process it |
| 117 | * as soon as possible. |
| 118 | */ |
| 119 | if (_HA_ATOMIC_CAS(&t->state, &state, state | TASK_IN_LIST | TASK_KILLED)) { |
Willy Tarreau | 9b3aa63 | 2022-06-15 15:54:56 +0200 | [diff] [blame] | 120 | thr = t->tid >= 0 ? t->tid : tid; |
Willy Tarreau | 1a9c922 | 2021-10-01 11:30:33 +0200 | [diff] [blame] | 121 | MT_LIST_APPEND(&ha_thread_ctx[thr].shared_tasklet_list, |
Willy Tarreau | cc5cd5b | 2022-01-28 09:48:12 +0100 | [diff] [blame] | 122 | list_to_mt_list(&t->list)); |
Willy Tarreau | 1a9c922 | 2021-10-01 11:30:33 +0200 | [diff] [blame] | 123 | _HA_ATOMIC_INC(&ha_thread_ctx[thr].rq_total); |
Willy Tarreau | f3efef4 | 2022-06-20 09:14:40 +0200 | [diff] [blame] | 124 | wake_thread(thr); |
Amaury Denoyelle | 7b36833 | 2021-07-28 16:12:57 +0200 | [diff] [blame] | 125 | return; |
| 126 | } |
| 127 | } |
| 128 | } |
| 129 | |
Willy Tarreau | 9c6dbf0 | 2021-02-24 17:51:38 +0100 | [diff] [blame] | 130 | /* Do not call this one, please use tasklet_wakeup_on() instead, as this one is |
| 131 | * the slow path of tasklet_wakeup_on() which performs some preliminary checks |
| 132 | * and sets TASK_IN_LIST before calling this one. A negative <thr> designates |
| 133 | * the current thread. |
| 134 | */ |
| 135 | void __tasklet_wakeup_on(struct tasklet *tl, int thr) |
| 136 | { |
| 137 | if (likely(thr < 0)) { |
| 138 | /* this tasklet runs on the caller thread */ |
Willy Tarreau | 826fa87 | 2021-02-26 10:13:40 +0100 | [diff] [blame] | 139 | if (tl->state & TASK_HEAVY) { |
Willy Tarreau | 1a9c922 | 2021-10-01 11:30:33 +0200 | [diff] [blame] | 140 | LIST_APPEND(&th_ctx->tasklets[TL_HEAVY], &tl->list); |
| 141 | th_ctx->tl_class_mask |= 1 << TL_HEAVY; |
Willy Tarreau | 826fa87 | 2021-02-26 10:13:40 +0100 | [diff] [blame] | 142 | } |
| 143 | else if (tl->state & TASK_SELF_WAKING) { |
Willy Tarreau | 1a9c922 | 2021-10-01 11:30:33 +0200 | [diff] [blame] | 144 | LIST_APPEND(&th_ctx->tasklets[TL_BULK], &tl->list); |
| 145 | th_ctx->tl_class_mask |= 1 << TL_BULK; |
Willy Tarreau | 9c6dbf0 | 2021-02-24 17:51:38 +0100 | [diff] [blame] | 146 | } |
Willy Tarreau | 1a9c922 | 2021-10-01 11:30:33 +0200 | [diff] [blame] | 147 | else if ((struct task *)tl == th_ctx->current) { |
Willy Tarreau | 9c6dbf0 | 2021-02-24 17:51:38 +0100 | [diff] [blame] | 148 | _HA_ATOMIC_OR(&tl->state, TASK_SELF_WAKING); |
Willy Tarreau | 1a9c922 | 2021-10-01 11:30:33 +0200 | [diff] [blame] | 149 | LIST_APPEND(&th_ctx->tasklets[TL_BULK], &tl->list); |
| 150 | th_ctx->tl_class_mask |= 1 << TL_BULK; |
Willy Tarreau | 9c6dbf0 | 2021-02-24 17:51:38 +0100 | [diff] [blame] | 151 | } |
Willy Tarreau | 1a9c922 | 2021-10-01 11:30:33 +0200 | [diff] [blame] | 152 | else if (th_ctx->current_queue < 0) { |
| 153 | LIST_APPEND(&th_ctx->tasklets[TL_URGENT], &tl->list); |
| 154 | th_ctx->tl_class_mask |= 1 << TL_URGENT; |
Willy Tarreau | 9c6dbf0 | 2021-02-24 17:51:38 +0100 | [diff] [blame] | 155 | } |
| 156 | else { |
Willy Tarreau | 1a9c922 | 2021-10-01 11:30:33 +0200 | [diff] [blame] | 157 | LIST_APPEND(&th_ctx->tasklets[th_ctx->current_queue], &tl->list); |
| 158 | th_ctx->tl_class_mask |= 1 << th_ctx->current_queue; |
Willy Tarreau | 9c6dbf0 | 2021-02-24 17:51:38 +0100 | [diff] [blame] | 159 | } |
Willy Tarreau | 1a9c922 | 2021-10-01 11:30:33 +0200 | [diff] [blame] | 160 | _HA_ATOMIC_INC(&th_ctx->rq_total); |
Willy Tarreau | 9c6dbf0 | 2021-02-24 17:51:38 +0100 | [diff] [blame] | 161 | } else { |
| 162 | /* this tasklet runs on a specific thread. */ |
Willy Tarreau | cc5cd5b | 2022-01-28 09:48:12 +0100 | [diff] [blame] | 163 | MT_LIST_APPEND(&ha_thread_ctx[thr].shared_tasklet_list, list_to_mt_list(&tl->list)); |
Willy Tarreau | 1a9c922 | 2021-10-01 11:30:33 +0200 | [diff] [blame] | 164 | _HA_ATOMIC_INC(&ha_thread_ctx[thr].rq_total); |
Willy Tarreau | f3efef4 | 2022-06-20 09:14:40 +0200 | [diff] [blame] | 165 | wake_thread(thr); |
Willy Tarreau | 9c6dbf0 | 2021-02-24 17:51:38 +0100 | [diff] [blame] | 166 | } |
| 167 | } |
| 168 | |
Frédéric Lécaille | ad548b5 | 2022-06-29 10:53:03 +0200 | [diff] [blame] | 169 | /* Do not call this one, please use tasklet_wakeup_after_on() instead, as this one is |
| 170 | * the slow path of tasklet_wakeup_after() which performs some preliminary checks |
| 171 | * and sets TASK_IN_LIST before calling this one. |
| 172 | */ |
| 173 | struct list *__tasklet_wakeup_after(struct list *head, struct tasklet *tl) |
| 174 | { |
| 175 | BUG_ON(tid != tl->tid); |
| 176 | /* this tasklet runs on the caller thread */ |
| 177 | if (!head) { |
| 178 | if (tl->state & TASK_HEAVY) { |
| 179 | LIST_INSERT(&th_ctx->tasklets[TL_HEAVY], &tl->list); |
| 180 | th_ctx->tl_class_mask |= 1 << TL_HEAVY; |
| 181 | } |
| 182 | else if (tl->state & TASK_SELF_WAKING) { |
| 183 | LIST_INSERT(&th_ctx->tasklets[TL_BULK], &tl->list); |
| 184 | th_ctx->tl_class_mask |= 1 << TL_BULK; |
| 185 | } |
| 186 | else if ((struct task *)tl == th_ctx->current) { |
| 187 | _HA_ATOMIC_OR(&tl->state, TASK_SELF_WAKING); |
| 188 | LIST_INSERT(&th_ctx->tasklets[TL_BULK], &tl->list); |
| 189 | th_ctx->tl_class_mask |= 1 << TL_BULK; |
| 190 | } |
| 191 | else if (th_ctx->current_queue < 0) { |
| 192 | LIST_INSERT(&th_ctx->tasklets[TL_URGENT], &tl->list); |
| 193 | th_ctx->tl_class_mask |= 1 << TL_URGENT; |
| 194 | } |
| 195 | else { |
| 196 | LIST_INSERT(&th_ctx->tasklets[th_ctx->current_queue], &tl->list); |
| 197 | th_ctx->tl_class_mask |= 1 << th_ctx->current_queue; |
| 198 | } |
| 199 | } |
| 200 | else { |
| 201 | LIST_APPEND(head, &tl->list); |
| 202 | } |
| 203 | _HA_ATOMIC_INC(&th_ctx->rq_total); |
| 204 | return &tl->list; |
| 205 | } |
| 206 | |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 207 | /* Puts the task <t> in run queue at a position depending on t->nice. <t> is |
| 208 | * returned. The nice value assigns boosts in 32th of the run queue size. A |
Christopher Faulet | 34c5cc9 | 2016-12-06 09:15:30 +0100 | [diff] [blame] | 209 | * nice value of -1024 sets the task to -tasks_run_queue*32, while a nice value |
| 210 | * of 1024 sets the task to tasks_run_queue*32. The state flags are cleared, so |
| 211 | * the caller will have to set its flags after this call. |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 212 | * The task must not already be in the run queue. If unsure, use the safer |
| 213 | * task_wakeup() function. |
Willy Tarreau | 91e9993 | 2008-06-30 07:51:00 +0200 | [diff] [blame] | 214 | */ |
Willy Tarreau | 018564e | 2021-02-24 16:41:11 +0100 | [diff] [blame] | 215 | void __task_wakeup(struct task *t) |
Willy Tarreau | e33aece | 2007-04-30 13:15:14 +0200 | [diff] [blame] | 216 | { |
Willy Tarreau | 1a9c922 | 2021-10-01 11:30:33 +0200 | [diff] [blame] | 217 | struct eb_root *root = &th_ctx->rqueue; |
Willy Tarreau | 29ffe26 | 2022-06-15 14:31:38 +0200 | [diff] [blame] | 218 | int thr __maybe_unused = t->tid >= 0 ? t->tid : tid; |
Willy Tarreau | 018564e | 2021-02-24 16:41:11 +0100 | [diff] [blame] | 219 | |
Olivier Houchard | b1ca58b | 2018-06-06 14:22:03 +0200 | [diff] [blame] | 220 | #ifdef USE_THREAD |
Willy Tarreau | 29ffe26 | 2022-06-15 14:31:38 +0200 | [diff] [blame] | 221 | if (thr != tid) { |
Willy Tarreau | 6f78038 | 2022-06-16 15:30:50 +0200 | [diff] [blame] | 222 | root = &ha_thread_ctx[thr].rqueue_shared; |
Willy Tarreau | 018564e | 2021-02-24 16:41:11 +0100 | [diff] [blame] | 223 | |
Willy Tarreau | da195e8 | 2022-06-16 15:52:49 +0200 | [diff] [blame] | 224 | _HA_ATOMIC_INC(&ha_thread_ctx[thr].rq_total); |
Willy Tarreau | b17dd6c | 2022-06-16 16:58:17 +0200 | [diff] [blame] | 225 | HA_SPIN_LOCK(TASK_RQ_LOCK, &ha_thread_ctx[thr].rqsh_lock); |
Willy Tarreau | 9c7b808 | 2021-02-24 15:10:07 +0100 | [diff] [blame] | 226 | |
Willy Tarreau | 6f78038 | 2022-06-16 15:30:50 +0200 | [diff] [blame] | 227 | t->rq.key = _HA_ATOMIC_ADD_FETCH(&ha_thread_ctx[thr].rqueue_ticks, 1); |
Olivier Houchard | ed1a6a0 | 2019-04-18 14:12:51 +0200 | [diff] [blame] | 228 | __ha_barrier_store(); |
Willy Tarreau | c6ba9a0 | 2021-02-20 12:49:54 +0100 | [diff] [blame] | 229 | } else |
Olivier Houchard | c4aac9e | 2018-07-26 15:25:49 +0200 | [diff] [blame] | 230 | #endif |
Willy Tarreau | 9c7b808 | 2021-02-24 15:10:07 +0100 | [diff] [blame] | 231 | { |
Willy Tarreau | 1a9c922 | 2021-10-01 11:30:33 +0200 | [diff] [blame] | 232 | _HA_ATOMIC_INC(&th_ctx->rq_total); |
Willy Tarreau | a4fb79b | 2022-06-16 15:44:35 +0200 | [diff] [blame] | 233 | t->rq.key = _HA_ATOMIC_ADD_FETCH(&th_ctx->rqueue_ticks, 1); |
Willy Tarreau | 9c7b808 | 2021-02-24 15:10:07 +0100 | [diff] [blame] | 234 | } |
Willy Tarreau | 91e9993 | 2008-06-30 07:51:00 +0200 | [diff] [blame] | 235 | |
| 236 | if (likely(t->nice)) { |
| 237 | int offset; |
| 238 | |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 239 | _HA_ATOMIC_INC(&niced_tasks); |
Willy Tarreau | 2d1fd0a | 2019-04-15 09:18:31 +0200 | [diff] [blame] | 240 | offset = t->nice * (int)global.tune.runqueue_depth; |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 241 | t->rq.key += offset; |
Willy Tarreau | 91e9993 | 2008-06-30 07:51:00 +0200 | [diff] [blame] | 242 | } |
| 243 | |
Willy Tarreau | 680ed5f | 2022-06-13 15:59:39 +0200 | [diff] [blame] | 244 | if (th_ctx->flags & TH_FL_TASK_PROFILING) |
Willy Tarreau | 9efd745 | 2018-05-31 14:48:54 +0200 | [diff] [blame] | 245 | t->call_date = now_mono_time(); |
| 246 | |
Willy Tarreau | 319d136 | 2022-06-16 16:28:01 +0200 | [diff] [blame] | 247 | eb32_insert(root, &t->rq); |
Willy Tarreau | 018564e | 2021-02-24 16:41:11 +0100 | [diff] [blame] | 248 | |
Olivier Houchard | b1ca58b | 2018-06-06 14:22:03 +0200 | [diff] [blame] | 249 | #ifdef USE_THREAD |
Willy Tarreau | 29ffe26 | 2022-06-15 14:31:38 +0200 | [diff] [blame] | 250 | if (thr != tid) { |
Willy Tarreau | b17dd6c | 2022-06-16 16:58:17 +0200 | [diff] [blame] | 251 | HA_SPIN_UNLOCK(TASK_RQ_LOCK, &ha_thread_ctx[thr].rqsh_lock); |
Willy Tarreau | 2c41d77 | 2021-02-24 16:13:03 +0100 | [diff] [blame] | 252 | |
Willy Tarreau | eeffb3d | 2021-02-24 16:44:51 +0100 | [diff] [blame] | 253 | /* If all threads that are supposed to handle this task are sleeping, |
| 254 | * wake one. |
| 255 | */ |
Willy Tarreau | f3efef4 | 2022-06-20 09:14:40 +0200 | [diff] [blame] | 256 | wake_thread(thr); |
Olivier Houchard | 1b32790 | 2019-03-15 00:23:10 +0100 | [diff] [blame] | 257 | } |
Willy Tarreau | 85d9b84 | 2018-07-27 17:14:41 +0200 | [diff] [blame] | 258 | #endif |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 259 | return; |
Willy Tarreau | e33aece | 2007-04-30 13:15:14 +0200 | [diff] [blame] | 260 | } |
Willy Tarreau | d825eef | 2007-05-12 22:35:00 +0200 | [diff] [blame] | 261 | |
Willy Tarreau | 96bcfd7 | 2007-04-29 10:41:56 +0200 | [diff] [blame] | 262 | /* |
Willy Tarreau | 531cf0c | 2009-03-08 16:35:27 +0100 | [diff] [blame] | 263 | * __task_queue() |
Willy Tarreau | 96bcfd7 | 2007-04-29 10:41:56 +0200 | [diff] [blame] | 264 | * |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 265 | * Inserts a task into wait queue <wq> at the position given by its expiration |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 266 | * date. It does not matter if the task was already in the wait queue or not, |
Willy Tarreau | 7a96999 | 2021-09-30 16:38:09 +0200 | [diff] [blame] | 267 | * as it will be unlinked. The task MUST NOT have an infinite expiration timer. |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 268 | * Last, tasks must not be queued further than the end of the tree, which is |
| 269 | * between <now_ms> and <now_ms> + 2^31 ms (now+24days in 32bit). |
Willy Tarreau | 531cf0c | 2009-03-08 16:35:27 +0100 | [diff] [blame] | 270 | * |
| 271 | * This function should not be used directly, it is meant to be called by the |
| 272 | * inline version of task_queue() which performs a few cheap preliminary tests |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 273 | * before deciding to call __task_queue(). Moreover this function doesn't care |
| 274 | * at all about locking so the caller must be careful when deciding whether to |
| 275 | * lock or not around this call. |
Willy Tarreau | 96bcfd7 | 2007-04-29 10:41:56 +0200 | [diff] [blame] | 276 | */ |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 277 | void __task_queue(struct task *task, struct eb_root *wq) |
Willy Tarreau | 964c936 | 2007-01-07 00:38:00 +0100 | [diff] [blame] | 278 | { |
Willy Tarreau | e5d79bc | 2020-07-22 14:29:42 +0200 | [diff] [blame] | 279 | #ifdef USE_THREAD |
Willy Tarreau | 159e3ac | 2022-06-15 16:48:45 +0200 | [diff] [blame] | 280 | BUG_ON((wq == &timers && task->tid >= 0) || |
| 281 | (wq == &th_ctx->timers && task->tid < 0) || |
Willy Tarreau | 1a9c922 | 2021-10-01 11:30:33 +0200 | [diff] [blame] | 282 | (wq != &timers && wq != &th_ctx->timers)); |
Willy Tarreau | e5d79bc | 2020-07-22 14:29:42 +0200 | [diff] [blame] | 283 | #endif |
Willy Tarreau | 7a96999 | 2021-09-30 16:38:09 +0200 | [diff] [blame] | 284 | /* if this happens the process is doomed anyway, so better catch it now |
| 285 | * so that we have the caller in the stack. |
| 286 | */ |
| 287 | BUG_ON(task->expire == TICK_ETERNITY); |
Willy Tarreau | e5d79bc | 2020-07-22 14:29:42 +0200 | [diff] [blame] | 288 | |
Willy Tarreau | 531cf0c | 2009-03-08 16:35:27 +0100 | [diff] [blame] | 289 | if (likely(task_in_wq(task))) |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 290 | __task_unlink_wq(task); |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 291 | |
| 292 | /* the task is not in the queue now */ |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 293 | task->wq.key = task->expire; |
Willy Tarreau | 28c41a4 | 2008-06-29 17:00:59 +0200 | [diff] [blame] | 294 | #ifdef DEBUG_CHECK_INVALID_EXPIRATION_DATES |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 295 | if (tick_is_lt(task->wq.key, now_ms)) |
Willy Tarreau | 28c41a4 | 2008-06-29 17:00:59 +0200 | [diff] [blame] | 296 | /* we're queuing too far away or in the past (most likely) */ |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 297 | return; |
Willy Tarreau | 28c41a4 | 2008-06-29 17:00:59 +0200 | [diff] [blame] | 298 | #endif |
Willy Tarreau | ce44f12 | 2008-07-05 18:16:19 +0200 | [diff] [blame] | 299 | |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 300 | eb32_insert(wq, &task->wq); |
Willy Tarreau | 964c936 | 2007-01-07 00:38:00 +0100 | [diff] [blame] | 301 | } |
| 302 | |
Willy Tarreau | 96bcfd7 | 2007-04-29 10:41:56 +0200 | [diff] [blame] | 303 | /* |
Willy Tarreau | 9789f7b | 2008-06-24 08:17:16 +0200 | [diff] [blame] | 304 | * Extract all expired timers from the timer queue, and wakes up all |
Willy Tarreau | c49ba52 | 2019-12-11 08:12:23 +0100 | [diff] [blame] | 305 | * associated tasks. |
Willy Tarreau | 96bcfd7 | 2007-04-29 10:41:56 +0200 | [diff] [blame] | 306 | */ |
Willy Tarreau | c49ba52 | 2019-12-11 08:12:23 +0100 | [diff] [blame] | 307 | void wake_expired_tasks() |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 308 | { |
Willy Tarreau | 1a9c922 | 2021-10-01 11:30:33 +0200 | [diff] [blame] | 309 | struct thread_ctx * const tt = th_ctx; // thread's tasks |
Willy Tarreau | 3cfaa8d | 2020-10-16 09:26:22 +0200 | [diff] [blame] | 310 | int max_processed = global.tune.runqueue_depth; |
Willy Tarreau | 96bcfd7 | 2007-04-29 10:41:56 +0200 | [diff] [blame] | 311 | struct task *task; |
Willy Tarreau | 9789f7b | 2008-06-24 08:17:16 +0200 | [diff] [blame] | 312 | struct eb32_node *eb; |
Willy Tarreau | af613e8 | 2020-06-05 08:40:51 +0200 | [diff] [blame] | 313 | __decl_thread(int key); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 314 | |
Willy Tarreau | f5aef02 | 2022-06-14 15:04:34 +0200 | [diff] [blame] | 315 | while (1) { |
| 316 | if (max_processed-- <= 0) |
| 317 | goto leave; |
| 318 | |
Willy Tarreau | 4c1e1ad | 2019-09-24 07:19:08 +0200 | [diff] [blame] | 319 | eb = eb32_lookup_ge(&tt->timers, now_ms - TIMER_LOOK_BACK); |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 320 | if (!eb) { |
| 321 | /* we might have reached the end of the tree, typically because |
| 322 | * <now_ms> is in the first half and we're first scanning the last |
| 323 | * half. Let's loop back to the beginning of the tree now. |
| 324 | */ |
Willy Tarreau | 4c1e1ad | 2019-09-24 07:19:08 +0200 | [diff] [blame] | 325 | eb = eb32_first(&tt->timers); |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 326 | if (likely(!eb)) |
| 327 | break; |
| 328 | } |
| 329 | |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 330 | /* It is possible that this task was left at an earlier place in the |
| 331 | * tree because a recent call to task_queue() has not moved it. This |
| 332 | * happens when the new expiration date is later than the old one. |
| 333 | * Since it is very unlikely that we reach a timeout anyway, it's a |
| 334 | * lot cheaper to proceed like this because we almost never update |
| 335 | * the tree. We may also find disabled expiration dates there. Since |
| 336 | * we have detached the task from the tree, we simply call task_queue |
| 337 | * to take care of this. Note that we might occasionally requeue it at |
| 338 | * the same place, before <eb>, so we have to check if this happens, |
| 339 | * and adjust <eb>, otherwise we may skip it which is not what we want. |
| 340 | * We may also not requeue the task (and not point eb at it) if its |
Willy Tarreau | 77015ab | 2020-06-19 11:50:27 +0200 | [diff] [blame] | 341 | * expiration time is not set. We also make sure we leave the real |
| 342 | * expiration date for the next task in the queue so that when calling |
| 343 | * next_timer_expiry() we're guaranteed to see the next real date and |
| 344 | * not the next apparent date. This is in order to avoid useless |
| 345 | * wakeups. |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 346 | */ |
Willy Tarreau | 77015ab | 2020-06-19 11:50:27 +0200 | [diff] [blame] | 347 | |
| 348 | task = eb32_entry(eb, struct task, wq); |
| 349 | if (tick_is_expired(task->expire, now_ms)) { |
| 350 | /* expired task, wake it up */ |
| 351 | __task_unlink_wq(task); |
| 352 | task_wakeup(task, TASK_WOKEN_TIMER); |
| 353 | } |
| 354 | else if (task->expire != eb->key) { |
| 355 | /* task is not expired but its key doesn't match so let's |
| 356 | * update it and skip to next apparently expired task. |
| 357 | */ |
| 358 | __task_unlink_wq(task); |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 359 | if (tick_isset(task->expire)) |
Willy Tarreau | 4c1e1ad | 2019-09-24 07:19:08 +0200 | [diff] [blame] | 360 | __task_queue(task, &tt->timers); |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 361 | } |
Willy Tarreau | 77015ab | 2020-06-19 11:50:27 +0200 | [diff] [blame] | 362 | else { |
Willy Tarreau | 7a96999 | 2021-09-30 16:38:09 +0200 | [diff] [blame] | 363 | /* task not expired and correctly placed. It may not be eternal. */ |
| 364 | BUG_ON(task->expire == TICK_ETERNITY); |
Willy Tarreau | 77015ab | 2020-06-19 11:50:27 +0200 | [diff] [blame] | 365 | break; |
| 366 | } |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 367 | } |
| 368 | |
| 369 | #ifdef USE_THREAD |
Willy Tarreau | 1e928c0 | 2019-05-28 18:57:25 +0200 | [diff] [blame] | 370 | if (eb_is_empty(&timers)) |
| 371 | goto leave; |
| 372 | |
| 373 | HA_RWLOCK_RDLOCK(TASK_WQ_LOCK, &wq_lock); |
| 374 | eb = eb32_lookup_ge(&timers, now_ms - TIMER_LOOK_BACK); |
| 375 | if (!eb) { |
| 376 | eb = eb32_first(&timers); |
| 377 | if (likely(!eb)) { |
| 378 | HA_RWLOCK_RDUNLOCK(TASK_WQ_LOCK, &wq_lock); |
| 379 | goto leave; |
| 380 | } |
| 381 | } |
| 382 | key = eb->key; |
Willy Tarreau | 1e928c0 | 2019-05-28 18:57:25 +0200 | [diff] [blame] | 383 | |
Willy Tarreau | d48ed66 | 2020-10-16 09:31:41 +0200 | [diff] [blame] | 384 | if (tick_is_lt(now_ms, key)) { |
| 385 | HA_RWLOCK_RDUNLOCK(TASK_WQ_LOCK, &wq_lock); |
Willy Tarreau | 1e928c0 | 2019-05-28 18:57:25 +0200 | [diff] [blame] | 386 | goto leave; |
Willy Tarreau | d48ed66 | 2020-10-16 09:31:41 +0200 | [diff] [blame] | 387 | } |
Willy Tarreau | 1e928c0 | 2019-05-28 18:57:25 +0200 | [diff] [blame] | 388 | |
| 389 | /* There's really something of interest here, let's visit the queue */ |
| 390 | |
Willy Tarreau | d48ed66 | 2020-10-16 09:31:41 +0200 | [diff] [blame] | 391 | if (HA_RWLOCK_TRYRDTOSK(TASK_WQ_LOCK, &wq_lock)) { |
| 392 | /* if we failed to grab the lock it means another thread is |
| 393 | * already doing the same here, so let it do the job. |
| 394 | */ |
| 395 | HA_RWLOCK_RDUNLOCK(TASK_WQ_LOCK, &wq_lock); |
| 396 | goto leave; |
| 397 | } |
| 398 | |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 399 | while (1) { |
Emeric Brun | c60def8 | 2017-09-27 14:59:38 +0200 | [diff] [blame] | 400 | lookup_next: |
Willy Tarreau | 3cfaa8d | 2020-10-16 09:26:22 +0200 | [diff] [blame] | 401 | if (max_processed-- <= 0) |
| 402 | break; |
Emeric Brun | 0194897 | 2017-03-30 15:37:25 +0200 | [diff] [blame] | 403 | eb = eb32_lookup_ge(&timers, now_ms - TIMER_LOOK_BACK); |
Emeric Brun | c60def8 | 2017-09-27 14:59:38 +0200 | [diff] [blame] | 404 | if (!eb) { |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 405 | /* we might have reached the end of the tree, typically because |
| 406 | * <now_ms> is in the first half and we're first scanning the last |
| 407 | * half. Let's loop back to the beginning of the tree now. |
| 408 | */ |
| 409 | eb = eb32_first(&timers); |
Willy Tarreau | b992ba1 | 2017-11-05 19:09:27 +0100 | [diff] [blame] | 410 | if (likely(!eb)) |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 411 | break; |
| 412 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 413 | |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 414 | task = eb32_entry(eb, struct task, wq); |
Willy Tarreau | 6c8babf | 2022-02-14 10:18:51 +0100 | [diff] [blame] | 415 | |
| 416 | /* Check for any competing run of the task (quite rare but may |
| 417 | * involve a dangerous concurrent access on task->expire). In |
| 418 | * order to protect against this, we'll take an exclusive access |
| 419 | * on TASK_RUNNING before checking/touching task->expire. If the |
| 420 | * task is already RUNNING on another thread, it will deal by |
| 421 | * itself with the requeuing so we must not do anything and |
| 422 | * simply quit the loop for now, because we cannot wait with the |
| 423 | * WQ lock held as this would prevent the running thread from |
| 424 | * requeuing the task. One annoying effect of holding RUNNING |
| 425 | * here is that a concurrent task_wakeup() will refrain from |
| 426 | * waking it up. This forces us to check for a wakeup after |
| 427 | * releasing the flag. |
| 428 | */ |
| 429 | if (HA_ATOMIC_FETCH_OR(&task->state, TASK_RUNNING) & TASK_RUNNING) |
| 430 | break; |
| 431 | |
Willy Tarreau | 77015ab | 2020-06-19 11:50:27 +0200 | [diff] [blame] | 432 | if (tick_is_expired(task->expire, now_ms)) { |
| 433 | /* expired task, wake it up */ |
Willy Tarreau | d48ed66 | 2020-10-16 09:31:41 +0200 | [diff] [blame] | 434 | HA_RWLOCK_SKTOWR(TASK_WQ_LOCK, &wq_lock); |
Willy Tarreau | 77015ab | 2020-06-19 11:50:27 +0200 | [diff] [blame] | 435 | __task_unlink_wq(task); |
Willy Tarreau | d48ed66 | 2020-10-16 09:31:41 +0200 | [diff] [blame] | 436 | HA_RWLOCK_WRTOSK(TASK_WQ_LOCK, &wq_lock); |
Willy Tarreau | 6c8babf | 2022-02-14 10:18:51 +0100 | [diff] [blame] | 437 | task_drop_running(task, TASK_WOKEN_TIMER); |
Willy Tarreau | 77015ab | 2020-06-19 11:50:27 +0200 | [diff] [blame] | 438 | } |
| 439 | else if (task->expire != eb->key) { |
| 440 | /* task is not expired but its key doesn't match so let's |
| 441 | * update it and skip to next apparently expired task. |
| 442 | */ |
Willy Tarreau | d48ed66 | 2020-10-16 09:31:41 +0200 | [diff] [blame] | 443 | HA_RWLOCK_SKTOWR(TASK_WQ_LOCK, &wq_lock); |
Willy Tarreau | 77015ab | 2020-06-19 11:50:27 +0200 | [diff] [blame] | 444 | __task_unlink_wq(task); |
Willy Tarreau | b992ba1 | 2017-11-05 19:09:27 +0100 | [diff] [blame] | 445 | if (tick_isset(task->expire)) |
Willy Tarreau | 783afbe | 2020-07-22 14:12:45 +0200 | [diff] [blame] | 446 | __task_queue(task, &timers); |
Willy Tarreau | d48ed66 | 2020-10-16 09:31:41 +0200 | [diff] [blame] | 447 | HA_RWLOCK_WRTOSK(TASK_WQ_LOCK, &wq_lock); |
Willy Tarreau | 6c8babf | 2022-02-14 10:18:51 +0100 | [diff] [blame] | 448 | task_drop_running(task, 0); |
Emeric Brun | c60def8 | 2017-09-27 14:59:38 +0200 | [diff] [blame] | 449 | goto lookup_next; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 450 | } |
Willy Tarreau | 77015ab | 2020-06-19 11:50:27 +0200 | [diff] [blame] | 451 | else { |
Willy Tarreau | 7a96999 | 2021-09-30 16:38:09 +0200 | [diff] [blame] | 452 | /* task not expired and correctly placed. It may not be eternal. */ |
| 453 | BUG_ON(task->expire == TICK_ETERNITY); |
Willy Tarreau | 6c8babf | 2022-02-14 10:18:51 +0100 | [diff] [blame] | 454 | task_drop_running(task, 0); |
Willy Tarreau | 77015ab | 2020-06-19 11:50:27 +0200 | [diff] [blame] | 455 | break; |
| 456 | } |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 457 | } |
Willy Tarreau | 9789f7b | 2008-06-24 08:17:16 +0200 | [diff] [blame] | 458 | |
Willy Tarreau | d48ed66 | 2020-10-16 09:31:41 +0200 | [diff] [blame] | 459 | HA_RWLOCK_SKUNLOCK(TASK_WQ_LOCK, &wq_lock); |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 460 | #endif |
Willy Tarreau | 1e928c0 | 2019-05-28 18:57:25 +0200 | [diff] [blame] | 461 | leave: |
Willy Tarreau | c49ba52 | 2019-12-11 08:12:23 +0100 | [diff] [blame] | 462 | return; |
| 463 | } |
| 464 | |
| 465 | /* Checks the next timer for the current thread by looking into its own timer |
| 466 | * list and the global one. It may return TICK_ETERNITY if no timer is present. |
Ilya Shipitsin | 856aabc | 2020-04-16 23:51:34 +0500 | [diff] [blame] | 467 | * Note that the next timer might very well be slightly in the past. |
Willy Tarreau | c49ba52 | 2019-12-11 08:12:23 +0100 | [diff] [blame] | 468 | */ |
| 469 | int next_timer_expiry() |
| 470 | { |
Willy Tarreau | 1a9c922 | 2021-10-01 11:30:33 +0200 | [diff] [blame] | 471 | struct thread_ctx * const tt = th_ctx; // thread's tasks |
Willy Tarreau | c49ba52 | 2019-12-11 08:12:23 +0100 | [diff] [blame] | 472 | struct eb32_node *eb; |
| 473 | int ret = TICK_ETERNITY; |
Willy Tarreau | 6ce0232 | 2020-08-21 05:48:34 +0200 | [diff] [blame] | 474 | __decl_thread(int key = TICK_ETERNITY); |
Willy Tarreau | c49ba52 | 2019-12-11 08:12:23 +0100 | [diff] [blame] | 475 | |
| 476 | /* first check in the thread-local timers */ |
| 477 | eb = eb32_lookup_ge(&tt->timers, now_ms - TIMER_LOOK_BACK); |
| 478 | if (!eb) { |
| 479 | /* we might have reached the end of the tree, typically because |
| 480 | * <now_ms> is in the first half and we're first scanning the last |
| 481 | * half. Let's loop back to the beginning of the tree now. |
| 482 | */ |
| 483 | eb = eb32_first(&tt->timers); |
| 484 | } |
| 485 | |
| 486 | if (eb) |
| 487 | ret = eb->key; |
| 488 | |
| 489 | #ifdef USE_THREAD |
| 490 | if (!eb_is_empty(&timers)) { |
| 491 | HA_RWLOCK_RDLOCK(TASK_WQ_LOCK, &wq_lock); |
| 492 | eb = eb32_lookup_ge(&timers, now_ms - TIMER_LOOK_BACK); |
| 493 | if (!eb) |
| 494 | eb = eb32_first(&timers); |
| 495 | if (eb) |
| 496 | key = eb->key; |
| 497 | HA_RWLOCK_RDUNLOCK(TASK_WQ_LOCK, &wq_lock); |
| 498 | if (eb) |
| 499 | ret = tick_first(ret, key); |
| 500 | } |
| 501 | #endif |
Willy Tarreau | b992ba1 | 2017-11-05 19:09:27 +0100 | [diff] [blame] | 502 | return ret; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 503 | } |
| 504 | |
Willy Tarreau | 1a9c922 | 2021-10-01 11:30:33 +0200 | [diff] [blame] | 505 | /* Walks over tasklet lists th_ctx->tasklets[0..TL_CLASSES-1] and run at most |
Willy Tarreau | 59153fe | 2020-06-24 10:17:29 +0200 | [diff] [blame] | 506 | * budget[TL_*] of them. Returns the number of entries effectively processed |
| 507 | * (tasks and tasklets merged). The count of tasks in the list for the current |
| 508 | * thread is adjusted. |
Willy Tarreau | 4ffa0b5 | 2020-01-30 18:13:13 +0100 | [diff] [blame] | 509 | */ |
Willy Tarreau | 59153fe | 2020-06-24 10:17:29 +0200 | [diff] [blame] | 510 | unsigned int run_tasks_from_lists(unsigned int budgets[]) |
Willy Tarreau | 4ffa0b5 | 2020-01-30 18:13:13 +0100 | [diff] [blame] | 511 | { |
Willy Tarreau | 144f84a | 2021-03-02 16:09:26 +0100 | [diff] [blame] | 512 | struct task *(*process)(struct task *t, void *ctx, unsigned int state); |
Willy Tarreau | 1a9c922 | 2021-10-01 11:30:33 +0200 | [diff] [blame] | 513 | struct list *tl_queues = th_ctx->tasklets; |
Willy Tarreau | 4ffa0b5 | 2020-01-30 18:13:13 +0100 | [diff] [blame] | 514 | struct task *t; |
Willy Tarreau | e7723bd | 2020-06-24 11:11:02 +0200 | [diff] [blame] | 515 | uint8_t budget_mask = (1 << TL_CLASSES) - 1; |
Willy Tarreau | 4e2282f | 2021-01-29 00:07:40 +0100 | [diff] [blame] | 516 | struct sched_activity *profile_entry = NULL; |
Willy Tarreau | 59153fe | 2020-06-24 10:17:29 +0200 | [diff] [blame] | 517 | unsigned int done = 0; |
| 518 | unsigned int queue; |
Willy Tarreau | 144f84a | 2021-03-02 16:09:26 +0100 | [diff] [blame] | 519 | unsigned int state; |
Willy Tarreau | 4ffa0b5 | 2020-01-30 18:13:13 +0100 | [diff] [blame] | 520 | void *ctx; |
Willy Tarreau | 59153fe | 2020-06-24 10:17:29 +0200 | [diff] [blame] | 521 | |
| 522 | for (queue = 0; queue < TL_CLASSES;) { |
Willy Tarreau | 1a9c922 | 2021-10-01 11:30:33 +0200 | [diff] [blame] | 523 | th_ctx->current_queue = queue; |
Willy Tarreau | 4ffa0b5 | 2020-01-30 18:13:13 +0100 | [diff] [blame] | 524 | |
Willy Tarreau | e7723bd | 2020-06-24 11:11:02 +0200 | [diff] [blame] | 525 | /* global.tune.sched.low-latency is set */ |
| 526 | if (global.tune.options & GTUNE_SCHED_LOW_LATENCY) { |
Willy Tarreau | 1a9c922 | 2021-10-01 11:30:33 +0200 | [diff] [blame] | 527 | if (unlikely(th_ctx->tl_class_mask & budget_mask & ((1 << queue) - 1))) { |
Willy Tarreau | e7723bd | 2020-06-24 11:11:02 +0200 | [diff] [blame] | 528 | /* a lower queue index has tasks again and still has a |
| 529 | * budget to run them. Let's switch to it now. |
| 530 | */ |
Willy Tarreau | 1a9c922 | 2021-10-01 11:30:33 +0200 | [diff] [blame] | 531 | queue = (th_ctx->tl_class_mask & 1) ? 0 : |
| 532 | (th_ctx->tl_class_mask & 2) ? 1 : 2; |
Willy Tarreau | e7723bd | 2020-06-24 11:11:02 +0200 | [diff] [blame] | 533 | continue; |
| 534 | } |
| 535 | |
| 536 | if (unlikely(queue > TL_URGENT && |
| 537 | budget_mask & (1 << TL_URGENT) && |
Willy Tarreau | 1a9c922 | 2021-10-01 11:30:33 +0200 | [diff] [blame] | 538 | !MT_LIST_ISEMPTY(&th_ctx->shared_tasklet_list))) { |
Willy Tarreau | e7723bd | 2020-06-24 11:11:02 +0200 | [diff] [blame] | 539 | /* an urgent tasklet arrived from another thread */ |
| 540 | break; |
| 541 | } |
| 542 | |
| 543 | if (unlikely(queue > TL_NORMAL && |
| 544 | budget_mask & (1 << TL_NORMAL) && |
Willy Tarreau | c958c70 | 2022-06-16 15:59:36 +0200 | [diff] [blame] | 545 | (!eb_is_empty(&th_ctx->rqueue) || !eb_is_empty(&th_ctx->rqueue_shared)))) { |
Willy Tarreau | e7723bd | 2020-06-24 11:11:02 +0200 | [diff] [blame] | 546 | /* a task was woken up by a bulk tasklet or another thread */ |
| 547 | break; |
| 548 | } |
| 549 | } |
| 550 | |
Willy Tarreau | ba48d5c | 2020-06-24 09:54:24 +0200 | [diff] [blame] | 551 | if (LIST_ISEMPTY(&tl_queues[queue])) { |
Willy Tarreau | 1a9c922 | 2021-10-01 11:30:33 +0200 | [diff] [blame] | 552 | th_ctx->tl_class_mask &= ~(1 << queue); |
Willy Tarreau | 59153fe | 2020-06-24 10:17:29 +0200 | [diff] [blame] | 553 | queue++; |
| 554 | continue; |
Willy Tarreau | ba48d5c | 2020-06-24 09:54:24 +0200 | [diff] [blame] | 555 | } |
| 556 | |
Willy Tarreau | 59153fe | 2020-06-24 10:17:29 +0200 | [diff] [blame] | 557 | if (!budgets[queue]) { |
Willy Tarreau | e7723bd | 2020-06-24 11:11:02 +0200 | [diff] [blame] | 558 | budget_mask &= ~(1 << queue); |
Willy Tarreau | 59153fe | 2020-06-24 10:17:29 +0200 | [diff] [blame] | 559 | queue++; |
| 560 | continue; |
| 561 | } |
Willy Tarreau | ba48d5c | 2020-06-24 09:54:24 +0200 | [diff] [blame] | 562 | |
Willy Tarreau | 59153fe | 2020-06-24 10:17:29 +0200 | [diff] [blame] | 563 | budgets[queue]--; |
Willy Tarreau | 4ffa0b5 | 2020-01-30 18:13:13 +0100 | [diff] [blame] | 564 | activity[tid].ctxsw++; |
Willy Tarreau | 3193eb9 | 2021-10-21 16:17:29 +0200 | [diff] [blame] | 565 | |
| 566 | t = (struct task *)LIST_ELEM(tl_queues[queue].n, struct tasklet *, list); |
Willy Tarreau | 4ffa0b5 | 2020-01-30 18:13:13 +0100 | [diff] [blame] | 567 | ctx = t->context; |
| 568 | process = t->process; |
| 569 | t->calls++; |
Willy Tarreau | 1a9c922 | 2021-10-01 11:30:33 +0200 | [diff] [blame] | 570 | th_ctx->current = t; |
Willy Tarreau | 3193eb9 | 2021-10-21 16:17:29 +0200 | [diff] [blame] | 571 | th_ctx->flags &= ~TH_FL_STUCK; // this thread is still running |
Willy Tarreau | 4ffa0b5 | 2020-01-30 18:13:13 +0100 | [diff] [blame] | 572 | |
Willy Tarreau | 1a9c922 | 2021-10-01 11:30:33 +0200 | [diff] [blame] | 573 | _HA_ATOMIC_DEC(&th_ctx->rq_total); |
Willy Tarreau | 2da4c31 | 2020-11-30 14:52:11 +0100 | [diff] [blame] | 574 | |
Willy Tarreau | 3193eb9 | 2021-10-21 16:17:29 +0200 | [diff] [blame] | 575 | if (t->state & TASK_F_TASKLET) { |
Willy Tarreau | 2a54ffb | 2021-02-25 09:32:58 +0100 | [diff] [blame] | 576 | uint64_t before = 0; |
| 577 | |
Willy Tarreau | 4d6c594 | 2020-11-30 14:58:53 +0100 | [diff] [blame] | 578 | LIST_DEL_INIT(&((struct tasklet *)t)->list); |
| 579 | __ha_barrier_store(); |
Willy Tarreau | 4e2282f | 2021-01-29 00:07:40 +0100 | [diff] [blame] | 580 | |
Willy Tarreau | 680ed5f | 2022-06-13 15:59:39 +0200 | [diff] [blame] | 581 | if (unlikely(th_ctx->flags & TH_FL_TASK_PROFILING)) { |
Willy Tarreau | 4e2282f | 2021-01-29 00:07:40 +0100 | [diff] [blame] | 582 | profile_entry = sched_activity_entry(sched_activity, t->process); |
| 583 | before = now_mono_time(); |
Willy Tarreau | b2285de | 2021-02-25 08:39:07 +0100 | [diff] [blame] | 584 | #ifdef DEBUG_TASK |
Willy Tarreau | 2a54ffb | 2021-02-25 09:32:58 +0100 | [diff] [blame] | 585 | if (((struct tasklet *)t)->call_date) { |
| 586 | HA_ATOMIC_ADD(&profile_entry->lat_time, before - ((struct tasklet *)t)->call_date); |
| 587 | ((struct tasklet *)t)->call_date = 0; |
| 588 | } |
Willy Tarreau | b2285de | 2021-02-25 08:39:07 +0100 | [diff] [blame] | 589 | #endif |
Willy Tarreau | 2a54ffb | 2021-02-25 09:32:58 +0100 | [diff] [blame] | 590 | } |
| 591 | |
Willy Tarreau | 3193eb9 | 2021-10-21 16:17:29 +0200 | [diff] [blame] | 592 | state = _HA_ATOMIC_FETCH_AND(&t->state, TASK_PERSISTENT); |
Willy Tarreau | 2a54ffb | 2021-02-25 09:32:58 +0100 | [diff] [blame] | 593 | __ha_barrier_atomic_store(); |
| 594 | |
Amaury Denoyelle | 7b36833 | 2021-07-28 16:12:57 +0200 | [diff] [blame] | 595 | if (likely(!(state & TASK_KILLED))) { |
| 596 | process(t, ctx, state); |
| 597 | } |
| 598 | else { |
| 599 | done++; |
Willy Tarreau | 1a9c922 | 2021-10-01 11:30:33 +0200 | [diff] [blame] | 600 | th_ctx->current = NULL; |
Amaury Denoyelle | 7b36833 | 2021-07-28 16:12:57 +0200 | [diff] [blame] | 601 | pool_free(pool_head_tasklet, t); |
| 602 | __ha_barrier_store(); |
| 603 | continue; |
| 604 | } |
Willy Tarreau | 2a54ffb | 2021-02-25 09:32:58 +0100 | [diff] [blame] | 605 | |
Willy Tarreau | 680ed5f | 2022-06-13 15:59:39 +0200 | [diff] [blame] | 606 | if (unlikely(th_ctx->flags & TH_FL_TASK_PROFILING)) { |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 607 | HA_ATOMIC_INC(&profile_entry->calls); |
Willy Tarreau | 4e2282f | 2021-01-29 00:07:40 +0100 | [diff] [blame] | 608 | HA_ATOMIC_ADD(&profile_entry->cpu_time, now_mono_time() - before); |
Willy Tarreau | 4e2282f | 2021-01-29 00:07:40 +0100 | [diff] [blame] | 609 | } |
Willy Tarreau | 2a54ffb | 2021-02-25 09:32:58 +0100 | [diff] [blame] | 610 | |
Willy Tarreau | 4ffa0b5 | 2020-01-30 18:13:13 +0100 | [diff] [blame] | 611 | done++; |
Willy Tarreau | 1a9c922 | 2021-10-01 11:30:33 +0200 | [diff] [blame] | 612 | th_ctx->current = NULL; |
Willy Tarreau | d23d413 | 2020-01-31 10:39:03 +0100 | [diff] [blame] | 613 | __ha_barrier_store(); |
Willy Tarreau | 4ffa0b5 | 2020-01-30 18:13:13 +0100 | [diff] [blame] | 614 | continue; |
| 615 | } |
| 616 | |
Willy Tarreau | 4d6c594 | 2020-11-30 14:58:53 +0100 | [diff] [blame] | 617 | LIST_DEL_INIT(&((struct tasklet *)t)->list); |
| 618 | __ha_barrier_store(); |
Willy Tarreau | 3193eb9 | 2021-10-21 16:17:29 +0200 | [diff] [blame] | 619 | |
Willy Tarreau | 6c8babf | 2022-02-14 10:18:51 +0100 | [diff] [blame] | 620 | /* We must be the exclusive owner of the TASK_RUNNING bit, and |
| 621 | * have to be careful that the task is not being manipulated on |
| 622 | * another thread finding it expired in wake_expired_tasks(). |
| 623 | * The TASK_RUNNING bit will be set during these operations, |
| 624 | * they are extremely rare and do not last long so the best to |
| 625 | * do here is to wait. |
| 626 | */ |
| 627 | state = _HA_ATOMIC_LOAD(&t->state); |
| 628 | do { |
| 629 | while (unlikely(state & TASK_RUNNING)) { |
| 630 | __ha_cpu_relax(); |
| 631 | state = _HA_ATOMIC_LOAD(&t->state); |
| 632 | } |
| 633 | } while (!_HA_ATOMIC_CAS(&t->state, &state, (state & TASK_PERSISTENT) | TASK_RUNNING)); |
Willy Tarreau | 3193eb9 | 2021-10-21 16:17:29 +0200 | [diff] [blame] | 634 | |
Willy Tarreau | 952c264 | 2020-01-31 16:39:30 +0100 | [diff] [blame] | 635 | __ha_barrier_atomic_store(); |
Willy Tarreau | 952c264 | 2020-01-31 16:39:30 +0100 | [diff] [blame] | 636 | |
Willy Tarreau | 4ffa0b5 | 2020-01-30 18:13:13 +0100 | [diff] [blame] | 637 | /* OK then this is a regular task */ |
| 638 | |
Willy Tarreau | 1a9c922 | 2021-10-01 11:30:33 +0200 | [diff] [blame] | 639 | _HA_ATOMIC_DEC(&ha_thread_ctx[tid].tasks_in_list); |
Willy Tarreau | 4ffa0b5 | 2020-01-30 18:13:13 +0100 | [diff] [blame] | 640 | if (unlikely(t->call_date)) { |
| 641 | uint64_t now_ns = now_mono_time(); |
Willy Tarreau | 4e2282f | 2021-01-29 00:07:40 +0100 | [diff] [blame] | 642 | uint64_t lat = now_ns - t->call_date; |
Willy Tarreau | 4ffa0b5 | 2020-01-30 18:13:13 +0100 | [diff] [blame] | 643 | |
Willy Tarreau | 4e2282f | 2021-01-29 00:07:40 +0100 | [diff] [blame] | 644 | t->lat_time += lat; |
Willy Tarreau | 4ffa0b5 | 2020-01-30 18:13:13 +0100 | [diff] [blame] | 645 | t->call_date = now_ns; |
Willy Tarreau | 4e2282f | 2021-01-29 00:07:40 +0100 | [diff] [blame] | 646 | profile_entry = sched_activity_entry(sched_activity, t->process); |
| 647 | HA_ATOMIC_ADD(&profile_entry->lat_time, lat); |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 648 | HA_ATOMIC_INC(&profile_entry->calls); |
Willy Tarreau | 4ffa0b5 | 2020-01-30 18:13:13 +0100 | [diff] [blame] | 649 | } |
| 650 | |
Willy Tarreau | 4ffa0b5 | 2020-01-30 18:13:13 +0100 | [diff] [blame] | 651 | __ha_barrier_store(); |
Willy Tarreau | 8a6049c | 2020-06-30 11:48:48 +0200 | [diff] [blame] | 652 | |
| 653 | /* Note for below: if TASK_KILLED arrived before we've read the state, we |
| 654 | * directly free the task. Otherwise it will be seen after processing and |
| 655 | * it's freed on the exit path. |
| 656 | */ |
| 657 | if (likely(!(state & TASK_KILLED) && process == process_stream)) |
Willy Tarreau | 4ffa0b5 | 2020-01-30 18:13:13 +0100 | [diff] [blame] | 658 | t = process_stream(t, ctx, state); |
Willy Tarreau | 8a6049c | 2020-06-30 11:48:48 +0200 | [diff] [blame] | 659 | else if (!(state & TASK_KILLED) && process != NULL) |
Willy Tarreau | 4ffa0b5 | 2020-01-30 18:13:13 +0100 | [diff] [blame] | 660 | t = process(t, ctx, state); |
| 661 | else { |
Willy Tarreau | 273aea4 | 2020-07-17 14:37:51 +0200 | [diff] [blame] | 662 | task_unlink_wq(t); |
Willy Tarreau | 4ffa0b5 | 2020-01-30 18:13:13 +0100 | [diff] [blame] | 663 | __task_free(t); |
Willy Tarreau | 1a9c922 | 2021-10-01 11:30:33 +0200 | [diff] [blame] | 664 | th_ctx->current = NULL; |
Willy Tarreau | 4ffa0b5 | 2020-01-30 18:13:13 +0100 | [diff] [blame] | 665 | __ha_barrier_store(); |
| 666 | /* We don't want max_processed to be decremented if |
| 667 | * we're just freeing a destroyed task, we should only |
| 668 | * do so if we really ran a task. |
| 669 | */ |
| 670 | continue; |
| 671 | } |
Willy Tarreau | 1a9c922 | 2021-10-01 11:30:33 +0200 | [diff] [blame] | 672 | th_ctx->current = NULL; |
Willy Tarreau | 4ffa0b5 | 2020-01-30 18:13:13 +0100 | [diff] [blame] | 673 | __ha_barrier_store(); |
| 674 | /* If there is a pending state we have to wake up the task |
| 675 | * immediately, else we defer it into wait queue |
| 676 | */ |
| 677 | if (t != NULL) { |
| 678 | if (unlikely(t->call_date)) { |
Willy Tarreau | 4e2282f | 2021-01-29 00:07:40 +0100 | [diff] [blame] | 679 | uint64_t cpu = now_mono_time() - t->call_date; |
| 680 | |
| 681 | t->cpu_time += cpu; |
Willy Tarreau | 4ffa0b5 | 2020-01-30 18:13:13 +0100 | [diff] [blame] | 682 | t->call_date = 0; |
Willy Tarreau | 4e2282f | 2021-01-29 00:07:40 +0100 | [diff] [blame] | 683 | HA_ATOMIC_ADD(&profile_entry->cpu_time, cpu); |
Willy Tarreau | 4ffa0b5 | 2020-01-30 18:13:13 +0100 | [diff] [blame] | 684 | } |
| 685 | |
Willy Tarreau | 6c8babf | 2022-02-14 10:18:51 +0100 | [diff] [blame] | 686 | state = _HA_ATOMIC_LOAD(&t->state); |
Willy Tarreau | 8a6049c | 2020-06-30 11:48:48 +0200 | [diff] [blame] | 687 | if (unlikely(state & TASK_KILLED)) { |
Willy Tarreau | 273aea4 | 2020-07-17 14:37:51 +0200 | [diff] [blame] | 688 | task_unlink_wq(t); |
Willy Tarreau | 8a6049c | 2020-06-30 11:48:48 +0200 | [diff] [blame] | 689 | __task_free(t); |
| 690 | } |
Willy Tarreau | 6c8babf | 2022-02-14 10:18:51 +0100 | [diff] [blame] | 691 | else { |
Willy Tarreau | 4ffa0b5 | 2020-01-30 18:13:13 +0100 | [diff] [blame] | 692 | task_queue(t); |
Willy Tarreau | 6c8babf | 2022-02-14 10:18:51 +0100 | [diff] [blame] | 693 | task_drop_running(t, 0); |
| 694 | } |
Willy Tarreau | 4ffa0b5 | 2020-01-30 18:13:13 +0100 | [diff] [blame] | 695 | } |
| 696 | done++; |
| 697 | } |
Willy Tarreau | 1a9c922 | 2021-10-01 11:30:33 +0200 | [diff] [blame] | 698 | th_ctx->current_queue = -1; |
Willy Tarreau | 116ef22 | 2020-06-23 16:35:38 +0200 | [diff] [blame] | 699 | |
Willy Tarreau | 4ffa0b5 | 2020-01-30 18:13:13 +0100 | [diff] [blame] | 700 | return done; |
| 701 | } |
| 702 | |
Willy Tarreau | 58b458d | 2008-06-29 22:40:23 +0200 | [diff] [blame] | 703 | /* The run queue is chronologically sorted in a tree. An insertion counter is |
| 704 | * used to assign a position to each task. This counter may be combined with |
| 705 | * other variables (eg: nice value) to set the final position in the tree. The |
| 706 | * counter may wrap without a problem, of course. We then limit the number of |
Christopher Faulet | 8a48f67 | 2017-11-14 10:38:36 +0100 | [diff] [blame] | 707 | * tasks processed to 200 in any case, so that general latency remains low and |
Willy Tarreau | cde7902 | 2019-04-12 18:03:41 +0200 | [diff] [blame] | 708 | * so that task positions have a chance to be considered. The function scans |
| 709 | * both the global and local run queues and picks the most urgent task between |
| 710 | * the two. We need to grab the global runqueue lock to touch it so it's taken |
| 711 | * on the very first access to the global run queue and is released as soon as |
| 712 | * it reaches the end. |
Willy Tarreau | 58b458d | 2008-06-29 22:40:23 +0200 | [diff] [blame] | 713 | * |
| 714 | * The function adjusts <next> if a new event is closer. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 715 | */ |
Thierry FOURNIER | 9cf7c4b | 2014-12-15 13:26:01 +0100 | [diff] [blame] | 716 | void process_runnable_tasks() |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 717 | { |
Willy Tarreau | 1a9c922 | 2021-10-01 11:30:33 +0200 | [diff] [blame] | 718 | struct thread_ctx * const tt = th_ctx; |
Willy Tarreau | 319d136 | 2022-06-16 16:28:01 +0200 | [diff] [blame] | 719 | struct eb32_node *lrq; // next local run queue entry |
| 720 | struct eb32_node *grq; // next global run queue entry |
Willy Tarreau | 964c936 | 2007-01-07 00:38:00 +0100 | [diff] [blame] | 721 | struct task *t; |
Willy Tarreau | 3ef7a19 | 2020-06-24 07:21:08 +0200 | [diff] [blame] | 722 | const unsigned int default_weights[TL_CLASSES] = { |
| 723 | [TL_URGENT] = 64, // ~50% of CPU bandwidth for I/O |
| 724 | [TL_NORMAL] = 48, // ~37% of CPU bandwidth for tasks |
| 725 | [TL_BULK] = 16, // ~13% of CPU bandwidth for self-wakers |
Willy Tarreau | 401135c | 2021-02-26 09:16:22 +0100 | [diff] [blame] | 726 | [TL_HEAVY] = 1, // never more than 1 heavy task at once |
Willy Tarreau | 3ef7a19 | 2020-06-24 07:21:08 +0200 | [diff] [blame] | 727 | }; |
| 728 | unsigned int max[TL_CLASSES]; // max to be run per class |
| 729 | unsigned int max_total; // sum of max above |
Olivier Houchard | 0691046 | 2019-10-11 16:35:01 +0200 | [diff] [blame] | 730 | struct mt_list *tmp_list; |
Willy Tarreau | 3ef7a19 | 2020-06-24 07:21:08 +0200 | [diff] [blame] | 731 | unsigned int queue; |
| 732 | int max_processed; |
Willy Tarreau | e7923c1 | 2021-02-25 07:09:08 +0100 | [diff] [blame] | 733 | int lpicked, gpicked; |
Willy Tarreau | 76390da | 2021-02-26 10:18:11 +0100 | [diff] [blame] | 734 | int heavy_queued = 0; |
Willy Tarreau | c309dbd | 2020-11-30 15:39:00 +0100 | [diff] [blame] | 735 | int budget; |
Christopher Faulet | 3911ee8 | 2017-11-14 10:26:53 +0100 | [diff] [blame] | 736 | |
Willy Tarreau | a0b9953 | 2021-09-30 18:48:37 +0200 | [diff] [blame] | 737 | th_ctx->flags &= ~TH_FL_STUCK; // this thread is still running |
Willy Tarreau | e6a02fa | 2019-05-22 07:06:44 +0200 | [diff] [blame] | 738 | |
Willy Tarreau | 3ef7a19 | 2020-06-24 07:21:08 +0200 | [diff] [blame] | 739 | if (!thread_has_tasks()) { |
| 740 | activity[tid].empty_rq++; |
| 741 | return; |
| 742 | } |
| 743 | |
Willy Tarreau | 5c8be27 | 2020-06-19 12:17:55 +0200 | [diff] [blame] | 744 | max_processed = global.tune.runqueue_depth; |
| 745 | |
| 746 | if (likely(niced_tasks)) |
| 747 | max_processed = (max_processed + 3) / 4; |
| 748 | |
Willy Tarreau | 1a9c922 | 2021-10-01 11:30:33 +0200 | [diff] [blame] | 749 | if (max_processed < th_ctx->rq_total && th_ctx->rq_total <= 2*max_processed) { |
Willy Tarreau | 1691ba3 | 2021-03-10 09:26:24 +0100 | [diff] [blame] | 750 | /* If the run queue exceeds the budget by up to 50%, let's cut it |
| 751 | * into two identical halves to improve latency. |
| 752 | */ |
Willy Tarreau | 1a9c922 | 2021-10-01 11:30:33 +0200 | [diff] [blame] | 753 | max_processed = th_ctx->rq_total / 2; |
Willy Tarreau | 1691ba3 | 2021-03-10 09:26:24 +0100 | [diff] [blame] | 754 | } |
| 755 | |
Willy Tarreau | 5c8be27 | 2020-06-19 12:17:55 +0200 | [diff] [blame] | 756 | not_done_yet: |
Willy Tarreau | 3ef7a19 | 2020-06-24 07:21:08 +0200 | [diff] [blame] | 757 | max[TL_URGENT] = max[TL_NORMAL] = max[TL_BULK] = 0; |
Willy Tarreau | cde7902 | 2019-04-12 18:03:41 +0200 | [diff] [blame] | 758 | |
Willy Tarreau | 3ef7a19 | 2020-06-24 07:21:08 +0200 | [diff] [blame] | 759 | /* urgent tasklets list gets a default weight of ~50% */ |
Willy Tarreau | 49f90bf | 2020-06-24 09:39:48 +0200 | [diff] [blame] | 760 | if ((tt->tl_class_mask & (1 << TL_URGENT)) || |
Willy Tarreau | 3ef7a19 | 2020-06-24 07:21:08 +0200 | [diff] [blame] | 761 | !MT_LIST_ISEMPTY(&tt->shared_tasklet_list)) |
| 762 | max[TL_URGENT] = default_weights[TL_URGENT]; |
Willy Tarreau | a62917b | 2020-01-30 18:37:28 +0100 | [diff] [blame] | 763 | |
Willy Tarreau | 3ef7a19 | 2020-06-24 07:21:08 +0200 | [diff] [blame] | 764 | /* normal tasklets list gets a default weight of ~37% */ |
Willy Tarreau | 49f90bf | 2020-06-24 09:39:48 +0200 | [diff] [blame] | 765 | if ((tt->tl_class_mask & (1 << TL_NORMAL)) || |
Willy Tarreau | c958c70 | 2022-06-16 15:59:36 +0200 | [diff] [blame] | 766 | !eb_is_empty(&th_ctx->rqueue) || !eb_is_empty(&th_ctx->rqueue_shared)) |
Willy Tarreau | 3ef7a19 | 2020-06-24 07:21:08 +0200 | [diff] [blame] | 767 | max[TL_NORMAL] = default_weights[TL_NORMAL]; |
Willy Tarreau | a62917b | 2020-01-30 18:37:28 +0100 | [diff] [blame] | 768 | |
Willy Tarreau | 3ef7a19 | 2020-06-24 07:21:08 +0200 | [diff] [blame] | 769 | /* bulk tasklets list gets a default weight of ~13% */ |
Willy Tarreau | 49f90bf | 2020-06-24 09:39:48 +0200 | [diff] [blame] | 770 | if ((tt->tl_class_mask & (1 << TL_BULK))) |
Willy Tarreau | 3ef7a19 | 2020-06-24 07:21:08 +0200 | [diff] [blame] | 771 | max[TL_BULK] = default_weights[TL_BULK]; |
| 772 | |
Willy Tarreau | 401135c | 2021-02-26 09:16:22 +0100 | [diff] [blame] | 773 | /* heavy tasks are processed only once and never refilled in a |
Willy Tarreau | 76390da | 2021-02-26 10:18:11 +0100 | [diff] [blame] | 774 | * call round. That budget is not lost either as we don't reset |
| 775 | * it unless consumed. |
Willy Tarreau | 401135c | 2021-02-26 09:16:22 +0100 | [diff] [blame] | 776 | */ |
Willy Tarreau | 76390da | 2021-02-26 10:18:11 +0100 | [diff] [blame] | 777 | if (!heavy_queued) { |
| 778 | if ((tt->tl_class_mask & (1 << TL_HEAVY))) |
| 779 | max[TL_HEAVY] = default_weights[TL_HEAVY]; |
| 780 | else |
| 781 | max[TL_HEAVY] = 0; |
| 782 | heavy_queued = 1; |
| 783 | } |
Willy Tarreau | 401135c | 2021-02-26 09:16:22 +0100 | [diff] [blame] | 784 | |
Willy Tarreau | 3ef7a19 | 2020-06-24 07:21:08 +0200 | [diff] [blame] | 785 | /* Now compute a fair share of the weights. Total may slightly exceed |
Willy Tarreau | 1553b66 | 2020-06-30 13:46:21 +0200 | [diff] [blame] | 786 | * 100% due to rounding, this is not a problem. Note that while in |
| 787 | * theory the sum cannot be NULL as we cannot get there without tasklets |
| 788 | * to process, in practice it seldom happens when multiple writers |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 789 | * conflict and rollback on MT_LIST_TRY_APPEND(shared_tasklet_list), causing |
Willy Tarreau | 1553b66 | 2020-06-30 13:46:21 +0200 | [diff] [blame] | 790 | * a first MT_LIST_ISEMPTY() to succeed for thread_has_task() and the |
| 791 | * one above to finally fail. This is extremely rare and not a problem. |
Willy Tarreau | 3ef7a19 | 2020-06-24 07:21:08 +0200 | [diff] [blame] | 792 | */ |
Willy Tarreau | 401135c | 2021-02-26 09:16:22 +0100 | [diff] [blame] | 793 | max_total = max[TL_URGENT] + max[TL_NORMAL] + max[TL_BULK] + max[TL_HEAVY]; |
Willy Tarreau | 1553b66 | 2020-06-30 13:46:21 +0200 | [diff] [blame] | 794 | if (!max_total) |
| 795 | return; |
| 796 | |
Willy Tarreau | 3ef7a19 | 2020-06-24 07:21:08 +0200 | [diff] [blame] | 797 | for (queue = 0; queue < TL_CLASSES; queue++) |
| 798 | max[queue] = ((unsigned)max_processed * max[queue] + max_total - 1) / max_total; |
| 799 | |
Willy Tarreau | 76390da | 2021-02-26 10:18:11 +0100 | [diff] [blame] | 800 | /* The heavy queue must never process more than one task at once |
| 801 | * anyway. |
| 802 | */ |
| 803 | if (max[TL_HEAVY] > 1) |
| 804 | max[TL_HEAVY] = 1; |
| 805 | |
Willy Tarreau | 3ef7a19 | 2020-06-24 07:21:08 +0200 | [diff] [blame] | 806 | lrq = grq = NULL; |
Christopher Faulet | 8a48f67 | 2017-11-14 10:38:36 +0100 | [diff] [blame] | 807 | |
Willy Tarreau | 3ef7a19 | 2020-06-24 07:21:08 +0200 | [diff] [blame] | 808 | /* pick up to max[TL_NORMAL] regular tasks from prio-ordered run queues */ |
| 809 | /* Note: the grq lock is always held when grq is not null */ |
Willy Tarreau | e7923c1 | 2021-02-25 07:09:08 +0100 | [diff] [blame] | 810 | lpicked = gpicked = 0; |
Willy Tarreau | 1f3b141 | 2021-02-24 14:13:40 +0100 | [diff] [blame] | 811 | budget = max[TL_NORMAL] - tt->tasks_in_list; |
Willy Tarreau | e7923c1 | 2021-02-25 07:09:08 +0100 | [diff] [blame] | 812 | while (lpicked + gpicked < budget) { |
Willy Tarreau | c958c70 | 2022-06-16 15:59:36 +0200 | [diff] [blame] | 813 | if (!eb_is_empty(&th_ctx->rqueue_shared) && !grq) { |
Willy Tarreau | 3466e3c | 2019-04-15 18:52:40 +0200 | [diff] [blame] | 814 | #ifdef USE_THREAD |
Willy Tarreau | b17dd6c | 2022-06-16 16:58:17 +0200 | [diff] [blame] | 815 | HA_SPIN_LOCK(TASK_RQ_LOCK, &th_ctx->rqsh_lock); |
Willy Tarreau | 319d136 | 2022-06-16 16:28:01 +0200 | [diff] [blame] | 816 | grq = eb32_lookup_ge(&th_ctx->rqueue_shared, _HA_ATOMIC_LOAD(&tt->rqueue_ticks) - TIMER_LOOK_BACK); |
Willy Tarreau | cde7902 | 2019-04-12 18:03:41 +0200 | [diff] [blame] | 817 | if (unlikely(!grq)) { |
Willy Tarreau | 319d136 | 2022-06-16 16:28:01 +0200 | [diff] [blame] | 818 | grq = eb32_first(&th_ctx->rqueue_shared); |
Willy Tarreau | c958c70 | 2022-06-16 15:59:36 +0200 | [diff] [blame] | 819 | if (!grq) |
Willy Tarreau | b17dd6c | 2022-06-16 16:58:17 +0200 | [diff] [blame] | 820 | HA_SPIN_UNLOCK(TASK_RQ_LOCK, &th_ctx->rqsh_lock); |
Willy Tarreau | f0c531a | 2017-11-05 16:35:59 +0100 | [diff] [blame] | 821 | } |
Willy Tarreau | 3466e3c | 2019-04-15 18:52:40 +0200 | [diff] [blame] | 822 | #endif |
Willy Tarreau | cde7902 | 2019-04-12 18:03:41 +0200 | [diff] [blame] | 823 | } |
Willy Tarreau | f0c531a | 2017-11-05 16:35:59 +0100 | [diff] [blame] | 824 | |
Willy Tarreau | cde7902 | 2019-04-12 18:03:41 +0200 | [diff] [blame] | 825 | /* If a global task is available for this thread, it's in grq |
| 826 | * now and the global RQ is locked. |
| 827 | */ |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 828 | |
Willy Tarreau | cde7902 | 2019-04-12 18:03:41 +0200 | [diff] [blame] | 829 | if (!lrq) { |
Willy Tarreau | 319d136 | 2022-06-16 16:28:01 +0200 | [diff] [blame] | 830 | lrq = eb32_lookup_ge(&tt->rqueue, _HA_ATOMIC_LOAD(&tt->rqueue_ticks) - TIMER_LOOK_BACK); |
Willy Tarreau | cde7902 | 2019-04-12 18:03:41 +0200 | [diff] [blame] | 831 | if (unlikely(!lrq)) |
Willy Tarreau | 319d136 | 2022-06-16 16:28:01 +0200 | [diff] [blame] | 832 | lrq = eb32_first(&tt->rqueue); |
Willy Tarreau | f0c531a | 2017-11-05 16:35:59 +0100 | [diff] [blame] | 833 | } |
Willy Tarreau | f0c531a | 2017-11-05 16:35:59 +0100 | [diff] [blame] | 834 | |
Willy Tarreau | cde7902 | 2019-04-12 18:03:41 +0200 | [diff] [blame] | 835 | if (!lrq && !grq) |
| 836 | break; |
| 837 | |
| 838 | if (likely(!grq || (lrq && (int)(lrq->key - grq->key) <= 0))) { |
Willy Tarreau | 319d136 | 2022-06-16 16:28:01 +0200 | [diff] [blame] | 839 | t = eb32_entry(lrq, struct task, rq); |
| 840 | lrq = eb32_next(lrq); |
| 841 | eb32_delete(&t->rq); |
Willy Tarreau | e7923c1 | 2021-02-25 07:09:08 +0100 | [diff] [blame] | 842 | lpicked++; |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 843 | } |
Willy Tarreau | 3466e3c | 2019-04-15 18:52:40 +0200 | [diff] [blame] | 844 | #ifdef USE_THREAD |
Willy Tarreau | cde7902 | 2019-04-12 18:03:41 +0200 | [diff] [blame] | 845 | else { |
Willy Tarreau | 319d136 | 2022-06-16 16:28:01 +0200 | [diff] [blame] | 846 | t = eb32_entry(grq, struct task, rq); |
| 847 | grq = eb32_next(grq); |
| 848 | eb32_delete(&t->rq); |
Willy Tarreau | 2b363ac | 2021-02-25 07:14:58 +0100 | [diff] [blame] | 849 | |
Willy Tarreau | cde7902 | 2019-04-12 18:03:41 +0200 | [diff] [blame] | 850 | if (unlikely(!grq)) { |
Willy Tarreau | 319d136 | 2022-06-16 16:28:01 +0200 | [diff] [blame] | 851 | grq = eb32_first(&th_ctx->rqueue_shared); |
Willy Tarreau | c958c70 | 2022-06-16 15:59:36 +0200 | [diff] [blame] | 852 | if (!grq) |
Willy Tarreau | b17dd6c | 2022-06-16 16:58:17 +0200 | [diff] [blame] | 853 | HA_SPIN_UNLOCK(TASK_RQ_LOCK, &th_ctx->rqsh_lock); |
Willy Tarreau | cde7902 | 2019-04-12 18:03:41 +0200 | [diff] [blame] | 854 | } |
Willy Tarreau | e7923c1 | 2021-02-25 07:09:08 +0100 | [diff] [blame] | 855 | gpicked++; |
Emeric Brun | 0194897 | 2017-03-30 15:37:25 +0200 | [diff] [blame] | 856 | } |
Willy Tarreau | 3466e3c | 2019-04-15 18:52:40 +0200 | [diff] [blame] | 857 | #endif |
Willy Tarreau | 2b363ac | 2021-02-25 07:14:58 +0100 | [diff] [blame] | 858 | if (t->nice) |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 859 | _HA_ATOMIC_DEC(&niced_tasks); |
Willy Tarreau | cde7902 | 2019-04-12 18:03:41 +0200 | [diff] [blame] | 860 | |
Willy Tarreau | a868c29 | 2020-11-30 15:30:22 +0100 | [diff] [blame] | 861 | /* Add it to the local task list */ |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 862 | LIST_APPEND(&tt->tasklets[TL_NORMAL], &((struct tasklet *)t)->list); |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 863 | } |
Willy Tarreau | cde7902 | 2019-04-12 18:03:41 +0200 | [diff] [blame] | 864 | |
| 865 | /* release the rqueue lock */ |
| 866 | if (grq) { |
Willy Tarreau | b17dd6c | 2022-06-16 16:58:17 +0200 | [diff] [blame] | 867 | HA_SPIN_UNLOCK(TASK_RQ_LOCK, &th_ctx->rqsh_lock); |
Willy Tarreau | cde7902 | 2019-04-12 18:03:41 +0200 | [diff] [blame] | 868 | grq = NULL; |
| 869 | } |
| 870 | |
Willy Tarreau | e7923c1 | 2021-02-25 07:09:08 +0100 | [diff] [blame] | 871 | if (lpicked + gpicked) { |
Willy Tarreau | c309dbd | 2020-11-30 15:39:00 +0100 | [diff] [blame] | 872 | tt->tl_class_mask |= 1 << TL_NORMAL; |
Willy Tarreau | e7923c1 | 2021-02-25 07:09:08 +0100 | [diff] [blame] | 873 | _HA_ATOMIC_ADD(&tt->tasks_in_list, lpicked + gpicked); |
Willy Tarreau | e7923c1 | 2021-02-25 07:09:08 +0100 | [diff] [blame] | 874 | activity[tid].tasksw += lpicked + gpicked; |
Willy Tarreau | c309dbd | 2020-11-30 15:39:00 +0100 | [diff] [blame] | 875 | } |
| 876 | |
Willy Tarreau | 3ef7a19 | 2020-06-24 07:21:08 +0200 | [diff] [blame] | 877 | /* Merge the list of tasklets waken up by other threads to the |
| 878 | * main list. |
| 879 | */ |
| 880 | tmp_list = MT_LIST_BEHEAD(&tt->shared_tasklet_list); |
Willy Tarreau | 49f90bf | 2020-06-24 09:39:48 +0200 | [diff] [blame] | 881 | if (tmp_list) { |
Willy Tarreau | 3ef7a19 | 2020-06-24 07:21:08 +0200 | [diff] [blame] | 882 | LIST_SPLICE_END_DETACHED(&tt->tasklets[TL_URGENT], (struct list *)tmp_list); |
Willy Tarreau | 49f90bf | 2020-06-24 09:39:48 +0200 | [diff] [blame] | 883 | if (!LIST_ISEMPTY(&tt->tasklets[TL_URGENT])) |
| 884 | tt->tl_class_mask |= 1 << TL_URGENT; |
| 885 | } |
Willy Tarreau | cde7902 | 2019-04-12 18:03:41 +0200 | [diff] [blame] | 886 | |
Willy Tarreau | 3ef7a19 | 2020-06-24 07:21:08 +0200 | [diff] [blame] | 887 | /* execute tasklets in each queue */ |
Willy Tarreau | 59153fe | 2020-06-24 10:17:29 +0200 | [diff] [blame] | 888 | max_processed -= run_tasks_from_lists(max); |
Willy Tarreau | a62917b | 2020-01-30 18:37:28 +0100 | [diff] [blame] | 889 | |
Willy Tarreau | 5c8be27 | 2020-06-19 12:17:55 +0200 | [diff] [blame] | 890 | /* some tasks may have woken other ones up */ |
Willy Tarreau | 0c0c85e | 2020-06-23 11:32:35 +0200 | [diff] [blame] | 891 | if (max_processed > 0 && thread_has_tasks()) |
Willy Tarreau | 5c8be27 | 2020-06-19 12:17:55 +0200 | [diff] [blame] | 892 | goto not_done_yet; |
| 893 | |
Willy Tarreau | 49f90bf | 2020-06-24 09:39:48 +0200 | [diff] [blame] | 894 | if (tt->tl_class_mask) |
Willy Tarreau | cde7902 | 2019-04-12 18:03:41 +0200 | [diff] [blame] | 895 | activity[tid].long_rq++; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 896 | } |
| 897 | |
William Lallemand | 27f3fa5 | 2018-12-06 14:05:20 +0100 | [diff] [blame] | 898 | /* |
| 899 | * Delete every tasks before running the master polling loop |
| 900 | */ |
| 901 | void mworker_cleantasks() |
| 902 | { |
| 903 | struct task *t; |
| 904 | int i; |
William Lallemand | b582339 | 2018-12-06 15:14:37 +0100 | [diff] [blame] | 905 | struct eb32_node *tmp_wq = NULL; |
Willy Tarreau | 319d136 | 2022-06-16 16:28:01 +0200 | [diff] [blame] | 906 | struct eb32_node *tmp_rq = NULL; |
William Lallemand | 27f3fa5 | 2018-12-06 14:05:20 +0100 | [diff] [blame] | 907 | |
| 908 | #ifdef USE_THREAD |
| 909 | /* cleanup the global run queue */ |
Willy Tarreau | 319d136 | 2022-06-16 16:28:01 +0200 | [diff] [blame] | 910 | tmp_rq = eb32_first(&th_ctx->rqueue_shared); |
William Lallemand | b582339 | 2018-12-06 15:14:37 +0100 | [diff] [blame] | 911 | while (tmp_rq) { |
Willy Tarreau | 319d136 | 2022-06-16 16:28:01 +0200 | [diff] [blame] | 912 | t = eb32_entry(tmp_rq, struct task, rq); |
| 913 | tmp_rq = eb32_next(tmp_rq); |
Olivier Houchard | 3f795f7 | 2019-04-17 22:51:06 +0200 | [diff] [blame] | 914 | task_destroy(t); |
William Lallemand | 27f3fa5 | 2018-12-06 14:05:20 +0100 | [diff] [blame] | 915 | } |
| 916 | /* cleanup the timers queue */ |
William Lallemand | b582339 | 2018-12-06 15:14:37 +0100 | [diff] [blame] | 917 | tmp_wq = eb32_first(&timers); |
| 918 | while (tmp_wq) { |
| 919 | t = eb32_entry(tmp_wq, struct task, wq); |
| 920 | tmp_wq = eb32_next(tmp_wq); |
Olivier Houchard | 3f795f7 | 2019-04-17 22:51:06 +0200 | [diff] [blame] | 921 | task_destroy(t); |
William Lallemand | 27f3fa5 | 2018-12-06 14:05:20 +0100 | [diff] [blame] | 922 | } |
| 923 | #endif |
| 924 | /* clean the per thread run queue */ |
| 925 | for (i = 0; i < global.nbthread; i++) { |
Willy Tarreau | 319d136 | 2022-06-16 16:28:01 +0200 | [diff] [blame] | 926 | tmp_rq = eb32_first(&ha_thread_ctx[i].rqueue); |
William Lallemand | b582339 | 2018-12-06 15:14:37 +0100 | [diff] [blame] | 927 | while (tmp_rq) { |
Willy Tarreau | 319d136 | 2022-06-16 16:28:01 +0200 | [diff] [blame] | 928 | t = eb32_entry(tmp_rq, struct task, rq); |
| 929 | tmp_rq = eb32_next(tmp_rq); |
Olivier Houchard | 3f795f7 | 2019-04-17 22:51:06 +0200 | [diff] [blame] | 930 | task_destroy(t); |
William Lallemand | 27f3fa5 | 2018-12-06 14:05:20 +0100 | [diff] [blame] | 931 | } |
| 932 | /* cleanup the per thread timers queue */ |
Willy Tarreau | 1a9c922 | 2021-10-01 11:30:33 +0200 | [diff] [blame] | 933 | tmp_wq = eb32_first(&ha_thread_ctx[i].timers); |
William Lallemand | b582339 | 2018-12-06 15:14:37 +0100 | [diff] [blame] | 934 | while (tmp_wq) { |
| 935 | t = eb32_entry(tmp_wq, struct task, wq); |
| 936 | tmp_wq = eb32_next(tmp_wq); |
Olivier Houchard | 3f795f7 | 2019-04-17 22:51:06 +0200 | [diff] [blame] | 937 | task_destroy(t); |
William Lallemand | 27f3fa5 | 2018-12-06 14:05:20 +0100 | [diff] [blame] | 938 | } |
| 939 | } |
| 940 | } |
| 941 | |
Willy Tarreau | b6b3df3 | 2018-11-26 16:31:20 +0100 | [diff] [blame] | 942 | /* perform minimal intializations */ |
| 943 | static void init_task() |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 944 | { |
Willy Tarreau | 401135c | 2021-02-26 09:16:22 +0100 | [diff] [blame] | 945 | int i, q; |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 946 | |
Olivier Houchard | b1ca58b | 2018-06-06 14:22:03 +0200 | [diff] [blame] | 947 | #ifdef USE_THREAD |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 948 | memset(&timers, 0, sizeof(timers)); |
Olivier Houchard | b1ca58b | 2018-06-06 14:22:03 +0200 | [diff] [blame] | 949 | #endif |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 950 | for (i = 0; i < MAX_THREADS; i++) { |
Willy Tarreau | 401135c | 2021-02-26 09:16:22 +0100 | [diff] [blame] | 951 | for (q = 0; q < TL_CLASSES; q++) |
Willy Tarreau | 1a9c922 | 2021-10-01 11:30:33 +0200 | [diff] [blame] | 952 | LIST_INIT(&ha_thread_ctx[i].tasklets[q]); |
| 953 | MT_LIST_INIT(&ha_thread_ctx[i].shared_tasklet_list); |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 954 | } |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 955 | } |
| 956 | |
Willy Tarreau | e7723bd | 2020-06-24 11:11:02 +0200 | [diff] [blame] | 957 | /* config parser for global "tune.sched.low-latency", accepts "on" or "off" */ |
| 958 | static int cfg_parse_tune_sched_low_latency(char **args, int section_type, struct proxy *curpx, |
Willy Tarreau | 0182516 | 2021-03-09 09:53:46 +0100 | [diff] [blame] | 959 | const struct proxy *defpx, const char *file, int line, |
Willy Tarreau | e7723bd | 2020-06-24 11:11:02 +0200 | [diff] [blame] | 960 | char **err) |
| 961 | { |
| 962 | if (too_many_args(1, args, err, NULL)) |
| 963 | return -1; |
| 964 | |
| 965 | if (strcmp(args[1], "on") == 0) |
| 966 | global.tune.options |= GTUNE_SCHED_LOW_LATENCY; |
| 967 | else if (strcmp(args[1], "off") == 0) |
| 968 | global.tune.options &= ~GTUNE_SCHED_LOW_LATENCY; |
| 969 | else { |
| 970 | memprintf(err, "'%s' expects either 'on' or 'off' but got '%s'.", args[0], args[1]); |
| 971 | return -1; |
| 972 | } |
| 973 | return 0; |
| 974 | } |
| 975 | |
| 976 | /* config keyword parsers */ |
| 977 | static struct cfg_kw_list cfg_kws = {ILH, { |
| 978 | { CFG_GLOBAL, "tune.sched.low-latency", cfg_parse_tune_sched_low_latency }, |
| 979 | { 0, NULL, NULL } |
| 980 | }}; |
| 981 | |
| 982 | INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws); |
Willy Tarreau | b6b3df3 | 2018-11-26 16:31:20 +0100 | [diff] [blame] | 983 | INITCALL0(STG_PREPARE, init_task); |
| 984 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 985 | /* |
| 986 | * Local variables: |
| 987 | * c-indent-level: 8 |
| 988 | * c-basic-offset: 8 |
| 989 | * End: |
| 990 | */ |