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 | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 28 | struct pool_head *pool_head_task; |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 29 | struct pool_head *pool_head_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 |
| 32 | * struct are used to store each requiered signal between two tasks. |
| 33 | */ |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 34 | struct pool_head *pool_head_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 | a24d1d0 | 2017-11-26 10:19:16 +0100 | [diff] [blame] | 47 | __decl_hathreads(HA_SPINLOCK_T __attribute__((aligned(64))) rq_lock); /* spin lock related to run queue */ |
| 48 | __decl_hathreads(HA_SPINLOCK_T __attribute__((aligned(64))) 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 | |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 143 | eb32sc_insert(root, &t->rq, t->thread_mask); |
Olivier Houchard | b1ca58b | 2018-06-06 14:22:03 +0200 | [diff] [blame] | 144 | #ifdef USE_THREAD |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 145 | if (root == &rqueue) { |
| 146 | global_rqueue_size++; |
Olivier Houchard | 76e4518 | 2018-07-26 16:19:58 +0200 | [diff] [blame] | 147 | HA_ATOMIC_OR(&t->state, TASK_GLOBAL); |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 148 | HA_SPIN_UNLOCK(TASK_RQ_LOCK, &rq_lock); |
Olivier Houchard | b1ca58b | 2018-06-06 14:22:03 +0200 | [diff] [blame] | 149 | } else |
| 150 | #endif |
| 151 | { |
Willy Tarreau | 8d8747a | 2018-10-15 16:12:48 +0200 | [diff] [blame] | 152 | int nb = ((void *)root - (void *)&task_per_thread[0].rqueue) / sizeof(task_per_thread[0]); |
| 153 | task_per_thread[nb].rqueue_size++; |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 154 | } |
Willy Tarreau | 85d9b84 | 2018-07-27 17:14:41 +0200 | [diff] [blame] | 155 | #ifdef USE_THREAD |
Olivier Houchard | 79321b9 | 2018-07-26 17:55:11 +0200 | [diff] [blame] | 156 | /* If all threads that are supposed to handle this task are sleeping, |
| 157 | * wake one. |
| 158 | */ |
| 159 | if ((((t->thread_mask & all_threads_mask) & sleeping_thread_mask) == |
| 160 | (t->thread_mask & all_threads_mask)) && |
| 161 | !(t->thread_mask & old_active_mask)) |
| 162 | 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] | 163 | #endif |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 164 | return; |
Willy Tarreau | e33aece | 2007-04-30 13:15:14 +0200 | [diff] [blame] | 165 | } |
Willy Tarreau | d825eef | 2007-05-12 22:35:00 +0200 | [diff] [blame] | 166 | |
Willy Tarreau | 96bcfd7 | 2007-04-29 10:41:56 +0200 | [diff] [blame] | 167 | /* |
Willy Tarreau | 531cf0c | 2009-03-08 16:35:27 +0100 | [diff] [blame] | 168 | * __task_queue() |
Willy Tarreau | 96bcfd7 | 2007-04-29 10:41:56 +0200 | [diff] [blame] | 169 | * |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 170 | * 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] | 171 | * 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] | 172 | * 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] | 173 | * Last, tasks must not be queued further than the end of the tree, which is |
| 174 | * 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] | 175 | * |
| 176 | * This function should not be used directly, it is meant to be called by the |
| 177 | * inline version of task_queue() which performs a few cheap preliminary tests |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 178 | * before deciding to call __task_queue(). Moreover this function doesn't care |
| 179 | * at all about locking so the caller must be careful when deciding whether to |
| 180 | * lock or not around this call. |
Willy Tarreau | 96bcfd7 | 2007-04-29 10:41:56 +0200 | [diff] [blame] | 181 | */ |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 182 | void __task_queue(struct task *task, struct eb_root *wq) |
Willy Tarreau | 964c936 | 2007-01-07 00:38:00 +0100 | [diff] [blame] | 183 | { |
Willy Tarreau | 531cf0c | 2009-03-08 16:35:27 +0100 | [diff] [blame] | 184 | if (likely(task_in_wq(task))) |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 185 | __task_unlink_wq(task); |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 186 | |
| 187 | /* the task is not in the queue now */ |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 188 | task->wq.key = task->expire; |
Willy Tarreau | 28c41a4 | 2008-06-29 17:00:59 +0200 | [diff] [blame] | 189 | #ifdef DEBUG_CHECK_INVALID_EXPIRATION_DATES |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 190 | if (tick_is_lt(task->wq.key, now_ms)) |
Willy Tarreau | 28c41a4 | 2008-06-29 17:00:59 +0200 | [diff] [blame] | 191 | /* we're queuing too far away or in the past (most likely) */ |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 192 | return; |
Willy Tarreau | 28c41a4 | 2008-06-29 17:00:59 +0200 | [diff] [blame] | 193 | #endif |
Willy Tarreau | ce44f12 | 2008-07-05 18:16:19 +0200 | [diff] [blame] | 194 | |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 195 | eb32_insert(wq, &task->wq); |
Willy Tarreau | 964c936 | 2007-01-07 00:38:00 +0100 | [diff] [blame] | 196 | } |
| 197 | |
Willy Tarreau | 96bcfd7 | 2007-04-29 10:41:56 +0200 | [diff] [blame] | 198 | /* |
Willy Tarreau | 9789f7b | 2008-06-24 08:17:16 +0200 | [diff] [blame] | 199 | * Extract all expired timers from the timer queue, and wakes up all |
Thierry FOURNIER | 9cf7c4b | 2014-12-15 13:26:01 +0100 | [diff] [blame] | 200 | * associated tasks. Returns the date of next event (or eternity). |
Willy Tarreau | 96bcfd7 | 2007-04-29 10:41:56 +0200 | [diff] [blame] | 201 | */ |
Thierry FOURNIER | 9cf7c4b | 2014-12-15 13:26:01 +0100 | [diff] [blame] | 202 | int wake_expired_tasks() |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 203 | { |
Willy Tarreau | 96bcfd7 | 2007-04-29 10:41:56 +0200 | [diff] [blame] | 204 | struct task *task; |
Willy Tarreau | 9789f7b | 2008-06-24 08:17:16 +0200 | [diff] [blame] | 205 | struct eb32_node *eb; |
Willy Tarreau | b992ba1 | 2017-11-05 19:09:27 +0100 | [diff] [blame] | 206 | int ret = TICK_ETERNITY; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 207 | |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 208 | while (1) { |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 209 | lookup_next_local: |
Willy Tarreau | 8d8747a | 2018-10-15 16:12:48 +0200 | [diff] [blame] | 210 | 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] | 211 | if (!eb) { |
| 212 | /* we might have reached the end of the tree, typically because |
| 213 | * <now_ms> is in the first half and we're first scanning the last |
| 214 | * half. Let's loop back to the beginning of the tree now. |
| 215 | */ |
Willy Tarreau | 8d8747a | 2018-10-15 16:12:48 +0200 | [diff] [blame] | 216 | eb = eb32_first(&task_per_thread[tid].timers); |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 217 | if (likely(!eb)) |
| 218 | break; |
| 219 | } |
| 220 | |
| 221 | if (tick_is_lt(now_ms, eb->key)) { |
| 222 | /* timer not expired yet, revisit it later */ |
| 223 | ret = eb->key; |
| 224 | break; |
| 225 | } |
| 226 | |
| 227 | /* timer looks expired, detach it from the queue */ |
| 228 | task = eb32_entry(eb, struct task, wq); |
| 229 | __task_unlink_wq(task); |
| 230 | |
| 231 | /* It is possible that this task was left at an earlier place in the |
| 232 | * tree because a recent call to task_queue() has not moved it. This |
| 233 | * happens when the new expiration date is later than the old one. |
| 234 | * Since it is very unlikely that we reach a timeout anyway, it's a |
| 235 | * lot cheaper to proceed like this because we almost never update |
| 236 | * the tree. We may also find disabled expiration dates there. Since |
| 237 | * we have detached the task from the tree, we simply call task_queue |
| 238 | * to take care of this. Note that we might occasionally requeue it at |
| 239 | * the same place, before <eb>, so we have to check if this happens, |
| 240 | * and adjust <eb>, otherwise we may skip it which is not what we want. |
| 241 | * We may also not requeue the task (and not point eb at it) if its |
| 242 | * expiration time is not set. |
| 243 | */ |
| 244 | if (!tick_is_expired(task->expire, now_ms)) { |
| 245 | if (tick_isset(task->expire)) |
Willy Tarreau | 8d8747a | 2018-10-15 16:12:48 +0200 | [diff] [blame] | 246 | __task_queue(task, &task_per_thread[tid].timers); |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 247 | goto lookup_next_local; |
| 248 | } |
| 249 | task_wakeup(task, TASK_WOKEN_TIMER); |
| 250 | } |
| 251 | |
| 252 | #ifdef USE_THREAD |
| 253 | while (1) { |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 254 | HA_SPIN_LOCK(TASK_WQ_LOCK, &wq_lock); |
Emeric Brun | c60def8 | 2017-09-27 14:59:38 +0200 | [diff] [blame] | 255 | lookup_next: |
Emeric Brun | 0194897 | 2017-03-30 15:37:25 +0200 | [diff] [blame] | 256 | eb = eb32_lookup_ge(&timers, now_ms - TIMER_LOOK_BACK); |
Emeric Brun | c60def8 | 2017-09-27 14:59:38 +0200 | [diff] [blame] | 257 | if (!eb) { |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 258 | /* we might have reached the end of the tree, typically because |
| 259 | * <now_ms> is in the first half and we're first scanning the last |
| 260 | * half. Let's loop back to the beginning of the tree now. |
| 261 | */ |
| 262 | eb = eb32_first(&timers); |
Willy Tarreau | b992ba1 | 2017-11-05 19:09:27 +0100 | [diff] [blame] | 263 | if (likely(!eb)) |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 264 | break; |
| 265 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 266 | |
Willy Tarreau | b992ba1 | 2017-11-05 19:09:27 +0100 | [diff] [blame] | 267 | if (tick_is_lt(now_ms, eb->key)) { |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 268 | /* timer not expired yet, revisit it later */ |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 269 | ret = tick_first(ret, eb->key); |
Willy Tarreau | b992ba1 | 2017-11-05 19:09:27 +0100 | [diff] [blame] | 270 | break; |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 271 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 272 | |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 273 | /* timer looks expired, detach it from the queue */ |
| 274 | task = eb32_entry(eb, struct task, wq); |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 275 | __task_unlink_wq(task); |
Willy Tarreau | 4136522 | 2009-03-08 07:46:27 +0100 | [diff] [blame] | 276 | |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 277 | /* It is possible that this task was left at an earlier place in the |
| 278 | * tree because a recent call to task_queue() has not moved it. This |
| 279 | * happens when the new expiration date is later than the old one. |
| 280 | * Since it is very unlikely that we reach a timeout anyway, it's a |
| 281 | * lot cheaper to proceed like this because we almost never update |
| 282 | * the tree. We may also find disabled expiration dates there. Since |
| 283 | * 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] | 284 | * to take care of this. Note that we might occasionally requeue it at |
| 285 | * the same place, before <eb>, so we have to check if this happens, |
| 286 | * 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] | 287 | * We may also not requeue the task (and not point eb at it) if its |
| 288 | * expiration time is not set. |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 289 | */ |
| 290 | if (!tick_is_expired(task->expire, now_ms)) { |
Willy Tarreau | b992ba1 | 2017-11-05 19:09:27 +0100 | [diff] [blame] | 291 | if (tick_isset(task->expire)) |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 292 | __task_queue(task, &timers); |
Emeric Brun | c60def8 | 2017-09-27 14:59:38 +0200 | [diff] [blame] | 293 | goto lookup_next; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 294 | } |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 295 | task_wakeup(task, TASK_WOKEN_TIMER); |
Willy Tarreau | 5175345 | 2017-11-23 18:36:50 +0100 | [diff] [blame] | 296 | HA_SPIN_UNLOCK(TASK_WQ_LOCK, &wq_lock); |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 297 | } |
Willy Tarreau | 9789f7b | 2008-06-24 08:17:16 +0200 | [diff] [blame] | 298 | |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 299 | HA_SPIN_UNLOCK(TASK_WQ_LOCK, &wq_lock); |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 300 | #endif |
Willy Tarreau | b992ba1 | 2017-11-05 19:09:27 +0100 | [diff] [blame] | 301 | return ret; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 302 | } |
| 303 | |
Willy Tarreau | 58b458d | 2008-06-29 22:40:23 +0200 | [diff] [blame] | 304 | /* The run queue is chronologically sorted in a tree. An insertion counter is |
| 305 | * used to assign a position to each task. This counter may be combined with |
| 306 | * other variables (eg: nice value) to set the final position in the tree. The |
| 307 | * 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] | 308 | * tasks processed to 200 in any case, so that general latency remains low and |
| 309 | * so that task positions have a chance to be considered. |
Willy Tarreau | 58b458d | 2008-06-29 22:40:23 +0200 | [diff] [blame] | 310 | * |
| 311 | * The function adjusts <next> if a new event is closer. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 312 | */ |
Thierry FOURNIER | 9cf7c4b | 2014-12-15 13:26:01 +0100 | [diff] [blame] | 313 | void process_runnable_tasks() |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 314 | { |
Willy Tarreau | 964c936 | 2007-01-07 00:38:00 +0100 | [diff] [blame] | 315 | struct task *t; |
Emeric Brun | 0194897 | 2017-03-30 15:37:25 +0200 | [diff] [blame] | 316 | int max_processed; |
Christopher Faulet | 3911ee8 | 2017-11-14 10:26:53 +0100 | [diff] [blame] | 317 | |
Christopher Faulet | 34c5cc9 | 2016-12-06 09:15:30 +0100 | [diff] [blame] | 318 | tasks_run_queue_cur = tasks_run_queue; /* keep a copy for reporting */ |
Willy Tarreau | c7bdf09 | 2009-03-21 18:33:52 +0100 | [diff] [blame] | 319 | nb_tasks_cur = nb_tasks; |
Olivier Houchard | 1599b80 | 2018-05-24 18:59:04 +0200 | [diff] [blame] | 320 | max_processed = global.tune.runqueue_depth; |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 321 | |
| 322 | if (likely(global.nbthread > 1)) { |
| 323 | HA_SPIN_LOCK(TASK_RQ_LOCK, &rq_lock); |
Willy Tarreau | d80cb4e | 2018-01-20 19:30:13 +0100 | [diff] [blame] | 324 | if (!(active_tasks_mask & tid_bit)) { |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 325 | HA_SPIN_UNLOCK(TASK_RQ_LOCK, &rq_lock); |
Willy Tarreau | d80cb4e | 2018-01-20 19:30:13 +0100 | [diff] [blame] | 326 | activity[tid].empty_rq++; |
Christopher Faulet | 8a48f67 | 2017-11-14 10:38:36 +0100 | [diff] [blame] | 327 | return; |
Willy Tarreau | d80cb4e | 2018-01-20 19:30:13 +0100 | [diff] [blame] | 328 | } |
Christopher Faulet | 8a48f67 | 2017-11-14 10:38:36 +0100 | [diff] [blame] | 329 | |
Olivier Houchard | b1ca58b | 2018-06-06 14:22:03 +0200 | [diff] [blame] | 330 | #ifdef USE_THREAD |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 331 | /* Get some elements from the global run queue and put it in the |
| 332 | * local run queue. To try to keep a bit of fairness, just get as |
| 333 | * much elements from the global list as to have a bigger local queue |
| 334 | * than the average. |
| 335 | */ |
Willy Tarreau | 0b25d5e | 2018-10-10 16:39:22 +0200 | [diff] [blame] | 336 | 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] | 337 | 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] | 338 | if (unlikely(!rq_next)) { |
| 339 | /* either we just started or we reached the end |
| 340 | * of the tree, typically because <rqueue_ticks> |
| 341 | * is in the first half and we're first scanning |
| 342 | * the last half. Let's loop back to the beginning |
| 343 | * of the tree now. |
Willy Tarreau | f0c531a | 2017-11-05 16:35:59 +0100 | [diff] [blame] | 344 | */ |
| 345 | rq_next = eb32sc_first(&rqueue, tid_bit); |
Olivier Houchard | c4aac9e | 2018-07-26 15:25:49 +0200 | [diff] [blame] | 346 | if (!rq_next) { |
| 347 | HA_ATOMIC_AND(&global_tasks_mask, ~tid_bit); |
Willy Tarreau | f0c531a | 2017-11-05 16:35:59 +0100 | [diff] [blame] | 348 | break; |
Olivier Houchard | c4aac9e | 2018-07-26 15:25:49 +0200 | [diff] [blame] | 349 | } |
Willy Tarreau | f0c531a | 2017-11-05 16:35:59 +0100 | [diff] [blame] | 350 | } |
| 351 | |
| 352 | t = eb32sc_entry(rq_next, struct task, rq); |
| 353 | rq_next = eb32sc_next(rq_next, tid_bit); |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 354 | |
| 355 | /* detach the task from the queue */ |
Willy Tarreau | f0c531a | 2017-11-05 16:35:59 +0100 | [diff] [blame] | 356 | __task_unlink_rq(t); |
Willy Tarreau | 8d8747a | 2018-10-15 16:12:48 +0200 | [diff] [blame] | 357 | __task_wakeup(t, &task_per_thread[tid].rqueue); |
Willy Tarreau | f0c531a | 2017-11-05 16:35:59 +0100 | [diff] [blame] | 358 | } |
Olivier Houchard | b1ca58b | 2018-06-06 14:22:03 +0200 | [diff] [blame] | 359 | #endif |
Willy Tarreau | f0c531a | 2017-11-05 16:35:59 +0100 | [diff] [blame] | 360 | |
Christopher Faulet | 8a48f67 | 2017-11-14 10:38:36 +0100 | [diff] [blame] | 361 | HA_SPIN_UNLOCK(TASK_RQ_LOCK, &rq_lock); |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 362 | } else { |
| 363 | if (!(active_tasks_mask & tid_bit)) { |
| 364 | activity[tid].empty_rq++; |
| 365 | return; |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 366 | } |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 367 | } |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 368 | /* Get some tasks from the run queue, make sure we don't |
| 369 | * get too much in the task list, but put a bit more than |
| 370 | * the max that will be run, to give a bit more fairness |
| 371 | */ |
Willy Tarreau | 8d8747a | 2018-10-15 16:12:48 +0200 | [diff] [blame] | 372 | rq_next = eb32sc_lookup_ge(&task_per_thread[tid].rqueue, rqueue_ticks - TIMER_LOOK_BACK, tid_bit); |
| 373 | 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] | 374 | /* Note: this loop is one of the fastest code path in |
| 375 | * the whole program. It should not be re-arranged |
| 376 | * without a good reason. |
| 377 | */ |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 378 | if (unlikely(!rq_next)) { |
| 379 | /* either we just started or we reached the end |
| 380 | * of the tree, typically because <rqueue_ticks> |
| 381 | * is in the first half and we're first scanning |
| 382 | * the last half. Let's loop back to the beginning |
| 383 | * of the tree now. |
Emeric Brun | 0194897 | 2017-03-30 15:37:25 +0200 | [diff] [blame] | 384 | */ |
Willy Tarreau | 8d8747a | 2018-10-15 16:12:48 +0200 | [diff] [blame] | 385 | rq_next = eb32sc_first(&task_per_thread[tid].rqueue, tid_bit); |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 386 | if (!rq_next) |
| 387 | break; |
Emeric Brun | 0194897 | 2017-03-30 15:37:25 +0200 | [diff] [blame] | 388 | } |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 389 | t = eb32sc_entry(rq_next, struct task, rq); |
| 390 | rq_next = eb32sc_next(rq_next, tid_bit); |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 391 | /* Make sure nobody re-adds the task in the runqueue */ |
| 392 | HA_ATOMIC_OR(&t->state, TASK_RUNNING); |
Willy Tarreau | 531cf0c | 2009-03-08 16:35:27 +0100 | [diff] [blame] | 393 | |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 394 | /* detach the task from the queue */ |
| 395 | __task_unlink_rq(t); |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 396 | /* And add it to the local task list */ |
| 397 | task_insert_into_tasklet_list(t); |
| 398 | } |
Willy Tarreau | 8d8747a | 2018-10-15 16:12:48 +0200 | [diff] [blame] | 399 | 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] | 400 | HA_ATOMIC_AND(&active_tasks_mask, ~tid_bit); |
| 401 | __ha_barrier_load(); |
| 402 | if (global_tasks_mask & tid_bit) |
| 403 | HA_ATOMIC_OR(&active_tasks_mask, tid_bit); |
| 404 | } |
Willy Tarreau | 8d8747a | 2018-10-15 16:12:48 +0200 | [diff] [blame] | 405 | while (max_processed > 0 && !LIST_ISEMPTY(&task_per_thread[tid].task_list)) { |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 406 | struct task *t; |
| 407 | unsigned short state; |
| 408 | void *ctx; |
| 409 | struct task *(*process)(struct task *t, void *ctx, unsigned short state); |
| 410 | |
Willy Tarreau | 8d8747a | 2018-10-15 16:12:48 +0200 | [diff] [blame] | 411 | 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] | 412 | state = HA_ATOMIC_XCHG(&t->state, TASK_RUNNING); |
| 413 | __ha_barrier_store(); |
| 414 | task_remove_from_task_list(t); |
| 415 | |
| 416 | ctx = t->context; |
| 417 | process = t->process; |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 418 | t->calls++; |
| 419 | curr_task = (struct task *)t; |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 420 | if (likely(process == process_stream)) |
| 421 | t = process_stream(t, ctx, state); |
| 422 | else { |
| 423 | if (t->process != NULL) |
Olivier Houchard | 9db0fed | 2018-06-14 15:40:47 +0200 | [diff] [blame] | 424 | t = process(TASK_IS_TASKLET(t) ? NULL : t, ctx, state); |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 425 | else { |
| 426 | __task_free(t); |
| 427 | t = NULL; |
| 428 | } |
| 429 | } |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 430 | curr_task = NULL; |
| 431 | /* If there is a pending state we have to wake up the task |
| 432 | * immediatly, else we defer it into wait queue |
| 433 | */ |
| 434 | if (t != NULL) { |
| 435 | state = HA_ATOMIC_AND(&t->state, ~TASK_RUNNING); |
| 436 | if (state) |
Olivier Houchard | b1ca58b | 2018-06-06 14:22:03 +0200 | [diff] [blame] | 437 | #ifdef USE_THREAD |
Olivier Houchard | 19bdf24 | 2018-08-17 13:36:08 +0200 | [diff] [blame] | 438 | __task_wakeup(t, ((t->thread_mask & all_threads_mask) == tid_bit) ? |
Willy Tarreau | 8d8747a | 2018-10-15 16:12:48 +0200 | [diff] [blame] | 439 | &task_per_thread[tid].rqueue : &rqueue); |
Olivier Houchard | b1ca58b | 2018-06-06 14:22:03 +0200 | [diff] [blame] | 440 | #else |
Willy Tarreau | 8d8747a | 2018-10-15 16:12:48 +0200 | [diff] [blame] | 441 | __task_wakeup(t, &task_per_thread[tid].rqueue); |
Olivier Houchard | b1ca58b | 2018-06-06 14:22:03 +0200 | [diff] [blame] | 442 | #endif |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 443 | else |
Willy Tarreau | 9d4b56b | 2017-11-06 08:36:53 +0100 | [diff] [blame] | 444 | task_queue(t); |
Willy Tarreau | 58b458d | 2008-06-29 22:40:23 +0200 | [diff] [blame] | 445 | } |
Willy Tarreau | ce4e0aa | 2017-11-05 23:57:00 +0100 | [diff] [blame] | 446 | |
Olivier Houchard | 736ea41 | 2018-05-28 14:54:49 +0200 | [diff] [blame] | 447 | max_processed--; |
Christopher Faulet | 3911ee8 | 2017-11-14 10:26:53 +0100 | [diff] [blame] | 448 | if (max_processed <= 0) { |
Willy Tarreau | 189ea85 | 2018-07-26 15:16:43 +0200 | [diff] [blame] | 449 | HA_ATOMIC_OR(&active_tasks_mask, tid_bit); |
Willy Tarreau | d80cb4e | 2018-01-20 19:30:13 +0100 | [diff] [blame] | 450 | activity[tid].long_rq++; |
Christopher Faulet | 3911ee8 | 2017-11-14 10:26:53 +0100 | [diff] [blame] | 451 | break; |
| 452 | } |
| 453 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 454 | } |
| 455 | |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 456 | /* perform minimal intializations, report 0 in case of error, 1 if OK. */ |
| 457 | int init_task() |
| 458 | { |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 459 | int i; |
| 460 | |
Olivier Houchard | b1ca58b | 2018-06-06 14:22:03 +0200 | [diff] [blame] | 461 | #ifdef USE_THREAD |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 462 | memset(&timers, 0, sizeof(timers)); |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 463 | memset(&rqueue, 0, sizeof(rqueue)); |
Olivier Houchard | b1ca58b | 2018-06-06 14:22:03 +0200 | [diff] [blame] | 464 | #endif |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 465 | HA_SPIN_INIT(&wq_lock); |
| 466 | HA_SPIN_INIT(&rq_lock); |
Willy Tarreau | 8d8747a | 2018-10-15 16:12:48 +0200 | [diff] [blame] | 467 | memset(&task_per_thread, 0, sizeof(task_per_thread)); |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 468 | for (i = 0; i < MAX_THREADS; i++) { |
Willy Tarreau | 8d8747a | 2018-10-15 16:12:48 +0200 | [diff] [blame] | 469 | LIST_INIT(&task_per_thread[i].task_list); |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 470 | } |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 471 | pool_head_task = create_pool("task", sizeof(struct task), MEM_F_SHARED); |
| 472 | if (!pool_head_task) |
Thierry FOURNIER | d697596 | 2017-07-12 14:31:10 +0200 | [diff] [blame] | 473 | return 0; |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 474 | pool_head_tasklet = create_pool("tasklet", sizeof(struct tasklet), MEM_F_SHARED); |
| 475 | if (!pool_head_tasklet) |
| 476 | return 0; |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 477 | pool_head_notification = create_pool("notification", sizeof(struct notification), MEM_F_SHARED); |
| 478 | if (!pool_head_notification) |
Thierry FOURNIER | d697596 | 2017-07-12 14:31:10 +0200 | [diff] [blame] | 479 | return 0; |
| 480 | return 1; |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 481 | } |
| 482 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 483 | /* |
| 484 | * Local variables: |
| 485 | * c-indent-level: 8 |
| 486 | * c-basic-offset: 8 |
| 487 | * End: |
| 488 | */ |