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 | 2dd0d47 | 2006-06-29 17:53:05 +0200 | [diff] [blame] | 15 | #include <common/config.h> |
Willy Tarreau | c6ca1a0 | 2007-05-13 19:43:47 +0200 | [diff] [blame] | 16 | #include <common/memory.h> |
Willy Tarreau | 2dd0d47 | 2006-06-29 17:53:05 +0200 | [diff] [blame] | 17 | #include <common/mini-clist.h> |
Willy Tarreau | 96bcfd7 | 2007-04-29 10:41:56 +0200 | [diff] [blame] | 18 | #include <common/standard.h> |
Willy Tarreau | a6a6a93 | 2007-04-28 22:40:08 +0200 | [diff] [blame] | 19 | #include <common/time.h> |
Willy Tarreau | 8d38805 | 2017-11-05 13:34:20 +0100 | [diff] [blame] | 20 | #include <eb32sctree.h> |
Willy Tarreau | 45cb4fb | 2009-10-26 21:10:04 +0100 | [diff] [blame] | 21 | #include <eb32tree.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 22 | |
Willy Tarreau | 0212fad | 2019-04-24 08:10:57 +0200 | [diff] [blame] | 23 | #include <proto/fd.h> |
| 24 | #include <proto/freq_ctr.h> |
Willy Tarreau | d825eef | 2007-05-12 22:35:00 +0200 | [diff] [blame] | 25 | #include <proto/proxy.h> |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 26 | #include <proto/stream.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 27 | #include <proto/task.h> |
| 28 | |
Willy Tarreau | 8ceae72 | 2018-11-26 11:58:30 +0100 | [diff] [blame] | 29 | DECLARE_POOL(pool_head_task, "task", sizeof(struct task)); |
| 30 | DECLARE_POOL(pool_head_tasklet, "tasklet", sizeof(struct tasklet)); |
Willy Tarreau | 96bcfd7 | 2007-04-29 10:41:56 +0200 | [diff] [blame] | 31 | |
Thierry FOURNIER | d697596 | 2017-07-12 14:31:10 +0200 | [diff] [blame] | 32 | /* This is the memory pool containing all the signal structs. These |
Joseph Herlant | cf92b6d | 2018-11-15 14:19:23 -0800 | [diff] [blame] | 33 | * struct are used to store each required signal between two tasks. |
Thierry FOURNIER | d697596 | 2017-07-12 14:31:10 +0200 | [diff] [blame] | 34 | */ |
Willy Tarreau | 8ceae72 | 2018-11-26 11:58:30 +0100 | [diff] [blame] | 35 | DECLARE_POOL(pool_head_notification, "notification", sizeof(struct notification)); |
Thierry FOURNIER | d697596 | 2017-07-12 14:31:10 +0200 | [diff] [blame] | 36 | |
Willy Tarreau | a461318 | 2009-03-21 18:13:21 +0100 | [diff] [blame] | 37 | unsigned int nb_tasks = 0; |
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 */ |
Christopher Faulet | 34c5cc9 | 2016-12-06 09:15:30 +0100 | [diff] [blame] | 39 | unsigned int tasks_run_queue = 0; |
| 40 | 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] | 41 | unsigned int nb_tasks_cur = 0; /* copy of the tasks count */ |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 42 | 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] | 43 | |
Willy Tarreau | d022e9c | 2019-09-24 08:25:15 +0200 | [diff] [blame] | 44 | 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] | 45 | |
Willy Tarreau | 86abe44 | 2018-11-25 20:12:18 +0100 | [diff] [blame] | 46 | __decl_aligned_spinlock(rq_lock); /* spin lock related to run queue */ |
Willy Tarreau | ef28dc1 | 2019-05-28 18:48:07 +0200 | [diff] [blame] | 47 | __decl_aligned_rwlock(wq_lock); /* RW lock related to the wait queue */ |
Willy Tarreau | 964c936 | 2007-01-07 00:38:00 +0100 | [diff] [blame] | 48 | |
Olivier Houchard | b1ca58b | 2018-06-06 14:22:03 +0200 | [diff] [blame] | 49 | #ifdef USE_THREAD |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 50 | struct eb_root timers; /* sorted timers tree, global */ |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 51 | struct eb_root rqueue; /* tree constituting the run queue */ |
Olivier Houchard | 77551ee | 2018-07-26 15:59:38 +0200 | [diff] [blame] | 52 | int global_rqueue_size; /* Number of element sin the global runqueue */ |
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 | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 59 | /* Puts the task <t> in run queue at a position depending on t->nice. <t> is |
| 60 | * 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] | 61 | * nice value of -1024 sets the task to -tasks_run_queue*32, while a nice value |
| 62 | * of 1024 sets the task to tasks_run_queue*32. The state flags are cleared, so |
| 63 | * the caller will have to set its flags after this call. |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 64 | * The task must not already be in the run queue. If unsure, use the safer |
| 65 | * task_wakeup() function. |
Willy Tarreau | 91e9993 | 2008-06-30 07:51:00 +0200 | [diff] [blame] | 66 | */ |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 67 | void __task_wakeup(struct task *t, struct eb_root *root) |
Willy Tarreau | e33aece | 2007-04-30 13:15:14 +0200 | [diff] [blame] | 68 | { |
Olivier Houchard | b1ca58b | 2018-06-06 14:22:03 +0200 | [diff] [blame] | 69 | #ifdef USE_THREAD |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 70 | if (root == &rqueue) { |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 71 | HA_SPIN_LOCK(TASK_RQ_LOCK, &rq_lock); |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 72 | } |
Willy Tarreau | 2d1fd0a | 2019-04-15 09:18:31 +0200 | [diff] [blame] | 73 | #endif |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 74 | /* Make sure if the task isn't in the runqueue, nobody inserts it |
| 75 | * in the meanwhile. |
| 76 | */ |
Olivier Houchard | 4c283285 | 2019-03-08 18:48:47 +0100 | [diff] [blame] | 77 | _HA_ATOMIC_ADD(&tasks_run_queue, 1); |
Olivier Houchard | c4aac9e | 2018-07-26 15:25:49 +0200 | [diff] [blame] | 78 | #ifdef USE_THREAD |
| 79 | if (root == &rqueue) { |
Olivier Houchard | de82aea | 2019-04-17 19:10:22 +0200 | [diff] [blame] | 80 | global_tasks_mask |= t->thread_mask; |
Olivier Houchard | ed1a6a0 | 2019-04-18 14:12:51 +0200 | [diff] [blame] | 81 | __ha_barrier_store(); |
Olivier Houchard | c4aac9e | 2018-07-26 15:25:49 +0200 | [diff] [blame] | 82 | } |
| 83 | #endif |
Olivier Houchard | 4c283285 | 2019-03-08 18:48:47 +0100 | [diff] [blame] | 84 | t->rq.key = _HA_ATOMIC_ADD(&rqueue_ticks, 1); |
Willy Tarreau | 91e9993 | 2008-06-30 07:51:00 +0200 | [diff] [blame] | 85 | |
| 86 | if (likely(t->nice)) { |
| 87 | int offset; |
| 88 | |
Olivier Houchard | 4c283285 | 2019-03-08 18:48:47 +0100 | [diff] [blame] | 89 | _HA_ATOMIC_ADD(&niced_tasks, 1); |
Willy Tarreau | 2d1fd0a | 2019-04-15 09:18:31 +0200 | [diff] [blame] | 90 | offset = t->nice * (int)global.tune.runqueue_depth; |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 91 | t->rq.key += offset; |
Willy Tarreau | 91e9993 | 2008-06-30 07:51:00 +0200 | [diff] [blame] | 92 | } |
| 93 | |
Willy Tarreau | d9add3a | 2019-04-25 08:57:41 +0200 | [diff] [blame] | 94 | if (task_profiling_mask & tid_bit) |
Willy Tarreau | 9efd745 | 2018-05-31 14:48:54 +0200 | [diff] [blame] | 95 | t->call_date = now_mono_time(); |
| 96 | |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 97 | eb32sc_insert(root, &t->rq, t->thread_mask); |
Olivier Houchard | b1ca58b | 2018-06-06 14:22:03 +0200 | [diff] [blame] | 98 | #ifdef USE_THREAD |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 99 | if (root == &rqueue) { |
| 100 | global_rqueue_size++; |
Olivier Houchard | 4c283285 | 2019-03-08 18:48:47 +0100 | [diff] [blame] | 101 | _HA_ATOMIC_OR(&t->state, TASK_GLOBAL); |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 102 | HA_SPIN_UNLOCK(TASK_RQ_LOCK, &rq_lock); |
Olivier Houchard | b1ca58b | 2018-06-06 14:22:03 +0200 | [diff] [blame] | 103 | } else |
| 104 | #endif |
| 105 | { |
Willy Tarreau | 8d8747a | 2018-10-15 16:12:48 +0200 | [diff] [blame] | 106 | int nb = ((void *)root - (void *)&task_per_thread[0].rqueue) / sizeof(task_per_thread[0]); |
| 107 | task_per_thread[nb].rqueue_size++; |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 108 | } |
Willy Tarreau | 85d9b84 | 2018-07-27 17:14:41 +0200 | [diff] [blame] | 109 | #ifdef USE_THREAD |
Olivier Houchard | 79321b9 | 2018-07-26 17:55:11 +0200 | [diff] [blame] | 110 | /* If all threads that are supposed to handle this task are sleeping, |
| 111 | * wake one. |
| 112 | */ |
| 113 | if ((((t->thread_mask & all_threads_mask) & sleeping_thread_mask) == |
Olivier Houchard | 1b32790 | 2019-03-15 00:23:10 +0100 | [diff] [blame] | 114 | (t->thread_mask & all_threads_mask))) { |
| 115 | unsigned long m = (t->thread_mask & all_threads_mask) &~ tid_bit; |
| 116 | |
| 117 | m = (m & (m - 1)) ^ m; // keep lowest bit set |
| 118 | _HA_ATOMIC_AND(&sleeping_thread_mask, ~m); |
| 119 | wake_thread(my_ffsl(m) - 1); |
| 120 | } |
Willy Tarreau | 85d9b84 | 2018-07-27 17:14:41 +0200 | [diff] [blame] | 121 | #endif |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 122 | return; |
Willy Tarreau | e33aece | 2007-04-30 13:15:14 +0200 | [diff] [blame] | 123 | } |
Willy Tarreau | d825eef | 2007-05-12 22:35:00 +0200 | [diff] [blame] | 124 | |
Willy Tarreau | 96bcfd7 | 2007-04-29 10:41:56 +0200 | [diff] [blame] | 125 | /* |
Willy Tarreau | 531cf0c | 2009-03-08 16:35:27 +0100 | [diff] [blame] | 126 | * __task_queue() |
Willy Tarreau | 96bcfd7 | 2007-04-29 10:41:56 +0200 | [diff] [blame] | 127 | * |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 128 | * 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] | 129 | * 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] | 130 | * 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] | 131 | * Last, tasks must not be queued further than the end of the tree, which is |
| 132 | * 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] | 133 | * |
| 134 | * This function should not be used directly, it is meant to be called by the |
| 135 | * inline version of task_queue() which performs a few cheap preliminary tests |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 136 | * before deciding to call __task_queue(). Moreover this function doesn't care |
| 137 | * at all about locking so the caller must be careful when deciding whether to |
| 138 | * lock or not around this call. |
Willy Tarreau | 96bcfd7 | 2007-04-29 10:41:56 +0200 | [diff] [blame] | 139 | */ |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 140 | void __task_queue(struct task *task, struct eb_root *wq) |
Willy Tarreau | 964c936 | 2007-01-07 00:38:00 +0100 | [diff] [blame] | 141 | { |
Willy Tarreau | 531cf0c | 2009-03-08 16:35:27 +0100 | [diff] [blame] | 142 | if (likely(task_in_wq(task))) |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 143 | __task_unlink_wq(task); |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 144 | |
| 145 | /* the task is not in the queue now */ |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 146 | task->wq.key = task->expire; |
Willy Tarreau | 28c41a4 | 2008-06-29 17:00:59 +0200 | [diff] [blame] | 147 | #ifdef DEBUG_CHECK_INVALID_EXPIRATION_DATES |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 148 | if (tick_is_lt(task->wq.key, now_ms)) |
Willy Tarreau | 28c41a4 | 2008-06-29 17:00:59 +0200 | [diff] [blame] | 149 | /* we're queuing too far away or in the past (most likely) */ |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 150 | return; |
Willy Tarreau | 28c41a4 | 2008-06-29 17:00:59 +0200 | [diff] [blame] | 151 | #endif |
Willy Tarreau | ce44f12 | 2008-07-05 18:16:19 +0200 | [diff] [blame] | 152 | |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 153 | eb32_insert(wq, &task->wq); |
Willy Tarreau | 964c936 | 2007-01-07 00:38:00 +0100 | [diff] [blame] | 154 | } |
| 155 | |
Willy Tarreau | 96bcfd7 | 2007-04-29 10:41:56 +0200 | [diff] [blame] | 156 | /* |
Willy Tarreau | 9789f7b | 2008-06-24 08:17:16 +0200 | [diff] [blame] | 157 | * Extract all expired timers from the timer queue, and wakes up all |
Willy Tarreau | c49ba52 | 2019-12-11 08:12:23 +0100 | [diff] [blame] | 158 | * associated tasks. |
Willy Tarreau | 96bcfd7 | 2007-04-29 10:41:56 +0200 | [diff] [blame] | 159 | */ |
Willy Tarreau | c49ba52 | 2019-12-11 08:12:23 +0100 | [diff] [blame] | 160 | void wake_expired_tasks() |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 161 | { |
Willy Tarreau | d022e9c | 2019-09-24 08:25:15 +0200 | [diff] [blame] | 162 | struct task_per_thread * const tt = sched; // thread's tasks |
Willy Tarreau | 96bcfd7 | 2007-04-29 10:41:56 +0200 | [diff] [blame] | 163 | struct task *task; |
Willy Tarreau | 9789f7b | 2008-06-24 08:17:16 +0200 | [diff] [blame] | 164 | struct eb32_node *eb; |
Willy Tarreau | 5598d17 | 2019-06-04 17:16:29 +0200 | [diff] [blame] | 165 | __decl_hathreads(int key); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 166 | |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 167 | while (1) { |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 168 | lookup_next_local: |
Willy Tarreau | 4c1e1ad | 2019-09-24 07:19:08 +0200 | [diff] [blame] | 169 | eb = eb32_lookup_ge(&tt->timers, now_ms - TIMER_LOOK_BACK); |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 170 | if (!eb) { |
| 171 | /* we might have reached the end of the tree, typically because |
| 172 | * <now_ms> is in the first half and we're first scanning the last |
| 173 | * half. Let's loop back to the beginning of the tree now. |
| 174 | */ |
Willy Tarreau | 4c1e1ad | 2019-09-24 07:19:08 +0200 | [diff] [blame] | 175 | eb = eb32_first(&tt->timers); |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 176 | if (likely(!eb)) |
| 177 | break; |
| 178 | } |
| 179 | |
Willy Tarreau | c49ba52 | 2019-12-11 08:12:23 +0100 | [diff] [blame] | 180 | if (tick_is_lt(now_ms, eb->key)) |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 181 | break; |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 182 | |
| 183 | /* timer looks expired, detach it from the queue */ |
| 184 | task = eb32_entry(eb, struct task, wq); |
| 185 | __task_unlink_wq(task); |
| 186 | |
| 187 | /* It is possible that this task was left at an earlier place in the |
| 188 | * tree because a recent call to task_queue() has not moved it. This |
| 189 | * happens when the new expiration date is later than the old one. |
| 190 | * Since it is very unlikely that we reach a timeout anyway, it's a |
| 191 | * lot cheaper to proceed like this because we almost never update |
| 192 | * the tree. We may also find disabled expiration dates there. Since |
| 193 | * we have detached the task from the tree, we simply call task_queue |
| 194 | * to take care of this. Note that we might occasionally requeue it at |
| 195 | * the same place, before <eb>, so we have to check if this happens, |
| 196 | * and adjust <eb>, otherwise we may skip it which is not what we want. |
| 197 | * We may also not requeue the task (and not point eb at it) if its |
| 198 | * expiration time is not set. |
| 199 | */ |
| 200 | if (!tick_is_expired(task->expire, now_ms)) { |
| 201 | if (tick_isset(task->expire)) |
Willy Tarreau | 4c1e1ad | 2019-09-24 07:19:08 +0200 | [diff] [blame] | 202 | __task_queue(task, &tt->timers); |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 203 | goto lookup_next_local; |
| 204 | } |
| 205 | task_wakeup(task, TASK_WOKEN_TIMER); |
| 206 | } |
| 207 | |
| 208 | #ifdef USE_THREAD |
Willy Tarreau | 1e928c0 | 2019-05-28 18:57:25 +0200 | [diff] [blame] | 209 | if (eb_is_empty(&timers)) |
| 210 | goto leave; |
| 211 | |
| 212 | HA_RWLOCK_RDLOCK(TASK_WQ_LOCK, &wq_lock); |
| 213 | eb = eb32_lookup_ge(&timers, now_ms - TIMER_LOOK_BACK); |
| 214 | if (!eb) { |
| 215 | eb = eb32_first(&timers); |
| 216 | if (likely(!eb)) { |
| 217 | HA_RWLOCK_RDUNLOCK(TASK_WQ_LOCK, &wq_lock); |
| 218 | goto leave; |
| 219 | } |
| 220 | } |
| 221 | key = eb->key; |
| 222 | HA_RWLOCK_RDUNLOCK(TASK_WQ_LOCK, &wq_lock); |
| 223 | |
Willy Tarreau | c49ba52 | 2019-12-11 08:12:23 +0100 | [diff] [blame] | 224 | if (tick_is_lt(now_ms, key)) |
Willy Tarreau | 1e928c0 | 2019-05-28 18:57:25 +0200 | [diff] [blame] | 225 | goto leave; |
Willy Tarreau | 1e928c0 | 2019-05-28 18:57:25 +0200 | [diff] [blame] | 226 | |
| 227 | /* There's really something of interest here, let's visit the queue */ |
| 228 | |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 229 | while (1) { |
Willy Tarreau | ef28dc1 | 2019-05-28 18:48:07 +0200 | [diff] [blame] | 230 | HA_RWLOCK_WRLOCK(TASK_WQ_LOCK, &wq_lock); |
Emeric Brun | c60def8 | 2017-09-27 14:59:38 +0200 | [diff] [blame] | 231 | lookup_next: |
Emeric Brun | 0194897 | 2017-03-30 15:37:25 +0200 | [diff] [blame] | 232 | eb = eb32_lookup_ge(&timers, now_ms - TIMER_LOOK_BACK); |
Emeric Brun | c60def8 | 2017-09-27 14:59:38 +0200 | [diff] [blame] | 233 | if (!eb) { |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 234 | /* we might have reached the end of the tree, typically because |
| 235 | * <now_ms> is in the first half and we're first scanning the last |
| 236 | * half. Let's loop back to the beginning of the tree now. |
| 237 | */ |
| 238 | eb = eb32_first(&timers); |
Willy Tarreau | b992ba1 | 2017-11-05 19:09:27 +0100 | [diff] [blame] | 239 | if (likely(!eb)) |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 240 | break; |
| 241 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 242 | |
Willy Tarreau | c49ba52 | 2019-12-11 08:12:23 +0100 | [diff] [blame] | 243 | if (tick_is_lt(now_ms, eb->key)) |
Willy Tarreau | b992ba1 | 2017-11-05 19:09:27 +0100 | [diff] [blame] | 244 | break; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 245 | |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 246 | /* timer looks expired, detach it from the queue */ |
| 247 | task = eb32_entry(eb, struct task, wq); |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 248 | __task_unlink_wq(task); |
Willy Tarreau | 4136522 | 2009-03-08 07:46:27 +0100 | [diff] [blame] | 249 | |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 250 | /* It is possible that this task was left at an earlier place in the |
| 251 | * tree because a recent call to task_queue() has not moved it. This |
| 252 | * happens when the new expiration date is later than the old one. |
| 253 | * Since it is very unlikely that we reach a timeout anyway, it's a |
| 254 | * lot cheaper to proceed like this because we almost never update |
| 255 | * the tree. We may also find disabled expiration dates there. Since |
| 256 | * we have detached the task from the tree, we simply call task_queue |
Willy Tarreau | 814c978 | 2009-07-14 23:48:55 +0200 | [diff] [blame] | 257 | * to take care of this. Note that we might occasionally requeue it at |
| 258 | * the same place, before <eb>, so we have to check if this happens, |
| 259 | * and adjust <eb>, otherwise we may skip it which is not what we want. |
Willy Tarreau | 34e98ea | 2009-08-09 09:09:54 +0200 | [diff] [blame] | 260 | * We may also not requeue the task (and not point eb at it) if its |
| 261 | * expiration time is not set. |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 262 | */ |
| 263 | if (!tick_is_expired(task->expire, now_ms)) { |
Willy Tarreau | b992ba1 | 2017-11-05 19:09:27 +0100 | [diff] [blame] | 264 | if (tick_isset(task->expire)) |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 265 | __task_queue(task, &timers); |
Emeric Brun | c60def8 | 2017-09-27 14:59:38 +0200 | [diff] [blame] | 266 | goto lookup_next; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 267 | } |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 268 | task_wakeup(task, TASK_WOKEN_TIMER); |
Willy Tarreau | ef28dc1 | 2019-05-28 18:48:07 +0200 | [diff] [blame] | 269 | HA_RWLOCK_WRUNLOCK(TASK_WQ_LOCK, &wq_lock); |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 270 | } |
Willy Tarreau | 9789f7b | 2008-06-24 08:17:16 +0200 | [diff] [blame] | 271 | |
Willy Tarreau | ef28dc1 | 2019-05-28 18:48:07 +0200 | [diff] [blame] | 272 | HA_RWLOCK_WRUNLOCK(TASK_WQ_LOCK, &wq_lock); |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 273 | #endif |
Willy Tarreau | 1e928c0 | 2019-05-28 18:57:25 +0200 | [diff] [blame] | 274 | leave: |
Willy Tarreau | c49ba52 | 2019-12-11 08:12:23 +0100 | [diff] [blame] | 275 | return; |
| 276 | } |
| 277 | |
| 278 | /* Checks the next timer for the current thread by looking into its own timer |
| 279 | * list and the global one. It may return TICK_ETERNITY if no timer is present. |
| 280 | * Note that the next timer might very well be slighly in the past. |
| 281 | */ |
| 282 | int next_timer_expiry() |
| 283 | { |
| 284 | struct task_per_thread * const tt = sched; // thread's tasks |
| 285 | struct eb32_node *eb; |
| 286 | int ret = TICK_ETERNITY; |
| 287 | __decl_hathreads(int key); |
| 288 | |
| 289 | /* first check in the thread-local timers */ |
| 290 | eb = eb32_lookup_ge(&tt->timers, now_ms - TIMER_LOOK_BACK); |
| 291 | if (!eb) { |
| 292 | /* we might have reached the end of the tree, typically because |
| 293 | * <now_ms> is in the first half and we're first scanning the last |
| 294 | * half. Let's loop back to the beginning of the tree now. |
| 295 | */ |
| 296 | eb = eb32_first(&tt->timers); |
| 297 | } |
| 298 | |
| 299 | if (eb) |
| 300 | ret = eb->key; |
| 301 | |
| 302 | #ifdef USE_THREAD |
| 303 | if (!eb_is_empty(&timers)) { |
| 304 | HA_RWLOCK_RDLOCK(TASK_WQ_LOCK, &wq_lock); |
| 305 | eb = eb32_lookup_ge(&timers, now_ms - TIMER_LOOK_BACK); |
| 306 | if (!eb) |
| 307 | eb = eb32_first(&timers); |
| 308 | if (eb) |
| 309 | key = eb->key; |
| 310 | HA_RWLOCK_RDUNLOCK(TASK_WQ_LOCK, &wq_lock); |
| 311 | if (eb) |
| 312 | ret = tick_first(ret, key); |
| 313 | } |
| 314 | #endif |
Willy Tarreau | b992ba1 | 2017-11-05 19:09:27 +0100 | [diff] [blame] | 315 | return ret; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 316 | } |
| 317 | |
Willy Tarreau | 4ffa0b5 | 2020-01-30 18:13:13 +0100 | [diff] [blame] | 318 | /* Walks over tasklet list <list> and run at most <max> of them. Returns |
| 319 | * the number of entries effectively processed (tasks and tasklets merged). |
| 320 | * The count of tasks in the list for the current thread is adjusted. |
| 321 | */ |
| 322 | static int run_tasks_from_list(struct list *list, int max) |
| 323 | { |
| 324 | struct task *(*process)(struct task *t, void *ctx, unsigned short state); |
| 325 | struct task *t; |
| 326 | unsigned short state; |
| 327 | void *ctx; |
| 328 | int done = 0; |
| 329 | |
| 330 | while (done < max && !LIST_ISEMPTY(list)) { |
| 331 | t = (struct task *)LIST_ELEM(list->n, struct tasklet *, list); |
Willy Tarreau | 952c264 | 2020-01-31 16:39:30 +0100 | [diff] [blame] | 332 | state = (t->state & (TASK_SHARED_WQ|TASK_SELF_WAKING)); |
Willy Tarreau | 4ffa0b5 | 2020-01-30 18:13:13 +0100 | [diff] [blame] | 333 | |
| 334 | ti->flags &= ~TI_FL_STUCK; // this thread is still running |
| 335 | activity[tid].ctxsw++; |
| 336 | ctx = t->context; |
| 337 | process = t->process; |
| 338 | t->calls++; |
Willy Tarreau | d23d413 | 2020-01-31 10:39:03 +0100 | [diff] [blame] | 339 | sched->current = t; |
Willy Tarreau | 4ffa0b5 | 2020-01-30 18:13:13 +0100 | [diff] [blame] | 340 | |
| 341 | if (TASK_IS_TASKLET(t)) { |
Willy Tarreau | 952c264 | 2020-01-31 16:39:30 +0100 | [diff] [blame] | 342 | state = _HA_ATOMIC_XCHG(&t->state, state); |
| 343 | __ha_barrier_atomic_store(); |
| 344 | __tasklet_remove_from_tasklet_list((struct tasklet *)t); |
Willy Tarreau | 4ffa0b5 | 2020-01-30 18:13:13 +0100 | [diff] [blame] | 345 | process(NULL, ctx, state); |
| 346 | done++; |
Willy Tarreau | d23d413 | 2020-01-31 10:39:03 +0100 | [diff] [blame] | 347 | sched->current = NULL; |
| 348 | __ha_barrier_store(); |
Willy Tarreau | 4ffa0b5 | 2020-01-30 18:13:13 +0100 | [diff] [blame] | 349 | continue; |
| 350 | } |
| 351 | |
Willy Tarreau | 952c264 | 2020-01-31 16:39:30 +0100 | [diff] [blame] | 352 | state = _HA_ATOMIC_XCHG(&t->state, state | TASK_RUNNING); |
| 353 | __ha_barrier_atomic_store(); |
| 354 | __tasklet_remove_from_tasklet_list((struct tasklet *)t); |
| 355 | |
Willy Tarreau | 4ffa0b5 | 2020-01-30 18:13:13 +0100 | [diff] [blame] | 356 | /* OK then this is a regular task */ |
| 357 | |
| 358 | task_per_thread[tid].task_list_size--; |
| 359 | if (unlikely(t->call_date)) { |
| 360 | uint64_t now_ns = now_mono_time(); |
| 361 | |
| 362 | t->lat_time += now_ns - t->call_date; |
| 363 | t->call_date = now_ns; |
| 364 | } |
| 365 | |
Willy Tarreau | 4ffa0b5 | 2020-01-30 18:13:13 +0100 | [diff] [blame] | 366 | __ha_barrier_store(); |
| 367 | if (likely(process == process_stream)) |
| 368 | t = process_stream(t, ctx, state); |
| 369 | else if (process != NULL) |
| 370 | t = process(t, ctx, state); |
| 371 | else { |
| 372 | __task_free(t); |
| 373 | sched->current = NULL; |
| 374 | __ha_barrier_store(); |
| 375 | /* We don't want max_processed to be decremented if |
| 376 | * we're just freeing a destroyed task, we should only |
| 377 | * do so if we really ran a task. |
| 378 | */ |
| 379 | continue; |
| 380 | } |
| 381 | sched->current = NULL; |
| 382 | __ha_barrier_store(); |
| 383 | /* If there is a pending state we have to wake up the task |
| 384 | * immediately, else we defer it into wait queue |
| 385 | */ |
| 386 | if (t != NULL) { |
| 387 | if (unlikely(t->call_date)) { |
| 388 | t->cpu_time += now_mono_time() - t->call_date; |
| 389 | t->call_date = 0; |
| 390 | } |
| 391 | |
| 392 | state = _HA_ATOMIC_AND(&t->state, ~TASK_RUNNING); |
| 393 | if (state & TASK_WOKEN_ANY) |
| 394 | task_wakeup(t, 0); |
| 395 | else |
| 396 | task_queue(t); |
| 397 | } |
| 398 | done++; |
| 399 | } |
| 400 | return done; |
| 401 | } |
| 402 | |
Willy Tarreau | 58b458d | 2008-06-29 22:40:23 +0200 | [diff] [blame] | 403 | /* The run queue is chronologically sorted in a tree. An insertion counter is |
| 404 | * used to assign a position to each task. This counter may be combined with |
| 405 | * other variables (eg: nice value) to set the final position in the tree. The |
| 406 | * 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] | 407 | * 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] | 408 | * so that task positions have a chance to be considered. The function scans |
| 409 | * both the global and local run queues and picks the most urgent task between |
| 410 | * the two. We need to grab the global runqueue lock to touch it so it's taken |
| 411 | * on the very first access to the global run queue and is released as soon as |
| 412 | * it reaches the end. |
Willy Tarreau | 58b458d | 2008-06-29 22:40:23 +0200 | [diff] [blame] | 413 | * |
| 414 | * The function adjusts <next> if a new event is closer. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 415 | */ |
Thierry FOURNIER | 9cf7c4b | 2014-12-15 13:26:01 +0100 | [diff] [blame] | 416 | void process_runnable_tasks() |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 417 | { |
Willy Tarreau | d022e9c | 2019-09-24 08:25:15 +0200 | [diff] [blame] | 418 | struct task_per_thread * const tt = sched; |
Willy Tarreau | cde7902 | 2019-04-12 18:03:41 +0200 | [diff] [blame] | 419 | struct eb32sc_node *lrq = NULL; // next local run queue entry |
| 420 | struct eb32sc_node *grq = NULL; // next global run queue entry |
Willy Tarreau | 964c936 | 2007-01-07 00:38:00 +0100 | [diff] [blame] | 421 | struct task *t; |
Willy Tarreau | 4ffa0b5 | 2020-01-30 18:13:13 +0100 | [diff] [blame] | 422 | int max_processed, done; |
Olivier Houchard | 0691046 | 2019-10-11 16:35:01 +0200 | [diff] [blame] | 423 | struct mt_list *tmp_list; |
Christopher Faulet | 3911ee8 | 2017-11-14 10:26:53 +0100 | [diff] [blame] | 424 | |
Willy Tarreau | e6a02fa | 2019-05-22 07:06:44 +0200 | [diff] [blame] | 425 | ti->flags &= ~TI_FL_STUCK; // this thread is still running |
| 426 | |
Olivier Houchard | cfbb3e6 | 2019-05-29 19:22:43 +0200 | [diff] [blame] | 427 | if (!thread_has_tasks()) { |
Willy Tarreau | cde7902 | 2019-04-12 18:03:41 +0200 | [diff] [blame] | 428 | activity[tid].empty_rq++; |
| 429 | return; |
| 430 | } |
Olivier Houchard | 0691046 | 2019-10-11 16:35:01 +0200 | [diff] [blame] | 431 | /* Merge the list of tasklets waken up by other threads to the |
| 432 | * main list. |
| 433 | */ |
| 434 | tmp_list = MT_LIST_BEHEAD(&sched->shared_tasklet_list); |
| 435 | if (tmp_list) |
Willy Tarreau | a62917b | 2020-01-30 18:37:28 +0100 | [diff] [blame] | 436 | LIST_SPLICE_END_DETACHED(&sched->tasklets[TL_URGENT], (struct list *)tmp_list); |
Willy Tarreau | cde7902 | 2019-04-12 18:03:41 +0200 | [diff] [blame] | 437 | |
Christopher Faulet | 34c5cc9 | 2016-12-06 09:15:30 +0100 | [diff] [blame] | 438 | tasks_run_queue_cur = tasks_run_queue; /* keep a copy for reporting */ |
Willy Tarreau | c7bdf09 | 2009-03-21 18:33:52 +0100 | [diff] [blame] | 439 | nb_tasks_cur = nb_tasks; |
Olivier Houchard | 1599b80 | 2018-05-24 18:59:04 +0200 | [diff] [blame] | 440 | max_processed = global.tune.runqueue_depth; |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 441 | |
Willy Tarreau | c8da044 | 2019-04-15 09:33:42 +0200 | [diff] [blame] | 442 | if (likely(niced_tasks)) |
| 443 | max_processed = (max_processed + 3) / 4; |
| 444 | |
Willy Tarreau | 1dfc9bb | 2020-01-31 17:55:09 +0100 | [diff] [blame] | 445 | /* run up to max_processed/3 urgent tasklets */ |
| 446 | done = run_tasks_from_list(&tt->tasklets[TL_URGENT], (max_processed + 2) / 3); |
Willy Tarreau | a62917b | 2020-01-30 18:37:28 +0100 | [diff] [blame] | 447 | max_processed -= done; |
| 448 | |
Willy Tarreau | 1dfc9bb | 2020-01-31 17:55:09 +0100 | [diff] [blame] | 449 | /* pick up to max_processed/2 (~=3/4*(max_processed-done)) regular tasks from prio-ordered run queues */ |
Willy Tarreau | a62917b | 2020-01-30 18:37:28 +0100 | [diff] [blame] | 450 | |
Willy Tarreau | cde7902 | 2019-04-12 18:03:41 +0200 | [diff] [blame] | 451 | /* Note: the grq lock is always held when grq is not null */ |
Christopher Faulet | 8a48f67 | 2017-11-14 10:38:36 +0100 | [diff] [blame] | 452 | |
Willy Tarreau | 1dfc9bb | 2020-01-31 17:55:09 +0100 | [diff] [blame] | 453 | while (tt->task_list_size < (3 * max_processed + 3) / 4) { |
Willy Tarreau | cde7902 | 2019-04-12 18:03:41 +0200 | [diff] [blame] | 454 | if ((global_tasks_mask & tid_bit) && !grq) { |
Willy Tarreau | 3466e3c | 2019-04-15 18:52:40 +0200 | [diff] [blame] | 455 | #ifdef USE_THREAD |
Willy Tarreau | cde7902 | 2019-04-12 18:03:41 +0200 | [diff] [blame] | 456 | HA_SPIN_LOCK(TASK_RQ_LOCK, &rq_lock); |
| 457 | grq = eb32sc_lookup_ge(&rqueue, rqueue_ticks - TIMER_LOOK_BACK, tid_bit); |
| 458 | if (unlikely(!grq)) { |
| 459 | grq = eb32sc_first(&rqueue, tid_bit); |
| 460 | if (!grq) { |
Olivier Houchard | de82aea | 2019-04-17 19:10:22 +0200 | [diff] [blame] | 461 | global_tasks_mask &= ~tid_bit; |
Willy Tarreau | cde7902 | 2019-04-12 18:03:41 +0200 | [diff] [blame] | 462 | HA_SPIN_UNLOCK(TASK_RQ_LOCK, &rq_lock); |
Olivier Houchard | c4aac9e | 2018-07-26 15:25:49 +0200 | [diff] [blame] | 463 | } |
Willy Tarreau | f0c531a | 2017-11-05 16:35:59 +0100 | [diff] [blame] | 464 | } |
Willy Tarreau | 3466e3c | 2019-04-15 18:52:40 +0200 | [diff] [blame] | 465 | #endif |
Willy Tarreau | cde7902 | 2019-04-12 18:03:41 +0200 | [diff] [blame] | 466 | } |
Willy Tarreau | f0c531a | 2017-11-05 16:35:59 +0100 | [diff] [blame] | 467 | |
Willy Tarreau | cde7902 | 2019-04-12 18:03:41 +0200 | [diff] [blame] | 468 | /* If a global task is available for this thread, it's in grq |
| 469 | * now and the global RQ is locked. |
| 470 | */ |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 471 | |
Willy Tarreau | cde7902 | 2019-04-12 18:03:41 +0200 | [diff] [blame] | 472 | if (!lrq) { |
Willy Tarreau | 4c1e1ad | 2019-09-24 07:19:08 +0200 | [diff] [blame] | 473 | 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] | 474 | if (unlikely(!lrq)) |
Willy Tarreau | 4c1e1ad | 2019-09-24 07:19:08 +0200 | [diff] [blame] | 475 | lrq = eb32sc_first(&tt->rqueue, tid_bit); |
Willy Tarreau | f0c531a | 2017-11-05 16:35:59 +0100 | [diff] [blame] | 476 | } |
Willy Tarreau | f0c531a | 2017-11-05 16:35:59 +0100 | [diff] [blame] | 477 | |
Willy Tarreau | cde7902 | 2019-04-12 18:03:41 +0200 | [diff] [blame] | 478 | if (!lrq && !grq) |
| 479 | break; |
| 480 | |
| 481 | if (likely(!grq || (lrq && (int)(lrq->key - grq->key) <= 0))) { |
| 482 | t = eb32sc_entry(lrq, struct task, rq); |
| 483 | lrq = eb32sc_next(lrq, tid_bit); |
| 484 | __task_unlink_rq(t); |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 485 | } |
Willy Tarreau | 3466e3c | 2019-04-15 18:52:40 +0200 | [diff] [blame] | 486 | #ifdef USE_THREAD |
Willy Tarreau | cde7902 | 2019-04-12 18:03:41 +0200 | [diff] [blame] | 487 | else { |
| 488 | t = eb32sc_entry(grq, struct task, rq); |
| 489 | grq = eb32sc_next(grq, tid_bit); |
| 490 | __task_unlink_rq(t); |
| 491 | if (unlikely(!grq)) { |
| 492 | grq = eb32sc_first(&rqueue, tid_bit); |
| 493 | if (!grq) { |
Olivier Houchard | de82aea | 2019-04-17 19:10:22 +0200 | [diff] [blame] | 494 | global_tasks_mask &= ~tid_bit; |
Willy Tarreau | cde7902 | 2019-04-12 18:03:41 +0200 | [diff] [blame] | 495 | HA_SPIN_UNLOCK(TASK_RQ_LOCK, &rq_lock); |
Willy Tarreau | cde7902 | 2019-04-12 18:03:41 +0200 | [diff] [blame] | 496 | } |
| 497 | } |
Emeric Brun | 0194897 | 2017-03-30 15:37:25 +0200 | [diff] [blame] | 498 | } |
Willy Tarreau | 3466e3c | 2019-04-15 18:52:40 +0200 | [diff] [blame] | 499 | #endif |
Willy Tarreau | cde7902 | 2019-04-12 18:03:41 +0200 | [diff] [blame] | 500 | |
Olivier Houchard | ff1e9f3 | 2019-09-20 17:18:35 +0200 | [diff] [blame] | 501 | /* Make sure the entry doesn't appear to be in a list */ |
Olivier Houchard | 0691046 | 2019-10-11 16:35:01 +0200 | [diff] [blame] | 502 | LIST_INIT(&((struct tasklet *)t)->list); |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 503 | /* And add it to the local task list */ |
Willy Tarreau | a62917b | 2020-01-30 18:37:28 +0100 | [diff] [blame] | 504 | tasklet_insert_into_tasklet_list(&tt->tasklets[TL_NORMAL], (struct tasklet *)t); |
Olivier Houchard | 0691046 | 2019-10-11 16:35:01 +0200 | [diff] [blame] | 505 | tt->task_list_size++; |
Willy Tarreau | bc13bec | 2019-04-30 14:55:18 +0200 | [diff] [blame] | 506 | activity[tid].tasksw++; |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 507 | } |
Willy Tarreau | cde7902 | 2019-04-12 18:03:41 +0200 | [diff] [blame] | 508 | |
| 509 | /* release the rqueue lock */ |
| 510 | if (grq) { |
| 511 | HA_SPIN_UNLOCK(TASK_RQ_LOCK, &rq_lock); |
| 512 | grq = NULL; |
| 513 | } |
| 514 | |
Willy Tarreau | 1dfc9bb | 2020-01-31 17:55:09 +0100 | [diff] [blame] | 515 | /* run between 0.4*max_processed and max_processed/2 regular tasks */ |
| 516 | done = run_tasks_from_list(&tt->tasklets[TL_NORMAL], (3 * max_processed + 3) / 4); |
Willy Tarreau | 4ffa0b5 | 2020-01-30 18:13:13 +0100 | [diff] [blame] | 517 | max_processed -= done; |
Willy Tarreau | cde7902 | 2019-04-12 18:03:41 +0200 | [diff] [blame] | 518 | |
Willy Tarreau | 1dfc9bb | 2020-01-31 17:55:09 +0100 | [diff] [blame] | 519 | /* run between max_processed/4 and max_processed bulk tasklets */ |
Willy Tarreau | a62917b | 2020-01-30 18:37:28 +0100 | [diff] [blame] | 520 | done = run_tasks_from_list(&tt->tasklets[TL_BULK], max_processed); |
| 521 | max_processed -= done; |
| 522 | |
| 523 | if (!LIST_ISEMPTY(&sched->tasklets[TL_URGENT]) | |
| 524 | !LIST_ISEMPTY(&sched->tasklets[TL_NORMAL]) | |
| 525 | !LIST_ISEMPTY(&sched->tasklets[TL_BULK])) |
Willy Tarreau | cde7902 | 2019-04-12 18:03:41 +0200 | [diff] [blame] | 526 | activity[tid].long_rq++; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 527 | } |
| 528 | |
Willy Tarreau | 64e6012 | 2019-07-12 08:31:17 +0200 | [diff] [blame] | 529 | /* create a work list array for <nbthread> threads, using tasks made of |
| 530 | * function <fct>. The context passed to the function will be the pointer to |
| 531 | * the thread's work list, which will contain a copy of argument <arg>. The |
| 532 | * wake up reason will be TASK_WOKEN_OTHER. The pointer to the work_list array |
| 533 | * is returned on success, otherwise NULL on failure. |
| 534 | */ |
| 535 | struct work_list *work_list_create(int nbthread, |
| 536 | struct task *(*fct)(struct task *, void *, unsigned short), |
| 537 | void *arg) |
| 538 | { |
| 539 | struct work_list *wl; |
| 540 | int i; |
| 541 | |
| 542 | wl = calloc(nbthread, sizeof(*wl)); |
| 543 | if (!wl) |
| 544 | goto fail; |
| 545 | |
| 546 | for (i = 0; i < nbthread; i++) { |
Olivier Houchard | 859dc80 | 2019-08-08 15:47:21 +0200 | [diff] [blame] | 547 | MT_LIST_INIT(&wl[i].head); |
Willy Tarreau | 64e6012 | 2019-07-12 08:31:17 +0200 | [diff] [blame] | 548 | wl[i].task = task_new(1UL << i); |
| 549 | if (!wl[i].task) |
| 550 | goto fail; |
| 551 | wl[i].task->process = fct; |
| 552 | wl[i].task->context = &wl[i]; |
| 553 | wl[i].arg = arg; |
| 554 | } |
| 555 | return wl; |
| 556 | |
| 557 | fail: |
| 558 | work_list_destroy(wl, nbthread); |
| 559 | return NULL; |
| 560 | } |
| 561 | |
| 562 | /* destroy work list <work> */ |
| 563 | void work_list_destroy(struct work_list *work, int nbthread) |
| 564 | { |
| 565 | int t; |
| 566 | |
| 567 | if (!work) |
| 568 | return; |
| 569 | for (t = 0; t < nbthread; t++) |
| 570 | task_destroy(work[t].task); |
| 571 | free(work); |
| 572 | } |
| 573 | |
William Lallemand | 27f3fa5 | 2018-12-06 14:05:20 +0100 | [diff] [blame] | 574 | /* |
| 575 | * Delete every tasks before running the master polling loop |
| 576 | */ |
| 577 | void mworker_cleantasks() |
| 578 | { |
| 579 | struct task *t; |
| 580 | int i; |
William Lallemand | b582339 | 2018-12-06 15:14:37 +0100 | [diff] [blame] | 581 | struct eb32_node *tmp_wq = NULL; |
| 582 | struct eb32sc_node *tmp_rq = NULL; |
William Lallemand | 27f3fa5 | 2018-12-06 14:05:20 +0100 | [diff] [blame] | 583 | |
| 584 | #ifdef USE_THREAD |
| 585 | /* cleanup the global run queue */ |
William Lallemand | b582339 | 2018-12-06 15:14:37 +0100 | [diff] [blame] | 586 | tmp_rq = eb32sc_first(&rqueue, MAX_THREADS_MASK); |
| 587 | while (tmp_rq) { |
| 588 | t = eb32sc_entry(tmp_rq, struct task, rq); |
| 589 | tmp_rq = eb32sc_next(tmp_rq, MAX_THREADS_MASK); |
Olivier Houchard | 3f795f7 | 2019-04-17 22:51:06 +0200 | [diff] [blame] | 590 | task_destroy(t); |
William Lallemand | 27f3fa5 | 2018-12-06 14:05:20 +0100 | [diff] [blame] | 591 | } |
| 592 | /* cleanup the timers queue */ |
William Lallemand | b582339 | 2018-12-06 15:14:37 +0100 | [diff] [blame] | 593 | tmp_wq = eb32_first(&timers); |
| 594 | while (tmp_wq) { |
| 595 | t = eb32_entry(tmp_wq, struct task, wq); |
| 596 | tmp_wq = eb32_next(tmp_wq); |
Olivier Houchard | 3f795f7 | 2019-04-17 22:51:06 +0200 | [diff] [blame] | 597 | task_destroy(t); |
William Lallemand | 27f3fa5 | 2018-12-06 14:05:20 +0100 | [diff] [blame] | 598 | } |
| 599 | #endif |
| 600 | /* clean the per thread run queue */ |
| 601 | for (i = 0; i < global.nbthread; i++) { |
William Lallemand | b582339 | 2018-12-06 15:14:37 +0100 | [diff] [blame] | 602 | tmp_rq = eb32sc_first(&task_per_thread[i].rqueue, MAX_THREADS_MASK); |
| 603 | while (tmp_rq) { |
| 604 | t = eb32sc_entry(tmp_rq, struct task, rq); |
| 605 | tmp_rq = eb32sc_next(tmp_rq, MAX_THREADS_MASK); |
Olivier Houchard | 3f795f7 | 2019-04-17 22:51:06 +0200 | [diff] [blame] | 606 | task_destroy(t); |
William Lallemand | 27f3fa5 | 2018-12-06 14:05:20 +0100 | [diff] [blame] | 607 | } |
| 608 | /* cleanup the per thread timers queue */ |
William Lallemand | b582339 | 2018-12-06 15:14:37 +0100 | [diff] [blame] | 609 | tmp_wq = eb32_first(&task_per_thread[i].timers); |
| 610 | while (tmp_wq) { |
| 611 | t = eb32_entry(tmp_wq, struct task, wq); |
| 612 | tmp_wq = eb32_next(tmp_wq); |
Olivier Houchard | 3f795f7 | 2019-04-17 22:51:06 +0200 | [diff] [blame] | 613 | task_destroy(t); |
William Lallemand | 27f3fa5 | 2018-12-06 14:05:20 +0100 | [diff] [blame] | 614 | } |
| 615 | } |
| 616 | } |
| 617 | |
Willy Tarreau | b6b3df3 | 2018-11-26 16:31:20 +0100 | [diff] [blame] | 618 | /* perform minimal intializations */ |
| 619 | static void init_task() |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 620 | { |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 621 | int i; |
| 622 | |
Olivier Houchard | b1ca58b | 2018-06-06 14:22:03 +0200 | [diff] [blame] | 623 | #ifdef USE_THREAD |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 624 | memset(&timers, 0, sizeof(timers)); |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 625 | memset(&rqueue, 0, sizeof(rqueue)); |
Olivier Houchard | b1ca58b | 2018-06-06 14:22:03 +0200 | [diff] [blame] | 626 | #endif |
Willy Tarreau | 8d8747a | 2018-10-15 16:12:48 +0200 | [diff] [blame] | 627 | memset(&task_per_thread, 0, sizeof(task_per_thread)); |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 628 | for (i = 0; i < MAX_THREADS; i++) { |
Willy Tarreau | a62917b | 2020-01-30 18:37:28 +0100 | [diff] [blame] | 629 | LIST_INIT(&task_per_thread[i].tasklets[TL_URGENT]); |
| 630 | LIST_INIT(&task_per_thread[i].tasklets[TL_NORMAL]); |
| 631 | LIST_INIT(&task_per_thread[i].tasklets[TL_BULK]); |
Olivier Houchard | 0691046 | 2019-10-11 16:35:01 +0200 | [diff] [blame] | 632 | MT_LIST_INIT(&task_per_thread[i].shared_tasklet_list); |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 633 | } |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 634 | } |
| 635 | |
Willy Tarreau | b6b3df3 | 2018-11-26 16:31:20 +0100 | [diff] [blame] | 636 | INITCALL0(STG_PREPARE, init_task); |
| 637 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 638 | /* |
| 639 | * Local variables: |
| 640 | * c-indent-level: 8 |
| 641 | * c-basic-offset: 8 |
| 642 | * End: |
| 643 | */ |