blob: 3d021bb4c84856fcc6fbc238585377f41fbacca9 [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
2 * Task management functions.
3 *
Willy Tarreau4726f532009-03-07 17:25:21 +01004 * Copyright 2000-2009 Willy Tarreau <w@1wt.eu>
Willy Tarreaubaaee002006-06-26 02:48:02 +02005 *
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 Tarreau87bed622009-03-08 22:25:28 +010013#include <string.h>
14
Willy Tarreau2dd0d472006-06-29 17:53:05 +020015#include <common/config.h>
Willy Tarreauc6ca1a02007-05-13 19:43:47 +020016#include <common/memory.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020017#include <common/mini-clist.h>
Willy Tarreau96bcfd72007-04-29 10:41:56 +020018#include <common/standard.h>
Willy Tarreaua6a6a932007-04-28 22:40:08 +020019#include <common/time.h>
Willy Tarreau8d388052017-11-05 13:34:20 +010020#include <eb32sctree.h>
Willy Tarreau45cb4fb2009-10-26 21:10:04 +010021#include <eb32tree.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020022
Willy Tarreaud825eef2007-05-12 22:35:00 +020023#include <proto/proxy.h>
Willy Tarreau87b09662015-04-03 00:22:06 +020024#include <proto/stream.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020025#include <proto/task.h>
26
Willy Tarreaubafbe012017-11-24 17:34:44 +010027struct pool_head *pool_head_task;
Willy Tarreau96bcfd72007-04-29 10:41:56 +020028
Thierry FOURNIERd6975962017-07-12 14:31:10 +020029/* This is the memory pool containing all the signal structs. These
30 * struct are used to store each requiered signal between two tasks.
31 */
Willy Tarreaubafbe012017-11-24 17:34:44 +010032struct pool_head *pool_head_notification;
Thierry FOURNIERd6975962017-07-12 14:31:10 +020033
Willy Tarreaua4613182009-03-21 18:13:21 +010034unsigned int nb_tasks = 0;
Christopher Faulet3911ee82017-11-14 10:26:53 +010035unsigned long active_tasks_mask = 0; /* Mask of threads with active tasks */
Christopher Faulet34c5cc92016-12-06 09:15:30 +010036unsigned int tasks_run_queue = 0;
37unsigned int tasks_run_queue_cur = 0; /* copy of the run queue size */
Willy Tarreauc7bdf092009-03-21 18:33:52 +010038unsigned int nb_tasks_cur = 0; /* copy of the tasks count */
Willy Tarreaue35c94a2009-03-21 10:01:42 +010039unsigned int niced_tasks = 0; /* number of niced tasks in the run queue */
Emeric Brun01948972017-03-30 15:37:25 +020040
Willy Tarreau6d1222c2017-11-26 10:08:06 +010041THREAD_LOCAL struct task *curr_task = NULL; /* task currently running or NULL */
Olivier Houchard9b36cb42018-05-04 15:46:16 +020042THREAD_LOCAL struct eb32sc_node *rq_next = NULL; /* Next task to be potentially run */
Willy Tarreau6d1222c2017-11-26 10:08:06 +010043
Willy Tarreaua24d1d02017-11-26 10:19:16 +010044__decl_hathreads(HA_SPINLOCK_T __attribute__((aligned(64))) rq_lock); /* spin lock related to run queue */
45__decl_hathreads(HA_SPINLOCK_T __attribute__((aligned(64))) wq_lock); /* spin lock related to wait queue */
Willy Tarreau964c9362007-01-07 00:38:00 +010046
Willy Tarreaue35c94a2009-03-21 10:01:42 +010047static struct eb_root timers; /* sorted timers tree */
48static struct eb_root rqueue; /* tree constituting the run queue */
49static unsigned int rqueue_ticks; /* insertion count */
Willy Tarreau9789f7b2008-06-24 08:17:16 +020050
Willy Tarreau4726f532009-03-07 17:25:21 +010051/* Puts the task <t> in run queue at a position depending on t->nice. <t> is
52 * returned. The nice value assigns boosts in 32th of the run queue size. A
Christopher Faulet34c5cc92016-12-06 09:15:30 +010053 * nice value of -1024 sets the task to -tasks_run_queue*32, while a nice value
54 * of 1024 sets the task to tasks_run_queue*32. The state flags are cleared, so
55 * the caller will have to set its flags after this call.
Willy Tarreau4726f532009-03-07 17:25:21 +010056 * The task must not already be in the run queue. If unsure, use the safer
57 * task_wakeup() function.
Willy Tarreau91e99932008-06-30 07:51:00 +020058 */
Willy Tarreau4df82062008-08-29 15:26:14 +020059struct task *__task_wakeup(struct task *t)
Willy Tarreaue33aece2007-04-30 13:15:14 +020060{
Christopher Faulet34c5cc92016-12-06 09:15:30 +010061 tasks_run_queue++;
Christopher Faulet3911ee82017-11-14 10:26:53 +010062 active_tasks_mask |= t->thread_mask;
Willy Tarreau4726f532009-03-07 17:25:21 +010063 t->rq.key = ++rqueue_ticks;
Willy Tarreau91e99932008-06-30 07:51:00 +020064
65 if (likely(t->nice)) {
66 int offset;
67
68 niced_tasks++;
69 if (likely(t->nice > 0))
Christopher Faulet34c5cc92016-12-06 09:15:30 +010070 offset = (unsigned)((tasks_run_queue * (unsigned int)t->nice) / 32U);
Willy Tarreau91e99932008-06-30 07:51:00 +020071 else
Christopher Faulet34c5cc92016-12-06 09:15:30 +010072 offset = -(unsigned)((tasks_run_queue * (unsigned int)-t->nice) / 32U);
Willy Tarreau4726f532009-03-07 17:25:21 +010073 t->rq.key += offset;
Willy Tarreau91e99932008-06-30 07:51:00 +020074 }
75
Emeric Brun01948972017-03-30 15:37:25 +020076 /* reset flag to pending ones
77 * Note: __task_wakeup must not be called
78 * if task is running
79 */
80 t->state = t->pending_state;
Willy Tarreau8d388052017-11-05 13:34:20 +010081 eb32sc_insert(&rqueue, &t->rq, t->thread_mask);
Willy Tarreau58b458d2008-06-29 22:40:23 +020082 return t;
Willy Tarreaue33aece2007-04-30 13:15:14 +020083}
Willy Tarreaud825eef2007-05-12 22:35:00 +020084
Willy Tarreau96bcfd72007-04-29 10:41:56 +020085/*
Willy Tarreau531cf0c2009-03-08 16:35:27 +010086 * __task_queue()
Willy Tarreau96bcfd72007-04-29 10:41:56 +020087 *
88 * Inserts a task into the wait queue at the position given by its expiration
Willy Tarreau4726f532009-03-07 17:25:21 +010089 * date. It does not matter if the task was already in the wait queue or not,
Willy Tarreau531cf0c2009-03-08 16:35:27 +010090 * as it will be unlinked. The task must not have an infinite expiration timer.
Willy Tarreaue35c94a2009-03-21 10:01:42 +010091 * Last, tasks must not be queued further than the end of the tree, which is
92 * between <now_ms> and <now_ms> + 2^31 ms (now+24days in 32bit).
Willy Tarreau531cf0c2009-03-08 16:35:27 +010093 *
94 * This function should not be used directly, it is meant to be called by the
95 * inline version of task_queue() which performs a few cheap preliminary tests
96 * before deciding to call __task_queue().
Willy Tarreau96bcfd72007-04-29 10:41:56 +020097 */
Willy Tarreau531cf0c2009-03-08 16:35:27 +010098void __task_queue(struct task *task)
Willy Tarreau964c9362007-01-07 00:38:00 +010099{
Willy Tarreau531cf0c2009-03-08 16:35:27 +0100100 if (likely(task_in_wq(task)))
Willy Tarreau4726f532009-03-07 17:25:21 +0100101 __task_unlink_wq(task);
Willy Tarreau4726f532009-03-07 17:25:21 +0100102
103 /* the task is not in the queue now */
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100104 task->wq.key = task->expire;
Willy Tarreau28c41a42008-06-29 17:00:59 +0200105#ifdef DEBUG_CHECK_INVALID_EXPIRATION_DATES
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100106 if (tick_is_lt(task->wq.key, now_ms))
Willy Tarreau28c41a42008-06-29 17:00:59 +0200107 /* we're queuing too far away or in the past (most likely) */
Willy Tarreau4726f532009-03-07 17:25:21 +0100108 return;
Willy Tarreau28c41a42008-06-29 17:00:59 +0200109#endif
Willy Tarreauce44f122008-07-05 18:16:19 +0200110
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100111 eb32_insert(&timers, &task->wq);
SaVaGe1d7a4202009-10-06 18:53:37 +0300112
Willy Tarreau4726f532009-03-07 17:25:21 +0100113 return;
Willy Tarreau964c9362007-01-07 00:38:00 +0100114}
115
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200116/*
Willy Tarreau9789f7b2008-06-24 08:17:16 +0200117 * Extract all expired timers from the timer queue, and wakes up all
Thierry FOURNIER9cf7c4b2014-12-15 13:26:01 +0100118 * associated tasks. Returns the date of next event (or eternity).
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200119 */
Thierry FOURNIER9cf7c4b2014-12-15 13:26:01 +0100120int wake_expired_tasks()
Willy Tarreaubaaee002006-06-26 02:48:02 +0200121{
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200122 struct task *task;
Willy Tarreau9789f7b2008-06-24 08:17:16 +0200123 struct eb32_node *eb;
Willy Tarreaub992ba12017-11-05 19:09:27 +0100124 int ret = TICK_ETERNITY;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200125
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100126 while (1) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100127 HA_SPIN_LOCK(TASK_WQ_LOCK, &wq_lock);
Emeric Brunc60def82017-09-27 14:59:38 +0200128 lookup_next:
Emeric Brun01948972017-03-30 15:37:25 +0200129 eb = eb32_lookup_ge(&timers, now_ms - TIMER_LOOK_BACK);
Emeric Brunc60def82017-09-27 14:59:38 +0200130 if (!eb) {
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100131 /* we might have reached the end of the tree, typically because
132 * <now_ms> is in the first half and we're first scanning the last
133 * half. Let's loop back to the beginning of the tree now.
134 */
135 eb = eb32_first(&timers);
Willy Tarreaub992ba12017-11-05 19:09:27 +0100136 if (likely(!eb))
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100137 break;
138 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200139
Willy Tarreaub992ba12017-11-05 19:09:27 +0100140 if (tick_is_lt(now_ms, eb->key)) {
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100141 /* timer not expired yet, revisit it later */
Willy Tarreaub992ba12017-11-05 19:09:27 +0100142 ret = eb->key;
143 break;
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100144 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200145
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100146 /* timer looks expired, detach it from the queue */
147 task = eb32_entry(eb, struct task, wq);
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100148 __task_unlink_wq(task);
Willy Tarreau41365222009-03-08 07:46:27 +0100149
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100150 /* It is possible that this task was left at an earlier place in the
151 * tree because a recent call to task_queue() has not moved it. This
152 * happens when the new expiration date is later than the old one.
153 * Since it is very unlikely that we reach a timeout anyway, it's a
154 * lot cheaper to proceed like this because we almost never update
155 * the tree. We may also find disabled expiration dates there. Since
156 * we have detached the task from the tree, we simply call task_queue
Willy Tarreau814c9782009-07-14 23:48:55 +0200157 * to take care of this. Note that we might occasionally requeue it at
158 * the same place, before <eb>, so we have to check if this happens,
159 * and adjust <eb>, otherwise we may skip it which is not what we want.
Willy Tarreau34e98ea2009-08-09 09:09:54 +0200160 * We may also not requeue the task (and not point eb at it) if its
161 * expiration time is not set.
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100162 */
163 if (!tick_is_expired(task->expire, now_ms)) {
Willy Tarreaub992ba12017-11-05 19:09:27 +0100164 if (tick_isset(task->expire))
165 __task_queue(task);
Emeric Brunc60def82017-09-27 14:59:38 +0200166 goto lookup_next;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200167 }
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100168 task_wakeup(task, TASK_WOKEN_TIMER);
Willy Tarreau51753452017-11-23 18:36:50 +0100169 HA_SPIN_UNLOCK(TASK_WQ_LOCK, &wq_lock);
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100170 }
Willy Tarreau9789f7b2008-06-24 08:17:16 +0200171
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100172 HA_SPIN_UNLOCK(TASK_WQ_LOCK, &wq_lock);
Willy Tarreaub992ba12017-11-05 19:09:27 +0100173 return ret;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200174}
175
Willy Tarreau58b458d2008-06-29 22:40:23 +0200176/* The run queue is chronologically sorted in a tree. An insertion counter is
177 * used to assign a position to each task. This counter may be combined with
178 * other variables (eg: nice value) to set the final position in the tree. The
179 * counter may wrap without a problem, of course. We then limit the number of
Christopher Faulet8a48f672017-11-14 10:38:36 +0100180 * tasks processed to 200 in any case, so that general latency remains low and
181 * so that task positions have a chance to be considered.
Willy Tarreau58b458d2008-06-29 22:40:23 +0200182 *
183 * The function adjusts <next> if a new event is closer.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200184 */
Thierry FOURNIER9cf7c4b2014-12-15 13:26:01 +0100185void process_runnable_tasks()
Willy Tarreaubaaee002006-06-26 02:48:02 +0200186{
Willy Tarreau964c9362007-01-07 00:38:00 +0100187 struct task *t;
Emeric Brun01948972017-03-30 15:37:25 +0200188 int i;
189 int max_processed;
Emeric Brun01948972017-03-30 15:37:25 +0200190 struct task *local_tasks[16];
191 int local_tasks_count;
Willy Tarreau9d4b56b2017-11-06 08:36:53 +0100192 int final_tasks_count;
Christopher Faulet3911ee82017-11-14 10:26:53 +0100193
Christopher Faulet34c5cc92016-12-06 09:15:30 +0100194 tasks_run_queue_cur = tasks_run_queue; /* keep a copy for reporting */
Willy Tarreauc7bdf092009-03-21 18:33:52 +0100195 nb_tasks_cur = nb_tasks;
Christopher Faulet8a48f672017-11-14 10:38:36 +0100196 max_processed = 200;
Willy Tarreauf0c531a2017-11-05 16:35:59 +0100197 if (unlikely(global.nbthread <= 1)) {
198 /* when no lock is needed, this loop is much faster */
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100199 if (!(active_tasks_mask & tid_bit)) {
200 activity[tid].empty_rq++;
Christopher Faulet8a48f672017-11-14 10:38:36 +0100201 return;
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100202 }
Christopher Faulet8a48f672017-11-14 10:38:36 +0100203
Christopher Faulet3911ee82017-11-14 10:26:53 +0100204 active_tasks_mask &= ~tid_bit;
Willy Tarreauf0c531a2017-11-05 16:35:59 +0100205 rq_next = eb32sc_lookup_ge(&rqueue, rqueue_ticks - TIMER_LOOK_BACK, tid_bit);
206 while (1) {
207 if (!rq_next) {
208 /* we might have reached the end of the tree, typically because
209 * <rqueue_ticks> is in the first half and we're first scanning
210 * the last half. Let's loop back to the beginning of the tree now.
211 */
212 rq_next = eb32sc_first(&rqueue, tid_bit);
213 if (!rq_next)
214 break;
215 }
216
217 t = eb32sc_entry(rq_next, struct task, rq);
218 rq_next = eb32sc_next(rq_next, tid_bit);
219 __task_unlink_rq(t);
220 t->state |= TASK_RUNNING;
221 t->pending_state = 0;
222
223 t->calls++;
Willy Tarreau6d1222c2017-11-26 10:08:06 +0100224 curr_task = t;
Willy Tarreauf0c531a2017-11-05 16:35:59 +0100225 /* This is an optimisation to help the processor's branch
226 * predictor take this most common call.
227 */
228 if (likely(t->process == process_stream))
229 t = process_stream(t);
Olivier Houchard9b36cb42018-05-04 15:46:16 +0200230 else {
231 if (t->process != NULL)
232 t = t->process(t);
233 else {
234 __task_free(t);
235 t = NULL;
236 }
237 }
Willy Tarreau6d1222c2017-11-26 10:08:06 +0100238 curr_task = NULL;
Willy Tarreauf0c531a2017-11-05 16:35:59 +0100239
240 if (likely(t != NULL)) {
241 t->state &= ~TASK_RUNNING;
242 /* If there is a pending state
243 * we have to wake up the task
244 * immediatly, else we defer
245 * it into wait queue
246 */
247 if (t->pending_state)
248 __task_wakeup(t);
249 else
250 task_queue(t);
251 }
252
253 max_processed--;
Christopher Faulet3911ee82017-11-14 10:26:53 +0100254 if (max_processed <= 0) {
255 active_tasks_mask |= tid_bit;
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100256 activity[tid].long_rq++;
Willy Tarreauf0c531a2017-11-05 16:35:59 +0100257 break;
Christopher Faulet3911ee82017-11-14 10:26:53 +0100258 }
Willy Tarreauf0c531a2017-11-05 16:35:59 +0100259 }
260 return;
261 }
262
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100263 HA_SPIN_LOCK(TASK_RQ_LOCK, &rq_lock);
Christopher Faulet8a48f672017-11-14 10:38:36 +0100264 if (!(active_tasks_mask & tid_bit)) {
265 HA_SPIN_UNLOCK(TASK_RQ_LOCK, &rq_lock);
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100266 activity[tid].empty_rq++;
Christopher Faulet8a48f672017-11-14 10:38:36 +0100267 return;
268 }
269
Christopher Faulet3911ee82017-11-14 10:26:53 +0100270 active_tasks_mask &= ~tid_bit;
271 while (1) {
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100272 /* Note: this loop is one of the fastest code path in
273 * the whole program. It should not be re-arranged
274 * without a good reason.
275 */
Willy Tarreau9e45b332017-11-08 14:05:19 +0100276
277 /* we have to restart looking up after every batch */
278 rq_next = eb32sc_lookup_ge(&rqueue, rqueue_ticks - TIMER_LOOK_BACK, tid_bit);
Willy Tarreauce4e0aa2017-11-05 23:57:00 +0100279 for (local_tasks_count = 0; local_tasks_count < 16; local_tasks_count++) {
280 if (unlikely(!rq_next)) {
281 /* either we just started or we reached the end
282 * of the tree, typically because <rqueue_ticks>
283 * is in the first half and we're first scanning
284 * the last half. Let's loop back to the beginning
285 * of the tree now.
286 */
Christopher Faulet919b7392017-11-14 10:17:48 +0100287 rq_next = eb32sc_first(&rqueue, tid_bit);
288 if (!rq_next)
289 break;
Emeric Brun01948972017-03-30 15:37:25 +0200290 }
Emeric Brun01948972017-03-30 15:37:25 +0200291
Willy Tarreau8d388052017-11-05 13:34:20 +0100292 t = eb32sc_entry(rq_next, struct task, rq);
293 rq_next = eb32sc_next(rq_next, tid_bit);
Willy Tarreauce4e0aa2017-11-05 23:57:00 +0100294
295 /* detach the task from the queue */
296 __task_unlink_rq(t);
297 local_tasks[local_tasks_count] = t;
298 t->state |= TASK_RUNNING;
299 t->pending_state = 0;
300 t->calls++;
301 max_processed--;
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100302 }
Willy Tarreau58b458d2008-06-29 22:40:23 +0200303
Emeric Brun01948972017-03-30 15:37:25 +0200304 if (!local_tasks_count)
305 break;
Willy Tarreau58b458d2008-06-29 22:40:23 +0200306
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100307 HA_SPIN_UNLOCK(TASK_RQ_LOCK, &rq_lock);
Emeric Brun01948972017-03-30 15:37:25 +0200308
Willy Tarreau9d4b56b2017-11-06 08:36:53 +0100309 final_tasks_count = 0;
Emeric Brun01948972017-03-30 15:37:25 +0200310 for (i = 0; i < local_tasks_count ; i++) {
311 t = local_tasks[i];
312 /* This is an optimisation to help the processor's branch
313 * predictor take this most common call.
314 */
Willy Tarreau6d1222c2017-11-26 10:08:06 +0100315 curr_task = t;
Emeric Brun01948972017-03-30 15:37:25 +0200316 if (likely(t->process == process_stream))
317 t = process_stream(t);
Olivier Houchard9b36cb42018-05-04 15:46:16 +0200318 else {
319 if (t->process != NULL)
320 t = t->process(t);
321 else {
322 __task_free(t);
323 t = NULL;
324 }
325 }
Willy Tarreau6d1222c2017-11-26 10:08:06 +0100326 curr_task = NULL;
Willy Tarreau9d4b56b2017-11-06 08:36:53 +0100327 if (t)
328 local_tasks[final_tasks_count++] = t;
Emeric Brun01948972017-03-30 15:37:25 +0200329 }
Willy Tarreau531cf0c2009-03-08 16:35:27 +0100330
Willy Tarreau9d4b56b2017-11-06 08:36:53 +0100331 for (i = 0; i < final_tasks_count ; i++) {
Emeric Brun01948972017-03-30 15:37:25 +0200332 t = local_tasks[i];
Willy Tarreau9d4b56b2017-11-06 08:36:53 +0100333 /* If there is a pending state
334 * we have to wake up the task
335 * immediatly, else we defer
336 * it into wait queue
337 */
Willy Tarreau51753452017-11-23 18:36:50 +0100338 HA_SPIN_LOCK(TASK_RQ_LOCK, &rq_lock);
339 t->state &= ~TASK_RUNNING;
340 if (t->pending_state) {
Willy Tarreau9d4b56b2017-11-06 08:36:53 +0100341 __task_wakeup(t);
Willy Tarreau51753452017-11-23 18:36:50 +0100342 HA_SPIN_UNLOCK(TASK_RQ_LOCK, &rq_lock);
343 }
344 else {
345 /* we must never hold the RQ lock before the WQ lock */
346 HA_SPIN_UNLOCK(TASK_RQ_LOCK, &rq_lock);
Willy Tarreau9d4b56b2017-11-06 08:36:53 +0100347 task_queue(t);
Willy Tarreau51753452017-11-23 18:36:50 +0100348 }
Willy Tarreau58b458d2008-06-29 22:40:23 +0200349 }
Willy Tarreauce4e0aa2017-11-05 23:57:00 +0100350
Willy Tarreau51753452017-11-23 18:36:50 +0100351 HA_SPIN_LOCK(TASK_RQ_LOCK, &rq_lock);
Christopher Faulet3911ee82017-11-14 10:26:53 +0100352 if (max_processed <= 0) {
353 active_tasks_mask |= tid_bit;
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100354 activity[tid].long_rq++;
Christopher Faulet3911ee82017-11-14 10:26:53 +0100355 break;
356 }
357 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100358 HA_SPIN_UNLOCK(TASK_RQ_LOCK, &rq_lock);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200359}
360
Willy Tarreau4726f532009-03-07 17:25:21 +0100361/* perform minimal intializations, report 0 in case of error, 1 if OK. */
362int init_task()
363{
364 memset(&timers, 0, sizeof(timers));
365 memset(&rqueue, 0, sizeof(rqueue));
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100366 HA_SPIN_INIT(&wq_lock);
367 HA_SPIN_INIT(&rq_lock);
Willy Tarreaubafbe012017-11-24 17:34:44 +0100368 pool_head_task = create_pool("task", sizeof(struct task), MEM_F_SHARED);
369 if (!pool_head_task)
Thierry FOURNIERd6975962017-07-12 14:31:10 +0200370 return 0;
Willy Tarreaubafbe012017-11-24 17:34:44 +0100371 pool_head_notification = create_pool("notification", sizeof(struct notification), MEM_F_SHARED);
372 if (!pool_head_notification)
Thierry FOURNIERd6975962017-07-12 14:31:10 +0200373 return 0;
374 return 1;
Willy Tarreau4726f532009-03-07 17:25:21 +0100375}
376
Willy Tarreaubaaee002006-06-26 02:48:02 +0200377/*
378 * Local variables:
379 * c-indent-level: 8
380 * c-basic-offset: 8
381 * End:
382 */