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 | e7723bd | 2020-06-24 11:11:02 +0200 | [diff] [blame] | 19 | #include <haproxy/cfgparse.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 20 | #include <haproxy/fd.h> |
| 21 | #include <haproxy/freq_ctr.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 | dfd3de8 | 2020-06-04 23:46:14 +0200 | [diff] [blame] | 24 | #include <haproxy/stream.h> |
Willy Tarreau | cea0e1b | 2020-06-04 17:25:40 +0200 | [diff] [blame] | 25 | #include <haproxy/task.h> |
Willy Tarreau | 92b4f13 | 2020-06-01 11:05:15 +0200 | [diff] [blame] | 26 | #include <haproxy/time.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 27 | #include <haproxy/tools.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 28 | |
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 | |
Willy Tarreau | a461318 | 2009-03-21 18:13:21 +0100 | [diff] [blame] | 38 | unsigned int nb_tasks = 0; |
Olivier Houchard | eba0c0b | 2018-07-26 18:53:28 +0200 | [diff] [blame] | 39 | volatile unsigned long global_tasks_mask = 0; /* Mask of threads with tasks in the global runqueue */ |
Christopher Faulet | 34c5cc9 | 2016-12-06 09:15:30 +0100 | [diff] [blame] | 40 | unsigned int tasks_run_queue = 0; |
| 41 | unsigned int tasks_run_queue_cur = 0; /* copy of the run queue size */ |
Willy Tarreau | c7bdf09 | 2009-03-21 18:33:52 +0100 | [diff] [blame] | 42 | unsigned int nb_tasks_cur = 0; /* copy of the tasks count */ |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 43 | 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] | 44 | |
Willy Tarreau | d022e9c | 2019-09-24 08:25:15 +0200 | [diff] [blame] | 45 | THREAD_LOCAL struct task_per_thread *sched = &task_per_thread[0]; /* scheduler context for the current thread */ |
Willy Tarreau | 6d1222c | 2017-11-26 10:08:06 +0100 | [diff] [blame] | 46 | |
Willy Tarreau | 86abe44 | 2018-11-25 20:12:18 +0100 | [diff] [blame] | 47 | __decl_aligned_spinlock(rq_lock); /* spin lock related to run queue */ |
Willy Tarreau | ef28dc1 | 2019-05-28 18:48:07 +0200 | [diff] [blame] | 48 | __decl_aligned_rwlock(wq_lock); /* RW lock related to the wait queue */ |
Willy Tarreau | 964c936 | 2007-01-07 00:38:00 +0100 | [diff] [blame] | 49 | |
Olivier Houchard | b1ca58b | 2018-06-06 14:22:03 +0200 | [diff] [blame] | 50 | #ifdef USE_THREAD |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 51 | struct eb_root timers; /* sorted timers tree, global */ |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 52 | struct eb_root rqueue; /* tree constituting the run queue */ |
Olivier Houchard | b1ca58b | 2018-06-06 14:22:03 +0200 | [diff] [blame] | 53 | #endif |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 54 | |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 55 | static unsigned int rqueue_ticks; /* insertion count */ |
Willy Tarreau | 8d8747a | 2018-10-15 16:12:48 +0200 | [diff] [blame] | 56 | |
| 57 | struct task_per_thread task_per_thread[MAX_THREADS]; |
Willy Tarreau | 9789f7b | 2008-06-24 08:17:16 +0200 | [diff] [blame] | 58 | |
Willy Tarreau | eb8c2c6 | 2020-06-30 11:48:48 +0200 | [diff] [blame] | 59 | |
| 60 | /* Flags the task <t> for immediate destruction and puts it into its first |
| 61 | * thread's shared tasklet list if not yet queued/running. This will bypass |
| 62 | * the priority scheduling and make the task show up as fast as possible in |
| 63 | * the other thread's queue. Note that this operation isn't idempotent and is |
| 64 | * not supposed to be run on the same task from multiple threads at once. It's |
| 65 | * the caller's responsibility to make sure it is the only one able to kill the |
| 66 | * task. |
| 67 | */ |
| 68 | void task_kill(struct task *t) |
| 69 | { |
| 70 | unsigned short state = t->state; |
| 71 | unsigned int thr; |
| 72 | |
| 73 | BUG_ON(state & TASK_KILLED); |
| 74 | |
| 75 | while (1) { |
| 76 | while (state & (TASK_RUNNING | TASK_QUEUED)) { |
| 77 | /* task already in the queue and about to be executed, |
| 78 | * or even currently running. Just add the flag and be |
| 79 | * done with it, the process loop will detect it and kill |
| 80 | * it. The CAS will fail if we arrive too late. |
| 81 | */ |
| 82 | if (_HA_ATOMIC_CAS(&t->state, &state, state | TASK_KILLED)) |
| 83 | return; |
| 84 | } |
| 85 | |
| 86 | /* We'll have to wake it up, but we must also secure it so that |
| 87 | * it doesn't vanish under us. TASK_QUEUED guarantees nobody will |
| 88 | * add past us. |
| 89 | */ |
| 90 | if (_HA_ATOMIC_CAS(&t->state, &state, state | TASK_QUEUED | TASK_KILLED)) { |
| 91 | /* Bypass the tree and go directly into the shared tasklet list. |
| 92 | * Note: that's a task so it must be accounted for as such. Pick |
| 93 | * the task's first thread for the job. |
| 94 | */ |
| 95 | thr = my_ffsl(t->thread_mask) - 1; |
Willy Tarreau | 54d3117 | 2020-07-02 14:14:00 +0200 | [diff] [blame] | 96 | |
| 97 | /* Beware: tasks that have never run don't have their ->list empty yet! */ |
Willy Tarreau | 950954f | 2020-07-10 08:32:10 +0200 | [diff] [blame] | 98 | MT_LIST_ADDQ(&task_per_thread[thr].shared_tasklet_list, |
Willy Tarreau | 4f58926 | 2020-07-02 17:17:42 +0200 | [diff] [blame] | 99 | (struct mt_list *)&((struct tasklet *)t)->list); |
Willy Tarreau | 54d3117 | 2020-07-02 14:14:00 +0200 | [diff] [blame] | 100 | _HA_ATOMIC_ADD(&tasks_run_queue, 1); |
| 101 | _HA_ATOMIC_ADD(&task_per_thread[thr].task_list_size, 1); |
| 102 | if (sleeping_thread_mask & (1UL << thr)) { |
| 103 | _HA_ATOMIC_AND(&sleeping_thread_mask, ~(1UL << thr)); |
| 104 | wake_thread(thr); |
Willy Tarreau | eb8c2c6 | 2020-06-30 11:48:48 +0200 | [diff] [blame] | 105 | } |
Willy Tarreau | 54d3117 | 2020-07-02 14:14:00 +0200 | [diff] [blame] | 106 | return; |
Willy Tarreau | eb8c2c6 | 2020-06-30 11:48:48 +0200 | [diff] [blame] | 107 | } |
| 108 | } |
| 109 | } |
| 110 | |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 111 | /* Puts the task <t> in run queue at a position depending on t->nice. <t> is |
| 112 | * 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] | 113 | * nice value of -1024 sets the task to -tasks_run_queue*32, while a nice value |
| 114 | * of 1024 sets the task to tasks_run_queue*32. The state flags are cleared, so |
| 115 | * the caller will have to set its flags after this call. |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 116 | * The task must not already be in the run queue. If unsure, use the safer |
| 117 | * task_wakeup() function. |
Willy Tarreau | 91e9993 | 2008-06-30 07:51:00 +0200 | [diff] [blame] | 118 | */ |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 119 | void __task_wakeup(struct task *t, struct eb_root *root) |
Willy Tarreau | e33aece | 2007-04-30 13:15:14 +0200 | [diff] [blame] | 120 | { |
Olivier Houchard | b1ca58b | 2018-06-06 14:22:03 +0200 | [diff] [blame] | 121 | #ifdef USE_THREAD |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 122 | if (root == &rqueue) { |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 123 | HA_SPIN_LOCK(TASK_RQ_LOCK, &rq_lock); |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 124 | } |
Willy Tarreau | 2d1fd0a | 2019-04-15 09:18:31 +0200 | [diff] [blame] | 125 | #endif |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 126 | /* Make sure if the task isn't in the runqueue, nobody inserts it |
| 127 | * in the meanwhile. |
| 128 | */ |
Olivier Houchard | 4c283285 | 2019-03-08 18:48:47 +0100 | [diff] [blame] | 129 | _HA_ATOMIC_ADD(&tasks_run_queue, 1); |
Olivier Houchard | c4aac9e | 2018-07-26 15:25:49 +0200 | [diff] [blame] | 130 | #ifdef USE_THREAD |
| 131 | if (root == &rqueue) { |
Olivier Houchard | de82aea | 2019-04-17 19:10:22 +0200 | [diff] [blame] | 132 | global_tasks_mask |= t->thread_mask; |
Olivier Houchard | ed1a6a0 | 2019-04-18 14:12:51 +0200 | [diff] [blame] | 133 | __ha_barrier_store(); |
Olivier Houchard | c4aac9e | 2018-07-26 15:25:49 +0200 | [diff] [blame] | 134 | } |
| 135 | #endif |
Olivier Houchard | 4c283285 | 2019-03-08 18:48:47 +0100 | [diff] [blame] | 136 | t->rq.key = _HA_ATOMIC_ADD(&rqueue_ticks, 1); |
Willy Tarreau | 91e9993 | 2008-06-30 07:51:00 +0200 | [diff] [blame] | 137 | |
| 138 | if (likely(t->nice)) { |
| 139 | int offset; |
| 140 | |
Olivier Houchard | 4c283285 | 2019-03-08 18:48:47 +0100 | [diff] [blame] | 141 | _HA_ATOMIC_ADD(&niced_tasks, 1); |
Willy Tarreau | 2d1fd0a | 2019-04-15 09:18:31 +0200 | [diff] [blame] | 142 | offset = t->nice * (int)global.tune.runqueue_depth; |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 143 | t->rq.key += offset; |
Willy Tarreau | 91e9993 | 2008-06-30 07:51:00 +0200 | [diff] [blame] | 144 | } |
| 145 | |
Willy Tarreau | d9add3a | 2019-04-25 08:57:41 +0200 | [diff] [blame] | 146 | if (task_profiling_mask & tid_bit) |
Willy Tarreau | 9efd745 | 2018-05-31 14:48:54 +0200 | [diff] [blame] | 147 | t->call_date = now_mono_time(); |
| 148 | |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 149 | eb32sc_insert(root, &t->rq, t->thread_mask); |
Olivier Houchard | b1ca58b | 2018-06-06 14:22:03 +0200 | [diff] [blame] | 150 | #ifdef USE_THREAD |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 151 | if (root == &rqueue) { |
Olivier Houchard | 4c283285 | 2019-03-08 18:48:47 +0100 | [diff] [blame] | 152 | _HA_ATOMIC_OR(&t->state, TASK_GLOBAL); |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 153 | HA_SPIN_UNLOCK(TASK_RQ_LOCK, &rq_lock); |
Olivier Houchard | b1ca58b | 2018-06-06 14:22:03 +0200 | [diff] [blame] | 154 | } else |
| 155 | #endif |
| 156 | { |
Willy Tarreau | 8d8747a | 2018-10-15 16:12:48 +0200 | [diff] [blame] | 157 | int nb = ((void *)root - (void *)&task_per_thread[0].rqueue) / sizeof(task_per_thread[0]); |
| 158 | task_per_thread[nb].rqueue_size++; |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 159 | } |
Willy Tarreau | 85d9b84 | 2018-07-27 17:14:41 +0200 | [diff] [blame] | 160 | #ifdef USE_THREAD |
Olivier Houchard | 79321b9 | 2018-07-26 17:55:11 +0200 | [diff] [blame] | 161 | /* If all threads that are supposed to handle this task are sleeping, |
| 162 | * wake one. |
| 163 | */ |
| 164 | if ((((t->thread_mask & all_threads_mask) & sleeping_thread_mask) == |
Olivier Houchard | 1b32790 | 2019-03-15 00:23:10 +0100 | [diff] [blame] | 165 | (t->thread_mask & all_threads_mask))) { |
| 166 | unsigned long m = (t->thread_mask & all_threads_mask) &~ tid_bit; |
| 167 | |
| 168 | m = (m & (m - 1)) ^ m; // keep lowest bit set |
| 169 | _HA_ATOMIC_AND(&sleeping_thread_mask, ~m); |
| 170 | wake_thread(my_ffsl(m) - 1); |
| 171 | } |
Willy Tarreau | 85d9b84 | 2018-07-27 17:14:41 +0200 | [diff] [blame] | 172 | #endif |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 173 | return; |
Willy Tarreau | e33aece | 2007-04-30 13:15:14 +0200 | [diff] [blame] | 174 | } |
Willy Tarreau | d825eef | 2007-05-12 22:35:00 +0200 | [diff] [blame] | 175 | |
Willy Tarreau | 96bcfd7 | 2007-04-29 10:41:56 +0200 | [diff] [blame] | 176 | /* |
Willy Tarreau | 531cf0c | 2009-03-08 16:35:27 +0100 | [diff] [blame] | 177 | * __task_queue() |
Willy Tarreau | 96bcfd7 | 2007-04-29 10:41:56 +0200 | [diff] [blame] | 178 | * |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 179 | * 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] | 180 | * date. It does not matter if the task was already in the wait queue or not, |
Willy Tarreau | 531cf0c | 2009-03-08 16:35:27 +0100 | [diff] [blame] | 181 | * 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] | 182 | * Last, tasks must not be queued further than the end of the tree, which is |
| 183 | * 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] | 184 | * |
| 185 | * This function should not be used directly, it is meant to be called by the |
| 186 | * inline version of task_queue() which performs a few cheap preliminary tests |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 187 | * before deciding to call __task_queue(). Moreover this function doesn't care |
| 188 | * at all about locking so the caller must be careful when deciding whether to |
| 189 | * lock or not around this call. |
Willy Tarreau | 96bcfd7 | 2007-04-29 10:41:56 +0200 | [diff] [blame] | 190 | */ |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 191 | void __task_queue(struct task *task, struct eb_root *wq) |
Willy Tarreau | 964c936 | 2007-01-07 00:38:00 +0100 | [diff] [blame] | 192 | { |
Willy Tarreau | e5d79bc | 2020-07-22 14:29:42 +0200 | [diff] [blame] | 193 | #ifdef USE_THREAD |
| 194 | BUG_ON((wq == &timers && !(task->state & TASK_SHARED_WQ)) || |
| 195 | (wq == &sched->timers && (task->state & TASK_SHARED_WQ)) || |
| 196 | (wq != &timers && wq != &sched->timers)); |
| 197 | #endif |
| 198 | |
Willy Tarreau | 531cf0c | 2009-03-08 16:35:27 +0100 | [diff] [blame] | 199 | if (likely(task_in_wq(task))) |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 200 | __task_unlink_wq(task); |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 201 | |
| 202 | /* the task is not in the queue now */ |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 203 | task->wq.key = task->expire; |
Willy Tarreau | 28c41a4 | 2008-06-29 17:00:59 +0200 | [diff] [blame] | 204 | #ifdef DEBUG_CHECK_INVALID_EXPIRATION_DATES |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 205 | if (tick_is_lt(task->wq.key, now_ms)) |
Willy Tarreau | 28c41a4 | 2008-06-29 17:00:59 +0200 | [diff] [blame] | 206 | /* we're queuing too far away or in the past (most likely) */ |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 207 | return; |
Willy Tarreau | 28c41a4 | 2008-06-29 17:00:59 +0200 | [diff] [blame] | 208 | #endif |
Willy Tarreau | ce44f12 | 2008-07-05 18:16:19 +0200 | [diff] [blame] | 209 | |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 210 | eb32_insert(wq, &task->wq); |
Willy Tarreau | 964c936 | 2007-01-07 00:38:00 +0100 | [diff] [blame] | 211 | } |
| 212 | |
Willy Tarreau | 96bcfd7 | 2007-04-29 10:41:56 +0200 | [diff] [blame] | 213 | /* |
Willy Tarreau | 9789f7b | 2008-06-24 08:17:16 +0200 | [diff] [blame] | 214 | * Extract all expired timers from the timer queue, and wakes up all |
Willy Tarreau | c49ba52 | 2019-12-11 08:12:23 +0100 | [diff] [blame] | 215 | * associated tasks. |
Willy Tarreau | 96bcfd7 | 2007-04-29 10:41:56 +0200 | [diff] [blame] | 216 | */ |
Willy Tarreau | c49ba52 | 2019-12-11 08:12:23 +0100 | [diff] [blame] | 217 | void wake_expired_tasks() |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 218 | { |
Willy Tarreau | d022e9c | 2019-09-24 08:25:15 +0200 | [diff] [blame] | 219 | struct task_per_thread * const tt = sched; // thread's tasks |
Willy Tarreau | 3cfaa8d | 2020-10-16 09:26:22 +0200 | [diff] [blame] | 220 | int max_processed = global.tune.runqueue_depth; |
Willy Tarreau | 96bcfd7 | 2007-04-29 10:41:56 +0200 | [diff] [blame] | 221 | struct task *task; |
Willy Tarreau | 9789f7b | 2008-06-24 08:17:16 +0200 | [diff] [blame] | 222 | struct eb32_node *eb; |
Willy Tarreau | af613e8 | 2020-06-05 08:40:51 +0200 | [diff] [blame] | 223 | __decl_thread(int key); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 224 | |
Willy Tarreau | 3cfaa8d | 2020-10-16 09:26:22 +0200 | [diff] [blame] | 225 | while (max_processed-- > 0) { |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 226 | lookup_next_local: |
Willy Tarreau | 4c1e1ad | 2019-09-24 07:19:08 +0200 | [diff] [blame] | 227 | eb = eb32_lookup_ge(&tt->timers, now_ms - TIMER_LOOK_BACK); |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 228 | if (!eb) { |
| 229 | /* we might have reached the end of the tree, typically because |
| 230 | * <now_ms> is in the first half and we're first scanning the last |
| 231 | * half. Let's loop back to the beginning of the tree now. |
| 232 | */ |
Willy Tarreau | 4c1e1ad | 2019-09-24 07:19:08 +0200 | [diff] [blame] | 233 | eb = eb32_first(&tt->timers); |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 234 | if (likely(!eb)) |
| 235 | break; |
| 236 | } |
| 237 | |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 238 | /* It is possible that this task was left at an earlier place in the |
| 239 | * tree because a recent call to task_queue() has not moved it. This |
| 240 | * happens when the new expiration date is later than the old one. |
| 241 | * Since it is very unlikely that we reach a timeout anyway, it's a |
| 242 | * lot cheaper to proceed like this because we almost never update |
| 243 | * the tree. We may also find disabled expiration dates there. Since |
| 244 | * we have detached the task from the tree, we simply call task_queue |
| 245 | * to take care of this. Note that we might occasionally requeue it at |
| 246 | * the same place, before <eb>, so we have to check if this happens, |
| 247 | * and adjust <eb>, otherwise we may skip it which is not what we want. |
| 248 | * 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] | 249 | * expiration time is not set. We also make sure we leave the real |
| 250 | * expiration date for the next task in the queue so that when calling |
| 251 | * next_timer_expiry() we're guaranteed to see the next real date and |
| 252 | * not the next apparent date. This is in order to avoid useless |
| 253 | * wakeups. |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 254 | */ |
Willy Tarreau | 77015ab | 2020-06-19 11:50:27 +0200 | [diff] [blame] | 255 | |
| 256 | task = eb32_entry(eb, struct task, wq); |
| 257 | if (tick_is_expired(task->expire, now_ms)) { |
| 258 | /* expired task, wake it up */ |
| 259 | __task_unlink_wq(task); |
| 260 | task_wakeup(task, TASK_WOKEN_TIMER); |
| 261 | } |
| 262 | else if (task->expire != eb->key) { |
| 263 | /* task is not expired but its key doesn't match so let's |
| 264 | * update it and skip to next apparently expired task. |
| 265 | */ |
| 266 | __task_unlink_wq(task); |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 267 | if (tick_isset(task->expire)) |
Willy Tarreau | 4c1e1ad | 2019-09-24 07:19:08 +0200 | [diff] [blame] | 268 | __task_queue(task, &tt->timers); |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 269 | } |
Willy Tarreau | 77015ab | 2020-06-19 11:50:27 +0200 | [diff] [blame] | 270 | else { |
| 271 | /* task not expired and correctly placed */ |
| 272 | break; |
| 273 | } |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 274 | } |
| 275 | |
| 276 | #ifdef USE_THREAD |
Willy Tarreau | 1e928c0 | 2019-05-28 18:57:25 +0200 | [diff] [blame] | 277 | if (eb_is_empty(&timers)) |
| 278 | goto leave; |
| 279 | |
| 280 | HA_RWLOCK_RDLOCK(TASK_WQ_LOCK, &wq_lock); |
| 281 | eb = eb32_lookup_ge(&timers, now_ms - TIMER_LOOK_BACK); |
| 282 | if (!eb) { |
| 283 | eb = eb32_first(&timers); |
| 284 | if (likely(!eb)) { |
| 285 | HA_RWLOCK_RDUNLOCK(TASK_WQ_LOCK, &wq_lock); |
| 286 | goto leave; |
| 287 | } |
| 288 | } |
| 289 | key = eb->key; |
Willy Tarreau | 1e928c0 | 2019-05-28 18:57:25 +0200 | [diff] [blame] | 290 | |
Willy Tarreau | d48ed66 | 2020-10-16 09:31:41 +0200 | [diff] [blame] | 291 | if (tick_is_lt(now_ms, key)) { |
| 292 | HA_RWLOCK_RDUNLOCK(TASK_WQ_LOCK, &wq_lock); |
Willy Tarreau | 1e928c0 | 2019-05-28 18:57:25 +0200 | [diff] [blame] | 293 | goto leave; |
Willy Tarreau | d48ed66 | 2020-10-16 09:31:41 +0200 | [diff] [blame] | 294 | } |
Willy Tarreau | 1e928c0 | 2019-05-28 18:57:25 +0200 | [diff] [blame] | 295 | |
| 296 | /* There's really something of interest here, let's visit the queue */ |
| 297 | |
Willy Tarreau | d48ed66 | 2020-10-16 09:31:41 +0200 | [diff] [blame] | 298 | if (HA_RWLOCK_TRYRDTOSK(TASK_WQ_LOCK, &wq_lock)) { |
| 299 | /* if we failed to grab the lock it means another thread is |
| 300 | * already doing the same here, so let it do the job. |
| 301 | */ |
| 302 | HA_RWLOCK_RDUNLOCK(TASK_WQ_LOCK, &wq_lock); |
| 303 | goto leave; |
| 304 | } |
| 305 | |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 306 | while (1) { |
Emeric Brun | c60def8 | 2017-09-27 14:59:38 +0200 | [diff] [blame] | 307 | lookup_next: |
Willy Tarreau | 3cfaa8d | 2020-10-16 09:26:22 +0200 | [diff] [blame] | 308 | if (max_processed-- <= 0) |
| 309 | break; |
Emeric Brun | 0194897 | 2017-03-30 15:37:25 +0200 | [diff] [blame] | 310 | eb = eb32_lookup_ge(&timers, now_ms - TIMER_LOOK_BACK); |
Emeric Brun | c60def8 | 2017-09-27 14:59:38 +0200 | [diff] [blame] | 311 | if (!eb) { |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 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 | */ |
| 316 | eb = eb32_first(&timers); |
Willy Tarreau | b992ba1 | 2017-11-05 19:09:27 +0100 | [diff] [blame] | 317 | if (likely(!eb)) |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 318 | break; |
| 319 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 320 | |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 321 | task = eb32_entry(eb, struct task, wq); |
Willy Tarreau | 77015ab | 2020-06-19 11:50:27 +0200 | [diff] [blame] | 322 | if (tick_is_expired(task->expire, now_ms)) { |
| 323 | /* expired task, wake it up */ |
Willy Tarreau | d48ed66 | 2020-10-16 09:31:41 +0200 | [diff] [blame] | 324 | HA_RWLOCK_SKTOWR(TASK_WQ_LOCK, &wq_lock); |
Willy Tarreau | 77015ab | 2020-06-19 11:50:27 +0200 | [diff] [blame] | 325 | __task_unlink_wq(task); |
Willy Tarreau | d48ed66 | 2020-10-16 09:31:41 +0200 | [diff] [blame] | 326 | HA_RWLOCK_WRTOSK(TASK_WQ_LOCK, &wq_lock); |
Willy Tarreau | 77015ab | 2020-06-19 11:50:27 +0200 | [diff] [blame] | 327 | task_wakeup(task, TASK_WOKEN_TIMER); |
| 328 | } |
| 329 | else if (task->expire != eb->key) { |
| 330 | /* task is not expired but its key doesn't match so let's |
| 331 | * update it and skip to next apparently expired task. |
| 332 | */ |
Willy Tarreau | d48ed66 | 2020-10-16 09:31:41 +0200 | [diff] [blame] | 333 | HA_RWLOCK_SKTOWR(TASK_WQ_LOCK, &wq_lock); |
Willy Tarreau | 77015ab | 2020-06-19 11:50:27 +0200 | [diff] [blame] | 334 | __task_unlink_wq(task); |
Willy Tarreau | b992ba1 | 2017-11-05 19:09:27 +0100 | [diff] [blame] | 335 | if (tick_isset(task->expire)) |
Willy Tarreau | 783afbe | 2020-07-22 14:12:45 +0200 | [diff] [blame] | 336 | __task_queue(task, &timers); |
Willy Tarreau | d48ed66 | 2020-10-16 09:31:41 +0200 | [diff] [blame] | 337 | HA_RWLOCK_WRTOSK(TASK_WQ_LOCK, &wq_lock); |
Emeric Brun | c60def8 | 2017-09-27 14:59:38 +0200 | [diff] [blame] | 338 | goto lookup_next; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 339 | } |
Willy Tarreau | 77015ab | 2020-06-19 11:50:27 +0200 | [diff] [blame] | 340 | else { |
| 341 | /* task not expired and correctly placed */ |
| 342 | break; |
| 343 | } |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 344 | } |
Willy Tarreau | 9789f7b | 2008-06-24 08:17:16 +0200 | [diff] [blame] | 345 | |
Willy Tarreau | d48ed66 | 2020-10-16 09:31:41 +0200 | [diff] [blame] | 346 | HA_RWLOCK_SKUNLOCK(TASK_WQ_LOCK, &wq_lock); |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 347 | #endif |
Willy Tarreau | 1e928c0 | 2019-05-28 18:57:25 +0200 | [diff] [blame] | 348 | leave: |
Willy Tarreau | c49ba52 | 2019-12-11 08:12:23 +0100 | [diff] [blame] | 349 | return; |
| 350 | } |
| 351 | |
| 352 | /* Checks the next timer for the current thread by looking into its own timer |
| 353 | * 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] | 354 | * 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] | 355 | */ |
| 356 | int next_timer_expiry() |
| 357 | { |
| 358 | struct task_per_thread * const tt = sched; // thread's tasks |
| 359 | struct eb32_node *eb; |
| 360 | int ret = TICK_ETERNITY; |
Willy Tarreau | 6ce0232 | 2020-08-21 05:48:34 +0200 | [diff] [blame] | 361 | __decl_thread(int key = TICK_ETERNITY); |
Willy Tarreau | c49ba52 | 2019-12-11 08:12:23 +0100 | [diff] [blame] | 362 | |
| 363 | /* first check in the thread-local timers */ |
| 364 | eb = eb32_lookup_ge(&tt->timers, now_ms - TIMER_LOOK_BACK); |
| 365 | if (!eb) { |
| 366 | /* we might have reached the end of the tree, typically because |
| 367 | * <now_ms> is in the first half and we're first scanning the last |
| 368 | * half. Let's loop back to the beginning of the tree now. |
| 369 | */ |
| 370 | eb = eb32_first(&tt->timers); |
| 371 | } |
| 372 | |
| 373 | if (eb) |
| 374 | ret = eb->key; |
| 375 | |
| 376 | #ifdef USE_THREAD |
| 377 | if (!eb_is_empty(&timers)) { |
| 378 | HA_RWLOCK_RDLOCK(TASK_WQ_LOCK, &wq_lock); |
| 379 | eb = eb32_lookup_ge(&timers, now_ms - TIMER_LOOK_BACK); |
| 380 | if (!eb) |
| 381 | eb = eb32_first(&timers); |
| 382 | if (eb) |
| 383 | key = eb->key; |
| 384 | HA_RWLOCK_RDUNLOCK(TASK_WQ_LOCK, &wq_lock); |
| 385 | if (eb) |
| 386 | ret = tick_first(ret, key); |
| 387 | } |
| 388 | #endif |
Willy Tarreau | b992ba1 | 2017-11-05 19:09:27 +0100 | [diff] [blame] | 389 | return ret; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 390 | } |
| 391 | |
Willy Tarreau | 59153fe | 2020-06-24 10:17:29 +0200 | [diff] [blame] | 392 | /* Walks over tasklet lists sched->tasklets[0..TL_CLASSES-1] and run at most |
| 393 | * budget[TL_*] of them. Returns the number of entries effectively processed |
| 394 | * (tasks and tasklets merged). The count of tasks in the list for the current |
| 395 | * thread is adjusted. |
Willy Tarreau | 4ffa0b5 | 2020-01-30 18:13:13 +0100 | [diff] [blame] | 396 | */ |
Willy Tarreau | 59153fe | 2020-06-24 10:17:29 +0200 | [diff] [blame] | 397 | unsigned int run_tasks_from_lists(unsigned int budgets[]) |
Willy Tarreau | 4ffa0b5 | 2020-01-30 18:13:13 +0100 | [diff] [blame] | 398 | { |
| 399 | struct task *(*process)(struct task *t, void *ctx, unsigned short state); |
Willy Tarreau | ba48d5c | 2020-06-24 09:54:24 +0200 | [diff] [blame] | 400 | struct list *tl_queues = sched->tasklets; |
Willy Tarreau | 4ffa0b5 | 2020-01-30 18:13:13 +0100 | [diff] [blame] | 401 | struct task *t; |
Willy Tarreau | e7723bd | 2020-06-24 11:11:02 +0200 | [diff] [blame] | 402 | uint8_t budget_mask = (1 << TL_CLASSES) - 1; |
Willy Tarreau | 59153fe | 2020-06-24 10:17:29 +0200 | [diff] [blame] | 403 | unsigned int done = 0; |
| 404 | unsigned int queue; |
Willy Tarreau | 4ffa0b5 | 2020-01-30 18:13:13 +0100 | [diff] [blame] | 405 | unsigned short state; |
| 406 | void *ctx; |
Willy Tarreau | 59153fe | 2020-06-24 10:17:29 +0200 | [diff] [blame] | 407 | |
| 408 | for (queue = 0; queue < TL_CLASSES;) { |
| 409 | sched->current_queue = queue; |
Willy Tarreau | 4ffa0b5 | 2020-01-30 18:13:13 +0100 | [diff] [blame] | 410 | |
Willy Tarreau | e7723bd | 2020-06-24 11:11:02 +0200 | [diff] [blame] | 411 | /* global.tune.sched.low-latency is set */ |
| 412 | if (global.tune.options & GTUNE_SCHED_LOW_LATENCY) { |
| 413 | if (unlikely(sched->tl_class_mask & budget_mask & ((1 << queue) - 1))) { |
| 414 | /* a lower queue index has tasks again and still has a |
| 415 | * budget to run them. Let's switch to it now. |
| 416 | */ |
| 417 | queue = (sched->tl_class_mask & 1) ? 0 : |
| 418 | (sched->tl_class_mask & 2) ? 1 : 2; |
| 419 | continue; |
| 420 | } |
| 421 | |
| 422 | if (unlikely(queue > TL_URGENT && |
| 423 | budget_mask & (1 << TL_URGENT) && |
| 424 | !MT_LIST_ISEMPTY(&sched->shared_tasklet_list))) { |
| 425 | /* an urgent tasklet arrived from another thread */ |
| 426 | break; |
| 427 | } |
| 428 | |
| 429 | if (unlikely(queue > TL_NORMAL && |
| 430 | budget_mask & (1 << TL_NORMAL) && |
| 431 | ((sched->rqueue_size > 0) || |
| 432 | (global_tasks_mask & tid_bit)))) { |
| 433 | /* a task was woken up by a bulk tasklet or another thread */ |
| 434 | break; |
| 435 | } |
| 436 | } |
| 437 | |
Willy Tarreau | ba48d5c | 2020-06-24 09:54:24 +0200 | [diff] [blame] | 438 | if (LIST_ISEMPTY(&tl_queues[queue])) { |
| 439 | sched->tl_class_mask &= ~(1 << queue); |
Willy Tarreau | 59153fe | 2020-06-24 10:17:29 +0200 | [diff] [blame] | 440 | queue++; |
| 441 | continue; |
Willy Tarreau | ba48d5c | 2020-06-24 09:54:24 +0200 | [diff] [blame] | 442 | } |
| 443 | |
Willy Tarreau | 59153fe | 2020-06-24 10:17:29 +0200 | [diff] [blame] | 444 | if (!budgets[queue]) { |
Willy Tarreau | e7723bd | 2020-06-24 11:11:02 +0200 | [diff] [blame] | 445 | budget_mask &= ~(1 << queue); |
Willy Tarreau | 59153fe | 2020-06-24 10:17:29 +0200 | [diff] [blame] | 446 | queue++; |
| 447 | continue; |
| 448 | } |
Willy Tarreau | ba48d5c | 2020-06-24 09:54:24 +0200 | [diff] [blame] | 449 | |
Willy Tarreau | 59153fe | 2020-06-24 10:17:29 +0200 | [diff] [blame] | 450 | budgets[queue]--; |
Willy Tarreau | ba48d5c | 2020-06-24 09:54:24 +0200 | [diff] [blame] | 451 | t = (struct task *)LIST_ELEM(tl_queues[queue].n, struct tasklet *, list); |
Willy Tarreau | 8a6049c | 2020-06-30 11:48:48 +0200 | [diff] [blame] | 452 | state = t->state & (TASK_SHARED_WQ|TASK_SELF_WAKING|TASK_KILLED); |
Willy Tarreau | 4ffa0b5 | 2020-01-30 18:13:13 +0100 | [diff] [blame] | 453 | |
| 454 | ti->flags &= ~TI_FL_STUCK; // this thread is still running |
| 455 | activity[tid].ctxsw++; |
| 456 | ctx = t->context; |
| 457 | process = t->process; |
| 458 | t->calls++; |
Willy Tarreau | d23d413 | 2020-01-31 10:39:03 +0100 | [diff] [blame] | 459 | sched->current = t; |
Willy Tarreau | 4ffa0b5 | 2020-01-30 18:13:13 +0100 | [diff] [blame] | 460 | |
Willy Tarreau | 2da4c31 | 2020-11-30 14:52:11 +0100 | [diff] [blame] | 461 | _HA_ATOMIC_SUB(&tasks_run_queue, 1); |
| 462 | |
Willy Tarreau | 4ffa0b5 | 2020-01-30 18:13:13 +0100 | [diff] [blame] | 463 | if (TASK_IS_TASKLET(t)) { |
Willy Tarreau | 4d6c594 | 2020-11-30 14:58:53 +0100 | [diff] [blame] | 464 | LIST_DEL_INIT(&((struct tasklet *)t)->list); |
| 465 | __ha_barrier_store(); |
Willy Tarreau | 952c264 | 2020-01-31 16:39:30 +0100 | [diff] [blame] | 466 | state = _HA_ATOMIC_XCHG(&t->state, state); |
| 467 | __ha_barrier_atomic_store(); |
Olivier Houchard | c62d9ab | 2020-03-17 18:15:04 +0100 | [diff] [blame] | 468 | process(t, ctx, state); |
Willy Tarreau | 4ffa0b5 | 2020-01-30 18:13:13 +0100 | [diff] [blame] | 469 | done++; |
Willy Tarreau | d23d413 | 2020-01-31 10:39:03 +0100 | [diff] [blame] | 470 | sched->current = NULL; |
| 471 | __ha_barrier_store(); |
Willy Tarreau | 4ffa0b5 | 2020-01-30 18:13:13 +0100 | [diff] [blame] | 472 | continue; |
| 473 | } |
| 474 | |
Willy Tarreau | 4d6c594 | 2020-11-30 14:58:53 +0100 | [diff] [blame] | 475 | LIST_DEL_INIT(&((struct tasklet *)t)->list); |
| 476 | __ha_barrier_store(); |
Willy Tarreau | 952c264 | 2020-01-31 16:39:30 +0100 | [diff] [blame] | 477 | state = _HA_ATOMIC_XCHG(&t->state, state | TASK_RUNNING); |
| 478 | __ha_barrier_atomic_store(); |
Willy Tarreau | 952c264 | 2020-01-31 16:39:30 +0100 | [diff] [blame] | 479 | |
Willy Tarreau | 4ffa0b5 | 2020-01-30 18:13:13 +0100 | [diff] [blame] | 480 | /* OK then this is a regular task */ |
| 481 | |
Willy Tarreau | d99177f | 2020-06-30 11:48:48 +0200 | [diff] [blame] | 482 | _HA_ATOMIC_SUB(&task_per_thread[tid].task_list_size, 1); |
Willy Tarreau | 4ffa0b5 | 2020-01-30 18:13:13 +0100 | [diff] [blame] | 483 | if (unlikely(t->call_date)) { |
| 484 | uint64_t now_ns = now_mono_time(); |
| 485 | |
| 486 | t->lat_time += now_ns - t->call_date; |
| 487 | t->call_date = now_ns; |
| 488 | } |
| 489 | |
Willy Tarreau | 4ffa0b5 | 2020-01-30 18:13:13 +0100 | [diff] [blame] | 490 | __ha_barrier_store(); |
Willy Tarreau | 8a6049c | 2020-06-30 11:48:48 +0200 | [diff] [blame] | 491 | |
| 492 | /* Note for below: if TASK_KILLED arrived before we've read the state, we |
| 493 | * directly free the task. Otherwise it will be seen after processing and |
| 494 | * it's freed on the exit path. |
| 495 | */ |
| 496 | if (likely(!(state & TASK_KILLED) && process == process_stream)) |
Willy Tarreau | 4ffa0b5 | 2020-01-30 18:13:13 +0100 | [diff] [blame] | 497 | t = process_stream(t, ctx, state); |
Willy Tarreau | 8a6049c | 2020-06-30 11:48:48 +0200 | [diff] [blame] | 498 | else if (!(state & TASK_KILLED) && process != NULL) |
Willy Tarreau | 4ffa0b5 | 2020-01-30 18:13:13 +0100 | [diff] [blame] | 499 | t = process(t, ctx, state); |
| 500 | else { |
Willy Tarreau | 273aea4 | 2020-07-17 14:37:51 +0200 | [diff] [blame] | 501 | task_unlink_wq(t); |
Willy Tarreau | 4ffa0b5 | 2020-01-30 18:13:13 +0100 | [diff] [blame] | 502 | __task_free(t); |
| 503 | sched->current = NULL; |
| 504 | __ha_barrier_store(); |
| 505 | /* We don't want max_processed to be decremented if |
| 506 | * we're just freeing a destroyed task, we should only |
| 507 | * do so if we really ran a task. |
| 508 | */ |
| 509 | continue; |
| 510 | } |
| 511 | sched->current = NULL; |
| 512 | __ha_barrier_store(); |
| 513 | /* If there is a pending state we have to wake up the task |
| 514 | * immediately, else we defer it into wait queue |
| 515 | */ |
| 516 | if (t != NULL) { |
| 517 | if (unlikely(t->call_date)) { |
| 518 | t->cpu_time += now_mono_time() - t->call_date; |
| 519 | t->call_date = 0; |
| 520 | } |
| 521 | |
| 522 | state = _HA_ATOMIC_AND(&t->state, ~TASK_RUNNING); |
Willy Tarreau | 8a6049c | 2020-06-30 11:48:48 +0200 | [diff] [blame] | 523 | if (unlikely(state & TASK_KILLED)) { |
Willy Tarreau | 273aea4 | 2020-07-17 14:37:51 +0200 | [diff] [blame] | 524 | task_unlink_wq(t); |
Willy Tarreau | 8a6049c | 2020-06-30 11:48:48 +0200 | [diff] [blame] | 525 | __task_free(t); |
| 526 | } |
| 527 | else if (state & TASK_WOKEN_ANY) |
Willy Tarreau | 4ffa0b5 | 2020-01-30 18:13:13 +0100 | [diff] [blame] | 528 | task_wakeup(t, 0); |
| 529 | else |
| 530 | task_queue(t); |
| 531 | } |
| 532 | done++; |
| 533 | } |
Willy Tarreau | ba48d5c | 2020-06-24 09:54:24 +0200 | [diff] [blame] | 534 | sched->current_queue = -1; |
Willy Tarreau | 116ef22 | 2020-06-23 16:35:38 +0200 | [diff] [blame] | 535 | |
Willy Tarreau | 4ffa0b5 | 2020-01-30 18:13:13 +0100 | [diff] [blame] | 536 | return done; |
| 537 | } |
| 538 | |
Willy Tarreau | 58b458d | 2008-06-29 22:40:23 +0200 | [diff] [blame] | 539 | /* The run queue is chronologically sorted in a tree. An insertion counter is |
| 540 | * used to assign a position to each task. This counter may be combined with |
| 541 | * other variables (eg: nice value) to set the final position in the tree. The |
| 542 | * 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] | 543 | * 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] | 544 | * so that task positions have a chance to be considered. The function scans |
| 545 | * both the global and local run queues and picks the most urgent task between |
| 546 | * the two. We need to grab the global runqueue lock to touch it so it's taken |
| 547 | * on the very first access to the global run queue and is released as soon as |
| 548 | * it reaches the end. |
Willy Tarreau | 58b458d | 2008-06-29 22:40:23 +0200 | [diff] [blame] | 549 | * |
| 550 | * The function adjusts <next> if a new event is closer. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 551 | */ |
Thierry FOURNIER | 9cf7c4b | 2014-12-15 13:26:01 +0100 | [diff] [blame] | 552 | void process_runnable_tasks() |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 553 | { |
Willy Tarreau | d022e9c | 2019-09-24 08:25:15 +0200 | [diff] [blame] | 554 | struct task_per_thread * const tt = sched; |
Willy Tarreau | 3ef7a19 | 2020-06-24 07:21:08 +0200 | [diff] [blame] | 555 | struct eb32sc_node *lrq; // next local run queue entry |
| 556 | struct eb32sc_node *grq; // next global run queue entry |
Willy Tarreau | 964c936 | 2007-01-07 00:38:00 +0100 | [diff] [blame] | 557 | struct task *t; |
Willy Tarreau | 3ef7a19 | 2020-06-24 07:21:08 +0200 | [diff] [blame] | 558 | const unsigned int default_weights[TL_CLASSES] = { |
| 559 | [TL_URGENT] = 64, // ~50% of CPU bandwidth for I/O |
| 560 | [TL_NORMAL] = 48, // ~37% of CPU bandwidth for tasks |
| 561 | [TL_BULK] = 16, // ~13% of CPU bandwidth for self-wakers |
| 562 | }; |
| 563 | unsigned int max[TL_CLASSES]; // max to be run per class |
| 564 | unsigned int max_total; // sum of max above |
Olivier Houchard | 0691046 | 2019-10-11 16:35:01 +0200 | [diff] [blame] | 565 | struct mt_list *tmp_list; |
Willy Tarreau | 3ef7a19 | 2020-06-24 07:21:08 +0200 | [diff] [blame] | 566 | unsigned int queue; |
| 567 | int max_processed; |
Willy Tarreau | c309dbd | 2020-11-30 15:39:00 +0100 | [diff] [blame] | 568 | int picked; |
| 569 | int budget; |
Christopher Faulet | 3911ee8 | 2017-11-14 10:26:53 +0100 | [diff] [blame] | 570 | |
Willy Tarreau | e6a02fa | 2019-05-22 07:06:44 +0200 | [diff] [blame] | 571 | ti->flags &= ~TI_FL_STUCK; // this thread is still running |
| 572 | |
Willy Tarreau | 3ef7a19 | 2020-06-24 07:21:08 +0200 | [diff] [blame] | 573 | if (!thread_has_tasks()) { |
| 574 | activity[tid].empty_rq++; |
| 575 | return; |
| 576 | } |
| 577 | |
Willy Tarreau | 5c8be27 | 2020-06-19 12:17:55 +0200 | [diff] [blame] | 578 | tasks_run_queue_cur = tasks_run_queue; /* keep a copy for reporting */ |
| 579 | nb_tasks_cur = nb_tasks; |
| 580 | max_processed = global.tune.runqueue_depth; |
| 581 | |
| 582 | if (likely(niced_tasks)) |
| 583 | max_processed = (max_processed + 3) / 4; |
| 584 | |
Willy Tarreau | 5c8be27 | 2020-06-19 12:17:55 +0200 | [diff] [blame] | 585 | not_done_yet: |
Willy Tarreau | 3ef7a19 | 2020-06-24 07:21:08 +0200 | [diff] [blame] | 586 | max[TL_URGENT] = max[TL_NORMAL] = max[TL_BULK] = 0; |
Willy Tarreau | cde7902 | 2019-04-12 18:03:41 +0200 | [diff] [blame] | 587 | |
Willy Tarreau | 3ef7a19 | 2020-06-24 07:21:08 +0200 | [diff] [blame] | 588 | /* urgent tasklets list gets a default weight of ~50% */ |
Willy Tarreau | 49f90bf | 2020-06-24 09:39:48 +0200 | [diff] [blame] | 589 | if ((tt->tl_class_mask & (1 << TL_URGENT)) || |
Willy Tarreau | 3ef7a19 | 2020-06-24 07:21:08 +0200 | [diff] [blame] | 590 | !MT_LIST_ISEMPTY(&tt->shared_tasklet_list)) |
| 591 | max[TL_URGENT] = default_weights[TL_URGENT]; |
Willy Tarreau | a62917b | 2020-01-30 18:37:28 +0100 | [diff] [blame] | 592 | |
Willy Tarreau | 3ef7a19 | 2020-06-24 07:21:08 +0200 | [diff] [blame] | 593 | /* normal tasklets list gets a default weight of ~37% */ |
Willy Tarreau | 49f90bf | 2020-06-24 09:39:48 +0200 | [diff] [blame] | 594 | if ((tt->tl_class_mask & (1 << TL_NORMAL)) || |
Willy Tarreau | 3ef7a19 | 2020-06-24 07:21:08 +0200 | [diff] [blame] | 595 | (sched->rqueue_size > 0) || (global_tasks_mask & tid_bit)) |
| 596 | max[TL_NORMAL] = default_weights[TL_NORMAL]; |
Willy Tarreau | a62917b | 2020-01-30 18:37:28 +0100 | [diff] [blame] | 597 | |
Willy Tarreau | 3ef7a19 | 2020-06-24 07:21:08 +0200 | [diff] [blame] | 598 | /* bulk tasklets list gets a default weight of ~13% */ |
Willy Tarreau | 49f90bf | 2020-06-24 09:39:48 +0200 | [diff] [blame] | 599 | if ((tt->tl_class_mask & (1 << TL_BULK))) |
Willy Tarreau | 3ef7a19 | 2020-06-24 07:21:08 +0200 | [diff] [blame] | 600 | max[TL_BULK] = default_weights[TL_BULK]; |
| 601 | |
| 602 | /* Now compute a fair share of the weights. Total may slightly exceed |
Willy Tarreau | 1553b66 | 2020-06-30 13:46:21 +0200 | [diff] [blame] | 603 | * 100% due to rounding, this is not a problem. Note that while in |
| 604 | * theory the sum cannot be NULL as we cannot get there without tasklets |
| 605 | * to process, in practice it seldom happens when multiple writers |
Willy Tarreau | de4db17 | 2020-07-10 08:10:29 +0200 | [diff] [blame] | 606 | * conflict and rollback on MT_LIST_TRY_ADDQ(shared_tasklet_list), causing |
Willy Tarreau | 1553b66 | 2020-06-30 13:46:21 +0200 | [diff] [blame] | 607 | * a first MT_LIST_ISEMPTY() to succeed for thread_has_task() and the |
| 608 | * 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] | 609 | */ |
| 610 | max_total = max[TL_URGENT] + max[TL_NORMAL] + max[TL_BULK]; |
Willy Tarreau | 1553b66 | 2020-06-30 13:46:21 +0200 | [diff] [blame] | 611 | if (!max_total) |
| 612 | return; |
| 613 | |
Willy Tarreau | 3ef7a19 | 2020-06-24 07:21:08 +0200 | [diff] [blame] | 614 | for (queue = 0; queue < TL_CLASSES; queue++) |
| 615 | max[queue] = ((unsigned)max_processed * max[queue] + max_total - 1) / max_total; |
| 616 | |
| 617 | lrq = grq = NULL; |
Christopher Faulet | 8a48f67 | 2017-11-14 10:38:36 +0100 | [diff] [blame] | 618 | |
Willy Tarreau | 3ef7a19 | 2020-06-24 07:21:08 +0200 | [diff] [blame] | 619 | /* pick up to max[TL_NORMAL] regular tasks from prio-ordered run queues */ |
| 620 | /* Note: the grq lock is always held when grq is not null */ |
Willy Tarreau | c309dbd | 2020-11-30 15:39:00 +0100 | [diff] [blame] | 621 | picked = 0; |
| 622 | budget = max[TL_NORMAL] - tt->task_list_size; |
| 623 | while (picked < budget) { |
Willy Tarreau | cde7902 | 2019-04-12 18:03:41 +0200 | [diff] [blame] | 624 | if ((global_tasks_mask & tid_bit) && !grq) { |
Willy Tarreau | 3466e3c | 2019-04-15 18:52:40 +0200 | [diff] [blame] | 625 | #ifdef USE_THREAD |
Willy Tarreau | cde7902 | 2019-04-12 18:03:41 +0200 | [diff] [blame] | 626 | HA_SPIN_LOCK(TASK_RQ_LOCK, &rq_lock); |
| 627 | grq = eb32sc_lookup_ge(&rqueue, rqueue_ticks - TIMER_LOOK_BACK, tid_bit); |
| 628 | if (unlikely(!grq)) { |
| 629 | grq = eb32sc_first(&rqueue, tid_bit); |
| 630 | if (!grq) { |
Olivier Houchard | de82aea | 2019-04-17 19:10:22 +0200 | [diff] [blame] | 631 | global_tasks_mask &= ~tid_bit; |
Willy Tarreau | cde7902 | 2019-04-12 18:03:41 +0200 | [diff] [blame] | 632 | HA_SPIN_UNLOCK(TASK_RQ_LOCK, &rq_lock); |
Olivier Houchard | c4aac9e | 2018-07-26 15:25:49 +0200 | [diff] [blame] | 633 | } |
Willy Tarreau | f0c531a | 2017-11-05 16:35:59 +0100 | [diff] [blame] | 634 | } |
Willy Tarreau | 3466e3c | 2019-04-15 18:52:40 +0200 | [diff] [blame] | 635 | #endif |
Willy Tarreau | cde7902 | 2019-04-12 18:03:41 +0200 | [diff] [blame] | 636 | } |
Willy Tarreau | f0c531a | 2017-11-05 16:35:59 +0100 | [diff] [blame] | 637 | |
Willy Tarreau | cde7902 | 2019-04-12 18:03:41 +0200 | [diff] [blame] | 638 | /* If a global task is available for this thread, it's in grq |
| 639 | * now and the global RQ is locked. |
| 640 | */ |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 641 | |
Willy Tarreau | cde7902 | 2019-04-12 18:03:41 +0200 | [diff] [blame] | 642 | if (!lrq) { |
Willy Tarreau | 4c1e1ad | 2019-09-24 07:19:08 +0200 | [diff] [blame] | 643 | lrq = eb32sc_lookup_ge(&tt->rqueue, rqueue_ticks - TIMER_LOOK_BACK, tid_bit); |
Willy Tarreau | cde7902 | 2019-04-12 18:03:41 +0200 | [diff] [blame] | 644 | if (unlikely(!lrq)) |
Willy Tarreau | 4c1e1ad | 2019-09-24 07:19:08 +0200 | [diff] [blame] | 645 | lrq = eb32sc_first(&tt->rqueue, tid_bit); |
Willy Tarreau | f0c531a | 2017-11-05 16:35:59 +0100 | [diff] [blame] | 646 | } |
Willy Tarreau | f0c531a | 2017-11-05 16:35:59 +0100 | [diff] [blame] | 647 | |
Willy Tarreau | cde7902 | 2019-04-12 18:03:41 +0200 | [diff] [blame] | 648 | if (!lrq && !grq) |
| 649 | break; |
| 650 | |
| 651 | if (likely(!grq || (lrq && (int)(lrq->key - grq->key) <= 0))) { |
| 652 | t = eb32sc_entry(lrq, struct task, rq); |
| 653 | lrq = eb32sc_next(lrq, tid_bit); |
| 654 | __task_unlink_rq(t); |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 655 | } |
Willy Tarreau | 3466e3c | 2019-04-15 18:52:40 +0200 | [diff] [blame] | 656 | #ifdef USE_THREAD |
Willy Tarreau | cde7902 | 2019-04-12 18:03:41 +0200 | [diff] [blame] | 657 | else { |
| 658 | t = eb32sc_entry(grq, struct task, rq); |
| 659 | grq = eb32sc_next(grq, tid_bit); |
| 660 | __task_unlink_rq(t); |
| 661 | if (unlikely(!grq)) { |
| 662 | grq = eb32sc_first(&rqueue, tid_bit); |
| 663 | if (!grq) { |
Olivier Houchard | de82aea | 2019-04-17 19:10:22 +0200 | [diff] [blame] | 664 | global_tasks_mask &= ~tid_bit; |
Willy Tarreau | cde7902 | 2019-04-12 18:03:41 +0200 | [diff] [blame] | 665 | HA_SPIN_UNLOCK(TASK_RQ_LOCK, &rq_lock); |
Willy Tarreau | cde7902 | 2019-04-12 18:03:41 +0200 | [diff] [blame] | 666 | } |
| 667 | } |
Emeric Brun | 0194897 | 2017-03-30 15:37:25 +0200 | [diff] [blame] | 668 | } |
Willy Tarreau | 3466e3c | 2019-04-15 18:52:40 +0200 | [diff] [blame] | 669 | #endif |
Willy Tarreau | cde7902 | 2019-04-12 18:03:41 +0200 | [diff] [blame] | 670 | |
Willy Tarreau | a868c29 | 2020-11-30 15:30:22 +0100 | [diff] [blame] | 671 | /* Add it to the local task list */ |
| 672 | LIST_ADDQ(&tt->tasklets[TL_NORMAL], &((struct tasklet *)t)->list); |
Willy Tarreau | c309dbd | 2020-11-30 15:39:00 +0100 | [diff] [blame] | 673 | picked++; |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 674 | } |
Willy Tarreau | cde7902 | 2019-04-12 18:03:41 +0200 | [diff] [blame] | 675 | |
| 676 | /* release the rqueue lock */ |
| 677 | if (grq) { |
| 678 | HA_SPIN_UNLOCK(TASK_RQ_LOCK, &rq_lock); |
| 679 | grq = NULL; |
| 680 | } |
| 681 | |
Willy Tarreau | c309dbd | 2020-11-30 15:39:00 +0100 | [diff] [blame] | 682 | if (picked) { |
| 683 | tt->tl_class_mask |= 1 << TL_NORMAL; |
| 684 | _HA_ATOMIC_ADD(&tt->task_list_size, picked); |
| 685 | _HA_ATOMIC_ADD(&tasks_run_queue, picked); |
| 686 | activity[tid].tasksw += picked; |
| 687 | } |
| 688 | |
Willy Tarreau | 3ef7a19 | 2020-06-24 07:21:08 +0200 | [diff] [blame] | 689 | /* Merge the list of tasklets waken up by other threads to the |
| 690 | * main list. |
| 691 | */ |
| 692 | tmp_list = MT_LIST_BEHEAD(&tt->shared_tasklet_list); |
Willy Tarreau | 49f90bf | 2020-06-24 09:39:48 +0200 | [diff] [blame] | 693 | if (tmp_list) { |
Willy Tarreau | 3ef7a19 | 2020-06-24 07:21:08 +0200 | [diff] [blame] | 694 | LIST_SPLICE_END_DETACHED(&tt->tasklets[TL_URGENT], (struct list *)tmp_list); |
Willy Tarreau | 49f90bf | 2020-06-24 09:39:48 +0200 | [diff] [blame] | 695 | if (!LIST_ISEMPTY(&tt->tasklets[TL_URGENT])) |
| 696 | tt->tl_class_mask |= 1 << TL_URGENT; |
| 697 | } |
Willy Tarreau | cde7902 | 2019-04-12 18:03:41 +0200 | [diff] [blame] | 698 | |
Willy Tarreau | 3ef7a19 | 2020-06-24 07:21:08 +0200 | [diff] [blame] | 699 | /* execute tasklets in each queue */ |
Willy Tarreau | 59153fe | 2020-06-24 10:17:29 +0200 | [diff] [blame] | 700 | max_processed -= run_tasks_from_lists(max); |
Willy Tarreau | a62917b | 2020-01-30 18:37:28 +0100 | [diff] [blame] | 701 | |
Willy Tarreau | 5c8be27 | 2020-06-19 12:17:55 +0200 | [diff] [blame] | 702 | /* some tasks may have woken other ones up */ |
Willy Tarreau | 0c0c85e | 2020-06-23 11:32:35 +0200 | [diff] [blame] | 703 | if (max_processed > 0 && thread_has_tasks()) |
Willy Tarreau | 5c8be27 | 2020-06-19 12:17:55 +0200 | [diff] [blame] | 704 | goto not_done_yet; |
| 705 | |
Willy Tarreau | 49f90bf | 2020-06-24 09:39:48 +0200 | [diff] [blame] | 706 | if (tt->tl_class_mask) |
Willy Tarreau | cde7902 | 2019-04-12 18:03:41 +0200 | [diff] [blame] | 707 | activity[tid].long_rq++; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 708 | } |
| 709 | |
Willy Tarreau | 64e6012 | 2019-07-12 08:31:17 +0200 | [diff] [blame] | 710 | /* create a work list array for <nbthread> threads, using tasks made of |
| 711 | * function <fct>. The context passed to the function will be the pointer to |
| 712 | * the thread's work list, which will contain a copy of argument <arg>. The |
| 713 | * wake up reason will be TASK_WOKEN_OTHER. The pointer to the work_list array |
| 714 | * is returned on success, otherwise NULL on failure. |
| 715 | */ |
| 716 | struct work_list *work_list_create(int nbthread, |
| 717 | struct task *(*fct)(struct task *, void *, unsigned short), |
| 718 | void *arg) |
| 719 | { |
| 720 | struct work_list *wl; |
| 721 | int i; |
| 722 | |
| 723 | wl = calloc(nbthread, sizeof(*wl)); |
| 724 | if (!wl) |
| 725 | goto fail; |
| 726 | |
| 727 | for (i = 0; i < nbthread; i++) { |
Olivier Houchard | 859dc80 | 2019-08-08 15:47:21 +0200 | [diff] [blame] | 728 | MT_LIST_INIT(&wl[i].head); |
Willy Tarreau | 64e6012 | 2019-07-12 08:31:17 +0200 | [diff] [blame] | 729 | wl[i].task = task_new(1UL << i); |
| 730 | if (!wl[i].task) |
| 731 | goto fail; |
| 732 | wl[i].task->process = fct; |
| 733 | wl[i].task->context = &wl[i]; |
| 734 | wl[i].arg = arg; |
| 735 | } |
| 736 | return wl; |
| 737 | |
| 738 | fail: |
| 739 | work_list_destroy(wl, nbthread); |
| 740 | return NULL; |
| 741 | } |
| 742 | |
| 743 | /* destroy work list <work> */ |
| 744 | void work_list_destroy(struct work_list *work, int nbthread) |
| 745 | { |
| 746 | int t; |
| 747 | |
| 748 | if (!work) |
| 749 | return; |
| 750 | for (t = 0; t < nbthread; t++) |
| 751 | task_destroy(work[t].task); |
| 752 | free(work); |
| 753 | } |
| 754 | |
William Lallemand | 27f3fa5 | 2018-12-06 14:05:20 +0100 | [diff] [blame] | 755 | /* |
| 756 | * Delete every tasks before running the master polling loop |
| 757 | */ |
| 758 | void mworker_cleantasks() |
| 759 | { |
| 760 | struct task *t; |
| 761 | int i; |
William Lallemand | b582339 | 2018-12-06 15:14:37 +0100 | [diff] [blame] | 762 | struct eb32_node *tmp_wq = NULL; |
| 763 | struct eb32sc_node *tmp_rq = NULL; |
William Lallemand | 27f3fa5 | 2018-12-06 14:05:20 +0100 | [diff] [blame] | 764 | |
| 765 | #ifdef USE_THREAD |
| 766 | /* cleanup the global run queue */ |
William Lallemand | b582339 | 2018-12-06 15:14:37 +0100 | [diff] [blame] | 767 | tmp_rq = eb32sc_first(&rqueue, MAX_THREADS_MASK); |
| 768 | while (tmp_rq) { |
| 769 | t = eb32sc_entry(tmp_rq, struct task, rq); |
| 770 | tmp_rq = eb32sc_next(tmp_rq, MAX_THREADS_MASK); |
Olivier Houchard | 3f795f7 | 2019-04-17 22:51:06 +0200 | [diff] [blame] | 771 | task_destroy(t); |
William Lallemand | 27f3fa5 | 2018-12-06 14:05:20 +0100 | [diff] [blame] | 772 | } |
| 773 | /* cleanup the timers queue */ |
William Lallemand | b582339 | 2018-12-06 15:14:37 +0100 | [diff] [blame] | 774 | tmp_wq = eb32_first(&timers); |
| 775 | while (tmp_wq) { |
| 776 | t = eb32_entry(tmp_wq, struct task, wq); |
| 777 | tmp_wq = eb32_next(tmp_wq); |
Olivier Houchard | 3f795f7 | 2019-04-17 22:51:06 +0200 | [diff] [blame] | 778 | task_destroy(t); |
William Lallemand | 27f3fa5 | 2018-12-06 14:05:20 +0100 | [diff] [blame] | 779 | } |
| 780 | #endif |
| 781 | /* clean the per thread run queue */ |
| 782 | for (i = 0; i < global.nbthread; i++) { |
William Lallemand | b582339 | 2018-12-06 15:14:37 +0100 | [diff] [blame] | 783 | tmp_rq = eb32sc_first(&task_per_thread[i].rqueue, MAX_THREADS_MASK); |
| 784 | while (tmp_rq) { |
| 785 | t = eb32sc_entry(tmp_rq, struct task, rq); |
| 786 | tmp_rq = eb32sc_next(tmp_rq, MAX_THREADS_MASK); |
Olivier Houchard | 3f795f7 | 2019-04-17 22:51:06 +0200 | [diff] [blame] | 787 | task_destroy(t); |
William Lallemand | 27f3fa5 | 2018-12-06 14:05:20 +0100 | [diff] [blame] | 788 | } |
| 789 | /* cleanup the per thread timers queue */ |
William Lallemand | b582339 | 2018-12-06 15:14:37 +0100 | [diff] [blame] | 790 | tmp_wq = eb32_first(&task_per_thread[i].timers); |
| 791 | while (tmp_wq) { |
| 792 | t = eb32_entry(tmp_wq, struct task, wq); |
| 793 | tmp_wq = eb32_next(tmp_wq); |
Olivier Houchard | 3f795f7 | 2019-04-17 22:51:06 +0200 | [diff] [blame] | 794 | task_destroy(t); |
William Lallemand | 27f3fa5 | 2018-12-06 14:05:20 +0100 | [diff] [blame] | 795 | } |
| 796 | } |
| 797 | } |
| 798 | |
Willy Tarreau | b6b3df3 | 2018-11-26 16:31:20 +0100 | [diff] [blame] | 799 | /* perform minimal intializations */ |
| 800 | static void init_task() |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 801 | { |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 802 | int i; |
| 803 | |
Olivier Houchard | b1ca58b | 2018-06-06 14:22:03 +0200 | [diff] [blame] | 804 | #ifdef USE_THREAD |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 805 | memset(&timers, 0, sizeof(timers)); |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 806 | memset(&rqueue, 0, sizeof(rqueue)); |
Olivier Houchard | b1ca58b | 2018-06-06 14:22:03 +0200 | [diff] [blame] | 807 | #endif |
Willy Tarreau | 8d8747a | 2018-10-15 16:12:48 +0200 | [diff] [blame] | 808 | memset(&task_per_thread, 0, sizeof(task_per_thread)); |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 809 | for (i = 0; i < MAX_THREADS; i++) { |
Willy Tarreau | a62917b | 2020-01-30 18:37:28 +0100 | [diff] [blame] | 810 | LIST_INIT(&task_per_thread[i].tasklets[TL_URGENT]); |
| 811 | LIST_INIT(&task_per_thread[i].tasklets[TL_NORMAL]); |
| 812 | LIST_INIT(&task_per_thread[i].tasklets[TL_BULK]); |
Olivier Houchard | 0691046 | 2019-10-11 16:35:01 +0200 | [diff] [blame] | 813 | MT_LIST_INIT(&task_per_thread[i].shared_tasklet_list); |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 814 | } |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 815 | } |
| 816 | |
Willy Tarreau | e7723bd | 2020-06-24 11:11:02 +0200 | [diff] [blame] | 817 | /* config parser for global "tune.sched.low-latency", accepts "on" or "off" */ |
| 818 | static int cfg_parse_tune_sched_low_latency(char **args, int section_type, struct proxy *curpx, |
| 819 | struct proxy *defpx, const char *file, int line, |
| 820 | char **err) |
| 821 | { |
| 822 | if (too_many_args(1, args, err, NULL)) |
| 823 | return -1; |
| 824 | |
| 825 | if (strcmp(args[1], "on") == 0) |
| 826 | global.tune.options |= GTUNE_SCHED_LOW_LATENCY; |
| 827 | else if (strcmp(args[1], "off") == 0) |
| 828 | global.tune.options &= ~GTUNE_SCHED_LOW_LATENCY; |
| 829 | else { |
| 830 | memprintf(err, "'%s' expects either 'on' or 'off' but got '%s'.", args[0], args[1]); |
| 831 | return -1; |
| 832 | } |
| 833 | return 0; |
| 834 | } |
| 835 | |
| 836 | /* config keyword parsers */ |
| 837 | static struct cfg_kw_list cfg_kws = {ILH, { |
| 838 | { CFG_GLOBAL, "tune.sched.low-latency", cfg_parse_tune_sched_low_latency }, |
| 839 | { 0, NULL, NULL } |
| 840 | }}; |
| 841 | |
| 842 | INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws); |
Willy Tarreau | b6b3df3 | 2018-11-26 16:31:20 +0100 | [diff] [blame] | 843 | INITCALL0(STG_PREPARE, init_task); |
| 844 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 845 | /* |
| 846 | * Local variables: |
| 847 | * c-indent-level: 8 |
| 848 | * c-basic-offset: 8 |
| 849 | * End: |
| 850 | */ |