Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Task management functions. |
| 3 | * |
Willy Tarreau | 9789f7b | 2008-06-24 08:17:16 +0200 | [diff] [blame] | 4 | * Copyright 2000-2008 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 | 2dd0d47 | 2006-06-29 17:53:05 +0200 | [diff] [blame] | 13 | #include <common/config.h> |
Willy Tarreau | 9789f7b | 2008-06-24 08:17:16 +0200 | [diff] [blame] | 14 | #include <common/eb32tree.h> |
Willy Tarreau | c6ca1a0 | 2007-05-13 19:43:47 +0200 | [diff] [blame] | 15 | #include <common/memory.h> |
Willy Tarreau | 2dd0d47 | 2006-06-29 17:53:05 +0200 | [diff] [blame] | 16 | #include <common/mini-clist.h> |
Willy Tarreau | 96bcfd7 | 2007-04-29 10:41:56 +0200 | [diff] [blame] | 17 | #include <common/standard.h> |
Willy Tarreau | a6a6a93 | 2007-04-28 22:40:08 +0200 | [diff] [blame] | 18 | #include <common/time.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 19 | |
Willy Tarreau | d825eef | 2007-05-12 22:35:00 +0200 | [diff] [blame] | 20 | #include <proto/proxy.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 21 | #include <proto/task.h> |
| 22 | |
Willy Tarreau | 9789f7b | 2008-06-24 08:17:16 +0200 | [diff] [blame] | 23 | struct pool_head *pool2_task; |
Willy Tarreau | 96bcfd7 | 2007-04-29 10:41:56 +0200 | [diff] [blame] | 24 | |
Willy Tarreau | 58b458d | 2008-06-29 22:40:23 +0200 | [diff] [blame] | 25 | unsigned int run_queue = 0; |
Willy Tarreau | 91e9993 | 2008-06-30 07:51:00 +0200 | [diff] [blame] | 26 | unsigned int niced_tasks = 0; /* number of niced tasks in the run queue */ |
Willy Tarreau | ce44f12 | 2008-07-05 18:16:19 +0200 | [diff] [blame] | 27 | struct task *last_timer = NULL; /* optimization: last queued timer */ |
Willy Tarreau | 964c936 | 2007-01-07 00:38:00 +0100 | [diff] [blame] | 28 | |
Willy Tarreau | 28c41a4 | 2008-06-29 17:00:59 +0200 | [diff] [blame] | 29 | /* Principle of the wait queue. |
| 30 | * |
| 31 | * We want to be able to tell whether an expiration date is before of after the |
| 32 | * current time <now>. We KNOW that expiration dates are never too far apart, |
| 33 | * because they are already computed by adding integer numbers of milliseconds |
| 34 | * to the current date. |
| 35 | * We also know that almost all dates will be in the future, and that a very |
| 36 | * small part of them will be in the past, they are the ones which have expired |
| 37 | * since last time we checked them. |
| 38 | * |
| 39 | * The current implementation uses a wrapping time cut into 3 ranges : |
| 40 | * - previous : those ones are expired by definition |
| 41 | * - current : some are expired, some are not |
| 42 | * - next : none are expired |
| 43 | * |
| 44 | * We use the higher two bits of the timers expressed in ticks (milliseconds) |
| 45 | * to determine which range a timer is in, compared to <now> : |
| 46 | * |
| 47 | * now previous current next0 next1 |
| 48 | * [31:30] [31:30] [31:30] [31:30] [31:30] |
| 49 | * 00 11 00 01 10 |
| 50 | * 01 00 01 10 11 |
| 51 | * 10 01 10 11 00 |
| 52 | * 11 10 11 00 01 |
| 53 | * |
| 54 | * By definition, <current> is the range containing <now> as well as all timers |
| 55 | * which have the same 2 high bits as <now>, <previous> is the range just |
| 56 | * before, which contains all timers whose high bits equal those of <now> minus |
| 57 | * 1. Last, <next> is composed of the two remaining ranges. |
| 58 | * |
| 59 | * For ease of implementation, the timers will then be stored into 4 queues 0-3 |
| 60 | * determined by the 2 higher bits of the timer. The expiration algorithm is |
| 61 | * very simple : |
| 62 | * - expire everything in <previous>=queue[((now>>30)-1)&3] |
| 63 | * - expire from <current>=queue[(now>>30)&3] everything where timer >= now |
| 64 | * |
| 65 | * With this algorithm, it's possible to queue tasks meant to expire 24.8 days |
| 66 | * in the future, and still be able to detect events remaining unprocessed for |
| 67 | * the last 12.4 days! Note that the principle might be extended to any number |
| 68 | * of higher bits as long as there is only one range for expired tasks. For |
| 69 | * instance, using the 8 higher bits to index the range, we would have one past |
| 70 | * range of 4.6 hours (24 bits in ms), and 254 ranges in the future totalizing |
| 71 | * 49.3 days. This would eat more memory for a very little added benefit. |
| 72 | * |
| 73 | * Also, in order to maintain the ability to perform time comparisons, it is |
| 74 | * recommended to avoid using the <next1> range above, as values in this range |
| 75 | * may not easily be compared to <now> outside of these functions as it is the |
| 76 | * opposite of the <current> range, and <timer>-<now> may randomly be positive |
| 77 | * or negative. That means we're left with +/- 12 days timers. |
| 78 | * |
| 79 | * To keep timers ordered, we use 4 ebtrees [0..3]. To keep computation low, we |
| 80 | * may use (seconds*1024)+milliseconds, which preserves ordering eventhough we |
| 81 | * can't do real computations on it. Future evolutions could make use of 1024th |
| 82 | * of seconds instead of milliseconds, with the special value 0 avoided (and |
| 83 | * replaced with 1), so that zero indicates the timer is not set. |
Willy Tarreau | 9789f7b | 2008-06-24 08:17:16 +0200 | [diff] [blame] | 84 | */ |
Willy Tarreau | 28c41a4 | 2008-06-29 17:00:59 +0200 | [diff] [blame] | 85 | |
| 86 | #define TIMER_TICK_BITS 32 |
| 87 | #define TIMER_TREE_BITS 2 |
| 88 | #define TIMER_TREES (1 << TIMER_TREE_BITS) |
| 89 | #define TIMER_TREE_SHIFT (TIMER_TICK_BITS - TIMER_TREE_BITS) |
| 90 | #define TIMER_TREE_MASK (TIMER_TREES - 1) |
| 91 | #define TIMER_TICK_MASK ((1U << (TIMER_TICK_BITS-1)) * 2 - 1) |
| 92 | #define TIMER_SIGN_BIT (1 << (TIMER_TICK_BITS - 1)) |
Willy Tarreau | c6ca1a0 | 2007-05-13 19:43:47 +0200 | [diff] [blame] | 93 | |
Willy Tarreau | 28c41a4 | 2008-06-29 17:00:59 +0200 | [diff] [blame] | 94 | static struct eb_root timers[TIMER_TREES]; /* trees with MSB 00, 01, 10 and 11 */ |
Willy Tarreau | 58b458d | 2008-06-29 22:40:23 +0200 | [diff] [blame] | 95 | static struct eb_root rqueue[TIMER_TREES]; /* trees constituting the run queue */ |
| 96 | static unsigned int rqueue_ticks; /* insertion count */ |
Willy Tarreau | 9789f7b | 2008-06-24 08:17:16 +0200 | [diff] [blame] | 97 | |
| 98 | /* returns an ordered key based on an expiration date. */ |
Willy Tarreau | 28c41a4 | 2008-06-29 17:00:59 +0200 | [diff] [blame] | 99 | static inline unsigned int timeval_to_ticks(const struct timeval *t) |
Willy Tarreau | 9789f7b | 2008-06-24 08:17:16 +0200 | [diff] [blame] | 100 | { |
| 101 | unsigned int key; |
| 102 | |
Willy Tarreau | 28c41a4 | 2008-06-29 17:00:59 +0200 | [diff] [blame] | 103 | key = ((unsigned int)t->tv_sec * 1000) + ((unsigned int)t->tv_usec / 1000); |
| 104 | key &= TIMER_TICK_MASK; |
Willy Tarreau | 9789f7b | 2008-06-24 08:17:16 +0200 | [diff] [blame] | 105 | return key; |
| 106 | } |
| 107 | |
Willy Tarreau | 28c41a4 | 2008-06-29 17:00:59 +0200 | [diff] [blame] | 108 | /* returns a tree number based on a ticks value */ |
| 109 | static inline unsigned int ticks_to_tree(unsigned int ticks) |
| 110 | { |
| 111 | return (ticks >> TIMER_TREE_SHIFT) & TIMER_TREE_MASK; |
| 112 | } |
| 113 | |
Willy Tarreau | 9789f7b | 2008-06-24 08:17:16 +0200 | [diff] [blame] | 114 | /* returns a tree number based on an expiration date. */ |
| 115 | static inline unsigned int timeval_to_tree(const struct timeval *t) |
| 116 | { |
Willy Tarreau | 28c41a4 | 2008-06-29 17:00:59 +0200 | [diff] [blame] | 117 | return ticks_to_tree(timeval_to_ticks(t)); |
Willy Tarreau | 9789f7b | 2008-06-24 08:17:16 +0200 | [diff] [blame] | 118 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 119 | |
Willy Tarreau | c6ca1a0 | 2007-05-13 19:43:47 +0200 | [diff] [blame] | 120 | /* perform minimal intializations, report 0 in case of error, 1 if OK. */ |
| 121 | int init_task() |
| 122 | { |
Willy Tarreau | 9789f7b | 2008-06-24 08:17:16 +0200 | [diff] [blame] | 123 | memset(&timers, 0, sizeof(timers)); |
Willy Tarreau | 58b458d | 2008-06-29 22:40:23 +0200 | [diff] [blame] | 124 | memset(&rqueue, 0, sizeof(rqueue)); |
Willy Tarreau | 9789f7b | 2008-06-24 08:17:16 +0200 | [diff] [blame] | 125 | pool2_task = create_pool("task", sizeof(struct task), MEM_F_SHARED); |
| 126 | return pool2_task != NULL; |
Willy Tarreau | 964c936 | 2007-01-07 00:38:00 +0100 | [diff] [blame] | 127 | } |
| 128 | |
Willy Tarreau | 91e9993 | 2008-06-30 07:51:00 +0200 | [diff] [blame] | 129 | /* Puts the task <t> in run queue at a position depending on t->nice. |
| 130 | * <t> is returned. The nice value assigns boosts in 32th of the run queue |
| 131 | * size. A nice value of -1024 sets the task to -run_queue*32, while a nice |
| 132 | * value of 1024 sets the task to run_queue*32. |
| 133 | */ |
Willy Tarreau | 58b458d | 2008-06-29 22:40:23 +0200 | [diff] [blame] | 134 | struct task *task_wakeup(struct task *t) |
Willy Tarreau | e33aece | 2007-04-30 13:15:14 +0200 | [diff] [blame] | 135 | { |
Willy Tarreau | 58b458d | 2008-06-29 22:40:23 +0200 | [diff] [blame] | 136 | if (t->state == TASK_RUNNING) |
| 137 | return t; |
| 138 | |
Willy Tarreau | ce44f12 | 2008-07-05 18:16:19 +0200 | [diff] [blame] | 139 | task_dequeue(t); |
Willy Tarreau | 58b458d | 2008-06-29 22:40:23 +0200 | [diff] [blame] | 140 | |
| 141 | run_queue++; |
| 142 | t->eb.key = ++rqueue_ticks; |
Willy Tarreau | 91e9993 | 2008-06-30 07:51:00 +0200 | [diff] [blame] | 143 | |
| 144 | if (likely(t->nice)) { |
| 145 | int offset; |
| 146 | |
| 147 | niced_tasks++; |
| 148 | if (likely(t->nice > 0)) |
| 149 | offset = (unsigned)((run_queue * (unsigned int)t->nice) / 32U); |
| 150 | else |
| 151 | offset = -(unsigned)((run_queue * (unsigned int)-t->nice) / 32U); |
| 152 | t->eb.key += offset; |
| 153 | } |
| 154 | |
Willy Tarreau | 58b458d | 2008-06-29 22:40:23 +0200 | [diff] [blame] | 155 | t->state = TASK_RUNNING; |
| 156 | |
| 157 | eb32_insert(&rqueue[ticks_to_tree(t->eb.key)], &t->eb); |
| 158 | return t; |
Willy Tarreau | e33aece | 2007-04-30 13:15:14 +0200 | [diff] [blame] | 159 | } |
Willy Tarreau | d825eef | 2007-05-12 22:35:00 +0200 | [diff] [blame] | 160 | |
Willy Tarreau | 96bcfd7 | 2007-04-29 10:41:56 +0200 | [diff] [blame] | 161 | /* |
| 162 | * task_queue() |
| 163 | * |
| 164 | * Inserts a task into the wait queue at the position given by its expiration |
Willy Tarreau | 9789f7b | 2008-06-24 08:17:16 +0200 | [diff] [blame] | 165 | * date. Note that the task must *not* already be in the wait queue nor in the |
| 166 | * run queue, otherwise unpredictable results may happen. Tasks queued with an |
| 167 | * eternity expiration date are simply returned. Last, tasks must not be queued |
Willy Tarreau | 28c41a4 | 2008-06-29 17:00:59 +0200 | [diff] [blame] | 168 | * further than the end of the next tree, which is between <now_ms> and |
| 169 | * <now_ms> + TIMER_SIGN_BIT ms (now+12days..24days in 32bit). |
Willy Tarreau | 96bcfd7 | 2007-04-29 10:41:56 +0200 | [diff] [blame] | 170 | */ |
| 171 | struct task *task_queue(struct task *task) |
Willy Tarreau | 964c936 | 2007-01-07 00:38:00 +0100 | [diff] [blame] | 172 | { |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 173 | if (unlikely(!task->expire)) |
Willy Tarreau | 96bcfd7 | 2007-04-29 10:41:56 +0200 | [diff] [blame] | 174 | return task; |
Willy Tarreau | 96bcfd7 | 2007-04-29 10:41:56 +0200 | [diff] [blame] | 175 | |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 176 | task->eb.key = task->expire; |
Willy Tarreau | 28c41a4 | 2008-06-29 17:00:59 +0200 | [diff] [blame] | 177 | #ifdef DEBUG_CHECK_INVALID_EXPIRATION_DATES |
| 178 | if ((task->eb.key - now_ms) & TIMER_SIGN_BIT) |
| 179 | /* we're queuing too far away or in the past (most likely) */ |
| 180 | return task; |
| 181 | #endif |
Willy Tarreau | ce44f12 | 2008-07-05 18:16:19 +0200 | [diff] [blame] | 182 | |
| 183 | if (likely(last_timer && |
| 184 | last_timer->eb.key == task->eb.key && |
| 185 | last_timer->eb.node.node_p)) { |
| 186 | /* Most often, last queued timer has the same expiration date, so |
| 187 | * if it's not queued at the root, let's queue a dup directly there. |
| 188 | */ |
| 189 | eb_insert_dup(&last_timer->eb.node, &task->eb.node); |
| 190 | return task; |
| 191 | } |
Willy Tarreau | 28c41a4 | 2008-06-29 17:00:59 +0200 | [diff] [blame] | 192 | eb32_insert(&timers[ticks_to_tree(task->eb.key)], &task->eb); |
Willy Tarreau | ce44f12 | 2008-07-05 18:16:19 +0200 | [diff] [blame] | 193 | last_timer = task; |
Willy Tarreau | 96bcfd7 | 2007-04-29 10:41:56 +0200 | [diff] [blame] | 194 | return task; |
Willy Tarreau | 964c936 | 2007-01-07 00:38:00 +0100 | [diff] [blame] | 195 | } |
| 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 |
Willy Tarreau | d825eef | 2007-05-12 22:35:00 +0200 | [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 | */ |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 202 | void wake_expired_tasks(int *next) |
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 | 9789f7b | 2008-06-24 08:17:16 +0200 | [diff] [blame] | 206 | unsigned int now_tree; |
Willy Tarreau | 28c41a4 | 2008-06-29 17:00:59 +0200 | [diff] [blame] | 207 | unsigned int tree; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 208 | |
Willy Tarreau | 28c41a4 | 2008-06-29 17:00:59 +0200 | [diff] [blame] | 209 | /* In theory, we should : |
| 210 | * - wake all tasks from the <previous> tree |
| 211 | * - wake all expired tasks from the <current> tree |
| 212 | * - scan <next> trees for next expiration date if not found earlier. |
| 213 | * But we can do all this more easily : we scan all 3 trees before we |
| 214 | * wrap, and wake everything expired from there, then stop on the first |
| 215 | * non-expired entry. |
Willy Tarreau | 9789f7b | 2008-06-24 08:17:16 +0200 | [diff] [blame] | 216 | */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 217 | |
Willy Tarreau | 28c41a4 | 2008-06-29 17:00:59 +0200 | [diff] [blame] | 218 | now_tree = ticks_to_tree(now_ms); |
| 219 | tree = (now_tree - 1) & TIMER_TREE_MASK; |
Willy Tarreau | 9789f7b | 2008-06-24 08:17:16 +0200 | [diff] [blame] | 220 | do { |
Willy Tarreau | 28c41a4 | 2008-06-29 17:00:59 +0200 | [diff] [blame] | 221 | eb = eb32_first(&timers[tree]); |
Willy Tarreau | 9789f7b | 2008-06-24 08:17:16 +0200 | [diff] [blame] | 222 | while (eb) { |
Willy Tarreau | 9789f7b | 2008-06-24 08:17:16 +0200 | [diff] [blame] | 223 | task = eb32_entry(eb, struct task, eb); |
Willy Tarreau | 28c41a4 | 2008-06-29 17:00:59 +0200 | [diff] [blame] | 224 | if ((now_ms - eb->key) & TIMER_SIGN_BIT) { |
| 225 | /* note that we don't need this check for the <previous> |
| 226 | * tree, but it's cheaper than duplicating the code. |
| 227 | */ |
Willy Tarreau | 9789f7b | 2008-06-24 08:17:16 +0200 | [diff] [blame] | 228 | *next = task->expire; |
Willy Tarreau | 9789f7b | 2008-06-24 08:17:16 +0200 | [diff] [blame] | 229 | return; |
| 230 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 231 | |
Willy Tarreau | af754fc | 2008-06-29 19:25:52 +0200 | [diff] [blame] | 232 | /* detach the task from the queue and add the task to the run queue */ |
| 233 | eb = eb32_next(eb); |
Willy Tarreau | 58b458d | 2008-06-29 22:40:23 +0200 | [diff] [blame] | 234 | task_wakeup(task); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 235 | } |
Willy Tarreau | 28c41a4 | 2008-06-29 17:00:59 +0200 | [diff] [blame] | 236 | tree = (tree + 1) & TIMER_TREE_MASK; |
| 237 | } while (((tree - now_tree) & TIMER_TREE_MASK) < TIMER_TREES/2); |
Willy Tarreau | 9789f7b | 2008-06-24 08:17:16 +0200 | [diff] [blame] | 238 | |
Willy Tarreau | 28c41a4 | 2008-06-29 17:00:59 +0200 | [diff] [blame] | 239 | /* We have found no task to expire in any tree */ |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 240 | *next = TICK_ETERNITY; |
Willy Tarreau | 28c41a4 | 2008-06-29 17:00:59 +0200 | [diff] [blame] | 241 | return; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 242 | } |
| 243 | |
Willy Tarreau | 58b458d | 2008-06-29 22:40:23 +0200 | [diff] [blame] | 244 | /* The run queue is chronologically sorted in a tree. An insertion counter is |
| 245 | * used to assign a position to each task. This counter may be combined with |
| 246 | * other variables (eg: nice value) to set the final position in the tree. The |
| 247 | * counter may wrap without a problem, of course. We then limit the number of |
Willy Tarreau | 91e9993 | 2008-06-30 07:51:00 +0200 | [diff] [blame] | 248 | * tasks processed at once to 1/4 of the number of tasks in the queue, and to |
| 249 | * 200 max in any case, so that general latency remains low and so that task |
| 250 | * positions have a chance to be considered. It also reduces the number of |
| 251 | * trees to be evaluated when no task remains. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 252 | * |
Willy Tarreau | 58b458d | 2008-06-29 22:40:23 +0200 | [diff] [blame] | 253 | * Just like with timers, we start with tree[(current - 1)], which holds past |
| 254 | * values, and stop when we reach the middle of the list. In practise, we visit |
| 255 | * 3 out of 4 trees. |
| 256 | * |
| 257 | * The function adjusts <next> if a new event is closer. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 258 | */ |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 259 | void process_runnable_tasks(int *next) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 260 | { |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 261 | int temp; |
Willy Tarreau | 964c936 | 2007-01-07 00:38:00 +0100 | [diff] [blame] | 262 | struct task *t; |
Willy Tarreau | 58b458d | 2008-06-29 22:40:23 +0200 | [diff] [blame] | 263 | struct eb32_node *eb; |
| 264 | unsigned int tree, stop; |
| 265 | unsigned int max_processed; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 266 | |
Willy Tarreau | 58b458d | 2008-06-29 22:40:23 +0200 | [diff] [blame] | 267 | if (!run_queue) |
| 268 | return; |
Willy Tarreau | 96bcfd7 | 2007-04-29 10:41:56 +0200 | [diff] [blame] | 269 | |
Willy Tarreau | 91e9993 | 2008-06-30 07:51:00 +0200 | [diff] [blame] | 270 | max_processed = run_queue; |
| 271 | if (max_processed > 200) |
| 272 | max_processed = 200; |
| 273 | |
| 274 | if (likely(niced_tasks)) |
| 275 | max_processed /= 4; |
Willy Tarreau | 96bcfd7 | 2007-04-29 10:41:56 +0200 | [diff] [blame] | 276 | |
Willy Tarreau | 58b458d | 2008-06-29 22:40:23 +0200 | [diff] [blame] | 277 | tree = ticks_to_tree(rqueue_ticks); |
| 278 | stop = (tree + TIMER_TREES / 2) & TIMER_TREE_MASK; |
| 279 | tree = (tree - 1) & TIMER_TREE_MASK; |
Willy Tarreau | 964c936 | 2007-01-07 00:38:00 +0100 | [diff] [blame] | 280 | |
Willy Tarreau | 58b458d | 2008-06-29 22:40:23 +0200 | [diff] [blame] | 281 | do { |
| 282 | eb = eb32_first(&rqueue[tree]); |
| 283 | while (eb) { |
| 284 | t = eb32_entry(eb, struct task, eb); |
| 285 | |
| 286 | /* detach the task from the queue and add the task to the run queue */ |
| 287 | eb = eb32_next(eb); |
| 288 | |
| 289 | run_queue--; |
Willy Tarreau | 91e9993 | 2008-06-30 07:51:00 +0200 | [diff] [blame] | 290 | if (likely(t->nice)) |
| 291 | niced_tasks--; |
Willy Tarreau | 58b458d | 2008-06-29 22:40:23 +0200 | [diff] [blame] | 292 | t->state = TASK_IDLE; |
Willy Tarreau | ce44f12 | 2008-07-05 18:16:19 +0200 | [diff] [blame] | 293 | task_dequeue(t); |
Willy Tarreau | 58b458d | 2008-06-29 22:40:23 +0200 | [diff] [blame] | 294 | |
| 295 | t->process(t, &temp); |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 296 | *next = tick_first(*next, temp); |
Willy Tarreau | 58b458d | 2008-06-29 22:40:23 +0200 | [diff] [blame] | 297 | |
| 298 | if (!--max_processed) |
| 299 | return; |
| 300 | } |
| 301 | tree = (tree + 1) & TIMER_TREE_MASK; |
| 302 | } while (tree != stop); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 303 | } |
| 304 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 305 | /* |
| 306 | * Local variables: |
| 307 | * c-indent-level: 8 |
| 308 | * c-basic-offset: 8 |
| 309 | * End: |
| 310 | */ |