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