sys/kern/subr_taskqueue.c
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 | /*- * Copyright (c) 2000 Doug Rabson * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * $FreeBSD: src/sys/kern/subr_taskqueue.c,v 1.69 2012/08/28 13:35:37 jhb Exp $" */ #include <sys/param.h> #include <sys/queue.h> #include <sys/systm.h> #include <sys/kernel.h> #include <sys/taskqueue.h> #include <sys/interrupt.h> #include <sys/lock.h> #include <sys/malloc.h> #include <sys/kthread.h> #include <sys/spinlock.h> #include <sys/spinlock2.h> #include <sys/serialize.h> #include <sys/proc.h> MALLOC_DEFINE(M_TASKQUEUE, "taskqueue", "Task Queues"); static STAILQ_HEAD(taskqueue_list, taskqueue) taskqueue_queues; static struct lock taskqueue_queues_lock; static struct spinlock taskqueue_queues_spin; struct taskqueue { STAILQ_ENTRY(taskqueue) tq_link; STAILQ_HEAD(, task) tq_queue; const char *tq_name; /* NOTE: tq must be locked before calling tq_enqueue */ taskqueue_enqueue_fn tq_enqueue; void *tq_context; struct task *tq_running; struct spinlock tq_lock; struct thread **tq_threads; int tq_tcount; int tq_flags; int tq_callouts; }; #define TQ_FLAGS_ACTIVE (1 << 0) #define TQ_FLAGS_BLOCKED (1 << 1) #define TQ_FLAGS_PENDING (1 << 2) #define DT_CALLOUT_ARMED (1 << 0) void _timeout_task_init(struct taskqueue *queue, struct timeout_task *timeout_task, int priority, task_fn_t func, void *context) { TASK_INIT(&timeout_task->t, priority, func, context); callout_init_mp(&timeout_task->c); timeout_task->t.ta_queue = queue; timeout_task->f = 0; } static void taskqueue_run(struct taskqueue *queue, int lock_held); static __inline void TQ_LOCK_INIT(struct taskqueue *tq) { spin_init(&tq->tq_lock, "tqlock"); } static __inline void TQ_LOCK_UNINIT(struct taskqueue *tq) { spin_uninit(&tq->tq_lock); } static __inline void TQ_LOCK(struct taskqueue *tq) { spin_lock(&tq->tq_lock); } static __inline void TQ_UNLOCK(struct taskqueue *tq) { spin_unlock(&tq->tq_lock); } static __inline void TQ_SLEEP(struct taskqueue *tq, void *ident, const char *wmesg) { ssleep(ident, &tq->tq_lock, 0, wmesg, 0); } struct taskqueue * taskqueue_create(const char *name, int mflags, taskqueue_enqueue_fn enqueue, void *context) { struct taskqueue *queue; queue = kmalloc(sizeof(*queue), M_TASKQUEUE, mflags | M_ZERO); if (!queue) return NULL; STAILQ_INIT(&queue->tq_queue); queue->tq_name = name; queue->tq_enqueue = enqueue; queue->tq_context = context; queue->tq_flags |= TQ_FLAGS_ACTIVE; TQ_LOCK_INIT(queue); lockmgr(&taskqueue_queues_lock, LK_EXCLUSIVE); STAILQ_INSERT_TAIL(&taskqueue_queues, queue, tq_link); lockmgr(&taskqueue_queues_lock, LK_RELEASE); return queue; } /* NOTE: tq must be locked */ static void taskqueue_terminate(struct thread **pp, struct taskqueue *tq) { while (tq->tq_tcount > 0) { /* Unlock spinlock before wakeup() */ TQ_UNLOCK(tq); wakeup(tq); TQ_LOCK(tq); TQ_SLEEP(tq, pp, "taskqueue_terminate"); } } void taskqueue_free(struct taskqueue *queue) { TQ_LOCK(queue); queue->tq_flags &= ~TQ_FLAGS_ACTIVE; taskqueue_run(queue, 1); taskqueue_terminate(queue->tq_threads, queue); TQ_UNLOCK(queue); lockmgr(&taskqueue_queues_lock, LK_EXCLUSIVE); STAILQ_REMOVE(&taskqueue_queues, queue, taskqueue, tq_link); lockmgr(&taskqueue_queues_lock, LK_RELEASE); TQ_LOCK_UNINIT(queue); kfree(queue, M_TASKQUEUE); } struct taskqueue * taskqueue_find(const char *name) { struct taskqueue *queue; lockmgr(&taskqueue_queues_lock, LK_EXCLUSIVE); STAILQ_FOREACH(queue, &taskqueue_queues, tq_link) { if (!strcmp(queue->tq_name, name)) { lockmgr(&taskqueue_queues_lock, LK_RELEASE); return queue; } } lockmgr(&taskqueue_queues_lock, LK_RELEASE); return NULL; } /* * NOTE! If using the per-cpu taskqueues ``taskqueue_thread[mycpuid]'', * be sure NOT TO SHARE the ``task'' between CPUs. TASKS ARE NOT LOCKED. * So either use a throwaway task which will only be enqueued once, or * use one task per CPU! */ static int taskqueue_enqueue_locked(struct taskqueue *queue, struct task *task) { struct task *ins; struct task *prev; /* * Don't allow new tasks on a queue which is being freed. */ if ((queue->tq_flags & TQ_FLAGS_ACTIVE) == 0) return EPIPE; /* * Count multiple enqueues. */ if (task->ta_pending) { KKASSERT(queue == task->ta_queue); task->ta_pending++; return 0; } task->ta_queue = queue; /* * Optimise the case when all tasks have the same priority. */ prev = STAILQ_LAST(&queue->tq_queue, task, ta_link); if (!prev || prev->ta_priority >= task->ta_priority) { STAILQ_INSERT_TAIL(&queue->tq_queue, task, ta_link); } else { prev = NULL; for (ins = STAILQ_FIRST(&queue->tq_queue); ins; prev = ins, ins = STAILQ_NEXT(ins, ta_link)) if (ins->ta_priority < task->ta_priority) break; if (prev) STAILQ_INSERT_AFTER(&queue->tq_queue, prev, task, ta_link); else STAILQ_INSERT_HEAD(&queue->tq_queue, task, ta_link); } task->ta_pending = 1; if ((queue->tq_flags & TQ_FLAGS_BLOCKED) == 0) { if (queue->tq_enqueue) queue->tq_enqueue(queue->tq_context); } else { queue->tq_flags |= TQ_FLAGS_PENDING; } return 0; } /* * This version requires that the task not be moved between queues * in an uncontrolled fashion. */ int taskqueue_enqueue(struct taskqueue *queue, struct task *task) { int res; TQ_LOCK(queue); res = taskqueue_enqueue_locked(queue, task); TQ_UNLOCK(queue); return (res); } /* * This version allows a task to be moved between queues in an uncontrolled * fashion. (*qpp) is set to the queue the task is (possibly already) * enqueued on, or the specified queue if it is possible to move the task. */ int taskqueue_enqueue_optq(struct taskqueue *queue, struct taskqueue **qpp, struct task *task) { struct taskqueue *qtmp; int res; /* * Interlock for task structure check, handle the case where we * are unable to safely shift the task to the specified queue. */ for (;;) { qtmp = task->ta_queue; cpu_ccfence(); if (qtmp == NULL) { spin_lock(&taskqueue_queues_spin); if (task->ta_queue == NULL) task->ta_queue = queue; spin_unlock(&taskqueue_queues_spin); } else { TQ_LOCK(qtmp); if (task->ta_queue == qtmp) { if (qtmp == queue) break; /* * If qtmp is pending on a different queue * it must stay on that queue. * * WARNING: Once ta_queue is reassigned * our qtmp lock is no longer * sufficient and we lose control * of the task. */ if (task->ta_pending) { task->ta_pending++; *qpp = qtmp; TQ_UNLOCK(qtmp); return 0; } cpu_sfence(); task->ta_queue = queue; cpu_ccfence(); } TQ_UNLOCK(qtmp); } /* retry */ } /* * The task is assigned to (queue), enqueue it there. */ *qpp = queue; res = taskqueue_enqueue_locked(queue, task); TQ_UNLOCK(queue); return (res); } static void taskqueue_timeout_func(void *arg) { struct taskqueue *queue; struct timeout_task *timeout_task; timeout_task = arg; queue = timeout_task->t.ta_queue; TQ_LOCK(queue); KASSERT((timeout_task->f & DT_CALLOUT_ARMED) != 0, ("Stray timeout")); timeout_task->f &= ~DT_CALLOUT_ARMED; queue->tq_callouts--; taskqueue_enqueue_locked(queue, &timeout_task->t); TQ_UNLOCK(queue); } int taskqueue_enqueue_timeout(struct taskqueue *queue, struct timeout_task *timeout_task, int ticks) { int res; TQ_LOCK(queue); KASSERT(timeout_task->t.ta_queue == NULL || timeout_task->t.ta_queue == queue, ("Migrated queue")); timeout_task->t.ta_queue = queue; res = timeout_task->t.ta_pending; if (ticks == 0) { taskqueue_enqueue_locked(queue, &timeout_task->t); TQ_UNLOCK(queue); } else { if ((timeout_task->f & DT_CALLOUT_ARMED) != 0) { res++; } else { queue->tq_callouts++; timeout_task->f |= DT_CALLOUT_ARMED; } TQ_UNLOCK(queue); callout_reset(&timeout_task->c, ticks, taskqueue_timeout_func, timeout_task); } return (res); } void taskqueue_block(struct taskqueue *queue) { TQ_LOCK(queue); queue->tq_flags |= TQ_FLAGS_BLOCKED; TQ_UNLOCK(queue); } void taskqueue_unblock(struct taskqueue *queue) { TQ_LOCK(queue); queue->tq_flags &= ~TQ_FLAGS_BLOCKED; if (queue->tq_flags & TQ_FLAGS_PENDING) { queue->tq_flags &= ~TQ_FLAGS_PENDING; if (queue->tq_enqueue) queue->tq_enqueue(queue->tq_context); } TQ_UNLOCK(queue); } static void taskqueue_run(struct taskqueue *queue, int lock_held) { struct task *task; int pending; if (lock_held == 0) TQ_LOCK(queue); while (STAILQ_FIRST(&queue->tq_queue)) { /* * Carefully remove the first task from the queue and * zero its pending count. */ task = STAILQ_FIRST(&queue->tq_queue); STAILQ_REMOVE_HEAD(&queue->tq_queue, ta_link); pending = task->ta_pending; task->ta_pending = 0; queue->tq_running = task; TQ_UNLOCK(queue); task->ta_func(task->ta_context, pending); queue->tq_running = NULL; wakeup(task); TQ_LOCK(queue); } if (lock_held == 0) TQ_UNLOCK(queue); } static int taskqueue_cancel_locked(struct taskqueue *queue, struct task *task, u_int *pendp) { if (task->ta_pending > 0) STAILQ_REMOVE(&queue->tq_queue, task, task, ta_link); if (pendp != NULL) *pendp = task->ta_pending; task->ta_pending = 0; return (task == queue->tq_running ? EBUSY : 0); } int taskqueue_cancel(struct taskqueue *queue, struct task *task, u_int *pendp) { int error; TQ_LOCK(queue); error = taskqueue_cancel_locked(queue, task, pendp); TQ_UNLOCK(queue); return (error); } int taskqueue_cancel_simple(struct task *task) { struct taskqueue *queue; int error; for (;;) { queue = task->ta_queue; cpu_ccfence(); if (queue == NULL) { error = 0; break; } TQ_LOCK(queue); if (queue == task->ta_queue) { error = taskqueue_cancel_locked(queue, task, NULL); TQ_UNLOCK(queue); break; } TQ_UNLOCK(queue); } return error; } int taskqueue_cancel_timeout(struct taskqueue *queue, struct timeout_task *timeout_task, u_int *pendp) { u_int pending, pending1; int error; pending = !!callout_stop(&timeout_task->c); TQ_LOCK(queue); error = taskqueue_cancel_locked(queue, &timeout_task->t, &pending1); if ((timeout_task->f & DT_CALLOUT_ARMED) != 0) { timeout_task->f &= ~DT_CALLOUT_ARMED; queue->tq_callouts--; } TQ_UNLOCK(queue); if (pendp != NULL) *pendp = pending + pending1; return (error); } void taskqueue_drain(struct taskqueue *queue, struct task *task) { TQ_LOCK(queue); while (task->ta_pending != 0 || task == queue->tq_running) TQ_SLEEP(queue, task, "-"); TQ_UNLOCK(queue); } /* * Wait for the task to drain and return */ void taskqueue_drain_simple(struct task *task) { struct taskqueue *queue; for (;;) { queue = task->ta_queue; cpu_ccfence(); if (queue == NULL) return; TQ_LOCK(queue); if (task->ta_pending == 0 && task != queue->tq_running) { TQ_UNLOCK(queue); return; } TQ_SLEEP(queue, task, "-"); TQ_UNLOCK(queue); } } void taskqueue_drain_timeout(struct taskqueue *queue, struct timeout_task *timeout_task) { callout_cancel(&timeout_task->c); taskqueue_drain(queue, &timeout_task->t); } static void taskqueue_swi_enqueue(void *context) { setsofttq(); } static void taskqueue_swi_run(void *arg, void *frame) { taskqueue_run(taskqueue_swi, 0); } static void taskqueue_swi_mp_run(void *arg, void *frame) { taskqueue_run(taskqueue_swi_mp, 0); } int taskqueue_start_threads(struct taskqueue **tqp, int count, int pri, int ncpu, const char *fmt, ...) { __va_list ap; struct thread *td; struct taskqueue *tq; int i, error, cpu; char ktname[MAXCOMLEN]; tq = *tqp; cpu = ncpu; /* catch call argument mistakes */ KKASSERT(pri > 0 && pri < TDPRI_MAX); KKASSERT(tq->tq_enqueue == taskqueue_thread_enqueue); if (count <= 0) return EINVAL; __va_start(ap, fmt); kvsnprintf(ktname, MAXCOMLEN, fmt, ap); __va_end(ap); tq->tq_threads = kmalloc(sizeof(struct thread *) * count, M_TASKQUEUE, M_WAITOK | M_ZERO); for (i = 0; i < count; i++) { /* * If no specific cpu was specified and more than one thread * is to be created, we distribute the threads amongst all * cpus. */ if ((ncpu <= -1) && (count > 1)) cpu = i % ncpus; if (count == 1) { error = lwkt_create(taskqueue_thread_loop, tqp, &tq->tq_threads[i], NULL, TDF_NOSTART, cpu, "%s", ktname); } else { error = lwkt_create(taskqueue_thread_loop, tqp, &tq->tq_threads[i], NULL, TDF_NOSTART, cpu, "%s_%d", ktname, i); } if (error) { kprintf("%s: lwkt_create(%s): error %d", __func__, ktname, error); tq->tq_threads[i] = NULL; } else { td = tq->tq_threads[i]; lwkt_setpri_initial(td, pri); lwkt_schedule(td); tq->tq_tcount++; } } return 0; } void taskqueue_thread_loop(void *arg) { struct taskqueue **tqp, *tq; tqp = arg; tq = *tqp; TQ_LOCK(tq); while ((tq->tq_flags & TQ_FLAGS_ACTIVE) != 0) { taskqueue_run(tq, 1); TQ_SLEEP(tq, tq, "tqthr"); } /* rendezvous with thread that asked us to terminate */ tq->tq_tcount--; TQ_UNLOCK(tq); wakeup_one(tq->tq_threads); lwkt_exit(); } /* NOTE: tq must be locked */ void taskqueue_thread_enqueue(void *context) { struct taskqueue **tqp, *tq; tqp = context; tq = *tqp; /* Unlock spinlock before wakeup_one() */ TQ_UNLOCK(tq); wakeup_one(tq); TQ_LOCK(tq); } TASKQUEUE_DEFINE(swi, taskqueue_swi_enqueue, 0, register_swi(SWI_TQ, taskqueue_swi_run, NULL, "swi_taskq", NULL, -1)); /* * XXX: possibly use a different SWI_TQ_MP or so. * related: sys/interrupt.h * related: platform/XXX/isa/ipl_funcs.c */ TASKQUEUE_DEFINE(swi_mp, taskqueue_swi_enqueue, 0, register_swi_mp(SWI_TQ, taskqueue_swi_mp_run, NULL, "swi_mp_taskq", NULL, -1)); struct taskqueue *taskqueue_thread[MAXCPU]; static void taskqueue_init(void) { int cpu; lockinit(&taskqueue_queues_lock, "tqqueues", 0, 0); spin_init(&taskqueue_queues_spin, "tqspin"); STAILQ_INIT(&taskqueue_queues); for (cpu = 0; cpu < ncpus; cpu++) { taskqueue_thread[cpu] = taskqueue_create("thread", M_INTWAIT, taskqueue_thread_enqueue, &taskqueue_thread[cpu]); taskqueue_start_threads(&taskqueue_thread[cpu], 1, TDPRI_KERN_DAEMON, cpu, "taskq_cpu %d", cpu); } } SYSINIT(taskqueueinit, SI_SUB_PRE_DRIVERS, SI_ORDER_FIRST, taskqueue_init, NULL); |