blob: 6079956baef664e64c98e71936c77b9f73088a07 [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 Tarreaub2551052020-06-09 09:07:15 +020015#include <import/eb32sctree.h>
16#include <import/eb32tree.h>
17
Willy Tarreau4c7e4b72020-05-27 12:58:42 +020018#include <haproxy/api.h>
Willy Tarreaue7723bd2020-06-24 11:11:02 +020019#include <haproxy/cfgparse.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020020#include <haproxy/fd.h>
21#include <haproxy/freq_ctr.h>
Willy Tarreau853b2972020-05-27 18:01:47 +020022#include <haproxy/list.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020023#include <haproxy/pool.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020024#include <haproxy/stream.h>
Willy Tarreaucea0e1b2020-06-04 17:25:40 +020025#include <haproxy/task.h>
Willy Tarreau92b4f132020-06-01 11:05:15 +020026#include <haproxy/time.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020027#include <haproxy/tools.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020028
Willy Tarreaubaaee002006-06-26 02:48:02 +020029
Willy Tarreau8ceae722018-11-26 11:58:30 +010030DECLARE_POOL(pool_head_task, "task", sizeof(struct task));
31DECLARE_POOL(pool_head_tasklet, "tasklet", sizeof(struct tasklet));
Willy Tarreau96bcfd72007-04-29 10:41:56 +020032
Thierry FOURNIERd6975962017-07-12 14:31:10 +020033/* This is the memory pool containing all the signal structs. These
Joseph Herlantcf92b6d2018-11-15 14:19:23 -080034 * struct are used to store each required signal between two tasks.
Thierry FOURNIERd6975962017-07-12 14:31:10 +020035 */
Willy Tarreau8ceae722018-11-26 11:58:30 +010036DECLARE_POOL(pool_head_notification, "notification", sizeof(struct notification));
Thierry FOURNIERd6975962017-07-12 14:31:10 +020037
Willy Tarreaua4613182009-03-21 18:13:21 +010038unsigned int nb_tasks = 0;
Olivier Houchardeba0c0b2018-07-26 18:53:28 +020039volatile unsigned long global_tasks_mask = 0; /* Mask of threads with tasks in the global runqueue */
Christopher Faulet34c5cc92016-12-06 09:15:30 +010040unsigned int tasks_run_queue = 0;
41unsigned int tasks_run_queue_cur = 0; /* copy of the run queue size */
Willy Tarreauc7bdf092009-03-21 18:33:52 +010042unsigned int nb_tasks_cur = 0; /* copy of the tasks count */
Willy Tarreaue35c94a2009-03-21 10:01:42 +010043unsigned int niced_tasks = 0; /* number of niced tasks in the run queue */
Emeric Brun01948972017-03-30 15:37:25 +020044
Willy Tarreaud022e9c2019-09-24 08:25:15 +020045THREAD_LOCAL struct task_per_thread *sched = &task_per_thread[0]; /* scheduler context for the current thread */
Willy Tarreau6d1222c2017-11-26 10:08:06 +010046
Willy Tarreau86abe442018-11-25 20:12:18 +010047__decl_aligned_spinlock(rq_lock); /* spin lock related to run queue */
Willy Tarreauef28dc12019-05-28 18:48:07 +020048__decl_aligned_rwlock(wq_lock); /* RW lock related to the wait queue */
Willy Tarreau964c9362007-01-07 00:38:00 +010049
Olivier Houchardb1ca58b2018-06-06 14:22:03 +020050#ifdef USE_THREAD
Willy Tarreaub20aa9e2018-10-15 14:52:21 +020051struct eb_root timers; /* sorted timers tree, global */
Olivier Houchardf6e6dc12018-05-18 18:38:23 +020052struct eb_root rqueue; /* tree constituting the run queue */
Olivier Houchard77551ee2018-07-26 15:59:38 +020053int global_rqueue_size; /* Number of element sin the global runqueue */
Olivier Houchardb1ca58b2018-06-06 14:22:03 +020054#endif
Willy Tarreaub20aa9e2018-10-15 14:52:21 +020055
Willy Tarreaue35c94a2009-03-21 10:01:42 +010056static unsigned int rqueue_ticks; /* insertion count */
Willy Tarreau8d8747a2018-10-15 16:12:48 +020057
58struct task_per_thread task_per_thread[MAX_THREADS];
Willy Tarreau9789f7b2008-06-24 08:17:16 +020059
Willy Tarreau4726f532009-03-07 17:25:21 +010060/* 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 Faulet34c5cc92016-12-06 09:15:30 +010062 * 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 Tarreau4726f532009-03-07 17:25:21 +010065 * The task must not already be in the run queue. If unsure, use the safer
66 * task_wakeup() function.
Willy Tarreau91e99932008-06-30 07:51:00 +020067 */
Olivier Houchardf6e6dc12018-05-18 18:38:23 +020068void __task_wakeup(struct task *t, struct eb_root *root)
Willy Tarreaue33aece2007-04-30 13:15:14 +020069{
Olivier Houchardb1ca58b2018-06-06 14:22:03 +020070#ifdef USE_THREAD
Olivier Houchardf6e6dc12018-05-18 18:38:23 +020071 if (root == &rqueue) {
Olivier Houchardf6e6dc12018-05-18 18:38:23 +020072 HA_SPIN_LOCK(TASK_RQ_LOCK, &rq_lock);
Olivier Houchardf6e6dc12018-05-18 18:38:23 +020073 }
Willy Tarreau2d1fd0a2019-04-15 09:18:31 +020074#endif
Olivier Houchardf6e6dc12018-05-18 18:38:23 +020075 /* Make sure if the task isn't in the runqueue, nobody inserts it
76 * in the meanwhile.
77 */
Olivier Houchard4c2832852019-03-08 18:48:47 +010078 _HA_ATOMIC_ADD(&tasks_run_queue, 1);
Olivier Houchardc4aac9e2018-07-26 15:25:49 +020079#ifdef USE_THREAD
80 if (root == &rqueue) {
Olivier Houchardde82aea2019-04-17 19:10:22 +020081 global_tasks_mask |= t->thread_mask;
Olivier Houcharded1a6a02019-04-18 14:12:51 +020082 __ha_barrier_store();
Olivier Houchardc4aac9e2018-07-26 15:25:49 +020083 }
84#endif
Olivier Houchard4c2832852019-03-08 18:48:47 +010085 t->rq.key = _HA_ATOMIC_ADD(&rqueue_ticks, 1);
Willy Tarreau91e99932008-06-30 07:51:00 +020086
87 if (likely(t->nice)) {
88 int offset;
89
Olivier Houchard4c2832852019-03-08 18:48:47 +010090 _HA_ATOMIC_ADD(&niced_tasks, 1);
Willy Tarreau2d1fd0a2019-04-15 09:18:31 +020091 offset = t->nice * (int)global.tune.runqueue_depth;
Willy Tarreau4726f532009-03-07 17:25:21 +010092 t->rq.key += offset;
Willy Tarreau91e99932008-06-30 07:51:00 +020093 }
94
Willy Tarreaud9add3a2019-04-25 08:57:41 +020095 if (task_profiling_mask & tid_bit)
Willy Tarreau9efd7452018-05-31 14:48:54 +020096 t->call_date = now_mono_time();
97
Olivier Houchardf6e6dc12018-05-18 18:38:23 +020098 eb32sc_insert(root, &t->rq, t->thread_mask);
Olivier Houchardb1ca58b2018-06-06 14:22:03 +020099#ifdef USE_THREAD
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200100 if (root == &rqueue) {
101 global_rqueue_size++;
Olivier Houchard4c2832852019-03-08 18:48:47 +0100102 _HA_ATOMIC_OR(&t->state, TASK_GLOBAL);
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200103 HA_SPIN_UNLOCK(TASK_RQ_LOCK, &rq_lock);
Olivier Houchardb1ca58b2018-06-06 14:22:03 +0200104 } else
105#endif
106 {
Willy Tarreau8d8747a2018-10-15 16:12:48 +0200107 int nb = ((void *)root - (void *)&task_per_thread[0].rqueue) / sizeof(task_per_thread[0]);
108 task_per_thread[nb].rqueue_size++;
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200109 }
Willy Tarreau85d9b842018-07-27 17:14:41 +0200110#ifdef USE_THREAD
Olivier Houchard79321b92018-07-26 17:55:11 +0200111 /* If all threads that are supposed to handle this task are sleeping,
112 * wake one.
113 */
114 if ((((t->thread_mask & all_threads_mask) & sleeping_thread_mask) ==
Olivier Houchard1b327902019-03-15 00:23:10 +0100115 (t->thread_mask & all_threads_mask))) {
116 unsigned long m = (t->thread_mask & all_threads_mask) &~ tid_bit;
117
118 m = (m & (m - 1)) ^ m; // keep lowest bit set
119 _HA_ATOMIC_AND(&sleeping_thread_mask, ~m);
120 wake_thread(my_ffsl(m) - 1);
121 }
Willy Tarreau85d9b842018-07-27 17:14:41 +0200122#endif
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200123 return;
Willy Tarreaue33aece2007-04-30 13:15:14 +0200124}
Willy Tarreaud825eef2007-05-12 22:35:00 +0200125
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200126/*
Willy Tarreau531cf0c2009-03-08 16:35:27 +0100127 * __task_queue()
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200128 *
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200129 * Inserts a task into wait queue <wq> at the position given by its expiration
Willy Tarreau4726f532009-03-07 17:25:21 +0100130 * date. It does not matter if the task was already in the wait queue or not,
Willy Tarreau531cf0c2009-03-08 16:35:27 +0100131 * as it will be unlinked. The task must not have an infinite expiration timer.
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100132 * Last, tasks must not be queued further than the end of the tree, which is
133 * between <now_ms> and <now_ms> + 2^31 ms (now+24days in 32bit).
Willy Tarreau531cf0c2009-03-08 16:35:27 +0100134 *
135 * This function should not be used directly, it is meant to be called by the
136 * inline version of task_queue() which performs a few cheap preliminary tests
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200137 * before deciding to call __task_queue(). Moreover this function doesn't care
138 * at all about locking so the caller must be careful when deciding whether to
139 * lock or not around this call.
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200140 */
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200141void __task_queue(struct task *task, struct eb_root *wq)
Willy Tarreau964c9362007-01-07 00:38:00 +0100142{
Willy Tarreau531cf0c2009-03-08 16:35:27 +0100143 if (likely(task_in_wq(task)))
Willy Tarreau4726f532009-03-07 17:25:21 +0100144 __task_unlink_wq(task);
Willy Tarreau4726f532009-03-07 17:25:21 +0100145
146 /* the task is not in the queue now */
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100147 task->wq.key = task->expire;
Willy Tarreau28c41a42008-06-29 17:00:59 +0200148#ifdef DEBUG_CHECK_INVALID_EXPIRATION_DATES
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100149 if (tick_is_lt(task->wq.key, now_ms))
Willy Tarreau28c41a42008-06-29 17:00:59 +0200150 /* we're queuing too far away or in the past (most likely) */
Willy Tarreau4726f532009-03-07 17:25:21 +0100151 return;
Willy Tarreau28c41a42008-06-29 17:00:59 +0200152#endif
Willy Tarreauce44f122008-07-05 18:16:19 +0200153
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200154 eb32_insert(wq, &task->wq);
Willy Tarreau964c9362007-01-07 00:38:00 +0100155}
156
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200157/*
Willy Tarreau9789f7b2008-06-24 08:17:16 +0200158 * Extract all expired timers from the timer queue, and wakes up all
Willy Tarreauc49ba522019-12-11 08:12:23 +0100159 * associated tasks.
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200160 */
Willy Tarreauc49ba522019-12-11 08:12:23 +0100161void wake_expired_tasks()
Willy Tarreaubaaee002006-06-26 02:48:02 +0200162{
Willy Tarreaud022e9c2019-09-24 08:25:15 +0200163 struct task_per_thread * const tt = sched; // thread's tasks
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200164 struct task *task;
Willy Tarreau9789f7b2008-06-24 08:17:16 +0200165 struct eb32_node *eb;
Willy Tarreauaf613e82020-06-05 08:40:51 +0200166 __decl_thread(int key);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200167
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100168 while (1) {
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200169 lookup_next_local:
Willy Tarreau4c1e1ad2019-09-24 07:19:08 +0200170 eb = eb32_lookup_ge(&tt->timers, now_ms - TIMER_LOOK_BACK);
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200171 if (!eb) {
172 /* we might have reached the end of the tree, typically because
173 * <now_ms> is in the first half and we're first scanning the last
174 * half. Let's loop back to the beginning of the tree now.
175 */
Willy Tarreau4c1e1ad2019-09-24 07:19:08 +0200176 eb = eb32_first(&tt->timers);
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200177 if (likely(!eb))
178 break;
179 }
180
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200181 /* It is possible that this task was left at an earlier place in the
182 * tree because a recent call to task_queue() has not moved it. This
183 * happens when the new expiration date is later than the old one.
184 * Since it is very unlikely that we reach a timeout anyway, it's a
185 * lot cheaper to proceed like this because we almost never update
186 * the tree. We may also find disabled expiration dates there. Since
187 * we have detached the task from the tree, we simply call task_queue
188 * to take care of this. Note that we might occasionally requeue it at
189 * the same place, before <eb>, so we have to check if this happens,
190 * and adjust <eb>, otherwise we may skip it which is not what we want.
191 * We may also not requeue the task (and not point eb at it) if its
Willy Tarreau77015ab2020-06-19 11:50:27 +0200192 * expiration time is not set. We also make sure we leave the real
193 * expiration date for the next task in the queue so that when calling
194 * next_timer_expiry() we're guaranteed to see the next real date and
195 * not the next apparent date. This is in order to avoid useless
196 * wakeups.
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200197 */
Willy Tarreau77015ab2020-06-19 11:50:27 +0200198
199 task = eb32_entry(eb, struct task, wq);
200 if (tick_is_expired(task->expire, now_ms)) {
201 /* expired task, wake it up */
202 __task_unlink_wq(task);
203 task_wakeup(task, TASK_WOKEN_TIMER);
204 }
205 else if (task->expire != eb->key) {
206 /* task is not expired but its key doesn't match so let's
207 * update it and skip to next apparently expired task.
208 */
209 __task_unlink_wq(task);
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200210 if (tick_isset(task->expire))
Willy Tarreau4c1e1ad2019-09-24 07:19:08 +0200211 __task_queue(task, &tt->timers);
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200212 }
Willy Tarreau77015ab2020-06-19 11:50:27 +0200213 else {
214 /* task not expired and correctly placed */
215 break;
216 }
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200217 }
218
219#ifdef USE_THREAD
Willy Tarreau1e928c02019-05-28 18:57:25 +0200220 if (eb_is_empty(&timers))
221 goto leave;
222
223 HA_RWLOCK_RDLOCK(TASK_WQ_LOCK, &wq_lock);
224 eb = eb32_lookup_ge(&timers, now_ms - TIMER_LOOK_BACK);
225 if (!eb) {
226 eb = eb32_first(&timers);
227 if (likely(!eb)) {
228 HA_RWLOCK_RDUNLOCK(TASK_WQ_LOCK, &wq_lock);
229 goto leave;
230 }
231 }
232 key = eb->key;
233 HA_RWLOCK_RDUNLOCK(TASK_WQ_LOCK, &wq_lock);
234
Willy Tarreauc49ba522019-12-11 08:12:23 +0100235 if (tick_is_lt(now_ms, key))
Willy Tarreau1e928c02019-05-28 18:57:25 +0200236 goto leave;
Willy Tarreau1e928c02019-05-28 18:57:25 +0200237
238 /* There's really something of interest here, let's visit the queue */
239
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200240 while (1) {
Willy Tarreauef28dc12019-05-28 18:48:07 +0200241 HA_RWLOCK_WRLOCK(TASK_WQ_LOCK, &wq_lock);
Emeric Brunc60def82017-09-27 14:59:38 +0200242 lookup_next:
Emeric Brun01948972017-03-30 15:37:25 +0200243 eb = eb32_lookup_ge(&timers, now_ms - TIMER_LOOK_BACK);
Emeric Brunc60def82017-09-27 14:59:38 +0200244 if (!eb) {
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100245 /* we might have reached the end of the tree, typically because
246 * <now_ms> is in the first half and we're first scanning the last
247 * half. Let's loop back to the beginning of the tree now.
248 */
249 eb = eb32_first(&timers);
Willy Tarreaub992ba12017-11-05 19:09:27 +0100250 if (likely(!eb))
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100251 break;
252 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200253
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100254 task = eb32_entry(eb, struct task, wq);
Willy Tarreau77015ab2020-06-19 11:50:27 +0200255 if (tick_is_expired(task->expire, now_ms)) {
256 /* expired task, wake it up */
257 __task_unlink_wq(task);
258 task_wakeup(task, TASK_WOKEN_TIMER);
259 }
260 else if (task->expire != eb->key) {
261 /* task is not expired but its key doesn't match so let's
262 * update it and skip to next apparently expired task.
263 */
264 __task_unlink_wq(task);
Willy Tarreaub992ba12017-11-05 19:09:27 +0100265 if (tick_isset(task->expire))
Willy Tarreau77015ab2020-06-19 11:50:27 +0200266 __task_queue(task, &tt->timers);
Emeric Brunc60def82017-09-27 14:59:38 +0200267 goto lookup_next;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200268 }
Willy Tarreau77015ab2020-06-19 11:50:27 +0200269 else {
270 /* task not expired and correctly placed */
271 break;
272 }
Willy Tarreauef28dc12019-05-28 18:48:07 +0200273 HA_RWLOCK_WRUNLOCK(TASK_WQ_LOCK, &wq_lock);
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100274 }
Willy Tarreau9789f7b2008-06-24 08:17:16 +0200275
Willy Tarreauef28dc12019-05-28 18:48:07 +0200276 HA_RWLOCK_WRUNLOCK(TASK_WQ_LOCK, &wq_lock);
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200277#endif
Willy Tarreau1e928c02019-05-28 18:57:25 +0200278leave:
Willy Tarreauc49ba522019-12-11 08:12:23 +0100279 return;
280}
281
282/* Checks the next timer for the current thread by looking into its own timer
283 * list and the global one. It may return TICK_ETERNITY if no timer is present.
Ilya Shipitsin856aabc2020-04-16 23:51:34 +0500284 * Note that the next timer might very well be slightly in the past.
Willy Tarreauc49ba522019-12-11 08:12:23 +0100285 */
286int next_timer_expiry()
287{
288 struct task_per_thread * const tt = sched; // thread's tasks
289 struct eb32_node *eb;
290 int ret = TICK_ETERNITY;
Willy Tarreauaf613e82020-06-05 08:40:51 +0200291 __decl_thread(int key);
Willy Tarreauc49ba522019-12-11 08:12:23 +0100292
293 /* first check in the thread-local timers */
294 eb = eb32_lookup_ge(&tt->timers, now_ms - TIMER_LOOK_BACK);
295 if (!eb) {
296 /* we might have reached the end of the tree, typically because
297 * <now_ms> is in the first half and we're first scanning the last
298 * half. Let's loop back to the beginning of the tree now.
299 */
300 eb = eb32_first(&tt->timers);
301 }
302
303 if (eb)
304 ret = eb->key;
305
306#ifdef USE_THREAD
307 if (!eb_is_empty(&timers)) {
308 HA_RWLOCK_RDLOCK(TASK_WQ_LOCK, &wq_lock);
309 eb = eb32_lookup_ge(&timers, now_ms - TIMER_LOOK_BACK);
310 if (!eb)
311 eb = eb32_first(&timers);
312 if (eb)
313 key = eb->key;
314 HA_RWLOCK_RDUNLOCK(TASK_WQ_LOCK, &wq_lock);
315 if (eb)
316 ret = tick_first(ret, key);
317 }
318#endif
Willy Tarreaub992ba12017-11-05 19:09:27 +0100319 return ret;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200320}
321
Willy Tarreau59153fe2020-06-24 10:17:29 +0200322/* Walks over tasklet lists sched->tasklets[0..TL_CLASSES-1] and run at most
323 * budget[TL_*] of them. Returns the number of entries effectively processed
324 * (tasks and tasklets merged). The count of tasks in the list for the current
325 * thread is adjusted.
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100326 */
Willy Tarreau59153fe2020-06-24 10:17:29 +0200327unsigned int run_tasks_from_lists(unsigned int budgets[])
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100328{
329 struct task *(*process)(struct task *t, void *ctx, unsigned short state);
Willy Tarreauba48d5c2020-06-24 09:54:24 +0200330 struct list *tl_queues = sched->tasklets;
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100331 struct task *t;
Willy Tarreaue7723bd2020-06-24 11:11:02 +0200332 uint8_t budget_mask = (1 << TL_CLASSES) - 1;
Willy Tarreau59153fe2020-06-24 10:17:29 +0200333 unsigned int done = 0;
334 unsigned int queue;
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100335 unsigned short state;
336 void *ctx;
Willy Tarreau59153fe2020-06-24 10:17:29 +0200337
338 for (queue = 0; queue < TL_CLASSES;) {
339 sched->current_queue = queue;
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100340
Willy Tarreaue7723bd2020-06-24 11:11:02 +0200341 /* global.tune.sched.low-latency is set */
342 if (global.tune.options & GTUNE_SCHED_LOW_LATENCY) {
343 if (unlikely(sched->tl_class_mask & budget_mask & ((1 << queue) - 1))) {
344 /* a lower queue index has tasks again and still has a
345 * budget to run them. Let's switch to it now.
346 */
347 queue = (sched->tl_class_mask & 1) ? 0 :
348 (sched->tl_class_mask & 2) ? 1 : 2;
349 continue;
350 }
351
352 if (unlikely(queue > TL_URGENT &&
353 budget_mask & (1 << TL_URGENT) &&
354 !MT_LIST_ISEMPTY(&sched->shared_tasklet_list))) {
355 /* an urgent tasklet arrived from another thread */
356 break;
357 }
358
359 if (unlikely(queue > TL_NORMAL &&
360 budget_mask & (1 << TL_NORMAL) &&
361 ((sched->rqueue_size > 0) ||
362 (global_tasks_mask & tid_bit)))) {
363 /* a task was woken up by a bulk tasklet or another thread */
364 break;
365 }
366 }
367
Willy Tarreauba48d5c2020-06-24 09:54:24 +0200368 if (LIST_ISEMPTY(&tl_queues[queue])) {
369 sched->tl_class_mask &= ~(1 << queue);
Willy Tarreau59153fe2020-06-24 10:17:29 +0200370 queue++;
371 continue;
Willy Tarreauba48d5c2020-06-24 09:54:24 +0200372 }
373
Willy Tarreau59153fe2020-06-24 10:17:29 +0200374 if (!budgets[queue]) {
Willy Tarreaue7723bd2020-06-24 11:11:02 +0200375 budget_mask &= ~(1 << queue);
Willy Tarreau59153fe2020-06-24 10:17:29 +0200376 queue++;
377 continue;
378 }
Willy Tarreauba48d5c2020-06-24 09:54:24 +0200379
Willy Tarreau59153fe2020-06-24 10:17:29 +0200380 budgets[queue]--;
Willy Tarreauba48d5c2020-06-24 09:54:24 +0200381 t = (struct task *)LIST_ELEM(tl_queues[queue].n, struct tasklet *, list);
Willy Tarreau952c2642020-01-31 16:39:30 +0100382 state = (t->state & (TASK_SHARED_WQ|TASK_SELF_WAKING));
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100383
384 ti->flags &= ~TI_FL_STUCK; // this thread is still running
385 activity[tid].ctxsw++;
386 ctx = t->context;
387 process = t->process;
388 t->calls++;
Willy Tarreaud23d4132020-01-31 10:39:03 +0100389 sched->current = t;
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100390
391 if (TASK_IS_TASKLET(t)) {
Willy Tarreau952c2642020-01-31 16:39:30 +0100392 state = _HA_ATOMIC_XCHG(&t->state, state);
393 __ha_barrier_atomic_store();
394 __tasklet_remove_from_tasklet_list((struct tasklet *)t);
Olivier Houchardc62d9ab2020-03-17 18:15:04 +0100395 process(t, ctx, state);
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100396 done++;
Willy Tarreaud23d4132020-01-31 10:39:03 +0100397 sched->current = NULL;
398 __ha_barrier_store();
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100399 continue;
400 }
401
Willy Tarreau952c2642020-01-31 16:39:30 +0100402 state = _HA_ATOMIC_XCHG(&t->state, state | TASK_RUNNING);
403 __ha_barrier_atomic_store();
404 __tasklet_remove_from_tasklet_list((struct tasklet *)t);
405
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100406 /* OK then this is a regular task */
407
408 task_per_thread[tid].task_list_size--;
409 if (unlikely(t->call_date)) {
410 uint64_t now_ns = now_mono_time();
411
412 t->lat_time += now_ns - t->call_date;
413 t->call_date = now_ns;
414 }
415
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100416 __ha_barrier_store();
417 if (likely(process == process_stream))
418 t = process_stream(t, ctx, state);
419 else if (process != NULL)
420 t = process(t, ctx, state);
421 else {
422 __task_free(t);
423 sched->current = NULL;
424 __ha_barrier_store();
425 /* We don't want max_processed to be decremented if
426 * we're just freeing a destroyed task, we should only
427 * do so if we really ran a task.
428 */
429 continue;
430 }
431 sched->current = NULL;
432 __ha_barrier_store();
433 /* If there is a pending state we have to wake up the task
434 * immediately, else we defer it into wait queue
435 */
436 if (t != NULL) {
437 if (unlikely(t->call_date)) {
438 t->cpu_time += now_mono_time() - t->call_date;
439 t->call_date = 0;
440 }
441
442 state = _HA_ATOMIC_AND(&t->state, ~TASK_RUNNING);
443 if (state & TASK_WOKEN_ANY)
444 task_wakeup(t, 0);
445 else
446 task_queue(t);
447 }
448 done++;
449 }
Willy Tarreauba48d5c2020-06-24 09:54:24 +0200450 sched->current_queue = -1;
Willy Tarreau116ef222020-06-23 16:35:38 +0200451
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100452 return done;
453}
454
Willy Tarreau58b458d2008-06-29 22:40:23 +0200455/* The run queue is chronologically sorted in a tree. An insertion counter is
456 * used to assign a position to each task. This counter may be combined with
457 * other variables (eg: nice value) to set the final position in the tree. The
458 * counter may wrap without a problem, of course. We then limit the number of
Christopher Faulet8a48f672017-11-14 10:38:36 +0100459 * tasks processed to 200 in any case, so that general latency remains low and
Willy Tarreaucde79022019-04-12 18:03:41 +0200460 * so that task positions have a chance to be considered. The function scans
461 * both the global and local run queues and picks the most urgent task between
462 * the two. We need to grab the global runqueue lock to touch it so it's taken
463 * on the very first access to the global run queue and is released as soon as
464 * it reaches the end.
Willy Tarreau58b458d2008-06-29 22:40:23 +0200465 *
466 * The function adjusts <next> if a new event is closer.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200467 */
Thierry FOURNIER9cf7c4b2014-12-15 13:26:01 +0100468void process_runnable_tasks()
Willy Tarreaubaaee002006-06-26 02:48:02 +0200469{
Willy Tarreaud022e9c2019-09-24 08:25:15 +0200470 struct task_per_thread * const tt = sched;
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200471 struct eb32sc_node *lrq; // next local run queue entry
472 struct eb32sc_node *grq; // next global run queue entry
Willy Tarreau964c9362007-01-07 00:38:00 +0100473 struct task *t;
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200474 const unsigned int default_weights[TL_CLASSES] = {
475 [TL_URGENT] = 64, // ~50% of CPU bandwidth for I/O
476 [TL_NORMAL] = 48, // ~37% of CPU bandwidth for tasks
477 [TL_BULK] = 16, // ~13% of CPU bandwidth for self-wakers
478 };
479 unsigned int max[TL_CLASSES]; // max to be run per class
480 unsigned int max_total; // sum of max above
Olivier Houchard06910462019-10-11 16:35:01 +0200481 struct mt_list *tmp_list;
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200482 unsigned int queue;
483 int max_processed;
Christopher Faulet3911ee82017-11-14 10:26:53 +0100484
Willy Tarreaue6a02fa2019-05-22 07:06:44 +0200485 ti->flags &= ~TI_FL_STUCK; // this thread is still running
486
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200487 if (!thread_has_tasks()) {
488 activity[tid].empty_rq++;
489 return;
490 }
491
Willy Tarreau5c8be272020-06-19 12:17:55 +0200492 tasks_run_queue_cur = tasks_run_queue; /* keep a copy for reporting */
493 nb_tasks_cur = nb_tasks;
494 max_processed = global.tune.runqueue_depth;
495
496 if (likely(niced_tasks))
497 max_processed = (max_processed + 3) / 4;
498
Willy Tarreau5c8be272020-06-19 12:17:55 +0200499 not_done_yet:
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200500 max[TL_URGENT] = max[TL_NORMAL] = max[TL_BULK] = 0;
Willy Tarreaucde79022019-04-12 18:03:41 +0200501
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200502 /* urgent tasklets list gets a default weight of ~50% */
Willy Tarreau49f90bf2020-06-24 09:39:48 +0200503 if ((tt->tl_class_mask & (1 << TL_URGENT)) ||
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200504 !MT_LIST_ISEMPTY(&tt->shared_tasklet_list))
505 max[TL_URGENT] = default_weights[TL_URGENT];
Willy Tarreaua62917b2020-01-30 18:37:28 +0100506
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200507 /* normal tasklets list gets a default weight of ~37% */
Willy Tarreau49f90bf2020-06-24 09:39:48 +0200508 if ((tt->tl_class_mask & (1 << TL_NORMAL)) ||
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200509 (sched->rqueue_size > 0) || (global_tasks_mask & tid_bit))
510 max[TL_NORMAL] = default_weights[TL_NORMAL];
Willy Tarreaua62917b2020-01-30 18:37:28 +0100511
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200512 /* bulk tasklets list gets a default weight of ~13% */
Willy Tarreau49f90bf2020-06-24 09:39:48 +0200513 if ((tt->tl_class_mask & (1 << TL_BULK)))
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200514 max[TL_BULK] = default_weights[TL_BULK];
515
516 /* Now compute a fair share of the weights. Total may slightly exceed
517 * 100% due to rounding, this is not a problem. Note that by design
518 * the sum cannot be NULL as we cannot get there without tasklets to
519 * process.
520 */
521 max_total = max[TL_URGENT] + max[TL_NORMAL] + max[TL_BULK];
522 for (queue = 0; queue < TL_CLASSES; queue++)
523 max[queue] = ((unsigned)max_processed * max[queue] + max_total - 1) / max_total;
524
525 lrq = grq = NULL;
Christopher Faulet8a48f672017-11-14 10:38:36 +0100526
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200527 /* pick up to max[TL_NORMAL] regular tasks from prio-ordered run queues */
528 /* Note: the grq lock is always held when grq is not null */
529 while (tt->task_list_size < max[TL_NORMAL]) {
Willy Tarreaucde79022019-04-12 18:03:41 +0200530 if ((global_tasks_mask & tid_bit) && !grq) {
Willy Tarreau3466e3c2019-04-15 18:52:40 +0200531#ifdef USE_THREAD
Willy Tarreaucde79022019-04-12 18:03:41 +0200532 HA_SPIN_LOCK(TASK_RQ_LOCK, &rq_lock);
533 grq = eb32sc_lookup_ge(&rqueue, rqueue_ticks - TIMER_LOOK_BACK, tid_bit);
534 if (unlikely(!grq)) {
535 grq = eb32sc_first(&rqueue, tid_bit);
536 if (!grq) {
Olivier Houchardde82aea2019-04-17 19:10:22 +0200537 global_tasks_mask &= ~tid_bit;
Willy Tarreaucde79022019-04-12 18:03:41 +0200538 HA_SPIN_UNLOCK(TASK_RQ_LOCK, &rq_lock);
Olivier Houchardc4aac9e2018-07-26 15:25:49 +0200539 }
Willy Tarreauf0c531a2017-11-05 16:35:59 +0100540 }
Willy Tarreau3466e3c2019-04-15 18:52:40 +0200541#endif
Willy Tarreaucde79022019-04-12 18:03:41 +0200542 }
Willy Tarreauf0c531a2017-11-05 16:35:59 +0100543
Willy Tarreaucde79022019-04-12 18:03:41 +0200544 /* If a global task is available for this thread, it's in grq
545 * now and the global RQ is locked.
546 */
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200547
Willy Tarreaucde79022019-04-12 18:03:41 +0200548 if (!lrq) {
Willy Tarreau4c1e1ad2019-09-24 07:19:08 +0200549 lrq = eb32sc_lookup_ge(&tt->rqueue, rqueue_ticks - TIMER_LOOK_BACK, tid_bit);
Willy Tarreaucde79022019-04-12 18:03:41 +0200550 if (unlikely(!lrq))
Willy Tarreau4c1e1ad2019-09-24 07:19:08 +0200551 lrq = eb32sc_first(&tt->rqueue, tid_bit);
Willy Tarreauf0c531a2017-11-05 16:35:59 +0100552 }
Willy Tarreauf0c531a2017-11-05 16:35:59 +0100553
Willy Tarreaucde79022019-04-12 18:03:41 +0200554 if (!lrq && !grq)
555 break;
556
557 if (likely(!grq || (lrq && (int)(lrq->key - grq->key) <= 0))) {
558 t = eb32sc_entry(lrq, struct task, rq);
559 lrq = eb32sc_next(lrq, tid_bit);
560 __task_unlink_rq(t);
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200561 }
Willy Tarreau3466e3c2019-04-15 18:52:40 +0200562#ifdef USE_THREAD
Willy Tarreaucde79022019-04-12 18:03:41 +0200563 else {
564 t = eb32sc_entry(grq, struct task, rq);
565 grq = eb32sc_next(grq, tid_bit);
566 __task_unlink_rq(t);
567 if (unlikely(!grq)) {
568 grq = eb32sc_first(&rqueue, tid_bit);
569 if (!grq) {
Olivier Houchardde82aea2019-04-17 19:10:22 +0200570 global_tasks_mask &= ~tid_bit;
Willy Tarreaucde79022019-04-12 18:03:41 +0200571 HA_SPIN_UNLOCK(TASK_RQ_LOCK, &rq_lock);
Willy Tarreaucde79022019-04-12 18:03:41 +0200572 }
573 }
Emeric Brun01948972017-03-30 15:37:25 +0200574 }
Willy Tarreau3466e3c2019-04-15 18:52:40 +0200575#endif
Willy Tarreaucde79022019-04-12 18:03:41 +0200576
Olivier Houchardff1e9f32019-09-20 17:18:35 +0200577 /* Make sure the entry doesn't appear to be in a list */
Olivier Houchard06910462019-10-11 16:35:01 +0200578 LIST_INIT(&((struct tasklet *)t)->list);
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200579 /* And add it to the local task list */
Willy Tarreaua62917b2020-01-30 18:37:28 +0100580 tasklet_insert_into_tasklet_list(&tt->tasklets[TL_NORMAL], (struct tasklet *)t);
Willy Tarreau49f90bf2020-06-24 09:39:48 +0200581 tt->tl_class_mask |= 1 << TL_NORMAL;
Olivier Houchard06910462019-10-11 16:35:01 +0200582 tt->task_list_size++;
Willy Tarreaubc13bec2019-04-30 14:55:18 +0200583 activity[tid].tasksw++;
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200584 }
Willy Tarreaucde79022019-04-12 18:03:41 +0200585
586 /* release the rqueue lock */
587 if (grq) {
588 HA_SPIN_UNLOCK(TASK_RQ_LOCK, &rq_lock);
589 grq = NULL;
590 }
591
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200592 /* Merge the list of tasklets waken up by other threads to the
593 * main list.
594 */
595 tmp_list = MT_LIST_BEHEAD(&tt->shared_tasklet_list);
Willy Tarreau49f90bf2020-06-24 09:39:48 +0200596 if (tmp_list) {
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200597 LIST_SPLICE_END_DETACHED(&tt->tasklets[TL_URGENT], (struct list *)tmp_list);
Willy Tarreau49f90bf2020-06-24 09:39:48 +0200598 if (!LIST_ISEMPTY(&tt->tasklets[TL_URGENT]))
599 tt->tl_class_mask |= 1 << TL_URGENT;
600 }
Willy Tarreaucde79022019-04-12 18:03:41 +0200601
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200602 /* execute tasklets in each queue */
Willy Tarreau59153fe2020-06-24 10:17:29 +0200603 max_processed -= run_tasks_from_lists(max);
Willy Tarreaua62917b2020-01-30 18:37:28 +0100604
Willy Tarreau5c8be272020-06-19 12:17:55 +0200605 /* some tasks may have woken other ones up */
Willy Tarreau0c0c85e2020-06-23 11:32:35 +0200606 if (max_processed > 0 && thread_has_tasks())
Willy Tarreau5c8be272020-06-19 12:17:55 +0200607 goto not_done_yet;
608
Willy Tarreau49f90bf2020-06-24 09:39:48 +0200609 if (tt->tl_class_mask)
Willy Tarreaucde79022019-04-12 18:03:41 +0200610 activity[tid].long_rq++;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200611}
612
Willy Tarreau64e60122019-07-12 08:31:17 +0200613/* create a work list array for <nbthread> threads, using tasks made of
614 * function <fct>. The context passed to the function will be the pointer to
615 * the thread's work list, which will contain a copy of argument <arg>. The
616 * wake up reason will be TASK_WOKEN_OTHER. The pointer to the work_list array
617 * is returned on success, otherwise NULL on failure.
618 */
619struct work_list *work_list_create(int nbthread,
620 struct task *(*fct)(struct task *, void *, unsigned short),
621 void *arg)
622{
623 struct work_list *wl;
624 int i;
625
626 wl = calloc(nbthread, sizeof(*wl));
627 if (!wl)
628 goto fail;
629
630 for (i = 0; i < nbthread; i++) {
Olivier Houchard859dc802019-08-08 15:47:21 +0200631 MT_LIST_INIT(&wl[i].head);
Willy Tarreau64e60122019-07-12 08:31:17 +0200632 wl[i].task = task_new(1UL << i);
633 if (!wl[i].task)
634 goto fail;
635 wl[i].task->process = fct;
636 wl[i].task->context = &wl[i];
637 wl[i].arg = arg;
638 }
639 return wl;
640
641 fail:
642 work_list_destroy(wl, nbthread);
643 return NULL;
644}
645
646/* destroy work list <work> */
647void work_list_destroy(struct work_list *work, int nbthread)
648{
649 int t;
650
651 if (!work)
652 return;
653 for (t = 0; t < nbthread; t++)
654 task_destroy(work[t].task);
655 free(work);
656}
657
William Lallemand27f3fa52018-12-06 14:05:20 +0100658/*
659 * Delete every tasks before running the master polling loop
660 */
661void mworker_cleantasks()
662{
663 struct task *t;
664 int i;
William Lallemandb5823392018-12-06 15:14:37 +0100665 struct eb32_node *tmp_wq = NULL;
666 struct eb32sc_node *tmp_rq = NULL;
William Lallemand27f3fa52018-12-06 14:05:20 +0100667
668#ifdef USE_THREAD
669 /* cleanup the global run queue */
William Lallemandb5823392018-12-06 15:14:37 +0100670 tmp_rq = eb32sc_first(&rqueue, MAX_THREADS_MASK);
671 while (tmp_rq) {
672 t = eb32sc_entry(tmp_rq, struct task, rq);
673 tmp_rq = eb32sc_next(tmp_rq, MAX_THREADS_MASK);
Olivier Houchard3f795f72019-04-17 22:51:06 +0200674 task_destroy(t);
William Lallemand27f3fa52018-12-06 14:05:20 +0100675 }
676 /* cleanup the timers queue */
William Lallemandb5823392018-12-06 15:14:37 +0100677 tmp_wq = eb32_first(&timers);
678 while (tmp_wq) {
679 t = eb32_entry(tmp_wq, struct task, wq);
680 tmp_wq = eb32_next(tmp_wq);
Olivier Houchard3f795f72019-04-17 22:51:06 +0200681 task_destroy(t);
William Lallemand27f3fa52018-12-06 14:05:20 +0100682 }
683#endif
684 /* clean the per thread run queue */
685 for (i = 0; i < global.nbthread; i++) {
William Lallemandb5823392018-12-06 15:14:37 +0100686 tmp_rq = eb32sc_first(&task_per_thread[i].rqueue, MAX_THREADS_MASK);
687 while (tmp_rq) {
688 t = eb32sc_entry(tmp_rq, struct task, rq);
689 tmp_rq = eb32sc_next(tmp_rq, MAX_THREADS_MASK);
Olivier Houchard3f795f72019-04-17 22:51:06 +0200690 task_destroy(t);
William Lallemand27f3fa52018-12-06 14:05:20 +0100691 }
692 /* cleanup the per thread timers queue */
William Lallemandb5823392018-12-06 15:14:37 +0100693 tmp_wq = eb32_first(&task_per_thread[i].timers);
694 while (tmp_wq) {
695 t = eb32_entry(tmp_wq, struct task, wq);
696 tmp_wq = eb32_next(tmp_wq);
Olivier Houchard3f795f72019-04-17 22:51:06 +0200697 task_destroy(t);
William Lallemand27f3fa52018-12-06 14:05:20 +0100698 }
699 }
700}
701
Willy Tarreaub6b3df32018-11-26 16:31:20 +0100702/* perform minimal intializations */
703static void init_task()
Willy Tarreau4726f532009-03-07 17:25:21 +0100704{
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200705 int i;
706
Olivier Houchardb1ca58b2018-06-06 14:22:03 +0200707#ifdef USE_THREAD
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200708 memset(&timers, 0, sizeof(timers));
Willy Tarreau4726f532009-03-07 17:25:21 +0100709 memset(&rqueue, 0, sizeof(rqueue));
Olivier Houchardb1ca58b2018-06-06 14:22:03 +0200710#endif
Willy Tarreau8d8747a2018-10-15 16:12:48 +0200711 memset(&task_per_thread, 0, sizeof(task_per_thread));
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200712 for (i = 0; i < MAX_THREADS; i++) {
Willy Tarreaua62917b2020-01-30 18:37:28 +0100713 LIST_INIT(&task_per_thread[i].tasklets[TL_URGENT]);
714 LIST_INIT(&task_per_thread[i].tasklets[TL_NORMAL]);
715 LIST_INIT(&task_per_thread[i].tasklets[TL_BULK]);
Olivier Houchard06910462019-10-11 16:35:01 +0200716 MT_LIST_INIT(&task_per_thread[i].shared_tasklet_list);
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200717 }
Willy Tarreau4726f532009-03-07 17:25:21 +0100718}
719
Willy Tarreaue7723bd2020-06-24 11:11:02 +0200720/* config parser for global "tune.sched.low-latency", accepts "on" or "off" */
721static int cfg_parse_tune_sched_low_latency(char **args, int section_type, struct proxy *curpx,
722 struct proxy *defpx, const char *file, int line,
723 char **err)
724{
725 if (too_many_args(1, args, err, NULL))
726 return -1;
727
728 if (strcmp(args[1], "on") == 0)
729 global.tune.options |= GTUNE_SCHED_LOW_LATENCY;
730 else if (strcmp(args[1], "off") == 0)
731 global.tune.options &= ~GTUNE_SCHED_LOW_LATENCY;
732 else {
733 memprintf(err, "'%s' expects either 'on' or 'off' but got '%s'.", args[0], args[1]);
734 return -1;
735 }
736 return 0;
737}
738
739/* config keyword parsers */
740static struct cfg_kw_list cfg_kws = {ILH, {
741 { CFG_GLOBAL, "tune.sched.low-latency", cfg_parse_tune_sched_low_latency },
742 { 0, NULL, NULL }
743}};
744
745INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
Willy Tarreaub6b3df32018-11-26 16:31:20 +0100746INITCALL0(STG_PREPARE, init_task);
747
Willy Tarreaubaaee002006-06-26 02:48:02 +0200748/*
749 * Local variables:
750 * c-indent-level: 8
751 * c-basic-offset: 8
752 * End:
753 */