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 | d825eef | 2007-05-12 22:35:00 +0200 | [diff] [blame] | 23 | #include <proto/proxy.h> |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 24 | #include <proto/stream.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 25 | #include <proto/task.h> |
Olivier Houchard | 79321b9 | 2018-07-26 17:55:11 +0200 | [diff] [blame] | 26 | #include <proto/fd.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 27 | |
Willy Tarreau | 8ceae72 | 2018-11-26 11:58:30 +0100 | [diff] [blame] | 28 | DECLARE_POOL(pool_head_task, "task", sizeof(struct task)); |
| 29 | DECLARE_POOL(pool_head_tasklet, "tasklet", sizeof(struct tasklet)); |
Willy Tarreau | 96bcfd7 | 2007-04-29 10:41:56 +0200 | [diff] [blame] | 30 | |
Thierry FOURNIER | d697596 | 2017-07-12 14:31:10 +0200 | [diff] [blame] | 31 | /* This is the memory pool containing all the signal structs. These |
Joseph Herlant | cf92b6d | 2018-11-15 14:19:23 -0800 | [diff] [blame] | 32 | * struct are used to store each required signal between two tasks. |
Thierry FOURNIER | d697596 | 2017-07-12 14:31:10 +0200 | [diff] [blame] | 33 | */ |
Willy Tarreau | 8ceae72 | 2018-11-26 11:58:30 +0100 | [diff] [blame] | 34 | DECLARE_POOL(pool_head_notification, "notification", sizeof(struct notification)); |
Thierry FOURNIER | d697596 | 2017-07-12 14:31:10 +0200 | [diff] [blame] | 35 | |
Willy Tarreau | a461318 | 2009-03-21 18:13:21 +0100 | [diff] [blame] | 36 | unsigned int nb_tasks = 0; |
Olivier Houchard | 9b03c0c | 2018-07-26 18:45:22 +0200 | [diff] [blame] | 37 | volatile unsigned long active_tasks_mask = 0; /* Mask of threads with active tasks */ |
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 | 6d1222c | 2017-11-26 10:08:06 +0100 | [diff] [blame] | 44 | THREAD_LOCAL struct task *curr_task = NULL; /* task currently running or NULL */ |
Olivier Houchard | 9b36cb4 | 2018-05-04 15:46:16 +0200 | [diff] [blame] | 45 | THREAD_LOCAL struct eb32sc_node *rq_next = NULL; /* Next task to be potentially run */ |
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 */ |
| 48 | __decl_aligned_spinlock(wq_lock); /* spin lock related to 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 | 77551ee | 2018-07-26 15:59:38 +0200 | [diff] [blame] | 53 | int global_rqueue_size; /* Number of element sin the global runqueue */ |
Olivier Houchard | b1ca58b | 2018-06-06 14:22:03 +0200 | [diff] [blame] | 54 | #endif |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 55 | |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 56 | static unsigned int rqueue_ticks; /* insertion count */ |
Willy Tarreau | 8d8747a | 2018-10-15 16:12:48 +0200 | [diff] [blame] | 57 | |
| 58 | struct task_per_thread task_per_thread[MAX_THREADS]; |
Willy Tarreau | 9789f7b | 2008-06-24 08:17:16 +0200 | [diff] [blame] | 59 | |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 60 | /* Puts the task <t> in run queue at a position depending on t->nice. <t> is |
| 61 | * 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] | 62 | * nice value of -1024 sets the task to -tasks_run_queue*32, while a nice value |
| 63 | * of 1024 sets the task to tasks_run_queue*32. The state flags are cleared, so |
| 64 | * the caller will have to set its flags after this call. |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 65 | * The task must not already be in the run queue. If unsure, use the safer |
| 66 | * task_wakeup() function. |
Willy Tarreau | 91e9993 | 2008-06-30 07:51:00 +0200 | [diff] [blame] | 67 | */ |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 68 | void __task_wakeup(struct task *t, struct eb_root *root) |
Willy Tarreau | e33aece | 2007-04-30 13:15:14 +0200 | [diff] [blame] | 69 | { |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 70 | void *expected = NULL; |
| 71 | int *rq_size; |
Willy Tarreau | 85d9b84 | 2018-07-27 17:14:41 +0200 | [diff] [blame] | 72 | unsigned long __maybe_unused old_active_mask; |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 73 | |
Olivier Houchard | b1ca58b | 2018-06-06 14:22:03 +0200 | [diff] [blame] | 74 | #ifdef USE_THREAD |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 75 | if (root == &rqueue) { |
| 76 | rq_size = &global_rqueue_size; |
| 77 | HA_SPIN_LOCK(TASK_RQ_LOCK, &rq_lock); |
Olivier Houchard | b1ca58b | 2018-06-06 14:22:03 +0200 | [diff] [blame] | 78 | } else |
| 79 | #endif |
| 80 | { |
Willy Tarreau | 8d8747a | 2018-10-15 16:12:48 +0200 | [diff] [blame] | 81 | int nb = ((void *)root - (void *)&task_per_thread[0].rqueue) / sizeof(task_per_thread[0]); |
| 82 | rq_size = &task_per_thread[nb].rqueue_size; |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 83 | } |
| 84 | /* Make sure if the task isn't in the runqueue, nobody inserts it |
| 85 | * in the meanwhile. |
| 86 | */ |
| 87 | redo: |
David Carlier | cc0a957 | 2018-06-05 10:41:03 +0000 | [diff] [blame] | 88 | if (unlikely(!HA_ATOMIC_CAS(&t->rq.node.leaf_p, &expected, (void *)0x1))) { |
Olivier Houchard | b1ca58b | 2018-06-06 14:22:03 +0200 | [diff] [blame] | 89 | #ifdef USE_THREAD |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 90 | if (root == &rqueue) |
| 91 | HA_SPIN_UNLOCK(TASK_RQ_LOCK, &rq_lock); |
Olivier Houchard | b1ca58b | 2018-06-06 14:22:03 +0200 | [diff] [blame] | 92 | #endif |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 93 | return; |
| 94 | } |
| 95 | /* There's a small race condition, when running a task, the thread |
| 96 | * first sets TASK_RUNNING, and then unlink the task. |
| 97 | * If an another thread calls task_wakeup() for the same task, |
| 98 | * it may set t->state before TASK_RUNNING was set, and then try |
| 99 | * to set t->rq.nod.leaf_p after it was unlinked. |
| 100 | * To make sure it is not a problem, we check if TASK_RUNNING is set |
| 101 | * again. If it is, we unset t->rq.node.leaf_p. |
| 102 | * We then check for TASK_RUNNING a third time. If it is still there, |
| 103 | * then we can give up, the task will be re-queued later if it needs |
| 104 | * to be. If it's not there, and there is still something in t->state, |
| 105 | * then we have to requeue. |
| 106 | */ |
| 107 | if (((volatile unsigned short)(t->state)) & TASK_RUNNING) { |
| 108 | unsigned short state; |
| 109 | t->rq.node.leaf_p = NULL; |
| 110 | __ha_barrier_store(); |
| 111 | |
| 112 | state = (volatile unsigned short)(t->state); |
| 113 | if (unlikely(state != 0 && !(state & TASK_RUNNING))) |
| 114 | goto redo; |
Olivier Houchard | b1ca58b | 2018-06-06 14:22:03 +0200 | [diff] [blame] | 115 | #ifdef USE_THREAD |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 116 | if (root == &rqueue) |
| 117 | HA_SPIN_UNLOCK(TASK_RQ_LOCK, &rq_lock); |
Olivier Houchard | b1ca58b | 2018-06-06 14:22:03 +0200 | [diff] [blame] | 118 | #endif |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 119 | return; |
| 120 | } |
| 121 | HA_ATOMIC_ADD(&tasks_run_queue, 1); |
Olivier Houchard | c4aac9e | 2018-07-26 15:25:49 +0200 | [diff] [blame] | 122 | #ifdef USE_THREAD |
| 123 | if (root == &rqueue) { |
| 124 | HA_ATOMIC_OR(&global_tasks_mask, t->thread_mask); |
| 125 | __ha_barrier_store(); |
| 126 | } |
| 127 | #endif |
Olivier Houchard | 79321b9 | 2018-07-26 17:55:11 +0200 | [diff] [blame] | 128 | old_active_mask = active_tasks_mask; |
Willy Tarreau | 189ea85 | 2018-07-26 15:16:43 +0200 | [diff] [blame] | 129 | HA_ATOMIC_OR(&active_tasks_mask, t->thread_mask); |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 130 | t->rq.key = HA_ATOMIC_ADD(&rqueue_ticks, 1); |
Willy Tarreau | 91e9993 | 2008-06-30 07:51:00 +0200 | [diff] [blame] | 131 | |
| 132 | if (likely(t->nice)) { |
| 133 | int offset; |
| 134 | |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 135 | HA_ATOMIC_ADD(&niced_tasks, 1); |
Willy Tarreau | 91e9993 | 2008-06-30 07:51:00 +0200 | [diff] [blame] | 136 | if (likely(t->nice > 0)) |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 137 | offset = (unsigned)((*rq_size * (unsigned int)t->nice) / 32U); |
Willy Tarreau | 91e9993 | 2008-06-30 07:51:00 +0200 | [diff] [blame] | 138 | else |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 139 | offset = -(unsigned)((*rq_size * (unsigned int)-t->nice) / 32U); |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 140 | t->rq.key += offset; |
Willy Tarreau | 91e9993 | 2008-06-30 07:51:00 +0200 | [diff] [blame] | 141 | } |
| 142 | |
Willy Tarreau | 9efd745 | 2018-05-31 14:48:54 +0200 | [diff] [blame] | 143 | if (profiling & HA_PROF_TASKS) |
| 144 | t->call_date = now_mono_time(); |
| 145 | |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 146 | eb32sc_insert(root, &t->rq, t->thread_mask); |
Olivier Houchard | b1ca58b | 2018-06-06 14:22:03 +0200 | [diff] [blame] | 147 | #ifdef USE_THREAD |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 148 | if (root == &rqueue) { |
| 149 | global_rqueue_size++; |
Olivier Houchard | 76e4518 | 2018-07-26 16:19:58 +0200 | [diff] [blame] | 150 | HA_ATOMIC_OR(&t->state, TASK_GLOBAL); |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 151 | HA_SPIN_UNLOCK(TASK_RQ_LOCK, &rq_lock); |
Olivier Houchard | b1ca58b | 2018-06-06 14:22:03 +0200 | [diff] [blame] | 152 | } else |
| 153 | #endif |
| 154 | { |
Willy Tarreau | 8d8747a | 2018-10-15 16:12:48 +0200 | [diff] [blame] | 155 | int nb = ((void *)root - (void *)&task_per_thread[0].rqueue) / sizeof(task_per_thread[0]); |
| 156 | task_per_thread[nb].rqueue_size++; |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 157 | } |
Willy Tarreau | 85d9b84 | 2018-07-27 17:14:41 +0200 | [diff] [blame] | 158 | #ifdef USE_THREAD |
Olivier Houchard | 79321b9 | 2018-07-26 17:55:11 +0200 | [diff] [blame] | 159 | /* If all threads that are supposed to handle this task are sleeping, |
| 160 | * wake one. |
| 161 | */ |
| 162 | if ((((t->thread_mask & all_threads_mask) & sleeping_thread_mask) == |
| 163 | (t->thread_mask & all_threads_mask)) && |
| 164 | !(t->thread_mask & old_active_mask)) |
| 165 | wake_thread(my_ffsl((t->thread_mask & all_threads_mask) &~ tid_bit) - 1); |
Willy Tarreau | 85d9b84 | 2018-07-27 17:14:41 +0200 | [diff] [blame] | 166 | #endif |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 167 | return; |
Willy Tarreau | e33aece | 2007-04-30 13:15:14 +0200 | [diff] [blame] | 168 | } |
Willy Tarreau | d825eef | 2007-05-12 22:35:00 +0200 | [diff] [blame] | 169 | |
Willy Tarreau | 96bcfd7 | 2007-04-29 10:41:56 +0200 | [diff] [blame] | 170 | /* |
Willy Tarreau | 531cf0c | 2009-03-08 16:35:27 +0100 | [diff] [blame] | 171 | * __task_queue() |
Willy Tarreau | 96bcfd7 | 2007-04-29 10:41:56 +0200 | [diff] [blame] | 172 | * |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 173 | * 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] | 174 | * 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] | 175 | * 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] | 176 | * Last, tasks must not be queued further than the end of the tree, which is |
| 177 | * 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] | 178 | * |
| 179 | * This function should not be used directly, it is meant to be called by the |
| 180 | * inline version of task_queue() which performs a few cheap preliminary tests |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 181 | * before deciding to call __task_queue(). Moreover this function doesn't care |
| 182 | * at all about locking so the caller must be careful when deciding whether to |
| 183 | * lock or not around this call. |
Willy Tarreau | 96bcfd7 | 2007-04-29 10:41:56 +0200 | [diff] [blame] | 184 | */ |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 185 | void __task_queue(struct task *task, struct eb_root *wq) |
Willy Tarreau | 964c936 | 2007-01-07 00:38:00 +0100 | [diff] [blame] | 186 | { |
Willy Tarreau | 531cf0c | 2009-03-08 16:35:27 +0100 | [diff] [blame] | 187 | if (likely(task_in_wq(task))) |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 188 | __task_unlink_wq(task); |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 189 | |
| 190 | /* the task is not in the queue now */ |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 191 | task->wq.key = task->expire; |
Willy Tarreau | 28c41a4 | 2008-06-29 17:00:59 +0200 | [diff] [blame] | 192 | #ifdef DEBUG_CHECK_INVALID_EXPIRATION_DATES |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 193 | if (tick_is_lt(task->wq.key, now_ms)) |
Willy Tarreau | 28c41a4 | 2008-06-29 17:00:59 +0200 | [diff] [blame] | 194 | /* we're queuing too far away or in the past (most likely) */ |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 195 | return; |
Willy Tarreau | 28c41a4 | 2008-06-29 17:00:59 +0200 | [diff] [blame] | 196 | #endif |
Willy Tarreau | ce44f12 | 2008-07-05 18:16:19 +0200 | [diff] [blame] | 197 | |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 198 | eb32_insert(wq, &task->wq); |
Willy Tarreau | 964c936 | 2007-01-07 00:38:00 +0100 | [diff] [blame] | 199 | } |
| 200 | |
Willy Tarreau | 96bcfd7 | 2007-04-29 10:41:56 +0200 | [diff] [blame] | 201 | /* |
Willy Tarreau | 9789f7b | 2008-06-24 08:17:16 +0200 | [diff] [blame] | 202 | * Extract all expired timers from the timer queue, and wakes up all |
Thierry FOURNIER | 9cf7c4b | 2014-12-15 13:26:01 +0100 | [diff] [blame] | 203 | * associated tasks. Returns the date of next event (or eternity). |
Willy Tarreau | 96bcfd7 | 2007-04-29 10:41:56 +0200 | [diff] [blame] | 204 | */ |
Thierry FOURNIER | 9cf7c4b | 2014-12-15 13:26:01 +0100 | [diff] [blame] | 205 | int wake_expired_tasks() |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 206 | { |
Willy Tarreau | 96bcfd7 | 2007-04-29 10:41:56 +0200 | [diff] [blame] | 207 | struct task *task; |
Willy Tarreau | 9789f7b | 2008-06-24 08:17:16 +0200 | [diff] [blame] | 208 | struct eb32_node *eb; |
Willy Tarreau | b992ba1 | 2017-11-05 19:09:27 +0100 | [diff] [blame] | 209 | int ret = TICK_ETERNITY; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 210 | |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 211 | while (1) { |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 212 | lookup_next_local: |
Willy Tarreau | 8d8747a | 2018-10-15 16:12:48 +0200 | [diff] [blame] | 213 | eb = eb32_lookup_ge(&task_per_thread[tid].timers, now_ms - TIMER_LOOK_BACK); |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 214 | if (!eb) { |
| 215 | /* we might have reached the end of the tree, typically because |
| 216 | * <now_ms> is in the first half and we're first scanning the last |
| 217 | * half. Let's loop back to the beginning of the tree now. |
| 218 | */ |
Willy Tarreau | 8d8747a | 2018-10-15 16:12:48 +0200 | [diff] [blame] | 219 | eb = eb32_first(&task_per_thread[tid].timers); |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 220 | if (likely(!eb)) |
| 221 | break; |
| 222 | } |
| 223 | |
| 224 | if (tick_is_lt(now_ms, eb->key)) { |
| 225 | /* timer not expired yet, revisit it later */ |
| 226 | ret = eb->key; |
| 227 | break; |
| 228 | } |
| 229 | |
| 230 | /* timer looks expired, detach it from the queue */ |
| 231 | task = eb32_entry(eb, struct task, wq); |
| 232 | __task_unlink_wq(task); |
| 233 | |
| 234 | /* It is possible that this task was left at an earlier place in the |
| 235 | * tree because a recent call to task_queue() has not moved it. This |
| 236 | * happens when the new expiration date is later than the old one. |
| 237 | * Since it is very unlikely that we reach a timeout anyway, it's a |
| 238 | * lot cheaper to proceed like this because we almost never update |
| 239 | * the tree. We may also find disabled expiration dates there. Since |
| 240 | * we have detached the task from the tree, we simply call task_queue |
| 241 | * to take care of this. Note that we might occasionally requeue it at |
| 242 | * the same place, before <eb>, so we have to check if this happens, |
| 243 | * and adjust <eb>, otherwise we may skip it which is not what we want. |
| 244 | * We may also not requeue the task (and not point eb at it) if its |
| 245 | * expiration time is not set. |
| 246 | */ |
| 247 | if (!tick_is_expired(task->expire, now_ms)) { |
| 248 | if (tick_isset(task->expire)) |
Willy Tarreau | 8d8747a | 2018-10-15 16:12:48 +0200 | [diff] [blame] | 249 | __task_queue(task, &task_per_thread[tid].timers); |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 250 | goto lookup_next_local; |
| 251 | } |
| 252 | task_wakeup(task, TASK_WOKEN_TIMER); |
| 253 | } |
| 254 | |
| 255 | #ifdef USE_THREAD |
| 256 | while (1) { |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 257 | HA_SPIN_LOCK(TASK_WQ_LOCK, &wq_lock); |
Emeric Brun | c60def8 | 2017-09-27 14:59:38 +0200 | [diff] [blame] | 258 | lookup_next: |
Emeric Brun | 0194897 | 2017-03-30 15:37:25 +0200 | [diff] [blame] | 259 | eb = eb32_lookup_ge(&timers, now_ms - TIMER_LOOK_BACK); |
Emeric Brun | c60def8 | 2017-09-27 14:59:38 +0200 | [diff] [blame] | 260 | if (!eb) { |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 261 | /* we might have reached the end of the tree, typically because |
| 262 | * <now_ms> is in the first half and we're first scanning the last |
| 263 | * half. Let's loop back to the beginning of the tree now. |
| 264 | */ |
| 265 | eb = eb32_first(&timers); |
Willy Tarreau | b992ba1 | 2017-11-05 19:09:27 +0100 | [diff] [blame] | 266 | if (likely(!eb)) |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 267 | break; |
| 268 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 269 | |
Willy Tarreau | b992ba1 | 2017-11-05 19:09:27 +0100 | [diff] [blame] | 270 | if (tick_is_lt(now_ms, eb->key)) { |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 271 | /* timer not expired yet, revisit it later */ |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 272 | ret = tick_first(ret, eb->key); |
Willy Tarreau | b992ba1 | 2017-11-05 19:09:27 +0100 | [diff] [blame] | 273 | break; |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 274 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 275 | |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 276 | /* timer looks expired, detach it from the queue */ |
| 277 | task = eb32_entry(eb, struct task, wq); |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 278 | __task_unlink_wq(task); |
Willy Tarreau | 4136522 | 2009-03-08 07:46:27 +0100 | [diff] [blame] | 279 | |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 280 | /* It is possible that this task was left at an earlier place in the |
| 281 | * tree because a recent call to task_queue() has not moved it. This |
| 282 | * happens when the new expiration date is later than the old one. |
| 283 | * Since it is very unlikely that we reach a timeout anyway, it's a |
| 284 | * lot cheaper to proceed like this because we almost never update |
| 285 | * the tree. We may also find disabled expiration dates there. Since |
| 286 | * 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] | 287 | * to take care of this. Note that we might occasionally requeue it at |
| 288 | * the same place, before <eb>, so we have to check if this happens, |
| 289 | * 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] | 290 | * We may also not requeue the task (and not point eb at it) if its |
| 291 | * expiration time is not set. |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 292 | */ |
| 293 | if (!tick_is_expired(task->expire, now_ms)) { |
Willy Tarreau | b992ba1 | 2017-11-05 19:09:27 +0100 | [diff] [blame] | 294 | if (tick_isset(task->expire)) |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 295 | __task_queue(task, &timers); |
Emeric Brun | c60def8 | 2017-09-27 14:59:38 +0200 | [diff] [blame] | 296 | goto lookup_next; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 297 | } |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 298 | task_wakeup(task, TASK_WOKEN_TIMER); |
Willy Tarreau | 5175345 | 2017-11-23 18:36:50 +0100 | [diff] [blame] | 299 | HA_SPIN_UNLOCK(TASK_WQ_LOCK, &wq_lock); |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 300 | } |
Willy Tarreau | 9789f7b | 2008-06-24 08:17:16 +0200 | [diff] [blame] | 301 | |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 302 | HA_SPIN_UNLOCK(TASK_WQ_LOCK, &wq_lock); |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 303 | #endif |
Willy Tarreau | b992ba1 | 2017-11-05 19:09:27 +0100 | [diff] [blame] | 304 | return ret; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 305 | } |
| 306 | |
Willy Tarreau | 58b458d | 2008-06-29 22:40:23 +0200 | [diff] [blame] | 307 | /* The run queue is chronologically sorted in a tree. An insertion counter is |
| 308 | * used to assign a position to each task. This counter may be combined with |
| 309 | * other variables (eg: nice value) to set the final position in the tree. The |
| 310 | * 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] | 311 | * tasks processed to 200 in any case, so that general latency remains low and |
| 312 | * so that task positions have a chance to be considered. |
Willy Tarreau | 58b458d | 2008-06-29 22:40:23 +0200 | [diff] [blame] | 313 | * |
| 314 | * The function adjusts <next> if a new event is closer. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 315 | */ |
Thierry FOURNIER | 9cf7c4b | 2014-12-15 13:26:01 +0100 | [diff] [blame] | 316 | void process_runnable_tasks() |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 317 | { |
Willy Tarreau | 964c936 | 2007-01-07 00:38:00 +0100 | [diff] [blame] | 318 | struct task *t; |
Emeric Brun | 0194897 | 2017-03-30 15:37:25 +0200 | [diff] [blame] | 319 | int max_processed; |
Christopher Faulet | 3911ee8 | 2017-11-14 10:26:53 +0100 | [diff] [blame] | 320 | |
Christopher Faulet | 34c5cc9 | 2016-12-06 09:15:30 +0100 | [diff] [blame] | 321 | tasks_run_queue_cur = tasks_run_queue; /* keep a copy for reporting */ |
Willy Tarreau | c7bdf09 | 2009-03-21 18:33:52 +0100 | [diff] [blame] | 322 | nb_tasks_cur = nb_tasks; |
Olivier Houchard | 1599b80 | 2018-05-24 18:59:04 +0200 | [diff] [blame] | 323 | max_processed = global.tune.runqueue_depth; |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 324 | |
Willy Tarreau | 1ee55fd | 2018-12-14 15:49:45 +0100 | [diff] [blame] | 325 | if (likely(global_tasks_mask & tid_bit)) { |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 326 | HA_SPIN_LOCK(TASK_RQ_LOCK, &rq_lock); |
Willy Tarreau | d80cb4e | 2018-01-20 19:30:13 +0100 | [diff] [blame] | 327 | if (!(active_tasks_mask & tid_bit)) { |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 328 | HA_SPIN_UNLOCK(TASK_RQ_LOCK, &rq_lock); |
Willy Tarreau | d80cb4e | 2018-01-20 19:30:13 +0100 | [diff] [blame] | 329 | activity[tid].empty_rq++; |
Christopher Faulet | 8a48f67 | 2017-11-14 10:38:36 +0100 | [diff] [blame] | 330 | return; |
Willy Tarreau | d80cb4e | 2018-01-20 19:30:13 +0100 | [diff] [blame] | 331 | } |
Christopher Faulet | 8a48f67 | 2017-11-14 10:38:36 +0100 | [diff] [blame] | 332 | |
Olivier Houchard | b1ca58b | 2018-06-06 14:22:03 +0200 | [diff] [blame] | 333 | #ifdef USE_THREAD |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 334 | /* Get some elements from the global run queue and put it in the |
| 335 | * local run queue. To try to keep a bit of fairness, just get as |
| 336 | * much elements from the global list as to have a bigger local queue |
| 337 | * than the average. |
| 338 | */ |
Willy Tarreau | 0b25d5e | 2018-10-10 16:39:22 +0200 | [diff] [blame] | 339 | rq_next = eb32sc_lookup_ge(&rqueue, rqueue_ticks - TIMER_LOOK_BACK, tid_bit); |
Willy Tarreau | 8d8747a | 2018-10-15 16:12:48 +0200 | [diff] [blame] | 340 | while ((task_per_thread[tid].task_list_size + task_per_thread[tid].rqueue_size) * global.nbthread <= tasks_run_queue) { |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 341 | if (unlikely(!rq_next)) { |
| 342 | /* either we just started or we reached the end |
| 343 | * of the tree, typically because <rqueue_ticks> |
| 344 | * is in the first half and we're first scanning |
| 345 | * the last half. Let's loop back to the beginning |
| 346 | * of the tree now. |
Willy Tarreau | f0c531a | 2017-11-05 16:35:59 +0100 | [diff] [blame] | 347 | */ |
| 348 | rq_next = eb32sc_first(&rqueue, tid_bit); |
Olivier Houchard | c4aac9e | 2018-07-26 15:25:49 +0200 | [diff] [blame] | 349 | if (!rq_next) { |
| 350 | HA_ATOMIC_AND(&global_tasks_mask, ~tid_bit); |
Willy Tarreau | f0c531a | 2017-11-05 16:35:59 +0100 | [diff] [blame] | 351 | break; |
Olivier Houchard | c4aac9e | 2018-07-26 15:25:49 +0200 | [diff] [blame] | 352 | } |
Willy Tarreau | f0c531a | 2017-11-05 16:35:59 +0100 | [diff] [blame] | 353 | } |
| 354 | |
| 355 | t = eb32sc_entry(rq_next, struct task, rq); |
| 356 | rq_next = eb32sc_next(rq_next, tid_bit); |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 357 | |
| 358 | /* detach the task from the queue */ |
Willy Tarreau | f0c531a | 2017-11-05 16:35:59 +0100 | [diff] [blame] | 359 | __task_unlink_rq(t); |
Willy Tarreau | 8d8747a | 2018-10-15 16:12:48 +0200 | [diff] [blame] | 360 | __task_wakeup(t, &task_per_thread[tid].rqueue); |
Willy Tarreau | f0c531a | 2017-11-05 16:35:59 +0100 | [diff] [blame] | 361 | } |
Olivier Houchard | b1ca58b | 2018-06-06 14:22:03 +0200 | [diff] [blame] | 362 | #endif |
Willy Tarreau | f0c531a | 2017-11-05 16:35:59 +0100 | [diff] [blame] | 363 | |
Christopher Faulet | 8a48f67 | 2017-11-14 10:38:36 +0100 | [diff] [blame] | 364 | HA_SPIN_UNLOCK(TASK_RQ_LOCK, &rq_lock); |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 365 | } else { |
| 366 | if (!(active_tasks_mask & tid_bit)) { |
| 367 | activity[tid].empty_rq++; |
| 368 | return; |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 369 | } |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 370 | } |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 371 | /* Get some tasks from the run queue, make sure we don't |
| 372 | * get too much in the task list, but put a bit more than |
| 373 | * the max that will be run, to give a bit more fairness |
| 374 | */ |
Willy Tarreau | 8d8747a | 2018-10-15 16:12:48 +0200 | [diff] [blame] | 375 | rq_next = eb32sc_lookup_ge(&task_per_thread[tid].rqueue, rqueue_ticks - TIMER_LOOK_BACK, tid_bit); |
| 376 | while (max_processed + (max_processed / 10) > task_per_thread[tid].task_list_size) { |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 377 | /* Note: this loop is one of the fastest code path in |
| 378 | * the whole program. It should not be re-arranged |
| 379 | * without a good reason. |
| 380 | */ |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 381 | if (unlikely(!rq_next)) { |
| 382 | /* either we just started or we reached the end |
| 383 | * of the tree, typically because <rqueue_ticks> |
| 384 | * is in the first half and we're first scanning |
| 385 | * the last half. Let's loop back to the beginning |
| 386 | * of the tree now. |
Emeric Brun | 0194897 | 2017-03-30 15:37:25 +0200 | [diff] [blame] | 387 | */ |
Willy Tarreau | 8d8747a | 2018-10-15 16:12:48 +0200 | [diff] [blame] | 388 | rq_next = eb32sc_first(&task_per_thread[tid].rqueue, tid_bit); |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 389 | if (!rq_next) |
| 390 | break; |
Emeric Brun | 0194897 | 2017-03-30 15:37:25 +0200 | [diff] [blame] | 391 | } |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 392 | t = eb32sc_entry(rq_next, struct task, rq); |
| 393 | rq_next = eb32sc_next(rq_next, tid_bit); |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 394 | /* Make sure nobody re-adds the task in the runqueue */ |
| 395 | HA_ATOMIC_OR(&t->state, TASK_RUNNING); |
Willy Tarreau | 531cf0c | 2009-03-08 16:35:27 +0100 | [diff] [blame] | 396 | |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 397 | /* detach the task from the queue */ |
| 398 | __task_unlink_rq(t); |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 399 | /* And add it to the local task list */ |
| 400 | task_insert_into_tasklet_list(t); |
| 401 | } |
Willy Tarreau | 8d8747a | 2018-10-15 16:12:48 +0200 | [diff] [blame] | 402 | if (!(global_tasks_mask & tid_bit) && task_per_thread[tid].rqueue_size == 0) { |
Olivier Houchard | c4aac9e | 2018-07-26 15:25:49 +0200 | [diff] [blame] | 403 | HA_ATOMIC_AND(&active_tasks_mask, ~tid_bit); |
| 404 | __ha_barrier_load(); |
| 405 | if (global_tasks_mask & tid_bit) |
| 406 | HA_ATOMIC_OR(&active_tasks_mask, tid_bit); |
| 407 | } |
Willy Tarreau | 8d8747a | 2018-10-15 16:12:48 +0200 | [diff] [blame] | 408 | while (max_processed > 0 && !LIST_ISEMPTY(&task_per_thread[tid].task_list)) { |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 409 | struct task *t; |
| 410 | unsigned short state; |
| 411 | void *ctx; |
| 412 | struct task *(*process)(struct task *t, void *ctx, unsigned short state); |
| 413 | |
Willy Tarreau | 8d8747a | 2018-10-15 16:12:48 +0200 | [diff] [blame] | 414 | t = (struct task *)LIST_ELEM(task_per_thread[tid].task_list.n, struct tasklet *, list); |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 415 | state = HA_ATOMIC_XCHG(&t->state, TASK_RUNNING); |
| 416 | __ha_barrier_store(); |
| 417 | task_remove_from_task_list(t); |
| 418 | |
| 419 | ctx = t->context; |
| 420 | process = t->process; |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 421 | t->calls++; |
Willy Tarreau | 9efd745 | 2018-05-31 14:48:54 +0200 | [diff] [blame] | 422 | |
| 423 | if (unlikely(!TASK_IS_TASKLET(t) && t->call_date)) { |
| 424 | uint64_t now_ns = now_mono_time(); |
| 425 | |
| 426 | t->lat_time += now_ns - t->call_date; |
| 427 | t->call_date = now_ns; |
| 428 | } |
| 429 | |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 430 | curr_task = (struct task *)t; |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 431 | if (likely(process == process_stream)) |
| 432 | t = process_stream(t, ctx, state); |
| 433 | else { |
| 434 | if (t->process != NULL) |
Olivier Houchard | 9db0fed | 2018-06-14 15:40:47 +0200 | [diff] [blame] | 435 | t = process(TASK_IS_TASKLET(t) ? NULL : t, ctx, state); |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 436 | else { |
| 437 | __task_free(t); |
| 438 | t = NULL; |
| 439 | } |
| 440 | } |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 441 | curr_task = NULL; |
| 442 | /* If there is a pending state we have to wake up the task |
Joseph Herlant | cf92b6d | 2018-11-15 14:19:23 -0800 | [diff] [blame] | 443 | * immediately, else we defer it into wait queue |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 444 | */ |
| 445 | if (t != NULL) { |
Willy Tarreau | 9efd745 | 2018-05-31 14:48:54 +0200 | [diff] [blame] | 446 | if (unlikely(!TASK_IS_TASKLET(t) && t->call_date)) { |
| 447 | t->cpu_time += now_mono_time() - t->call_date; |
| 448 | t->call_date = 0; |
| 449 | } |
| 450 | |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 451 | state = HA_ATOMIC_AND(&t->state, ~TASK_RUNNING); |
| 452 | if (state) |
Olivier Houchard | b1ca58b | 2018-06-06 14:22:03 +0200 | [diff] [blame] | 453 | #ifdef USE_THREAD |
Olivier Houchard | 19bdf24 | 2018-08-17 13:36:08 +0200 | [diff] [blame] | 454 | __task_wakeup(t, ((t->thread_mask & all_threads_mask) == tid_bit) ? |
Willy Tarreau | 8d8747a | 2018-10-15 16:12:48 +0200 | [diff] [blame] | 455 | &task_per_thread[tid].rqueue : &rqueue); |
Olivier Houchard | b1ca58b | 2018-06-06 14:22:03 +0200 | [diff] [blame] | 456 | #else |
Willy Tarreau | 8d8747a | 2018-10-15 16:12:48 +0200 | [diff] [blame] | 457 | __task_wakeup(t, &task_per_thread[tid].rqueue); |
Olivier Houchard | b1ca58b | 2018-06-06 14:22:03 +0200 | [diff] [blame] | 458 | #endif |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 459 | else |
Willy Tarreau | 9d4b56b | 2017-11-06 08:36:53 +0100 | [diff] [blame] | 460 | task_queue(t); |
Willy Tarreau | 58b458d | 2008-06-29 22:40:23 +0200 | [diff] [blame] | 461 | } |
Willy Tarreau | ce4e0aa | 2017-11-05 23:57:00 +0100 | [diff] [blame] | 462 | |
Olivier Houchard | 736ea41 | 2018-05-28 14:54:49 +0200 | [diff] [blame] | 463 | max_processed--; |
Christopher Faulet | 3911ee8 | 2017-11-14 10:26:53 +0100 | [diff] [blame] | 464 | if (max_processed <= 0) { |
Willy Tarreau | 189ea85 | 2018-07-26 15:16:43 +0200 | [diff] [blame] | 465 | HA_ATOMIC_OR(&active_tasks_mask, tid_bit); |
Willy Tarreau | d80cb4e | 2018-01-20 19:30:13 +0100 | [diff] [blame] | 466 | activity[tid].long_rq++; |
Christopher Faulet | 3911ee8 | 2017-11-14 10:26:53 +0100 | [diff] [blame] | 467 | break; |
| 468 | } |
| 469 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 470 | } |
| 471 | |
William Lallemand | 27f3fa5 | 2018-12-06 14:05:20 +0100 | [diff] [blame] | 472 | /* |
| 473 | * Delete every tasks before running the master polling loop |
| 474 | */ |
| 475 | void mworker_cleantasks() |
| 476 | { |
| 477 | struct task *t; |
| 478 | int i; |
William Lallemand | b582339 | 2018-12-06 15:14:37 +0100 | [diff] [blame] | 479 | struct eb32_node *tmp_wq = NULL; |
| 480 | struct eb32sc_node *tmp_rq = NULL; |
William Lallemand | 27f3fa5 | 2018-12-06 14:05:20 +0100 | [diff] [blame] | 481 | |
| 482 | #ifdef USE_THREAD |
| 483 | /* cleanup the global run queue */ |
William Lallemand | b582339 | 2018-12-06 15:14:37 +0100 | [diff] [blame] | 484 | tmp_rq = eb32sc_first(&rqueue, MAX_THREADS_MASK); |
| 485 | while (tmp_rq) { |
| 486 | t = eb32sc_entry(tmp_rq, struct task, rq); |
| 487 | tmp_rq = eb32sc_next(tmp_rq, MAX_THREADS_MASK); |
William Lallemand | 27f3fa5 | 2018-12-06 14:05:20 +0100 | [diff] [blame] | 488 | task_delete(t); |
| 489 | task_free(t); |
| 490 | } |
| 491 | /* cleanup the timers queue */ |
William Lallemand | b582339 | 2018-12-06 15:14:37 +0100 | [diff] [blame] | 492 | tmp_wq = eb32_first(&timers); |
| 493 | while (tmp_wq) { |
| 494 | t = eb32_entry(tmp_wq, struct task, wq); |
| 495 | tmp_wq = eb32_next(tmp_wq); |
William Lallemand | 27f3fa5 | 2018-12-06 14:05:20 +0100 | [diff] [blame] | 496 | task_delete(t); |
| 497 | task_free(t); |
| 498 | } |
| 499 | #endif |
| 500 | /* clean the per thread run queue */ |
| 501 | for (i = 0; i < global.nbthread; i++) { |
William Lallemand | b582339 | 2018-12-06 15:14:37 +0100 | [diff] [blame] | 502 | tmp_rq = eb32sc_first(&task_per_thread[i].rqueue, MAX_THREADS_MASK); |
| 503 | while (tmp_rq) { |
| 504 | t = eb32sc_entry(tmp_rq, struct task, rq); |
| 505 | tmp_rq = eb32sc_next(tmp_rq, MAX_THREADS_MASK); |
William Lallemand | 27f3fa5 | 2018-12-06 14:05:20 +0100 | [diff] [blame] | 506 | task_delete(t); |
| 507 | task_free(t); |
| 508 | } |
| 509 | /* cleanup the per thread timers queue */ |
William Lallemand | b582339 | 2018-12-06 15:14:37 +0100 | [diff] [blame] | 510 | tmp_wq = eb32_first(&task_per_thread[i].timers); |
| 511 | while (tmp_wq) { |
| 512 | t = eb32_entry(tmp_wq, struct task, wq); |
| 513 | tmp_wq = eb32_next(tmp_wq); |
William Lallemand | 27f3fa5 | 2018-12-06 14:05:20 +0100 | [diff] [blame] | 514 | task_delete(t); |
| 515 | task_free(t); |
| 516 | } |
| 517 | } |
| 518 | } |
| 519 | |
Willy Tarreau | b6b3df3 | 2018-11-26 16:31:20 +0100 | [diff] [blame] | 520 | /* perform minimal intializations */ |
| 521 | static void init_task() |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 522 | { |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 523 | int i; |
| 524 | |
Olivier Houchard | b1ca58b | 2018-06-06 14:22:03 +0200 | [diff] [blame] | 525 | #ifdef USE_THREAD |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 526 | memset(&timers, 0, sizeof(timers)); |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 527 | memset(&rqueue, 0, sizeof(rqueue)); |
Olivier Houchard | b1ca58b | 2018-06-06 14:22:03 +0200 | [diff] [blame] | 528 | #endif |
Willy Tarreau | 8d8747a | 2018-10-15 16:12:48 +0200 | [diff] [blame] | 529 | memset(&task_per_thread, 0, sizeof(task_per_thread)); |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 530 | for (i = 0; i < MAX_THREADS; i++) { |
Willy Tarreau | 8d8747a | 2018-10-15 16:12:48 +0200 | [diff] [blame] | 531 | LIST_INIT(&task_per_thread[i].task_list); |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 532 | } |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 533 | } |
| 534 | |
Willy Tarreau | b6b3df3 | 2018-11-26 16:31:20 +0100 | [diff] [blame] | 535 | INITCALL0(STG_PREPARE, init_task); |
| 536 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 537 | /* |
| 538 | * Local variables: |
| 539 | * c-indent-level: 8 |
| 540 | * c-basic-offset: 8 |
| 541 | * End: |
| 542 | */ |