2 * Copyright (C) 2007 Oracle. All rights reserved.
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
19 #include <linux/kthread.h>
20 #include <linux/list.h>
21 #include <linux/spinlock.h>
22 #include <linux/freezer.h>
23 #include "async-thread.h"
25 #define WORK_QUEUED_BIT 0
26 #define WORK_DONE_BIT 1
27 #define WORK_ORDER_DONE_BIT 2
28 #define WORK_HIGH_PRIO_BIT 3
31 * container for the kthread task pointer and the list of pending work
32 * One of these is allocated per thread.
34 struct btrfs_worker_thread
{
35 /* pool we belong to */
36 struct btrfs_workers
*workers
;
38 /* list of struct btrfs_work that are waiting for service */
39 struct list_head pending
;
40 struct list_head prio_pending
;
42 /* list of worker threads from struct btrfs_workers */
43 struct list_head worker_list
;
46 struct task_struct
*task
;
48 /* number of things on the pending list */
51 /* reference counter for this struct */
54 unsigned long sequence
;
56 /* protects the pending list. */
59 /* set to non-zero when this thread is already awake and kicking */
62 /* are we currently idle */
67 * btrfs_start_workers uses kthread_run, which can block waiting for memory
68 * for a very long time. It will actually throttle on page writeback,
69 * and so it may not make progress until after our btrfs worker threads
70 * process all of the pending work structs in their queue
72 * This means we can't use btrfs_start_workers from inside a btrfs worker
73 * thread that is used as part of cleaning dirty memory, which pretty much
74 * involves all of the worker threads.
76 * Instead we have a helper queue who never has more than one thread
77 * where we scheduler thread start operations. This worker_start struct
78 * is used to contain the work and hold a pointer to the queue that needs
82 struct btrfs_work work
;
83 struct btrfs_workers
*queue
;
86 static void start_new_worker_func(struct btrfs_work
*work
)
88 struct worker_start
*start
;
89 start
= container_of(work
, struct worker_start
, work
);
90 btrfs_start_workers(start
->queue
, 1);
94 static int start_new_worker(struct btrfs_workers
*queue
)
96 struct worker_start
*start
;
99 start
= kzalloc(sizeof(*start
), GFP_NOFS
);
103 start
->work
.func
= start_new_worker_func
;
104 start
->queue
= queue
;
105 ret
= btrfs_queue_worker(queue
->atomic_worker_start
, &start
->work
);
112 * helper function to move a thread onto the idle list after it
113 * has finished some requests.
115 static void check_idle_worker(struct btrfs_worker_thread
*worker
)
117 if (!worker
->idle
&& atomic_read(&worker
->num_pending
) <
118 worker
->workers
->idle_thresh
/ 2) {
120 spin_lock_irqsave(&worker
->workers
->lock
, flags
);
123 /* the list may be empty if the worker is just starting */
124 if (!list_empty(&worker
->worker_list
)) {
125 list_move(&worker
->worker_list
,
126 &worker
->workers
->idle_list
);
128 spin_unlock_irqrestore(&worker
->workers
->lock
, flags
);
133 * helper function to move a thread off the idle list after new
134 * pending work is added.
136 static void check_busy_worker(struct btrfs_worker_thread
*worker
)
138 if (worker
->idle
&& atomic_read(&worker
->num_pending
) >=
139 worker
->workers
->idle_thresh
) {
141 spin_lock_irqsave(&worker
->workers
->lock
, flags
);
144 if (!list_empty(&worker
->worker_list
)) {
145 list_move_tail(&worker
->worker_list
,
146 &worker
->workers
->worker_list
);
148 spin_unlock_irqrestore(&worker
->workers
->lock
, flags
);
152 static void check_pending_worker_creates(struct btrfs_worker_thread
*worker
)
154 struct btrfs_workers
*workers
= worker
->workers
;
158 if (!workers
->atomic_start_pending
)
161 spin_lock_irqsave(&workers
->lock
, flags
);
162 if (!workers
->atomic_start_pending
)
165 workers
->atomic_start_pending
= 0;
166 if (workers
->num_workers
+ workers
->num_workers_starting
>=
167 workers
->max_workers
)
170 workers
->num_workers_starting
+= 1;
171 spin_unlock_irqrestore(&workers
->lock
, flags
);
172 start_new_worker(workers
);
176 spin_unlock_irqrestore(&workers
->lock
, flags
);
179 static noinline
int run_ordered_completions(struct btrfs_workers
*workers
,
180 struct btrfs_work
*work
)
182 if (!workers
->ordered
)
185 set_bit(WORK_DONE_BIT
, &work
->flags
);
187 spin_lock(&workers
->order_lock
);
190 if (!list_empty(&workers
->prio_order_list
)) {
191 work
= list_entry(workers
->prio_order_list
.next
,
192 struct btrfs_work
, order_list
);
193 } else if (!list_empty(&workers
->order_list
)) {
194 work
= list_entry(workers
->order_list
.next
,
195 struct btrfs_work
, order_list
);
199 if (!test_bit(WORK_DONE_BIT
, &work
->flags
))
202 /* we are going to call the ordered done function, but
203 * we leave the work item on the list as a barrier so
204 * that later work items that are done don't have their
205 * functions called before this one returns
207 if (test_and_set_bit(WORK_ORDER_DONE_BIT
, &work
->flags
))
210 spin_unlock(&workers
->order_lock
);
212 work
->ordered_func(work
);
214 /* now take the lock again and call the freeing code */
215 spin_lock(&workers
->order_lock
);
216 list_del(&work
->order_list
);
217 work
->ordered_free(work
);
220 spin_unlock(&workers
->order_lock
);
224 static void put_worker(struct btrfs_worker_thread
*worker
)
226 if (atomic_dec_and_test(&worker
->refs
))
230 static int try_worker_shutdown(struct btrfs_worker_thread
*worker
)
234 spin_lock_irq(&worker
->lock
);
235 spin_lock(&worker
->workers
->lock
);
236 if (worker
->workers
->num_workers
> 1 &&
239 !list_empty(&worker
->worker_list
) &&
240 list_empty(&worker
->prio_pending
) &&
241 list_empty(&worker
->pending
) &&
242 atomic_read(&worker
->num_pending
) == 0) {
244 list_del_init(&worker
->worker_list
);
245 worker
->workers
->num_workers
--;
247 spin_unlock(&worker
->workers
->lock
);
248 spin_unlock_irq(&worker
->lock
);
255 static struct btrfs_work
*get_next_work(struct btrfs_worker_thread
*worker
,
256 struct list_head
*prio_head
,
257 struct list_head
*head
)
259 struct btrfs_work
*work
= NULL
;
260 struct list_head
*cur
= NULL
;
262 if(!list_empty(prio_head
))
263 cur
= prio_head
->next
;
266 if (!list_empty(&worker
->prio_pending
))
269 if (!list_empty(head
))
276 spin_lock_irq(&worker
->lock
);
277 list_splice_tail_init(&worker
->prio_pending
, prio_head
);
278 list_splice_tail_init(&worker
->pending
, head
);
280 if (!list_empty(prio_head
))
281 cur
= prio_head
->next
;
282 else if (!list_empty(head
))
284 spin_unlock_irq(&worker
->lock
);
290 work
= list_entry(cur
, struct btrfs_work
, list
);
297 * main loop for servicing work items
299 static int worker_loop(void *arg
)
301 struct btrfs_worker_thread
*worker
= arg
;
302 struct list_head head
;
303 struct list_head prio_head
;
304 struct btrfs_work
*work
;
306 INIT_LIST_HEAD(&head
);
307 INIT_LIST_HEAD(&prio_head
);
314 work
= get_next_work(worker
, &prio_head
, &head
);
318 list_del(&work
->list
);
319 clear_bit(WORK_QUEUED_BIT
, &work
->flags
);
321 work
->worker
= worker
;
325 atomic_dec(&worker
->num_pending
);
327 * unless this is an ordered work queue,
328 * 'work' was probably freed by func above.
330 run_ordered_completions(worker
->workers
, work
);
332 check_pending_worker_creates(worker
);
336 spin_lock_irq(&worker
->lock
);
337 check_idle_worker(worker
);
339 if (freezing(current
)) {
341 spin_unlock_irq(&worker
->lock
);
344 spin_unlock_irq(&worker
->lock
);
345 if (!kthread_should_stop()) {
348 * we've dropped the lock, did someone else
352 if (!list_empty(&worker
->pending
) ||
353 !list_empty(&worker
->prio_pending
))
357 * this short schedule allows more work to
358 * come in without the queue functions
359 * needing to go through wake_up_process()
361 * worker->working is still 1, so nobody
362 * is going to try and wake us up
366 if (!list_empty(&worker
->pending
) ||
367 !list_empty(&worker
->prio_pending
))
370 if (kthread_should_stop())
373 /* still no more work?, sleep for real */
374 spin_lock_irq(&worker
->lock
);
375 set_current_state(TASK_INTERRUPTIBLE
);
376 if (!list_empty(&worker
->pending
) ||
377 !list_empty(&worker
->prio_pending
)) {
378 spin_unlock_irq(&worker
->lock
);
383 * this makes sure we get a wakeup when someone
384 * adds something new to the queue
387 spin_unlock_irq(&worker
->lock
);
389 if (!kthread_should_stop()) {
390 schedule_timeout(HZ
* 120);
391 if (!worker
->working
&&
392 try_worker_shutdown(worker
)) {
397 __set_current_state(TASK_RUNNING
);
399 } while (!kthread_should_stop());
404 * this will wait for all the worker threads to shutdown
406 int btrfs_stop_workers(struct btrfs_workers
*workers
)
408 struct list_head
*cur
;
409 struct btrfs_worker_thread
*worker
;
412 spin_lock_irq(&workers
->lock
);
413 list_splice_init(&workers
->idle_list
, &workers
->worker_list
);
414 while (!list_empty(&workers
->worker_list
)) {
415 cur
= workers
->worker_list
.next
;
416 worker
= list_entry(cur
, struct btrfs_worker_thread
,
419 atomic_inc(&worker
->refs
);
420 workers
->num_workers
-= 1;
421 if (!list_empty(&worker
->worker_list
)) {
422 list_del_init(&worker
->worker_list
);
427 spin_unlock_irq(&workers
->lock
);
429 kthread_stop(worker
->task
);
430 spin_lock_irq(&workers
->lock
);
433 spin_unlock_irq(&workers
->lock
);
438 * simple init on struct btrfs_workers
440 void btrfs_init_workers(struct btrfs_workers
*workers
, char *name
, int max
,
441 struct btrfs_workers
*async_helper
)
443 workers
->num_workers
= 0;
444 workers
->num_workers_starting
= 0;
445 INIT_LIST_HEAD(&workers
->worker_list
);
446 INIT_LIST_HEAD(&workers
->idle_list
);
447 INIT_LIST_HEAD(&workers
->order_list
);
448 INIT_LIST_HEAD(&workers
->prio_order_list
);
449 spin_lock_init(&workers
->lock
);
450 spin_lock_init(&workers
->order_lock
);
451 workers
->max_workers
= max
;
452 workers
->idle_thresh
= 32;
453 workers
->name
= name
;
454 workers
->ordered
= 0;
455 workers
->atomic_start_pending
= 0;
456 workers
->atomic_worker_start
= async_helper
;
460 * starts new worker threads. This does not enforce the max worker
461 * count in case you need to temporarily go past it.
463 static int __btrfs_start_workers(struct btrfs_workers
*workers
,
466 struct btrfs_worker_thread
*worker
;
470 for (i
= 0; i
< num_workers
; i
++) {
471 worker
= kzalloc(sizeof(*worker
), GFP_NOFS
);
477 INIT_LIST_HEAD(&worker
->pending
);
478 INIT_LIST_HEAD(&worker
->prio_pending
);
479 INIT_LIST_HEAD(&worker
->worker_list
);
480 spin_lock_init(&worker
->lock
);
482 atomic_set(&worker
->num_pending
, 0);
483 atomic_set(&worker
->refs
, 1);
484 worker
->workers
= workers
;
485 worker
->task
= kthread_run(worker_loop
, worker
,
486 "btrfs-%s-%d", workers
->name
,
487 workers
->num_workers
+ i
);
488 if (IS_ERR(worker
->task
)) {
489 ret
= PTR_ERR(worker
->task
);
493 spin_lock_irq(&workers
->lock
);
494 list_add_tail(&worker
->worker_list
, &workers
->idle_list
);
496 workers
->num_workers
++;
497 workers
->num_workers_starting
--;
498 WARN_ON(workers
->num_workers_starting
< 0);
499 spin_unlock_irq(&workers
->lock
);
503 btrfs_stop_workers(workers
);
507 int btrfs_start_workers(struct btrfs_workers
*workers
, int num_workers
)
509 spin_lock_irq(&workers
->lock
);
510 workers
->num_workers_starting
+= num_workers
;
511 spin_unlock_irq(&workers
->lock
);
512 return __btrfs_start_workers(workers
, num_workers
);
516 * run through the list and find a worker thread that doesn't have a lot
517 * to do right now. This can return null if we aren't yet at the thread
518 * count limit and all of the threads are busy.
520 static struct btrfs_worker_thread
*next_worker(struct btrfs_workers
*workers
)
522 struct btrfs_worker_thread
*worker
;
523 struct list_head
*next
;
526 enforce_min
= (workers
->num_workers
+ workers
->num_workers_starting
) <
527 workers
->max_workers
;
530 * if we find an idle thread, don't move it to the end of the
531 * idle list. This improves the chance that the next submission
532 * will reuse the same thread, and maybe catch it while it is still
535 if (!list_empty(&workers
->idle_list
)) {
536 next
= workers
->idle_list
.next
;
537 worker
= list_entry(next
, struct btrfs_worker_thread
,
541 if (enforce_min
|| list_empty(&workers
->worker_list
))
545 * if we pick a busy task, move the task to the end of the list.
546 * hopefully this will keep things somewhat evenly balanced.
547 * Do the move in batches based on the sequence number. This groups
548 * requests submitted at roughly the same time onto the same worker.
550 next
= workers
->worker_list
.next
;
551 worker
= list_entry(next
, struct btrfs_worker_thread
, worker_list
);
554 if (worker
->sequence
% workers
->idle_thresh
== 0)
555 list_move_tail(next
, &workers
->worker_list
);
560 * selects a worker thread to take the next job. This will either find
561 * an idle worker, start a new worker up to the max count, or just return
562 * one of the existing busy workers.
564 static struct btrfs_worker_thread
*find_worker(struct btrfs_workers
*workers
)
566 struct btrfs_worker_thread
*worker
;
568 struct list_head
*fallback
;
571 spin_lock_irqsave(&workers
->lock
, flags
);
572 worker
= next_worker(workers
);
575 if (workers
->num_workers
+ workers
->num_workers_starting
>=
576 workers
->max_workers
) {
578 } else if (workers
->atomic_worker_start
) {
579 workers
->atomic_start_pending
= 1;
582 workers
->num_workers_starting
++;
583 spin_unlock_irqrestore(&workers
->lock
, flags
);
584 /* we're below the limit, start another worker */
585 __btrfs_start_workers(workers
, 1);
594 * we have failed to find any workers, just
595 * return the first one we can find.
597 if (!list_empty(&workers
->worker_list
))
598 fallback
= workers
->worker_list
.next
;
599 if (!list_empty(&workers
->idle_list
))
600 fallback
= workers
->idle_list
.next
;
602 worker
= list_entry(fallback
,
603 struct btrfs_worker_thread
, worker_list
);
606 * this makes sure the worker doesn't exit before it is placed
607 * onto a busy/idle list
609 atomic_inc(&worker
->num_pending
);
610 spin_unlock_irqrestore(&workers
->lock
, flags
);
615 * btrfs_requeue_work just puts the work item back on the tail of the list
616 * it was taken from. It is intended for use with long running work functions
617 * that make some progress and want to give the cpu up for others.
619 int btrfs_requeue_work(struct btrfs_work
*work
)
621 struct btrfs_worker_thread
*worker
= work
->worker
;
625 if (test_and_set_bit(WORK_QUEUED_BIT
, &work
->flags
))
628 spin_lock_irqsave(&worker
->lock
, flags
);
629 if (test_bit(WORK_HIGH_PRIO_BIT
, &work
->flags
))
630 list_add_tail(&work
->list
, &worker
->prio_pending
);
632 list_add_tail(&work
->list
, &worker
->pending
);
633 atomic_inc(&worker
->num_pending
);
635 /* by definition we're busy, take ourselves off the idle
639 spin_lock(&worker
->workers
->lock
);
641 list_move_tail(&worker
->worker_list
,
642 &worker
->workers
->worker_list
);
643 spin_unlock(&worker
->workers
->lock
);
645 if (!worker
->working
) {
651 wake_up_process(worker
->task
);
652 spin_unlock_irqrestore(&worker
->lock
, flags
);
658 void btrfs_set_work_high_prio(struct btrfs_work
*work
)
660 set_bit(WORK_HIGH_PRIO_BIT
, &work
->flags
);
664 * places a struct btrfs_work into the pending queue of one of the kthreads
666 int btrfs_queue_worker(struct btrfs_workers
*workers
, struct btrfs_work
*work
)
668 struct btrfs_worker_thread
*worker
;
672 /* don't requeue something already on a list */
673 if (test_and_set_bit(WORK_QUEUED_BIT
, &work
->flags
))
676 worker
= find_worker(workers
);
677 if (workers
->ordered
) {
679 * you're not allowed to do ordered queues from an
682 spin_lock(&workers
->order_lock
);
683 if (test_bit(WORK_HIGH_PRIO_BIT
, &work
->flags
)) {
684 list_add_tail(&work
->order_list
,
685 &workers
->prio_order_list
);
687 list_add_tail(&work
->order_list
, &workers
->order_list
);
689 spin_unlock(&workers
->order_lock
);
691 INIT_LIST_HEAD(&work
->order_list
);
694 spin_lock_irqsave(&worker
->lock
, flags
);
696 if (test_bit(WORK_HIGH_PRIO_BIT
, &work
->flags
))
697 list_add_tail(&work
->list
, &worker
->prio_pending
);
699 list_add_tail(&work
->list
, &worker
->pending
);
700 check_busy_worker(worker
);
703 * avoid calling into wake_up_process if this thread has already
706 if (!worker
->working
)
711 wake_up_process(worker
->task
);
712 spin_unlock_irqrestore(&worker
->lock
, flags
);