sys/kern/lwkt_thread.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 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 | /* * Copyright (c) 2003-2011 The DragonFly Project. All rights reserved. * * This code is derived from software contributed to The DragonFly Project * by Matthew Dillon <dillon@backplane.com> * * 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. * 3. Neither the name of The DragonFly Project nor the names of its * contributors may be used to endorse or promote products derived * from this software without specific, prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS 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 * COPYRIGHT HOLDERS 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. */ /* * Each cpu in a system has its own self-contained light weight kernel * thread scheduler, which means that generally speaking we only need * to use a critical section to avoid problems. Foreign thread * scheduling is queued via (async) IPIs. */ #include <sys/param.h> #include <sys/systm.h> #include <sys/kernel.h> #include <sys/proc.h> #include <sys/rtprio.h> #include <sys/kinfo.h> #include <sys/malloc.h> #include <sys/queue.h> #include <sys/sysctl.h> #include <sys/kthread.h> #include <machine/cpu.h> #include <sys/lock.h> #include <sys/spinlock.h> #include <sys/ktr.h> #include <sys/indefinite.h> #include <sys/thread2.h> #include <sys/spinlock2.h> #include <sys/indefinite2.h> #include <sys/dsched.h> #include <vm/vm.h> #include <vm/vm_param.h> #include <vm/vm_kern.h> #include <vm/vm_object.h> #include <vm/vm_page.h> #include <vm/vm_map.h> #include <vm/vm_pager.h> #include <vm/vm_extern.h> #include <machine/stdarg.h> #include <machine/smp.h> #include <machine/clock.h> #define LOOPMASK #if !defined(KTR_CTXSW) #define KTR_CTXSW KTR_ALL #endif KTR_INFO_MASTER(ctxsw); KTR_INFO(KTR_CTXSW, ctxsw, sw, 0, "#cpu[%d].td = %p", int cpu, struct thread *td); KTR_INFO(KTR_CTXSW, ctxsw, pre, 1, "#cpu[%d].td = %p", int cpu, struct thread *td); KTR_INFO(KTR_CTXSW, ctxsw, newtd, 2, "#threads[%p].name = %s", struct thread *td, char *comm); KTR_INFO(KTR_CTXSW, ctxsw, deadtd, 3, "#threads[%p].name = <dead>", struct thread *td); static MALLOC_DEFINE(M_THREAD, "thread", "lwkt threads"); MALLOC_DEFINE(M_FPUCTX, "fpuctx", "kernel FPU contexts"); #ifdef INVARIANTS static int panic_on_cscount = 0; #endif #ifdef DEBUG_LWKT_THREAD static int64_t switch_count = 0; static int64_t preempt_hit = 0; static int64_t preempt_miss = 0; static int64_t preempt_weird = 0; #endif static int lwkt_use_spin_port; __read_mostly static struct objcache *thread_cache; int cpu_mwait_spin = 0; static void lwkt_schedule_remote(void *arg, int arg2, struct intrframe *frame); static void lwkt_setcpu_remote(void *arg); /* * We can make all thread ports use the spin backend instead of the thread * backend. This should only be set to debug the spin backend. */ TUNABLE_INT("lwkt.use_spin_port", &lwkt_use_spin_port); #ifdef INVARIANTS SYSCTL_INT(_lwkt, OID_AUTO, panic_on_cscount, CTLFLAG_RW, &panic_on_cscount, 0, "Panic if attempting to switch lwkt's while mastering cpusync"); #endif #ifdef DEBUG_LWKT_THREAD SYSCTL_QUAD(_lwkt, OID_AUTO, switch_count, CTLFLAG_RW, &switch_count, 0, "Number of switched threads"); SYSCTL_QUAD(_lwkt, OID_AUTO, preempt_hit, CTLFLAG_RW, &preempt_hit, 0, "Successful preemption events"); SYSCTL_QUAD(_lwkt, OID_AUTO, preempt_miss, CTLFLAG_RW, &preempt_miss, 0, "Failed preemption events"); SYSCTL_QUAD(_lwkt, OID_AUTO, preempt_weird, CTLFLAG_RW, &preempt_weird, 0, "Number of preempted threads."); #endif extern int lwkt_sched_debug; int lwkt_sched_debug = 0; SYSCTL_INT(_lwkt, OID_AUTO, sched_debug, CTLFLAG_RW, &lwkt_sched_debug, 0, "Scheduler debug"); __read_mostly static u_int lwkt_spin_loops = 10; SYSCTL_UINT(_lwkt, OID_AUTO, spin_loops, CTLFLAG_RW, &lwkt_spin_loops, 0, "Scheduler spin loops until sorted decon"); __read_mostly static int preempt_enable = 1; SYSCTL_INT(_lwkt, OID_AUTO, preempt_enable, CTLFLAG_RW, &preempt_enable, 0, "Enable preemption"); static int lwkt_cache_threads = 0; SYSCTL_INT(_lwkt, OID_AUTO, cache_threads, CTLFLAG_RD, &lwkt_cache_threads, 0, "thread+kstack cache"); /* * These helper procedures handle the runq, they can only be called from * within a critical section. * * WARNING! Prior to SMP being brought up it is possible to enqueue and * dequeue threads belonging to other cpus, so be sure to use td->td_gd * instead of 'mycpu' when referencing the globaldata structure. Once * SMP live enqueuing and dequeueing only occurs on the current cpu. */ static __inline void _lwkt_dequeue(thread_t td) { if (td->td_flags & TDF_RUNQ) { struct globaldata *gd = td->td_gd; td->td_flags &= ~TDF_RUNQ; TAILQ_REMOVE(&gd->gd_tdrunq, td, td_threadq); --gd->gd_tdrunqcount; if (TAILQ_FIRST(&gd->gd_tdrunq) == NULL) atomic_clear_int(&gd->gd_reqflags, RQF_RUNNING); } } /* * Priority enqueue. * * There are a limited number of lwkt threads runnable since user * processes only schedule one at a time per cpu. However, there can * be many user processes in kernel mode exiting from a tsleep() which * become runnable. * * We scan the queue in both directions to help deal with degenerate * situations when hundreds or thousands (or more) threads are runnable. * * NOTE: lwkt_schedulerclock() will force a round-robin based on td_pri and * will ignore user priority. This is to ensure that user threads in * kernel mode get cpu at some point regardless of what the user * scheduler thinks. */ static __inline void _lwkt_enqueue(thread_t td) { thread_t xtd; /* forward scan */ thread_t rtd; /* reverse scan */ if ((td->td_flags & (TDF_RUNQ|TDF_MIGRATING|TDF_BLOCKQ)) == 0) { struct globaldata *gd = td->td_gd; td->td_flags |= TDF_RUNQ; xtd = TAILQ_FIRST(&gd->gd_tdrunq); if (xtd == NULL) { TAILQ_INSERT_TAIL(&gd->gd_tdrunq, td, td_threadq); atomic_set_int(&gd->gd_reqflags, RQF_RUNNING); } else { /* * NOTE: td_upri - higher numbers more desireable, same sense * as td_pri (typically reversed from lwp_upri). * * In the equal priority case we want the best selection * at the beginning so the less desireable selections know * that they have to setrunqueue/go-to-another-cpu, even * though it means switching back to the 'best' selection. * This also avoids degenerate situations when many threads * are runnable or waking up at the same time. * * If upri matches exactly place at end/round-robin. */ rtd = TAILQ_LAST(&gd->gd_tdrunq, lwkt_queue); while (xtd && (xtd->td_pri > td->td_pri || (xtd->td_pri == td->td_pri && xtd->td_upri >= td->td_upri))) { xtd = TAILQ_NEXT(xtd, td_threadq); /* * Doing a reverse scan at the same time is an optimization * for the insert-closer-to-tail case that avoids having to * scan the entire list. This situation can occur when * thousands of threads are woken up at the same time. */ if (rtd->td_pri > td->td_pri || (rtd->td_pri == td->td_pri && rtd->td_upri >= td->td_upri)) { TAILQ_INSERT_AFTER(&gd->gd_tdrunq, rtd, td, td_threadq); goto skip; } rtd = TAILQ_PREV(rtd, lwkt_queue, td_threadq); } if (xtd) TAILQ_INSERT_BEFORE(xtd, td, td_threadq); else TAILQ_INSERT_TAIL(&gd->gd_tdrunq, td, td_threadq); } skip: ++gd->gd_tdrunqcount; /* * Request a LWKT reschedule if we are now at the head of the queue. */ if (TAILQ_FIRST(&gd->gd_tdrunq) == td) need_lwkt_resched(); } } static boolean_t _lwkt_thread_ctor(void *obj, void *privdata, int ocflags) { struct thread *td = (struct thread *)obj; td->td_kstack = NULL; td->td_kstack_size = 0; td->td_flags = TDF_ALLOCATED_THREAD; td->td_mpflags = 0; return (1); } static void _lwkt_thread_dtor(void *obj, void *privdata) { struct thread *td = (struct thread *)obj; KASSERT(td->td_flags & TDF_ALLOCATED_THREAD, ("_lwkt_thread_dtor: not allocated from objcache")); KASSERT((td->td_flags & TDF_ALLOCATED_STACK) && td->td_kstack && td->td_kstack_size > 0, ("_lwkt_thread_dtor: corrupted stack")); kmem_free(kernel_map, (vm_offset_t)td->td_kstack, td->td_kstack_size); td->td_kstack = NULL; td->td_flags = 0; } /* * Initialize the lwkt s/system. * * Nominally cache up to 32 thread + kstack structures. Cache more on * systems with a lot of cpu cores. */ static void lwkt_init(void) { TUNABLE_INT("lwkt.cache_threads", &lwkt_cache_threads); if (lwkt_cache_threads == 0) { lwkt_cache_threads = ncpus * 4; if (lwkt_cache_threads < 32) lwkt_cache_threads = 32; } thread_cache = objcache_create_mbacked( M_THREAD, sizeof(struct thread), 0, lwkt_cache_threads, _lwkt_thread_ctor, _lwkt_thread_dtor, NULL); } SYSINIT(lwkt_init, SI_BOOT2_LWKT_INIT, SI_ORDER_FIRST, lwkt_init, NULL); /* * Schedule a thread to run. As the current thread we can always safely * schedule ourselves, and a shortcut procedure is provided for that * function. * * (non-blocking, self contained on a per cpu basis) */ void lwkt_schedule_self(thread_t td) { KKASSERT((td->td_flags & TDF_MIGRATING) == 0); crit_enter_quick(td); KASSERT(td != &td->td_gd->gd_idlethread, ("lwkt_schedule_self(): scheduling gd_idlethread is illegal!")); KKASSERT(td->td_lwp == NULL || (td->td_lwp->lwp_mpflags & LWP_MP_ONRUNQ) == 0); _lwkt_enqueue(td); crit_exit_quick(td); } /* * Deschedule a thread. * * (non-blocking, self contained on a per cpu basis) */ void lwkt_deschedule_self(thread_t td) { crit_enter_quick(td); _lwkt_dequeue(td); crit_exit_quick(td); } /* * LWKTs operate on a per-cpu basis * * WARNING! Called from early boot, 'mycpu' may not work yet. */ void lwkt_gdinit(struct globaldata *gd) { TAILQ_INIT(&gd->gd_tdrunq); TAILQ_INIT(&gd->gd_tdallq); lockinit(&gd->gd_sysctllock, "sysctl", 0, LK_CANRECURSE); } /* * Create a new thread. The thread must be associated with a process context * or LWKT start address before it can be scheduled. If the target cpu is * -1 the thread will be created on the current cpu. * * If you intend to create a thread without a process context this function * does everything except load the startup and switcher function. */ thread_t lwkt_alloc_thread(struct thread *td, int stksize, int cpu, int flags) { static int cpu_rotator; globaldata_t gd = mycpu; void *stack; /* * If static thread storage is not supplied allocate a thread. Reuse * a cached free thread if possible. gd_freetd is used to keep an exiting * thread intact through the exit. */ if (td == NULL) { crit_enter_gd(gd); if ((td = gd->gd_freetd) != NULL) { KKASSERT((td->td_flags & (TDF_RUNNING|TDF_PREEMPT_LOCK| TDF_RUNQ)) == 0); gd->gd_freetd = NULL; } else { td = objcache_get(thread_cache, M_WAITOK); KKASSERT((td->td_flags & (TDF_RUNNING|TDF_PREEMPT_LOCK| TDF_RUNQ)) == 0); } crit_exit_gd(gd); KASSERT((td->td_flags & (TDF_ALLOCATED_THREAD|TDF_RUNNING|TDF_PREEMPT_LOCK)) == TDF_ALLOCATED_THREAD, ("lwkt_alloc_thread: corrupted td flags 0x%X", td->td_flags)); flags |= td->td_flags & (TDF_ALLOCATED_THREAD|TDF_ALLOCATED_STACK); } /* * Try to reuse cached stack. */ if ((stack = td->td_kstack) != NULL && td->td_kstack_size != stksize) { if (flags & TDF_ALLOCATED_STACK) { kmem_free(kernel_map, (vm_offset_t)stack, td->td_kstack_size); stack = NULL; } } if (stack == NULL) { if (cpu < 0) { stack = (void *)kmem_alloc_stack(kernel_map, stksize, 0); } else { stack = (void *)kmem_alloc_stack(kernel_map, stksize, KM_CPU(cpu)); } flags |= TDF_ALLOCATED_STACK; } if (cpu < 0) { cpu = ++cpu_rotator; cpu_ccfence(); cpu = (uint32_t)cpu % (uint32_t)ncpus; } lwkt_init_thread(td, stack, stksize, flags, globaldata_find(cpu)); return(td); } /* * Initialize a preexisting thread structure. This function is used by * lwkt_alloc_thread() and also used to initialize the per-cpu idlethread. * * All threads start out in a critical section at a priority of * TDPRI_KERN_DAEMON. Higher level code will modify the priority as * appropriate. This function may send an IPI message when the * requested cpu is not the current cpu and consequently gd_tdallq may * not be initialized synchronously from the point of view of the originating * cpu. * * NOTE! we have to be careful in regards to creating threads for other cpus * if SMP has not yet been activated. */ static void lwkt_init_thread_remote(void *arg) { thread_t td = arg; /* * Protected by critical section held by IPI dispatch */ TAILQ_INSERT_TAIL(&td->td_gd->gd_tdallq, td, td_allq); } /* * lwkt core thread structural initialization. * * NOTE: All threads are initialized as mpsafe threads. */ void lwkt_init_thread(thread_t td, void *stack, int stksize, int flags, struct globaldata *gd) { globaldata_t mygd = mycpu; bzero(td, sizeof(struct thread)); td->td_kstack = stack; td->td_kstack_size = stksize; td->td_flags = flags; td->td_mpflags = 0; td->td_type = TD_TYPE_GENERIC; td->td_gd = gd; td->td_pri = TDPRI_KERN_DAEMON; td->td_critcount = 1; td->td_toks_have = NULL; td->td_toks_stop = &td->td_toks_base; if (lwkt_use_spin_port || (flags & TDF_FORCE_SPINPORT)) { lwkt_initport_spin(&td->td_msgport, td, (flags & TDF_FIXEDCPU) ? TRUE : FALSE); } else { lwkt_initport_thread(&td->td_msgport, td); } pmap_init_thread(td); /* * Normally initializing a thread for a remote cpu requires sending an * IPI. However, the idlethread is setup before the other cpus are * activated so we have to treat it as a special case. XXX manipulation * of gd_tdallq requires the BGL. */ if (gd == mygd || td == &gd->gd_idlethread) { crit_enter_gd(mygd); TAILQ_INSERT_TAIL(&gd->gd_tdallq, td, td_allq); crit_exit_gd(mygd); } else { lwkt_send_ipiq(gd, lwkt_init_thread_remote, td); } dsched_enter_thread(td); } void lwkt_set_comm(thread_t td, const char *ctl, ...) { __va_list va; __va_start(va, ctl); kvsnprintf(td->td_comm, sizeof(td->td_comm), ctl, va); __va_end(va); KTR_LOG(ctxsw_newtd, td, td->td_comm); } /* * Prevent the thread from getting destroyed. Note that unlike PHOLD/PRELE * this does not prevent the thread from migrating to another cpu so the * gd_tdallq state is not protected by this. */ void lwkt_hold(thread_t td) { atomic_add_int(&td->td_refs, 1); } void lwkt_rele(thread_t td) { KKASSERT(td->td_refs > 0); atomic_add_int(&td->td_refs, -1); } void lwkt_free_thread(thread_t td) { KKASSERT(td->td_refs == 0); KKASSERT((td->td_flags & (TDF_RUNNING | TDF_PREEMPT_LOCK | TDF_RUNQ | TDF_TSLEEPQ | TDF_KERNELFP)) == 0); if (td->td_kfpuctx) { kfree(td->td_kfpuctx, M_FPUCTX); td->td_kfpuctx = NULL; } if (td->td_flags & TDF_ALLOCATED_THREAD) { objcache_put(thread_cache, td); } else if (td->td_flags & TDF_ALLOCATED_STACK) { /* client-allocated struct with internally allocated stack */ KASSERT(td->td_kstack && td->td_kstack_size > 0, ("lwkt_free_thread: corrupted stack")); kmem_free(kernel_map, (vm_offset_t)td->td_kstack, td->td_kstack_size); td->td_kstack = NULL; td->td_kstack_size = 0; } KTR_LOG(ctxsw_deadtd, td); } /* * Switch to the next runnable lwkt. If no LWKTs are runnable then * switch to the idlethread. Switching must occur within a critical * section to avoid races with the scheduling queue. * * We always have full control over our cpu's run queue. Other cpus * that wish to manipulate our queue must use the cpu_*msg() calls to * talk to our cpu, so a critical section is all that is needed and * the result is very, very fast thread switching. * * The LWKT scheduler uses a fixed priority model and round-robins at * each priority level. User process scheduling is a totally * different beast and LWKT priorities should not be confused with * user process priorities. * * PREEMPTION NOTE: Preemption occurs via lwkt_preempt(). lwkt_switch() * is not called by the current thread in the preemption case, only when * the preempting thread blocks (in order to return to the original thread). * * SPECIAL NOTE ON SWITCH ATOMICY: Certain operations such as thread * migration and tsleep deschedule the current lwkt thread and call * lwkt_switch(). In particular, the target cpu of the migration fully * expects the thread to become non-runnable and can deadlock against * cpusync operations if we run any IPIs prior to switching the thread out. * * WE MUST BE VERY CAREFUL NOT TO RUN SPLZ DIRECTLY OR INDIRECTLY IF * THE CURRENT THREAD HAS BEEN DESCHEDULED! */ void lwkt_switch(void) { globaldata_t gd = mycpu; thread_t td = gd->gd_curthread; thread_t ntd; thread_t xtd; int upri; #ifdef LOOPMASK uint64_t tsc_base = rdtsc(); #endif KKASSERT(gd->gd_processing_ipiq == 0); KKASSERT(td->td_flags & TDF_RUNNING); /* * Switching from within a 'fast' (non thread switched) interrupt or IPI * is illegal. However, we may have to do it anyway if we hit a fatal * kernel trap or we have paniced. * * If this case occurs save and restore the interrupt nesting level. */ if (gd->gd_intr_nesting_level) { int savegdnest; int savegdtrap; if (gd->gd_trap_nesting_level == 0 && panic_cpu_gd != mycpu) { panic("lwkt_switch: Attempt to switch from a " "fast interrupt, ipi, or hard code section, " "td %p\n", td); } else { savegdnest = gd->gd_intr_nesting_level; savegdtrap = gd->gd_trap_nesting_level; gd->gd_intr_nesting_level = 0; gd->gd_trap_nesting_level = 0; if ((td->td_flags & TDF_PANICWARN) == 0) { td->td_flags |= TDF_PANICWARN; kprintf("Warning: thread switch from interrupt, IPI, " "or hard code section.\n" "thread %p (%s)\n", td, td->td_comm); print_backtrace(-1); } lwkt_switch(); gd->gd_intr_nesting_level = savegdnest; gd->gd_trap_nesting_level = savegdtrap; return; } } /* * Release our current user process designation if we are blocking * or if a user reschedule was requested. * * NOTE: This function is NOT called if we are switching into or * returning from a preemption. * * NOTE: Releasing our current user process designation may cause * it to be assigned to another thread, which in turn will * cause us to block in the usched acquire code when we attempt * to return to userland. * * NOTE: On SMP systems this can be very nasty when heavy token * contention is present so we want to be careful not to * release the designation gratuitously. */ if (td->td_release && (user_resched_wanted() || (td->td_flags & TDF_RUNQ) == 0)) { td->td_release(td); } /* * Release all tokens. Once we do this we must remain in the critical * section and cannot run IPIs or other interrupts until we switch away * because they may implode if they try to get a token using our thread * context. */ crit_enter_gd(gd); if (TD_TOKS_HELD(td)) lwkt_relalltokens(td); /* * We had better not be holding any spin locks, but don't get into an * endless panic loop. */ KASSERT(gd->gd_spinlocks == 0 || panicstr != NULL, ("lwkt_switch: still holding %d exclusive spinlocks!", gd->gd_spinlocks)); #ifdef INVARIANTS if (td->td_cscount) { kprintf("Diagnostic: attempt to switch while mastering cpusync: %p\n", td); if (panic_on_cscount) panic("switching while mastering cpusync"); } #endif /* * If we had preempted another thread on this cpu, resume the preempted * thread. This occurs transparently, whether the preempted thread * was scheduled or not (it may have been preempted after descheduling * itself). * * We have to setup the MP lock for the original thread after backing * out the adjustment that was made to curthread when the original * was preempted. */ if ((ntd = td->td_preempted) != NULL) { KKASSERT(ntd->td_flags & TDF_PREEMPT_LOCK); ntd->td_flags |= TDF_PREEMPT_DONE; ntd->td_contended = 0; /* reset contended */ /* * The interrupt may have woken a thread up, we need to properly * set the reschedule flag if the originally interrupted thread is * at a lower priority. * * NOTE: The interrupt may not have descheduled ntd. * * NOTE: We do not reschedule if there are no threads on the runq. * (ntd could be the idlethread). */ xtd = TAILQ_FIRST(&gd->gd_tdrunq); if (xtd && xtd != ntd) need_lwkt_resched(); goto havethread_preempted; } /* * Figure out switch target. If we cannot switch to our desired target * look for a thread that we can switch to. * * NOTE! The limited spin loop and related parameters are extremely * important for system performance, particularly for pipes and * concurrent conflicting VM faults. */ clear_lwkt_resched(); ntd = TAILQ_FIRST(&gd->gd_tdrunq); if (ntd) { do { if (TD_TOKS_NOT_HELD(ntd) || lwkt_getalltokens(ntd, (ntd->td_contended > lwkt_spin_loops))) { goto havethread; } ++ntd->td_contended; /* overflow ok */ if (gd->gd_indefinite.type == 0) indefinite_init(&gd->gd_indefinite, NULL, NULL, 0, 't'); #ifdef LOOPMASK if (tsc_frequency && rdtsc() - tsc_base > tsc_frequency) { kprintf("lwkt_switch: WARNING, excessive token contention " "cpu %d, %d sec, " "td %p (%s)\n", gd->gd_cpuid, ntd->td_contended, ntd, ntd->td_comm); tsc_base = rdtsc(); } #endif } while (ntd->td_contended < (lwkt_spin_loops >> 1)); upri = ntd->td_upri; /* * Bleh, the thread we wanted to switch to has a contended token. * See if we can switch to another thread. * * We generally don't want to do this because it represents a * priority inversion, but contending tokens on the same cpu can * cause real problems if we don't now that we have an exclusive * priority mechanism over shared for tokens. * * The solution is to allow threads with pending tokens to compete * for them (a lower priority thread will get less cpu once it * returns from the kernel anyway). If a thread does not have * any contending tokens, we go by td_pri and upri. */ while ((ntd = TAILQ_NEXT(ntd, td_threadq)) != NULL) { if (TD_TOKS_NOT_HELD(ntd) && ntd->td_pri < TDPRI_KERN_LPSCHED && upri > ntd->td_upri) { continue; } if (upri < ntd->td_upri) upri = ntd->td_upri; /* * Try this one. */ if (TD_TOKS_NOT_HELD(ntd) || lwkt_getalltokens(ntd, (ntd->td_contended > lwkt_spin_loops))) { goto havethread; } ++ntd->td_contended; /* overflow ok */ } /* * Fall through, switch to idle thread to get us out of the current * context. Since we were contended, prevent HLT by flagging a * LWKT reschedule. */ need_lwkt_resched(); } /* * We either contended on ntd or the runq is empty. We must switch * through the idle thread to get out of the current context. */ ntd = &gd->gd_idlethread; if (gd->gd_trap_nesting_level == 0 && panicstr == NULL) ASSERT_NO_TOKENS_HELD(ntd); cpu_time.cp_msg[0] = 0; goto haveidle; havethread: /* * Clear gd_idle_repeat when doing a normal switch to a non-idle * thread. */ ntd->td_wmesg = NULL; ntd->td_contended = 0; /* reset once scheduled */ ++gd->gd_cnt.v_swtch; gd->gd_idle_repeat = 0; /* * If we were busy waiting record final disposition */ if (gd->gd_indefinite.type) indefinite_done(&gd->gd_indefinite); havethread_preempted: /* * If the new target does not need the MP lock and we are holding it, * release the MP lock. If the new target requires the MP lock we have * already acquired it for the target. */ ; haveidle: KASSERT(ntd->td_critcount, ("priority problem in lwkt_switch %d %d", td->td_critcount, ntd->td_critcount)); if (td != ntd) { /* * Execute the actual thread switch operation. This function * returns to the current thread and returns the previous thread * (which may be different from the thread we switched to). * * We are responsible for marking ntd as TDF_RUNNING. */ KKASSERT((ntd->td_flags & TDF_RUNNING) == 0); #ifdef DEBUG_LWKT_THREAD ++switch_count; #endif KTR_LOG(ctxsw_sw, gd->gd_cpuid, ntd); ntd->td_flags |= TDF_RUNNING; lwkt_switch_return(td->td_switch(ntd)); /* ntd invalid, td_switch() can return a different thread_t */ } /* * catch-all. XXX is this strictly needed? */ splz_check(); /* NOTE: current cpu may have changed after switch */ crit_exit_quick(td); } /* * Called by assembly in the td_switch (thread restore path) for thread * bootstrap cases which do not 'return' to lwkt_switch(). */ void lwkt_switch_return(thread_t otd) { globaldata_t rgd; #ifdef LOOPMASK uint64_t tsc_base = rdtsc(); #endif int exiting; exiting = otd->td_flags & TDF_EXITING; cpu_ccfence(); /* * Check if otd was migrating. Now that we are on ntd we can finish * up the migration. This is a bit messy but it is the only place * where td is known to be fully descheduled. * * We can only activate the migration if otd was migrating but not * held on the cpu due to a preemption chain. We still have to * clear TDF_RUNNING on the old thread either way. * * We are responsible for clearing the previously running thread's * TDF_RUNNING. */ if ((rgd = otd->td_migrate_gd) != NULL && (otd->td_flags & TDF_PREEMPT_LOCK) == 0) { KKASSERT((otd->td_flags & (TDF_MIGRATING | TDF_RUNNING)) == (TDF_MIGRATING | TDF_RUNNING)); otd->td_migrate_gd = NULL; otd->td_flags &= ~TDF_RUNNING; lwkt_send_ipiq(rgd, lwkt_setcpu_remote, otd); } else { otd->td_flags &= ~TDF_RUNNING; } /* * Final exit validations (see lwp_wait()). Note that otd becomes * invalid the *instant* we set TDF_MP_EXITSIG. * * Use the EXITING status loaded from before we clear TDF_RUNNING, * because if it is not set otd becomes invalid the instant we clear * TDF_RUNNING on it (otherwise, if the system is fast enough, we * might 'steal' TDF_EXITING from another switch-return!). */ while (exiting) { u_int mpflags; mpflags = otd->td_mpflags; cpu_ccfence(); if (mpflags & TDF_MP_EXITWAIT) { if (atomic_cmpset_int(&otd->td_mpflags, mpflags, mpflags | TDF_MP_EXITSIG)) { wakeup(otd); break; } } else { if (atomic_cmpset_int(&otd->td_mpflags, mpflags, mpflags | TDF_MP_EXITSIG)) { wakeup(otd); break; } } #ifdef LOOPMASK if (tsc_frequency && rdtsc() - tsc_base > tsc_frequency) { kprintf("lwkt_switch_return: excessive TDF_EXITING " "thread %p\n", otd); tsc_base = rdtsc(); } #endif } } /* * Request that the target thread preempt the current thread. Preemption * can only occur only: * * - If our critical section is the one that we were called with * - The relative priority of the target thread is higher * - The target is not excessively interrupt-nested via td_nest_count * - The target thread holds no tokens. * - The target thread is not already scheduled and belongs to the * current cpu. * - The current thread is not holding any spin-locks. * * THE CALLER OF LWKT_PREEMPT() MUST BE IN A CRITICAL SECTION. Typically * this is called via lwkt_schedule() through the td_preemptable callback. * critcount is the managed critical priority that we should ignore in order * to determine whether preemption is possible (aka usually just the crit * priority of lwkt_schedule() itself). * * Preemption is typically limited to interrupt threads. * * Operation works in a fairly straight-forward manner. The normal * scheduling code is bypassed and we switch directly to the target * thread. When the target thread attempts to block or switch away * code at the base of lwkt_switch() will switch directly back to our * thread. Our thread is able to retain whatever tokens it holds and * if the target needs one of them the target will switch back to us * and reschedule itself normally. */ void lwkt_preempt(thread_t ntd, int critcount) { struct globaldata *gd = mycpu; thread_t xtd; thread_t td; int save_gd_intr_nesting_level; /* * The caller has put us in a critical section. We can only preempt * if the caller of the caller was not in a critical section (basically * a local interrupt), as determined by the 'critcount' parameter. We * also can't preempt if the caller is holding any spinlocks (even if * he isn't in a critical section). This also handles the tokens test. * * YYY The target thread must be in a critical section (else it must * inherit our critical section? I dunno yet). */ KASSERT(ntd->td_critcount, ("BADCRIT0 %d", ntd->td_pri)); td = gd->gd_curthread; if (preempt_enable == 0) { #ifdef DEBUG_LWKT_THREAD ++preempt_miss; #endif return; } if (ntd->td_pri <= td->td_pri) { #ifdef DEBUG_LWKT_THREAD ++preempt_miss; #endif return; } if (td->td_critcount > critcount) { #ifdef DEBUG_LWKT_THREAD ++preempt_miss; #endif return; } if (td->td_nest_count >= 2) { #ifdef DEBUG_LWKT_THREAD ++preempt_miss; #endif return; } if (td->td_cscount) { #ifdef DEBUG_LWKT_THREAD ++preempt_miss; #endif return; } if (ntd->td_gd != gd) { #ifdef DEBUG_LWKT_THREAD ++preempt_miss; #endif return; } /* * We don't have to check spinlocks here as they will also bump * td_critcount. * * Do not try to preempt if the target thread is holding any tokens. * We could try to acquire the tokens but this case is so rare there * is no need to support it. */ KKASSERT(gd->gd_spinlocks == 0); if (TD_TOKS_HELD(ntd)) { #ifdef DEBUG_LWKT_THREAD ++preempt_miss; #endif return; } if (td == ntd || ((td->td_flags | ntd->td_flags) & TDF_PREEMPT_LOCK)) { #ifdef DEBUG_LWKT_THREAD ++preempt_weird; #endif return; } if (ntd->td_preempted) { #ifdef DEBUG_LWKT_THREAD ++preempt_hit; #endif return; } KKASSERT(gd->gd_processing_ipiq == 0); /* * Since we are able to preempt the current thread, there is no need to * call need_lwkt_resched(). * * We must temporarily clear gd_intr_nesting_level around the switch * since switchouts from the target thread are allowed (they will just * return to our thread), and since the target thread has its own stack. * * A preemption must switch back to the original thread, assert the * case. */ #ifdef DEBUG_LWKT_THREAD ++preempt_hit; #endif ntd->td_preempted = td; td->td_flags |= TDF_PREEMPT_LOCK; KTR_LOG(ctxsw_pre, gd->gd_cpuid, ntd); save_gd_intr_nesting_level = gd->gd_intr_nesting_level; gd->gd_intr_nesting_level = 0; KKASSERT((ntd->td_flags & TDF_RUNNING) == 0); ntd->td_flags |= TDF_RUNNING; xtd = td->td_switch(ntd); KKASSERT(xtd == ntd); lwkt_switch_return(xtd); gd->gd_intr_nesting_level = save_gd_intr_nesting_level; KKASSERT(ntd->td_preempted && (td->td_flags & TDF_PREEMPT_DONE)); ntd->td_preempted = NULL; td->td_flags &= ~(TDF_PREEMPT_LOCK|TDF_PREEMPT_DONE); } /* * Conditionally call splz() if gd_reqflags indicates work is pending. * This will work inside a critical section but not inside a hard code * section. * * (self contained on a per cpu basis) */ void splz_check(void) { globaldata_t gd = mycpu; thread_t td = gd->gd_curthread; if ((gd->gd_reqflags & RQF_IDLECHECK_MASK) && gd->gd_intr_nesting_level == 0 && td->td_nest_count < 2) { splz(); } } /* * This version is integrated into crit_exit, reqflags has already * been tested but td_critcount has not. * * We only want to execute the splz() on the 1->0 transition of * critcount and not in a hard code section or if too deeply nested. * * NOTE: gd->gd_spinlocks is implied to be 0 when td_critcount is 0. */ void lwkt_maybe_splz(thread_t td) { globaldata_t gd = td->td_gd; if (td->td_critcount == 0 && gd->gd_intr_nesting_level == 0 && td->td_nest_count < 2) { splz(); } } /* * Drivers which set up processing co-threads can call this function to * run the co-thread at a higher priority and to allow it to preempt * normal threads. */ void lwkt_set_interrupt_support_thread(void) { thread_t td = curthread; lwkt_setpri_self(TDPRI_INT_SUPPORT); td->td_flags |= TDF_INTTHREAD; td->td_preemptable = lwkt_preempt; } /* * This function is used to negotiate a passive release of the current * process/lwp designation with the user scheduler, allowing the user * scheduler to schedule another user thread. The related kernel thread * (curthread) continues running in the released state. */ void lwkt_passive_release(struct thread *td) { struct lwp *lp = td->td_lwp; td->td_release = NULL; lwkt_setpri_self(TDPRI_KERN_USER); lp->lwp_proc->p_usched->release_curproc(lp); } /* * This implements a LWKT yield, allowing a kernel thread to yield to other * kernel threads at the same or higher priority. This function can be * called in a tight loop and will typically only yield once per tick. * * Most kernel threads run at the same priority in order to allow equal * sharing. * * (self contained on a per cpu basis) */ void lwkt_yield(void) { globaldata_t gd = mycpu; thread_t td = gd->gd_curthread; /* * Should never be called with spinlocks held but there is a path * via ACPI where it might happen. */ if (gd->gd_spinlocks) return; /* * Safe to call splz if we are not too-heavily nested. */ if ((gd->gd_reqflags & RQF_IDLECHECK_MASK) && td->td_nest_count < 2) splz(); /* * Caller allows switching */ if (lwkt_resched_wanted()) { atomic_set_int(&td->td_mpflags, TDF_MP_DIDYIELD); lwkt_schedule_self(td); lwkt_switch(); } } /* * The quick version processes pending interrupts and higher-priority * LWKT threads but will not round-robin same-priority LWKT threads. * * When called while attempting to return to userland the only same-pri * threads are the ones which have already tried to become the current * user process. */ void lwkt_yield_quick(void) { globaldata_t gd = mycpu; thread_t td = gd->gd_curthread; if ((gd->gd_reqflags & RQF_IDLECHECK_MASK) && td->td_nest_count < 2) splz(); if (lwkt_resched_wanted()) { crit_enter(); if (TAILQ_FIRST(&gd->gd_tdrunq) == td) { clear_lwkt_resched(); } else { atomic_set_int(&td->td_mpflags, TDF_MP_DIDYIELD); lwkt_schedule_self(curthread); lwkt_switch(); } crit_exit(); } } /* * This yield is designed for kernel threads with a user context. * * The kernel acting on behalf of the user is potentially cpu-bound, * this function will efficiently allow other threads to run and also * switch to other processes by releasing. * * The lwkt_user_yield() function is designed to have very low overhead * if no yield is determined to be needed. */ void lwkt_user_yield(void) { globaldata_t gd = mycpu; thread_t td = gd->gd_curthread; /* * Should never be called with spinlocks held but there is a path * via ACPI where it might happen. */ if (gd->gd_spinlocks) return; /* * Always run any pending interrupts in case we are in a critical * section. */ if ((gd->gd_reqflags & RQF_IDLECHECK_MASK) && td->td_nest_count < 2) splz(); /* * Switch (which forces a release) if another kernel thread needs * the cpu, if userland wants us to resched, or if our kernel * quantum has run out. */ if (lwkt_resched_wanted() || user_resched_wanted()) { lwkt_switch(); } #if 0 /* * Reacquire the current process if we are released. * * XXX not implemented atm. The kernel may be holding locks and such, * so we want the thread to continue to receive cpu. */ if (td->td_release == NULL && lp) { lp->lwp_proc->p_usched->acquire_curproc(lp); td->td_release = lwkt_passive_release; lwkt_setpri_self(TDPRI_USER_NORM); } #endif } /* * Generic schedule. Possibly schedule threads belonging to other cpus and * deal with threads that might be blocked on a wait queue. * * We have a little helper inline function which does additional work after * the thread has been enqueued, including dealing with preemption and * setting need_lwkt_resched() (which prevents the kernel from returning * to userland until it has processed higher priority threads). * * It is possible for this routine to be called after a failed _enqueue * (due to the target thread migrating, sleeping, or otherwise blocked). * We have to check that the thread is actually on the run queue! */ static __inline void _lwkt_schedule_post(globaldata_t gd, thread_t ntd, int ccount) { if (ntd->td_flags & TDF_RUNQ) { if (ntd->td_preemptable) { ntd->td_preemptable(ntd, ccount); /* YYY +token */ } } } static __inline void _lwkt_schedule(thread_t td) { globaldata_t mygd = mycpu; KASSERT(td != &td->td_gd->gd_idlethread, ("lwkt_schedule(): scheduling gd_idlethread is illegal!")); KKASSERT((td->td_flags & TDF_MIGRATING) == 0); crit_enter_gd(mygd); KKASSERT(td->td_lwp == NULL || (td->td_lwp->lwp_mpflags & LWP_MP_ONRUNQ) == 0); if (td == mygd->gd_curthread) { _lwkt_enqueue(td); } else { /* * If we own the thread, there is no race (since we are in a * critical section). If we do not own the thread there might * be a race but the target cpu will deal with it. */ if (td->td_gd == mygd) { _lwkt_enqueue(td); _lwkt_schedule_post(mygd, td, 1); } else { lwkt_send_ipiq3(td->td_gd, lwkt_schedule_remote, td, 0); } } crit_exit_gd(mygd); } void lwkt_schedule(thread_t td) { _lwkt_schedule(td); } void lwkt_schedule_noresched(thread_t td) /* XXX not impl */ { _lwkt_schedule(td); } /* * When scheduled remotely if frame != NULL the IPIQ is being * run via doreti or an interrupt then preemption can be allowed. * * To allow preemption we have to drop the critical section so only * one is present in _lwkt_schedule_post. */ static void lwkt_schedule_remote(void *arg, int arg2, struct intrframe *frame) { thread_t td = curthread; thread_t ntd = arg; if (frame && ntd->td_preemptable) { crit_exit_noyield(td); _lwkt_schedule(ntd); crit_enter_quick(td); } else { _lwkt_schedule(ntd); } } /* * Thread migration using a 'Pull' method. The thread may or may not be * the current thread. It MUST be descheduled and in a stable state. * lwkt_giveaway() must be called on the cpu owning the thread. * * At any point after lwkt_giveaway() is called, the target cpu may * 'pull' the thread by calling lwkt_acquire(). * * We have to make sure the thread is not sitting on a per-cpu tsleep * queue or it will blow up when it moves to another cpu. * * MPSAFE - must be called under very specific conditions. */ void lwkt_giveaway(thread_t td) { globaldata_t gd = mycpu; crit_enter_gd(gd); if (td->td_flags & TDF_TSLEEPQ) tsleep_remove(td); KKASSERT(td->td_gd == gd); TAILQ_REMOVE(&gd->gd_tdallq, td, td_allq); td->td_flags |= TDF_MIGRATING; crit_exit_gd(gd); } void lwkt_acquire(thread_t td) { globaldata_t gd; globaldata_t mygd; KKASSERT(td->td_flags & TDF_MIGRATING); gd = td->td_gd; mygd = mycpu; if (gd != mycpu) { #ifdef LOOPMASK uint64_t tsc_base = rdtsc(); #endif cpu_lfence(); KKASSERT((td->td_flags & TDF_RUNQ) == 0); crit_enter_gd(mygd); DEBUG_PUSH_INFO("lwkt_acquire"); while (td->td_flags & (TDF_RUNNING|TDF_PREEMPT_LOCK)) { lwkt_process_ipiq(); cpu_lfence(); #ifdef _KERNEL_VIRTUAL vkernel_yield(); #endif #ifdef LOOPMASK if (tsc_frequency && rdtsc() - tsc_base > tsc_frequency) { kprintf("lwkt_acquire: stuck td %p td->td_flags %08x\n", td, td->td_flags); tsc_base = rdtsc(); } #endif } DEBUG_POP_INFO(); cpu_mfence(); td->td_gd = mygd; TAILQ_INSERT_TAIL(&mygd->gd_tdallq, td, td_allq); td->td_flags &= ~TDF_MIGRATING; crit_exit_gd(mygd); } else { crit_enter_gd(mygd); TAILQ_INSERT_TAIL(&mygd->gd_tdallq, td, td_allq); td->td_flags &= ~TDF_MIGRATING; crit_exit_gd(mygd); } } /* * Generic deschedule. Descheduling threads other then your own should be * done only in carefully controlled circumstances. Descheduling is * asynchronous. * * This function may block if the cpu has run out of messages. */ void lwkt_deschedule(thread_t td) { crit_enter(); if (td == curthread) { _lwkt_dequeue(td); } else { if (td->td_gd == mycpu) { _lwkt_dequeue(td); } else { lwkt_send_ipiq(td->td_gd, (ipifunc1_t)lwkt_deschedule, td); } } crit_exit(); } /* * Set the target thread's priority. This routine does not automatically * switch to a higher priority thread, LWKT threads are not designed for * continuous priority changes. Yield if you want to switch. */ void lwkt_setpri(thread_t td, int pri) { if (td->td_pri != pri) { KKASSERT(pri >= 0); crit_enter(); if (td->td_flags & TDF_RUNQ) { KKASSERT(td->td_gd == mycpu); _lwkt_dequeue(td); td->td_pri = pri; _lwkt_enqueue(td); } else { td->td_pri = pri; } crit_exit(); } } /* * Set the initial priority for a thread prior to it being scheduled for * the first time. The thread MUST NOT be scheduled before or during * this call. The thread may be assigned to a cpu other then the current * cpu. * * Typically used after a thread has been created with TDF_STOPPREQ, * and before the thread is initially scheduled. */ void lwkt_setpri_initial(thread_t td, int pri) { KKASSERT(pri >= 0); KKASSERT((td->td_flags & TDF_RUNQ) == 0); td->td_pri = pri; } void lwkt_setpri_self(int pri) { thread_t td = curthread; KKASSERT(pri >= 0 && pri <= TDPRI_MAX); crit_enter(); if (td->td_flags & TDF_RUNQ) { _lwkt_dequeue(td); td->td_pri = pri; _lwkt_enqueue(td); } else { td->td_pri = pri; } crit_exit(); } /* * hz tick scheduler clock for LWKT threads */ void lwkt_schedulerclock(thread_t td) { globaldata_t gd = td->td_gd; thread_t xtd; xtd = TAILQ_FIRST(&gd->gd_tdrunq); if (xtd == td) { /* * If the current thread is at the head of the runq shift it to the * end of any equal-priority threads and request a LWKT reschedule * if it moved. * * Ignore upri in this situation. There will only be one user thread * in user mode, all others will be user threads running in kernel * mode and we have to make sure they get some cpu. */ xtd = TAILQ_NEXT(td, td_threadq); if (xtd && xtd->td_pri == td->td_pri) { TAILQ_REMOVE(&gd->gd_tdrunq, td, td_threadq); while (xtd && xtd->td_pri == td->td_pri) xtd = TAILQ_NEXT(xtd, td_threadq); if (xtd) TAILQ_INSERT_BEFORE(xtd, td, td_threadq); else TAILQ_INSERT_TAIL(&gd->gd_tdrunq, td, td_threadq); need_lwkt_resched(); } } else if (xtd) { /* * If we scheduled a thread other than the one at the head of the * queue always request a reschedule every tick. */ need_lwkt_resched(); } /* else curthread probably the idle thread, no need to reschedule */ } /* * Migrate the current thread to the specified cpu. * * This is accomplished by descheduling ourselves from the current cpu * and setting td_migrate_gd. The lwkt_switch() code will detect that the * 'old' thread wants to migrate after it has been completely switched out * and will complete the migration. * * TDF_MIGRATING prevents scheduling races while the thread is being migrated. * * We must be sure to release our current process designation (if a user * process) before clearing out any tsleepq we are on because the release * code may re-add us. * * We must be sure to remove ourselves from the current cpu's tsleepq * before potentially moving to another queue. The thread can be on * a tsleepq due to a left-over tsleep_interlock(). */ void lwkt_setcpu_self(globaldata_t rgd) { thread_t td = curthread; if (td->td_gd != rgd) { crit_enter_quick(td); if (td->td_release) td->td_release(td); if (td->td_flags & TDF_TSLEEPQ) tsleep_remove(td); /* * Set TDF_MIGRATING to prevent a spurious reschedule while we are * trying to deschedule ourselves and switch away, then deschedule * ourself, remove us from tdallq, and set td_migrate_gd. Finally, * call lwkt_switch() to complete the operation. */ td->td_flags |= TDF_MIGRATING; lwkt_deschedule_self(td); TAILQ_REMOVE(&td->td_gd->gd_tdallq, td, td_allq); td->td_migrate_gd = rgd; lwkt_switch(); /* * We are now on the target cpu */ KKASSERT(rgd == mycpu); TAILQ_INSERT_TAIL(&rgd->gd_tdallq, td, td_allq); crit_exit_quick(td); } } void lwkt_migratecpu(int cpuid) { globaldata_t rgd; rgd = globaldata_find(cpuid); lwkt_setcpu_self(rgd); } /* * Remote IPI for cpu migration (called while in a critical section so we * do not have to enter another one). * * The thread (td) has already been completely descheduled from the * originating cpu and we can simply assert the case. The thread is * assigned to the new cpu and enqueued. * * The thread will re-add itself to tdallq when it resumes execution. */ static void lwkt_setcpu_remote(void *arg) { thread_t td = arg; globaldata_t gd = mycpu; KKASSERT((td->td_flags & (TDF_RUNNING|TDF_PREEMPT_LOCK)) == 0); td->td_gd = gd; cpu_mfence(); td->td_flags &= ~TDF_MIGRATING; KKASSERT(td->td_migrate_gd == NULL); KKASSERT(td->td_lwp == NULL || (td->td_lwp->lwp_mpflags & LWP_MP_ONRUNQ) == 0); _lwkt_enqueue(td); } struct lwp * lwkt_preempted_proc(void) { thread_t td = curthread; while (td->td_preempted) td = td->td_preempted; return(td->td_lwp); } /* * Create a kernel process/thread/whatever. It shares it's address space * with proc0 - ie: kernel only. * * If the cpu is not specified one will be selected. In the future * specifying a cpu of -1 will enable kernel thread migration between * cpus. */ int lwkt_create(void (*func)(void *), void *arg, struct thread **tdp, thread_t template, int tdflags, int cpu, const char *fmt, ...) { thread_t td; __va_list ap; td = lwkt_alloc_thread(template, LWKT_THREAD_STACK, cpu, tdflags); if (tdp) *tdp = td; cpu_set_thread_handler(td, lwkt_exit, func, arg); /* * Set up arg0 for 'ps' etc */ __va_start(ap, fmt); kvsnprintf(td->td_comm, sizeof(td->td_comm), fmt, ap); __va_end(ap); /* * Schedule the thread to run */ if (td->td_flags & TDF_NOSTART) td->td_flags &= ~TDF_NOSTART; else lwkt_schedule(td); return 0; } /* * Destroy an LWKT thread. Warning! This function is not called when * a process exits, cpu_proc_exit() directly calls cpu_thread_exit() and * uses a different reaping mechanism. */ void lwkt_exit(void) { thread_t td = curthread; thread_t std; globaldata_t gd; /* * Do any cleanup that might block here */ biosched_done(td); dsched_exit_thread(td); /* * Get us into a critical section to interlock gd_freetd and loop * until we can get it freed. * * We have to cache the current td in gd_freetd because objcache_put()ing * it would rip it out from under us while our thread is still active. * * We are the current thread so of course our own TDF_RUNNING bit will * be set, so unlike the lwp reap code we don't wait for it to clear. */ gd = mycpu; crit_enter_quick(td); for (;;) { if (td->td_refs) { tsleep(td, 0, "tdreap", 1); continue; } if ((std = gd->gd_freetd) != NULL) { KKASSERT((std->td_flags & (TDF_RUNNING|TDF_PREEMPT_LOCK)) == 0); gd->gd_freetd = NULL; objcache_put(thread_cache, std); continue; } break; } /* * Remove thread resources from kernel lists and deschedule us for * the last time. We cannot block after this point or we may end * up with a stale td on the tsleepq. * * None of this may block, the critical section is the only thing * protecting tdallq and the only thing preventing new lwkt_hold() * thread refs now. */ if (td->td_flags & TDF_TSLEEPQ) tsleep_remove(td); lwkt_deschedule_self(td); lwkt_remove_tdallq(td); KKASSERT(td->td_refs == 0); /* * Final cleanup */ KKASSERT(gd->gd_freetd == NULL); if (td->td_flags & TDF_ALLOCATED_THREAD) gd->gd_freetd = td; cpu_thread_exit(); } void lwkt_remove_tdallq(thread_t td) { KKASSERT(td->td_gd == mycpu); TAILQ_REMOVE(&td->td_gd->gd_tdallq, td, td_allq); } /* * Code reduction and branch prediction improvements. Call/return * overhead on modern cpus often degenerates into 0 cycles due to * the cpu's branch prediction hardware and return pc cache. We * can take advantage of this by not inlining medium-complexity * functions and we can also reduce the branch prediction impact * by collapsing perfectly predictable branches into a single * procedure instead of duplicating it. * * Is any of this noticeable? Probably not, so I'll take the * smaller code size. */ void crit_exit_wrapper(__DEBUG_CRIT_ARG__) { _crit_exit(mycpu __DEBUG_CRIT_PASS_ARG__); } void crit_panic(void) { thread_t td = curthread; int lcrit = td->td_critcount; td->td_critcount = 0; cpu_ccfence(); panic("td_critcount is/would-go negative! %p %d", td, lcrit); /* NOT REACHED */ } /* * Called from debugger/panic on cpus which have been stopped. We must still * process the IPIQ while stopped. * * If we are dumping also try to process any pending interrupts. This may * or may not work depending on the state of the cpu at the point it was * stopped. */ void lwkt_smp_stopped(void) { globaldata_t gd = mycpu; if (dumping) { lwkt_process_ipiq(); --gd->gd_intr_nesting_level; splz(); ++gd->gd_intr_nesting_level; } else { lwkt_process_ipiq(); } cpu_smp_stopped(); } |