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