sys/vm/vm_pageout.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 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 | /* * Copyright (c) 2003-2020 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. * * Copyright (c) 1991 Regents of the University of California. * All rights reserved. * Copyright (c) 1994 John S. Dyson * All rights reserved. * Copyright (c) 1994 David Greenman * All rights reserved. * * This code is derived from software contributed to Berkeley by * The Mach Operating System project at Carnegie-Mellon University. * * 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 University 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 REGENTS 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 REGENTS 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. * * from: @(#)vm_pageout.c 7.4 (Berkeley) 5/7/91 * * * Copyright (c) 1987, 1990 Carnegie-Mellon University. * All rights reserved. * * Authors: Avadis Tevanian, Jr., Michael Wayne Young * * Permission to use, copy, modify and distribute this software and * its documentation is hereby granted, provided that both the copyright * notice and this permission notice appear in all copies of the * software, derivative works or modified versions, and any portions * thereof, and that both notices appear in supporting documentation. * * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS" * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND * FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE. * * Carnegie Mellon requests users of this software to return to * * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU * School of Computer Science * Carnegie Mellon University * Pittsburgh PA 15213-3890 * * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. */ /* * The proverbial page-out daemon, rewritten many times over the decades. */ #include "opt_vm.h" #include <sys/param.h> #include <sys/systm.h> #include <sys/kernel.h> #include <sys/proc.h> #include <sys/kthread.h> #include <sys/resourcevar.h> #include <sys/signalvar.h> #include <sys/vnode.h> #include <sys/malloc.h> #include <sys/vmmeter.h> #include <sys/conf.h> #include <sys/sysctl.h> #include <vm/vm.h> #include <vm/vm_param.h> #include <sys/lock.h> #include <vm/vm_object.h> #include <vm/vm_page.h> #include <vm/vm_map.h> #include <vm/vm_pageout.h> #include <vm/vm_pager.h> #include <vm/swap_pager.h> #include <vm/vm_extern.h> #include <sys/spinlock2.h> #include <vm/vm_page2.h> /* * Persistent markers held by pageout daemon (array) */ struct markers { struct vm_page hold; struct vm_page stat; struct vm_page pact; }; /* * System initialization */ /* the kernel process "vm_pageout"*/ static int vm_pageout_page(vm_page_t m, long *max_launderp, long *vnodes_skippedp, struct vnode **vpfailedp, int pass, int vmflush_flags, long *counts); static int vm_pageout_clean_helper (vm_page_t, int); static void vm_pageout_free_page_calc (vm_size_t count); static void vm_pageout_page_free(vm_page_t m) ; __read_frequently struct thread *emergpager; __read_frequently struct thread *pagethread; static int sequence_emerg_pager; #if !defined(NO_SWAPPING) /* the kernel process "vm_daemon"*/ static void vm_daemon (void); static struct thread *vmthread; static struct kproc_desc vm_kp = { "vmdaemon", vm_daemon, &vmthread }; SYSINIT(vmdaemon, SI_SUB_KTHREAD_VM, SI_ORDER_FIRST, kproc_start, &vm_kp); #endif __read_mostly int vm_pages_needed = 0; /* pageout daemon tsleep event */ __read_mostly int vm_pageout_deficit = 0;/* Estimated number of pages deficit */ __read_mostly int vm_pageout_pages_needed = 0;/* pageout daemon needs pages */ __read_mostly int vm_page_free_hysteresis = 16; __read_mostly static time_t vm_pagedaemon_uptime; #if !defined(NO_SWAPPING) static int vm_daemon_needed; #endif __read_mostly static int vm_queue_idle_perc = 20; __read_mostly static int vm_max_launder = 0; __read_mostly static int vm_emerg_launder = 100; __read_mostly static int vm_pageout_stats_actcmp = 0; __read_mostly static int vm_pageout_stats_inamin = 16; __read_mostly static int vm_pageout_stats_inalim = 4096; __read_mostly static int vm_pageout_stats_scan = 0; __read_mostly static int vm_pageout_stats_ticks = 0; __read_mostly static int vm_pageout_algorithm = 0; __read_mostly static int defer_swap_pageouts = 0; __read_mostly static int disable_swap_pageouts = 0; __read_mostly static u_int vm_anonmem_decline = ACT_DECLINE; __read_mostly static u_int vm_filemem_decline = ACT_DECLINE * 2; __read_mostly static int vm_pageout_debug; __read_mostly static long vm_pageout_stats_rsecs = 300; #if defined(NO_SWAPPING) __read_mostly static int vm_swap_enabled=0; #else __read_mostly static int vm_swap_enabled=1; #endif /* 0-disable, 1-passive, 2-active swp, 3-acive swp + single-queue dirty pages*/ __read_mostly int vm_pageout_memuse_mode=2; __read_mostly int vm_pageout_allow_active=1; SYSCTL_UINT(_vm, VM_PAGEOUT_ALGORITHM, anonmem_decline, CTLFLAG_RW, &vm_anonmem_decline, 0, "active->inactive anon memory"); SYSCTL_INT(_vm, VM_PAGEOUT_ALGORITHM, filemem_decline, CTLFLAG_RW, &vm_filemem_decline, 0, "active->inactive file cache"); SYSCTL_INT(_vm, OID_AUTO, page_free_hysteresis, CTLFLAG_RW, &vm_page_free_hysteresis, 0, "Free more pages than the minimum required"); SYSCTL_INT(_vm, OID_AUTO, queue_idle_perc, CTLFLAG_RW, &vm_queue_idle_perc, 0, "page stats stop point, percent"); SYSCTL_INT(_vm, OID_AUTO, max_launder, CTLFLAG_RW, &vm_max_launder, 0, "Limit dirty flushes in pageout"); SYSCTL_INT(_vm, OID_AUTO, emerg_launder, CTLFLAG_RW, &vm_emerg_launder, 0, "Emergency pager minimum"); SYSCTL_INT(_vm, OID_AUTO, pageout_stats_actcmp, CTLFLAG_RW, &vm_pageout_stats_actcmp, 0, "Current dynamic act_count comparator"); SYSCTL_INT(_vm, OID_AUTO, pageout_stats_inamin, CTLFLAG_RW, &vm_pageout_stats_inamin, 0, "min out of lim tests must match"); SYSCTL_INT(_vm, OID_AUTO, pageout_stats_inalim, CTLFLAG_RW, &vm_pageout_stats_inalim, 0, "min out of lim tests must match"); SYSCTL_INT(_vm, OID_AUTO, pageout_stats_ticks, CTLFLAG_RW, &vm_pageout_stats_ticks, 0, "Interval for partial stats scan"); SYSCTL_INT(_vm, OID_AUTO, pageout_stats_scan, CTLFLAG_RW, &vm_pageout_stats_scan, 0, "hold/ACT scan count per interval"); SYSCTL_LONG(_vm, OID_AUTO, pageout_stats_rsecs, CTLFLAG_RW, &vm_pageout_stats_rsecs, 0, "min out of lim tests must match"); SYSCTL_INT(_vm, OID_AUTO, pageout_memuse_mode, CTLFLAG_RW, &vm_pageout_memuse_mode, 0, "memoryuse resource mode"); SYSCTL_INT(_vm, OID_AUTO, pageout_allow_active, CTLFLAG_RW, &vm_pageout_allow_active, 0, "allow inactive+active"); SYSCTL_INT(_vm, OID_AUTO, pageout_debug, CTLFLAG_RW, &vm_pageout_debug, 0, "debug pageout pages (count)"); #if defined(NO_SWAPPING) SYSCTL_INT(_vm, VM_SWAPPING_ENABLED, swap_enabled, CTLFLAG_RD, &vm_swap_enabled, 0, ""); #else SYSCTL_INT(_vm, VM_SWAPPING_ENABLED, swap_enabled, CTLFLAG_RW, &vm_swap_enabled, 0, "Enable entire process swapout"); #endif SYSCTL_INT(_vm, OID_AUTO, defer_swapspace_pageouts, CTLFLAG_RW, &defer_swap_pageouts, 0, "Give preference to dirty pages in mem"); SYSCTL_INT(_vm, OID_AUTO, disable_swapspace_pageouts, CTLFLAG_RW, &disable_swap_pageouts, 0, "Disallow swapout of dirty pages"); static int pageout_lock_miss; SYSCTL_INT(_vm, OID_AUTO, pageout_lock_miss, CTLFLAG_RD, &pageout_lock_miss, 0, "vget() lock misses during pageout"); int vm_page_max_wired; /* XXX max # of wired pages system-wide */ static MALLOC_DEFINE(M_PAGEOUT, "pageout", "Pageout structures"); #if !defined(NO_SWAPPING) static void vm_req_vmdaemon (void); #endif #define MAXSCAN_DIVIDER 10 #define VM_CACHE_SCAN_MIN 16 #define VM_CACHE_SCAN_NOM (VM_CACHE_SCAN_MIN * 4) /* * Calculate approximately how many pages on each queue to try to * clean. An exact calculation creates an edge condition when the * queues are unbalanced so add significant slop. The queue scans * will stop early when targets are reached and will start where they * left off on the next pass. * * We need to be generous here because there are all sorts of loading * conditions that can cause edge cases if try to average over all queues. * In particular, storage subsystems have become so fast that paging * activity can become quite frantic. Eventually we will probably need * two paging threads, one for dirty pages and one for clean, to deal * with the bandwidth requirements. * So what we do is calculate a value that can be satisfied nominally by * only having to scan half the queues. */ static __inline long PQAVERAGE(long n) { long avg; if (n >= 0) { avg = ((n + (PQ_L2_SIZE - 1)) / (PQ_L2_SIZE / 2) + 1); } else { avg = ((n - (PQ_L2_SIZE - 1)) / (PQ_L2_SIZE / 2) - 1); } return avg; } /* * vm_pageout_clean_helper: * * Clean the page and remove it from the laundry. The page must be busied * by the caller and will be disposed of (put away, flushed) by this routine. */ static int vm_pageout_clean_helper(vm_page_t m, int vmflush_flags) { vm_object_t object; vm_page_t mc[BLIST_MAX_ALLOC]; int error; int ib, is, page_base; vm_pindex_t pindex = m->pindex; object = m->object; /* * Don't mess with the page if it's held or special. Theoretically * we can pageout held pages but there is no real need to press our * luck, so don't. */ if (m->hold_count != 0 || (m->flags & PG_UNQUEUED)) { vm_page_wakeup(m); return 0; } /* * Place page in cluster. Align cluster for optimal swap space * allocation (whether it is swap or not). This is typically ~16-32 * pages, which also tends to align the cluster to multiples of the * filesystem block size if backed by a filesystem. */ page_base = pindex % BLIST_MAX_ALLOC; mc[page_base] = m; ib = page_base - 1; is = page_base + 1; /* * Scan object for clusterable pages. * * We can cluster ONLY if: ->> the page is NOT * clean, wired, busy, held, or mapped into a * buffer, and one of the following: * 1) The page is inactive, or a seldom used * active page. * -or- * 2) we force the issue. * * During heavy mmap/modification loads the pageout * daemon can really fragment the underlying file * due to flushing pages out of order and not trying * align the clusters (which leave sporatic out-of-order * holes). To solve this problem we do the reverse scan * first and attempt to align our cluster, then do a * forward scan if room remains. */ vm_object_hold(object); while (ib >= 0) { vm_page_t p; p = vm_page_lookup_busy_try(object, pindex - page_base + ib, TRUE, &error); if (error || p == NULL) break; if ((p->queue - p->pc) == PQ_CACHE || (p->flags & PG_UNQUEUED)) { vm_page_wakeup(p); break; } vm_page_test_dirty(p); if (((p->dirty & p->valid) == 0 && (p->flags & PG_NEED_COMMIT) == 0) || p->wire_count != 0 || /* may be held by buf cache */ p->hold_count != 0) { /* may be undergoing I/O */ vm_page_wakeup(p); break; } if (p->queue - p->pc != PQ_INACTIVE) { if (p->queue - p->pc != PQ_ACTIVE || (vmflush_flags & OBJPC_ALLOW_ACTIVE) == 0) { vm_page_wakeup(p); break; } } /* * Try to maintain page groupings in the cluster. */ if (m->flags & PG_WINATCFLS) vm_page_flag_set(p, PG_WINATCFLS); else vm_page_flag_clear(p, PG_WINATCFLS); p->act_count = m->act_count; mc[ib] = p; --ib; } ++ib; /* fixup */ while (is < BLIST_MAX_ALLOC && pindex - page_base + is < object->size) { vm_page_t p; p = vm_page_lookup_busy_try(object, pindex - page_base + is, TRUE, &error); if (error || p == NULL) break; if (((p->queue - p->pc) == PQ_CACHE) || (p->flags & PG_UNQUEUED)) { vm_page_wakeup(p); break; } vm_page_test_dirty(p); if (((p->dirty & p->valid) == 0 && (p->flags & PG_NEED_COMMIT) == 0) || p->wire_count != 0 || /* may be held by buf cache */ p->hold_count != 0) { /* may be undergoing I/O */ vm_page_wakeup(p); break; } if (p->queue - p->pc != PQ_INACTIVE) { if (p->queue - p->pc != PQ_ACTIVE || (vmflush_flags & OBJPC_ALLOW_ACTIVE) == 0) { vm_page_wakeup(p); break; } } /* * Try to maintain page groupings in the cluster. */ if (m->flags & PG_WINATCFLS) vm_page_flag_set(p, PG_WINATCFLS); else vm_page_flag_clear(p, PG_WINATCFLS); p->act_count = m->act_count; mc[is] = p; ++is; } vm_object_drop(object); /* * we allow reads during pageouts... */ return vm_pageout_flush(&mc[ib], is - ib, vmflush_flags); } /* * vm_pageout_flush() - launder the given pages * * The given pages are laundered. Note that we setup for the start of * I/O ( i.e. busy the page ), mark it read-only, and bump the object * reference count all in here rather then in the parent. If we want * the parent to do more sophisticated things we may have to change * the ordering. * * The pages in the array must be busied by the caller and will be * unbusied by this function. */ int vm_pageout_flush(vm_page_t *mc, int count, int vmflush_flags) { vm_object_t object; int pageout_status[count]; int numpagedout = 0; int i; /* * Initiate I/O. Bump the vm_page_t->busy counter. */ for (i = 0; i < count; i++) { KASSERT(mc[i]->valid == VM_PAGE_BITS_ALL, ("vm_pageout_flush page %p index %d/%d: partially " "invalid page", mc[i], i, count)); vm_page_io_start(mc[i]); } /* * We must make the pages read-only. This will also force the * modified bit in the related pmaps to be cleared. The pager * cannot clear the bit for us since the I/O completion code * typically runs from an interrupt. The act of making the page * read-only handles the case for us. * * Then we can unbusy the pages, we still hold a reference by virtue * of our soft-busy. */ for (i = 0; i < count; i++) { if (vmflush_flags & OBJPC_TRY_TO_CACHE) vm_page_protect(mc[i], VM_PROT_NONE); else vm_page_protect(mc[i], VM_PROT_READ); vm_page_wakeup(mc[i]); } object = mc[0]->object; vm_object_pip_add(object, count); vm_pager_put_pages(object, mc, count, (vmflush_flags | ((object == kernel_object) ? OBJPC_SYNC : 0)), pageout_status); for (i = 0; i < count; i++) { vm_page_t mt = mc[i]; switch (pageout_status[i]) { case VM_PAGER_OK: numpagedout++; break; case VM_PAGER_PEND: numpagedout++; break; case VM_PAGER_BAD: /* * Page outside of range of object. Right now we * essentially lose the changes by pretending it * worked. */ vm_page_busy_wait(mt, FALSE, "pgbad"); pmap_clear_modify(mt); vm_page_undirty(mt); vm_page_wakeup(mt); break; case VM_PAGER_ERROR: case VM_PAGER_FAIL: /* * A page typically cannot be paged out when we * have run out of swap. We leave the page * marked inactive and will try to page it out * again later. * * Starvation of the active page list is used to * determine when the system is massively memory * starved. */ break; case VM_PAGER_AGAIN: break; } /* * If not PENDing this was a synchronous operation and we * clean up after the I/O. If it is PENDing the mess is * cleaned up asynchronously. * * Also nominally act on the caller's wishes if the caller * wants to try to really clean (cache or free) the page. * * Also nominally deactivate the page if the system is * memory-stressed. */ if (pageout_status[i] != VM_PAGER_PEND) { vm_page_busy_wait(mt, FALSE, "pgouw"); vm_page_io_finish(mt); if (vmflush_flags & OBJPC_TRY_TO_CACHE) { vm_page_try_to_cache(mt); } else if (vm_paging_severe()) { vm_page_deactivate(mt); vm_page_wakeup(mt); } else { vm_page_wakeup(mt); } vm_object_pip_wakeup(object); } } return numpagedout; } #if !defined(NO_SWAPPING) /* * Callback function, page busied for us. We must dispose of the busy * condition. Any related pmap pages may be held but will not be locked. */ static int vm_pageout_mdp_callback(struct pmap_pgscan_info *info, vm_offset_t va, vm_page_t p) { int actcount; int cleanit = 0; /* * Basic tests - There should never be a marker, and we can stop * once the RSS is below the required level. */ KKASSERT((p->flags & PG_MARKER) == 0); if (pmap_resident_tlnw_count(info->pmap) <= info->limit) { vm_page_wakeup(p); return(-1); } mycpu->gd_cnt.v_pdpages++; if (p->wire_count || p->hold_count || (p->flags & PG_UNQUEUED)) { vm_page_wakeup(p); goto done; } ++info->actioncount; /* * Check if the page has been referened recently. If it has, * activate it and skip. */ actcount = pmap_ts_referenced(p); if (actcount) { vm_page_flag_set(p, PG_REFERENCED); } else if (p->flags & PG_REFERENCED) { actcount = 1; } if (actcount) { if (p->queue - p->pc != PQ_ACTIVE) { vm_page_and_queue_spin_lock(p); if (p->queue - p->pc != PQ_ACTIVE) { vm_page_and_queue_spin_unlock(p); vm_page_activate(p); } else { vm_page_and_queue_spin_unlock(p); } } else { p->act_count += actcount; if (p->act_count > ACT_MAX) p->act_count = ACT_MAX; } vm_page_flag_clear(p, PG_REFERENCED); vm_page_wakeup(p); goto done; } /* * Remove the page from this particular pmap. Once we do this, our * pmap scans will not see it again (unless it gets faulted in), so * we must actively dispose of or deal with the page. */ pmap_remove_specific(info->pmap, p); /* * If the page is not mapped to another process (i.e. as would be * typical if this were a shared page from a library) then deactivate * the page and clean it in two passes only. * * If the page hasn't been referenced since the last check, remove it * from the pmap. If it is no longer mapped, deactivate it * immediately, accelerating the normal decline. * * Once the page has been removed from the pmap the RSS code no * longer tracks it so we have to make sure that it is staged for * potential flush action. * * XXX */ if ((p->flags & PG_MAPPED) == 0 || (pmap_mapped_sync(p) & PG_MAPPED) == 0) { if (p->queue - p->pc == PQ_ACTIVE) { vm_page_deactivate(p); } if (p->queue - p->pc == PQ_INACTIVE) { cleanit = 1; } } /* * Ok, try to fully clean the page and any nearby pages such that at * least the requested page is freed or moved to the cache queue. * * We usually do this synchronously to allow us to get the page into * the CACHE queue quickly, which will prevent memory exhaustion if * a process with a memoryuse limit is running away. However, the * sysadmin may desire to set vm.swap_user_async which relaxes this * and improves write performance. */ if (cleanit) { long max_launder = 0x7FFF; long vnodes_skipped = 0; long counts[4] = { 0, 0, 0, 0 }; int vmflush_flags; struct vnode *vpfailed = NULL; info->offset = va; if (vm_pageout_memuse_mode >= 2) { vmflush_flags = OBJPC_TRY_TO_CACHE | OBJPC_ALLOW_ACTIVE; if (swap_user_async == 0) vmflush_flags |= OBJPC_SYNC; vm_page_flag_set(p, PG_WINATCFLS); info->cleancount += vm_pageout_page(p, &max_launder, &vnodes_skipped, &vpfailed, 1, vmflush_flags, counts); } else { vm_page_wakeup(p); ++info->cleancount; } } else { vm_page_wakeup(p); } /* * Must be at end to avoid SMP races. */ done: lwkt_user_yield(); return 0; } /* * Deactivate some number of pages in a map due to set RLIMIT_RSS limits. * that is relatively difficult to do. We try to keep track of where we * left off last time to reduce scan overhead. * * Called when vm_pageout_memuse_mode is >= 1. */ void vm_pageout_map_deactivate_pages(vm_map_t map, vm_pindex_t limit) { vm_offset_t pgout_offset; struct pmap_pgscan_info info; int retries = 3; pgout_offset = map->pgout_offset; again: #if 0 kprintf("%016jx ", pgout_offset); #endif if (pgout_offset < VM_MIN_USER_ADDRESS) pgout_offset = VM_MIN_USER_ADDRESS; if (pgout_offset >= VM_MAX_USER_ADDRESS) pgout_offset = 0; info.pmap = vm_map_pmap(map); info.limit = limit; info.beg_addr = pgout_offset; info.end_addr = VM_MAX_USER_ADDRESS; info.callback = vm_pageout_mdp_callback; info.cleancount = 0; info.actioncount = 0; info.busycount = 0; pmap_pgscan(&info); pgout_offset = info.offset; #if 0 kprintf("%016jx %08lx %08lx\n", pgout_offset, info.cleancount, info.actioncount); #endif if (pgout_offset != VM_MAX_USER_ADDRESS && pmap_resident_tlnw_count(vm_map_pmap(map)) > limit) { goto again; } else if (retries && pmap_resident_tlnw_count(vm_map_pmap(map)) > limit) { --retries; goto again; } map->pgout_offset = pgout_offset; } #endif /* * Called when the pageout scan wants to free a page. We no longer * try to cycle the vm_object here with a reference & dealloc, which can * cause a non-trivial object collapse in a critical path. * * It is unclear why we cycled the ref_count in the past, perhaps to try * to optimize shadow chain collapses but I don't quite see why it would * be necessary. An OBJ_DEAD object should terminate any and all vm_pages * synchronously and not have to be kicked-start. */ static void vm_pageout_page_free(vm_page_t m) { vm_page_protect(m, VM_PROT_NONE); vm_page_free(m); } /* * vm_pageout_scan does the dirty work for the pageout daemon. */ struct vm_pageout_scan_info { struct proc *bigproc; vm_offset_t bigsize; }; static int vm_pageout_scan_callback(struct proc *p, void *data); /* * Scan inactive queue for pages we can cache or free. * * WARNING! Can be called from two pagedaemon threads simultaneously. */ static int vm_pageout_scan_inactive(int pass, int q, long avail_shortage, long *vnodes_skipped, long *counts) { vm_page_t m; struct vm_page marker; struct vnode *vpfailed; /* warning, allowed to be stale */ long maxscan; long delta = 0; long max_launder; int isep; int vmflush_flags; isep = (curthread == emergpager); /* * This routine is called for each of PQ_L2_SIZE inactive queues. * We want the vm_max_launder parameter to apply to the whole * queue (i.e. per-whole-queue pass, not per-sub-queue). * * In each successive full-pass when the page target is not met we * allow the per-queue max_launder to increase up to a maximum of * vm_max_launder / 16. */ max_launder = (long)vm_max_launder / PQ_L2_SIZE; if (pass) max_launder *= 2; max_launder = (max_launder + MAXSCAN_DIVIDER - 1) / MAXSCAN_DIVIDER; if (max_launder <= 1) max_launder = 1; if (max_launder >= vm_max_launder / 16) max_launder = vm_max_launder / 16 + 1; /* * Start scanning the inactive queue for pages we can move to the * cache or free. The scan will stop when the target is reached or * we have scanned the entire inactive queue. Note that m->act_count * is not used to form decisions for the inactive queue, only for the * active queue. * * NOTE! THE EMERGENCY PAGER (isep) DOES NOT LAUNDER VNODE-BACKED * PAGES. */ /* * Initialize our marker */ bzero(&marker, sizeof(marker)); marker.flags = PG_FICTITIOUS | PG_MARKER; marker.busy_count = PBUSY_LOCKED; marker.queue = PQ_INACTIVE + q; marker.pc = q; marker.wire_count = 1; /* * Inactive queue scan. * * We pick off approximately 1/10 of each queue. Each queue is * effectively organized LRU so scanning the entire queue would * improperly pick up pages that might still be in regular use. * * NOTE: The vm_page must be spinlocked before the queue to avoid * deadlocks, so it is easiest to simply iterate the loop * with the queue unlocked at the top. */ vpfailed = NULL; vm_page_queues_spin_lock(PQ_INACTIVE + q); TAILQ_INSERT_HEAD(&vm_page_queues[PQ_INACTIVE + q].pl, &marker, pageq); maxscan = (vm_page_queues[PQ_INACTIVE + q].lcnt + MAXSCAN_DIVIDER - 1) / MAXSCAN_DIVIDER + 1; /* * Queue locked at top of loop to avoid stack marker issues. */ while ((m = TAILQ_NEXT(&marker, pageq)) != NULL && maxscan-- > 0 && avail_shortage - delta > 0) { int count; KKASSERT(m->queue == PQ_INACTIVE + q); TAILQ_REMOVE(&vm_page_queues[PQ_INACTIVE + q].pl, &marker, pageq); TAILQ_INSERT_AFTER(&vm_page_queues[PQ_INACTIVE + q].pl, m, &marker, pageq); mycpu->gd_cnt.v_pdpages++; /* * Skip marker pages (atomic against other markers to avoid * infinite hop-over scans). */ if (m->flags & PG_MARKER) continue; /* * Try to busy the page. Don't mess with pages which are * already busy or reorder them in the queue. */ if (vm_page_busy_try(m, TRUE)) continue; /* * Remaining operations run with the page busy and neither * the page or the queue will be spin-locked. */ KKASSERT(m->queue == PQ_INACTIVE + q); vm_page_queues_spin_unlock(PQ_INACTIVE + q); /* * The emergency pager runs when the primary pager gets * stuck, which typically means the primary pager deadlocked * on a vnode-backed page. Therefore, the emergency pager * must skip any complex objects. * * We disallow VNODEs unless they are VCHR whos device ops * does not flag D_NOEMERGPGR. */ if (isep && m->object) { struct vnode *vp; switch(m->object->type) { case OBJT_DEFAULT: case OBJT_SWAP: /* * Allow anonymous memory and assume that * swap devices are not complex, since its * kinda worthless if we can't swap out dirty * anonymous pages. */ break; case OBJT_VNODE: /* * Allow VCHR device if the D_NOEMERGPGR * flag is not set, deny other vnode types * as being too complex. */ vp = m->object->handle; if (vp && vp->v_type == VCHR && vp->v_rdev && vp->v_rdev->si_ops && (vp->v_rdev->si_ops->head.flags & D_NOEMERGPGR) == 0) { break; } /* Deny - fall through */ default: /* * Deny */ vm_page_wakeup(m); vm_page_queues_spin_lock(PQ_INACTIVE + q); lwkt_yield(); continue; } } /* * Try to pageout the page and perhaps other nearby pages. * We want to get the pages into the cache eventually ( * first or second pass). Otherwise the pages can wind up * just cycling in the inactive queue, getting flushed over * and over again. * * Generally speaking we recycle dirty pages within PQ_INACTIVE * twice (double LRU) before paging them out. If the * memuse_mode is >= 3 we run them single-LRU like we do clean * pages. */ if (vm_pageout_memuse_mode >= 3) vm_page_flag_set(m, PG_WINATCFLS); vmflush_flags = 0; if (vm_pageout_allow_active) vmflush_flags |= OBJPC_ALLOW_ACTIVE; if (m->flags & PG_WINATCFLS) vmflush_flags |= OBJPC_TRY_TO_CACHE; count = vm_pageout_page(m, &max_launder, vnodes_skipped, &vpfailed, pass, vmflush_flags, counts); delta += count; /* * Systems with a ton of memory can wind up with huge * deactivation counts. Because the inactive scan is * doing a lot of flushing, the combination can result * in excessive paging even in situations where other * unrelated threads free up sufficient VM. * * To deal with this we abort the nominal active->inactive * scan before we hit the inactive target when free+cache * levels have reached a reasonable target. * * When deciding to stop early we need to add some slop to * the test and we need to return full completion to the caller * to prevent the caller from thinking there is something * wrong and issuing a low-memory+swap warning or pkill. * * A deficit forces paging regardless of the state of the * VM page queues (used for RSS enforcement). */ lwkt_yield(); vm_page_queues_spin_lock(PQ_INACTIVE + q); /* if (vm_paging_target() < -vm_max_launder) */ if (!vm_paging_target2()) { /* * Stopping early, return full completion to caller. */ if (delta < avail_shortage) delta = avail_shortage; break; } } /* page queue still spin-locked */ TAILQ_REMOVE(&vm_page_queues[PQ_INACTIVE + q].pl, &marker, pageq); vm_page_queues_spin_unlock(PQ_INACTIVE + q); return (delta); } /* * Pageout the specified page, return the total number of pages paged out * (this routine may cluster). * * The page must be busied and soft-busied by the caller and will be disposed * of by this function. */ static int vm_pageout_page(vm_page_t m, long *max_launderp, long *vnodes_skippedp, struct vnode **vpfailedp, int pass, int vmflush_flags, long *counts) { vm_object_t object; int actcount; int count = 0; /* * Wiring no longer removes a page from its queue. The last unwiring * will requeue the page. Obviously wired pages cannot be paged out * so unqueue it and return. */ if (m->wire_count) { vm_page_unqueue_nowakeup(m); vm_page_wakeup(m); return 0; } /* * A held page may be undergoing I/O, so skip it. */ if (m->hold_count) { vm_page_and_queue_spin_lock(m); if (m->queue - m->pc == PQ_INACTIVE) { TAILQ_REMOVE( &vm_page_queues[m->queue].pl, m, pageq); TAILQ_INSERT_TAIL( &vm_page_queues[m->queue].pl, m, pageq); } vm_page_and_queue_spin_unlock(m); vm_page_wakeup(m); return 0; } if (m->object == NULL || m->object->ref_count == 0) { /* * If the object is not being used, we ignore previous * references. */ vm_page_flag_clear(m, PG_REFERENCED); pmap_clear_reference(m); /* fall through to end */ } else if (((m->flags & PG_REFERENCED) == 0) && (actcount = pmap_ts_referenced(m))) { /* * Otherwise, if the page has been referenced while * in the inactive queue, we bump the "activation * count" upwards, making it less likely that the * page will be added back to the inactive queue * prematurely again. Here we check the page tables * (or emulated bits, if any), given the upper level * VM system not knowing anything about existing * references. */ ++counts[3]; vm_page_activate(m); m->act_count += (actcount + ACT_ADVANCE); vm_page_wakeup(m); return 0; } /* * (m) is still busied. * * If the upper level VM system knows about any page * references, we activate the page. We also set the * "activation count" higher than normal so that we will less * likely place pages back onto the inactive queue again. */ if ((m->flags & PG_REFERENCED) != 0) { vm_page_flag_clear(m, PG_REFERENCED); actcount = pmap_ts_referenced(m); vm_page_activate(m); m->act_count += (actcount + ACT_ADVANCE + 1); vm_page_wakeup(m); ++counts[3]; return 0; } /* * If the upper level VM system doesn't know anything about * the page being dirty, we have to check for it again. As * far as the VM code knows, any partially dirty pages are * fully dirty. * * Pages marked PG_WRITEABLE may be mapped into the user * address space of a process running on another cpu. A * user process (without holding the MP lock) running on * another cpu may be able to touch the page while we are * trying to remove it. vm_page_cache() will handle this * case for us. */ if (m->dirty == 0) { vm_page_test_dirty(m); } else { vm_page_dirty(m); } if (m->valid == 0 && (m->flags & PG_NEED_COMMIT) == 0) { /* * Invalid pages can be easily freed */ vm_pageout_page_free(m); mycpu->gd_cnt.v_dfree++; ++count; ++counts[1]; } else if (m->dirty == 0 && (m->flags & PG_NEED_COMMIT) == 0) { /* * Clean pages can be placed onto the cache queue. * This effectively frees them. */ vm_page_cache(m); ++count; ++counts[1]; } else if ((m->flags & PG_WINATCFLS) == 0 && pass == 0) { /* * Dirty pages need to be paged out, but flushing * a page is extremely expensive verses freeing * a clean page. Rather then artificially limiting * the number of pages we can flush, we instead give * dirty pages extra priority on the inactive queue * by forcing them to be cycled through the queue * twice before being flushed, after which the * (now clean) page will cycle through once more * before being freed. This significantly extends * the thrash point for a heavily loaded machine. */ ++counts[2]; vm_page_flag_set(m, PG_WINATCFLS); vm_page_and_queue_spin_lock(m); if (m->queue - m->pc == PQ_INACTIVE) { TAILQ_REMOVE( &vm_page_queues[m->queue].pl, m, pageq); TAILQ_INSERT_TAIL( &vm_page_queues[m->queue].pl, m, pageq); } vm_page_and_queue_spin_unlock(m); vm_page_wakeup(m); } else if (*max_launderp > 0) { /* * We always want to try to flush some dirty pages if * we encounter them, to keep the system stable. * Normally this number is small, but under extreme * pressure where there are insufficient clean pages * on the inactive queue, we may have to go all out. */ int swap_pageouts_ok; struct vnode *vp = NULL; if ((m->flags & PG_WINATCFLS) == 0) vm_page_flag_set(m, PG_WINATCFLS); swap_pageouts_ok = 0; object = m->object; if (object && (object->type != OBJT_SWAP) && (object->type != OBJT_DEFAULT)) { swap_pageouts_ok = 1; } else { swap_pageouts_ok = !(defer_swap_pageouts || disable_swap_pageouts); swap_pageouts_ok |= (!disable_swap_pageouts && defer_swap_pageouts && vm_paging_min()); } /* * We don't bother paging objects that are "dead". * Those objects are in a "rundown" state. */ if (!swap_pageouts_ok || (object == NULL) || (object->flags & OBJ_DEAD)) { vm_page_and_queue_spin_lock(m); if (m->queue - m->pc == PQ_INACTIVE) { TAILQ_REMOVE( &vm_page_queues[m->queue].pl, m, pageq); TAILQ_INSERT_TAIL( &vm_page_queues[m->queue].pl, m, pageq); } vm_page_and_queue_spin_unlock(m); vm_page_wakeup(m); return 0; } /* * (m) is still busied. * * The object is already known NOT to be dead. It * is possible for the vget() to block the whole * pageout daemon, but the new low-memory handling * code should prevent it. * * The previous code skipped locked vnodes and, worse, * reordered pages in the queue. This results in * completely non-deterministic operation because, * quite often, a vm_fault has initiated an I/O and * is holding a locked vnode at just the point where * the pageout daemon is woken up. * * We can't wait forever for the vnode lock, we might * deadlock due to a vn_read() getting stuck in * vm_wait while holding this vnode. We skip the * vnode if we can't get it in a reasonable amount * of time. * * vpfailed is used to (try to) avoid the case where * a large number of pages are associated with a * locked vnode, which could cause the pageout daemon * to stall for an excessive amount of time. */ if (object->type == OBJT_VNODE) { int flags; vp = object->handle; flags = LK_EXCLUSIVE; if (vp == *vpfailedp) flags |= LK_NOWAIT; else flags |= LK_TIMELOCK; vm_page_hold(m); vm_page_wakeup(m); /* * We have unbusied (m) temporarily so we can * acquire the vp lock without deadlocking. * (m) is held to prevent destruction. */ if (vget(vp, flags) != 0) { *vpfailedp = vp; ++pageout_lock_miss; if (object->flags & OBJ_MIGHTBEDIRTY) ++*vnodes_skippedp; vm_page_unhold(m); return 0; } /* * The page might have been moved to another * queue during potential blocking in vget() * above. The page might have been freed and * reused for another vnode. The object might * have been reused for another vnode. */ if (m->queue - m->pc != PQ_INACTIVE || m->object != object || object->handle != vp) { if (object->flags & OBJ_MIGHTBEDIRTY) ++*vnodes_skippedp; vput(vp); vm_page_unhold(m); return 0; } /* * The page may have been busied during the * blocking in vput(); We don't move the * page back onto the end of the queue so that * statistics are more correct if we don't. */ if (vm_page_busy_try(m, TRUE)) { vput(vp); vm_page_unhold(m); return 0; } vm_page_unhold(m); /* * If it was wired while we didn't own it. */ if (m->wire_count) { vm_page_unqueue_nowakeup(m); vput(vp); vm_page_wakeup(m); return 0; } /* * (m) is busied again * * We own the busy bit and remove our hold * bit. If the page is still held it * might be undergoing I/O, so skip it. */ if (m->hold_count) { rebusy_failed: vm_page_and_queue_spin_lock(m); if (m->queue - m->pc == PQ_INACTIVE) { TAILQ_REMOVE(&vm_page_queues[m->queue].pl, m, pageq); TAILQ_INSERT_TAIL(&vm_page_queues[m->queue].pl, m, pageq); } vm_page_and_queue_spin_unlock(m); if (object->flags & OBJ_MIGHTBEDIRTY) ++*vnodes_skippedp; vm_page_wakeup(m); vput(vp); return 0; } /* * Recheck queue, object, and vp now that we have * rebusied the page. */ if (m->queue - m->pc != PQ_INACTIVE || m->object != object || object->handle != vp) { kprintf("vm_pageout_page: " "rebusy %p failed(A)\n", m); goto rebusy_failed; } /* * Check page validity */ if (m->valid == 0 && (m->flags & PG_NEED_COMMIT) == 0) { kprintf("vm_pageout_page: " "rebusy %p failed(B)\n", m); goto rebusy_failed; } if (m->dirty == 0 && (m->flags & PG_NEED_COMMIT) == 0) { kprintf("vm_pageout_page: " "rebusy %p failed(C)\n", m); goto rebusy_failed; } /* (m) is left busied as we fall through */ } /* * page is busy and not held here. * * If a page is dirty, then it is either being washed * (but not yet cleaned) or it is still in the * laundry. If it is still in the laundry, then we * start the cleaning operation. * * decrement inactive_shortage on success to account * for the (future) cleaned page. Otherwise we * could wind up laundering or cleaning too many * pages. * * NOTE: Cleaning the page here does not cause * force_deficit to be adjusted, because the * page is not being freed or moved to the * cache. */ count = vm_pageout_clean_helper(m, vmflush_flags); counts[0] += count; *max_launderp -= count; /* * Clean ate busy, page no longer accessible */ if (vp != NULL) vput(vp); } else { vm_page_wakeup(m); } return count; } /* * Scan active queue * * WARNING! Can be called from two pagedaemon threads simultaneously. */ static int vm_pageout_scan_active(int pass, int q, long avail_shortage, long inactive_shortage, struct vm_page *marker, long *recycle_countp) { vm_page_t m; int actcount; long delta = 0; long maxscan; int isep; isep = (curthread == emergpager); /* * We want to move pages from the active queue to the inactive * queue to get the inactive queue to the inactive target. If * we still have a page shortage from above we try to directly free * clean pages instead of moving them. * * If we do still have a shortage we keep track of the number of * pages we free or cache (recycle_count) as a measure of thrashing * between the active and inactive queues. * * If we were able to completely satisfy the free+cache targets * from the inactive pool we limit the number of pages we move * from the active pool to the inactive pool to 2x the pages we * had removed from the inactive pool (with a minimum of 1/5 the * inactive target). If we were not able to completely satisfy * the free+cache targets we go for the whole target aggressively. * * NOTE: Both variables can end up negative. * NOTE: We are still in a critical section. * * NOTE! THE EMERGENCY PAGER (isep) DOES NOT LAUNDER VNODE-BACKED * PAGES. */ vm_page_queues_spin_lock(PQ_ACTIVE + q); maxscan = (vm_page_queues[PQ_ACTIVE + q].lcnt + MAXSCAN_DIVIDER - 1) / MAXSCAN_DIVIDER + 1; /* * Queue locked at top of loop to avoid stack marker issues. */ while ((m = TAILQ_NEXT(marker, pageq)) != NULL && maxscan-- > 0 && (avail_shortage - delta > 0 || inactive_shortage > 0)) { KKASSERT(m->queue == PQ_ACTIVE + q); TAILQ_REMOVE(&vm_page_queues[PQ_ACTIVE + q].pl, marker, pageq); TAILQ_INSERT_AFTER(&vm_page_queues[PQ_ACTIVE + q].pl, m, marker, pageq); /* * Skip marker pages (atomic against other markers to avoid * infinite hop-over scans). */ if (m->flags & PG_MARKER) continue; /* * Try to busy the page. Don't mess with pages which are * already busy or reorder them in the queue. */ if (vm_page_busy_try(m, TRUE)) continue; /* * Remaining operations run with the page busy and neither * the page or the queue will be spin-locked. */ KKASSERT(m->queue == PQ_ACTIVE + q); vm_page_queues_spin_unlock(PQ_ACTIVE + q); #if 0 /* * Don't deactivate pages that are held, even if we can * busy them. (XXX why not?) */ if (m->hold_count) { vm_page_and_queue_spin_lock(m); if (m->queue - m->pc == PQ_ACTIVE) { TAILQ_REMOVE( &vm_page_queues[PQ_ACTIVE + q].pl, m, pageq); TAILQ_INSERT_TAIL( &vm_page_queues[PQ_ACTIVE + q].pl, m, pageq); } vm_page_and_queue_spin_unlock(m); vm_page_wakeup(m); goto next; } #endif /* * We can just remove wired pages from the queue */ if (m->wire_count) { vm_page_unqueue_nowakeup(m); vm_page_wakeup(m); goto next; } /* * The emergency pager ignores vnode-backed pages as these * are the pages that probably bricked the main pager. */ if (isep && m->object && m->object->type == OBJT_VNODE) { #if 0 vm_page_and_queue_spin_lock(m); if (m->queue - m->pc == PQ_ACTIVE) { TAILQ_REMOVE( &vm_page_queues[PQ_ACTIVE + q].pl, m, pageq); TAILQ_INSERT_TAIL( &vm_page_queues[PQ_ACTIVE + q].pl, m, pageq); } vm_page_and_queue_spin_unlock(m); #endif vm_page_wakeup(m); goto next; } /* * The count for pagedaemon pages is done after checking the * page for eligibility... */ mycpu->gd_cnt.v_pdpages++; /* * Check to see "how much" the page has been used and clear * the tracking access bits. If the object has no references * don't bother paying the expense. */ actcount = 0; if (m->object && m->object->ref_count != 0) { if (m->flags & PG_REFERENCED) ++actcount; actcount += pmap_ts_referenced(m); if (actcount) { m->act_count += ACT_ADVANCE + actcount; if (m->act_count > ACT_MAX) m->act_count = ACT_MAX; } } vm_page_flag_clear(m, PG_REFERENCED); /* * actcount is only valid if the object ref_count is non-zero. * If the page does not have an object, actcount will be zero. */ if (actcount && m->object && m->object->ref_count != 0) { #if 0 vm_page_and_queue_spin_lock(m); if (m->queue - m->pc == PQ_ACTIVE) { TAILQ_REMOVE( &vm_page_queues[PQ_ACTIVE + q].pl, m, pageq); TAILQ_INSERT_TAIL( &vm_page_queues[PQ_ACTIVE + q].pl, m, pageq); } vm_page_and_queue_spin_unlock(m); #endif vm_page_wakeup(m); } else { switch((m->object ? m->object->type : OBJT_DEFAULT)) { case OBJT_DEFAULT: case OBJT_SWAP: m->act_count -= min(m->act_count, vm_anonmem_decline); break; default: m->act_count -= min(m->act_count, vm_filemem_decline); break; } if (vm_pageout_algorithm || (m->object == NULL) || (m->object && (m->object->ref_count == 0)) || m->act_count < pass + 1 ) { /* * Deactivate the page. If we had a * shortage from our inactive scan try to * free (cache) the page instead. * * Don't just blindly cache the page if * we do not have a shortage from the * inactive scan, that could lead to * gigabytes being moved. */ --inactive_shortage; if (avail_shortage - delta > 0 || (m->object && (m->object->ref_count == 0))) { if (avail_shortage - delta > 0) ++*recycle_countp; vm_page_protect(m, VM_PROT_NONE); if (m->dirty == 0 && (m->flags & PG_NEED_COMMIT) == 0 && avail_shortage - delta > 0) { vm_page_cache(m); } else { vm_page_deactivate(m); vm_page_wakeup(m); } } else { vm_page_deactivate(m); vm_page_wakeup(m); } ++delta; } else { /* * Do nothing */ #if 0 vm_page_and_queue_spin_lock(m); if (m->queue - m->pc == PQ_ACTIVE) { TAILQ_REMOVE( &vm_page_queues[PQ_ACTIVE + q].pl, m, pageq); TAILQ_INSERT_TAIL( &vm_page_queues[PQ_ACTIVE + q].pl, m, pageq); } vm_page_and_queue_spin_unlock(m); #endif vm_page_wakeup(m); } } next: lwkt_yield(); vm_page_queues_spin_lock(PQ_ACTIVE + q); } /* * Clean out our local marker. * * Page queue still spin-locked. */ if (m == NULL) { TAILQ_REMOVE(&vm_page_queues[PQ_ACTIVE + q].pl, marker, pageq); TAILQ_INSERT_HEAD(&vm_page_queues[PQ_ACTIVE + q].pl, marker, pageq); } vm_page_queues_spin_unlock(PQ_ACTIVE + q); return (delta); } /* * The number of actually free pages can drop down to v_free_reserved, * we try to build the free count back above v_free_min, to v_free_target. * * Cache pages are already counted as being free-ish. * * NOTE: we are still in a critical section. * * Pages moved from PQ_CACHE to totally free are not counted in the * pages_freed counter. * * WARNING! Can be called from two pagedaemon threads simultaneously. */ static void vm_pageout_scan_cache(long avail_shortage, int pass, long vnodes_skipped, long recycle_count) { static int lastkillticks; struct vm_pageout_scan_info info; vm_page_t m; int isep; isep = (curthread == emergpager); /* * Test conditions also include a safeety against v_free_min in * case the sysop messes up the sysctls. * * Also include a test to avoid degenerate scans. */ while ((vmstats.v_free_count < vmstats.v_free_target || vmstats.v_free_count < vmstats.v_free_min) && vmstats.v_cache_count > VM_CACHE_SCAN_MIN) { /* * This steals some code from vm/vm_page.c * * Create two rovers and adjust the code to reduce * chances of them winding up at the same index (which * can cause a lot of contention). */ static int cache_rover[2] = { 0, PQ_L2_MASK / 2 }; if (((cache_rover[0] ^ cache_rover[1]) & PQ_L2_MASK) == 0) goto next_rover; m = vm_page_list_find(PQ_CACHE, cache_rover[isep] & PQ_L2_MASK); if (m == NULL) break; /* * page is returned removed from its queue and spinlocked. * * If the busy attempt fails we can still deactivate the page. */ if (vm_page_busy_try(m, TRUE)) { vm_page_deactivate_locked(m); vm_page_spin_unlock(m); continue; } vm_page_spin_unlock(m); pagedaemon_wakeup(); lwkt_yield(); /* * Report a possible edge case. This shouldn't happen but * actually I think it can race against e.g. * vm_page_lookup()/busy sequences. If the page isn't * in a cache-like state we will deactivate and skip it. */ if ((m->flags & PG_MAPPED) || (m->valid & m->dirty)) { kprintf("WARNING! page race during find/busy: %p " "queue == %d dirty=%02x\n", m, m->queue - m->pc, m->dirty); } /* * Remaining operations run with the page busy and neither * the page or the queue will be spin-locked. */ if ((m->flags & (PG_UNQUEUED | PG_NEED_COMMIT | PG_MAPPED)) || m->hold_count || m->wire_count || (m->valid & m->dirty)) { vm_page_deactivate(m); vm_page_wakeup(m); continue; } /* * Because the page is in the cache, it shouldn't be mapped. */ pmap_mapped_sync(m); KKASSERT((m->flags & PG_MAPPED) == 0); KKASSERT(m->dirty == 0); vm_pageout_page_free(m); mycpu->gd_cnt.v_dfree++; next_rover: if (isep) cache_rover[1] -= PQ_PRIME2; else cache_rover[0] += PQ_PRIME2; } /* * If we didn't get enough free pages, and we have skipped a vnode * in a writeable object, wakeup the sync daemon. And kick swapout * if we did not get enough free pages. */ if (vm_paging_target1()) { if (vnodes_skipped && vm_paging_min()) speedup_syncer(NULL); #if !defined(NO_SWAPPING) if (vm_swap_enabled && vm_paging_target1()) vm_req_vmdaemon(); #endif } /* * Handle catastrophic conditions. Under good conditions we should * be at the target, well beyond our minimum. If we could not even * reach our minimum the system is under heavy stress. But just being * under heavy stress does not trigger process killing. * * We consider ourselves to have run out of memory if the swap pager * is full and avail_shortage is still positive. The secondary check * ensures that we do not kill processes if the instantanious * availability is good, even if the pageout demon pass says it * couldn't get to the target. * * NOTE! THE EMERGENCY PAGER (isep) DOES NOT HANDLE SWAP FULL * SITUATIONS. */ if (swap_pager_almost_full && pass > 0 && isep == 0 && (vm_paging_min_dnc(recycle_count) || avail_shortage > 0)) { kprintf("Warning: system low on memory+swap " "shortage %ld for %d ticks!\n", avail_shortage, ticks - swap_fail_ticks); if (bootverbose) { kprintf("Metrics: spaf=%d spf=%d pass=%d " "availshrt=%ld tgt=%d/%d inacshrt=%ld " "last=%u\n", swap_pager_almost_full, swap_pager_full, pass, avail_shortage, vm_paging_target1(), vm_paging_target2(), vm_paging_target2_count(), (unsigned int)(ticks - lastkillticks)); } } if (swap_pager_full && pass > 1 && isep == 0 && avail_shortage > 0 && vm_paging_target1() && (unsigned int)(ticks - lastkillticks) >= hz) { /* * Kill something, maximum rate once per second to give * the process time to free up sufficient memory. */ lastkillticks = ticks; info.bigproc = NULL; info.bigsize = 0; allproc_scan(vm_pageout_scan_callback, &info, 0); if (info.bigproc != NULL) { kprintf("Try to kill process %d %s\n", info.bigproc->p_pid, info.bigproc->p_comm); info.bigproc->p_nice = PRIO_MIN; info.bigproc->p_usched->resetpriority( FIRST_LWP_IN_PROC(info.bigproc)); atomic_set_int(&info.bigproc->p_flags, P_LOWMEMKILL); killproc(info.bigproc, "out of swap space"); wakeup(&vmstats.v_free_count); PRELE(info.bigproc); } } } static int vm_pageout_scan_callback(struct proc *p, void *data) { struct vm_pageout_scan_info *info = data; vm_offset_t size; /* * Never kill system processes or init. If we have configured swap * then try to avoid killing low-numbered pids. */ if ((p->p_flags & P_SYSTEM) || (p->p_pid == 1) || ((p->p_pid < 48) && (vm_swap_size != 0))) { return (0); } lwkt_gettoken(&p->p_token); /* * if the process is in a non-running type state, * don't touch it. */ if (p->p_stat != SACTIVE && p->p_stat != SSTOP && p->p_stat != SCORE) { lwkt_reltoken(&p->p_token); return (0); } /* * Get the approximate process size. Note that anonymous pages * with backing swap will be counted twice, but there should not * be too many such pages due to the stress the VM system is * under at this point. */ size = vmspace_anonymous_count(p->p_vmspace) + vmspace_swap_count(p->p_vmspace); /* * If the this process is bigger than the biggest one * remember it. */ if (info->bigsize < size) { if (info->bigproc) PRELE(info->bigproc); PHOLD(p); info->bigproc = p; info->bigsize = size; } lwkt_reltoken(&p->p_token); lwkt_yield(); return(0); } /* * This old guy slowly walks PQ_HOLD looking for pages which need to be * moved back to PQ_FREE. It is possible for pages to accumulate here * when vm_page_free() races against vm_page_unhold(), resulting in a * page being left on a PQ_HOLD queue with hold_count == 0. * * It is easier to handle this edge condition here, in non-critical code, * rather than enforce a spin-lock for every 1->0 transition in * vm_page_unhold(). * * NOTE: TAILQ_FOREACH becomes invalid the instant we unlock the queue. */ static void vm_pageout_scan_hold(int q, struct vm_page *marker) { vm_page_t m; long pcount; pcount = vm_page_queues[PQ_HOLD + q].lcnt; if (pcount > vm_pageout_stats_scan) pcount = vm_pageout_stats_scan; vm_page_queues_spin_lock(PQ_HOLD + q); while ((m = TAILQ_NEXT(marker, pageq)) != NULL && pcount-- > 0) { KKASSERT(m->queue == PQ_HOLD + q); TAILQ_REMOVE(&vm_page_queues[PQ_HOLD + q].pl, marker, pageq); TAILQ_INSERT_AFTER(&vm_page_queues[PQ_HOLD + q].pl, m, marker, pageq); if (m->flags & PG_MARKER) continue; /* * Process one page and return */ if (m->hold_count) break; kprintf("DEBUG: pageout HOLD->FREE %p\n", m); vm_page_hold(m); vm_page_queues_spin_unlock(PQ_HOLD + q); vm_page_unhold(m); /* reprocess */ vm_page_queues_spin_lock(PQ_HOLD + q); } /* * If queue exhausted move the marker back to the head. */ if (m == NULL) { TAILQ_REMOVE(&vm_page_queues[PQ_HOLD + q].pl, marker, pageq); TAILQ_INSERT_HEAD(&vm_page_queues[PQ_HOLD + q].pl, marker, pageq); } vm_page_queues_spin_unlock(PQ_HOLD + q); } /* * This code maintains the m->act for active pages. The scan occurs only * as long as the pageout daemon is not running or the inactive target has * not been reached. * * The restrictions prevent an idle machine from degrading all VM pages * m->act to 0 or nearly 0, which makes the field useless. For example, if * a workstation user goes to bed. */ static void vm_pageout_page_stats(int q, struct vm_page *marker, long *counterp) { struct vpgqueues *pq = &vm_page_queues[PQ_ACTIVE + q]; vm_page_t m; long pcount; /* Number of pages to check */ /* * No point scanning the active queue if it is smaller than * 1/2 usable memory. This most typically occurs at system * startup or if a huge amount of memory has just been freed. */ if (vmstats.v_active_count < vmstats.v_free_count + vmstats.v_cache_count + vmstats.v_inactive_count) { return; } /* * Generally do not scan if the pageout daemon is not running * or the inactive target has been reached. However, we override * this and scan anyway for N seconds after the pageout daemon last * ran. * * This last bit is designed to give the system a little time to * stage more pages for potential deactivation. In this situation, * if the inactive target has been met, we just update m->act_count * and do not otherwise mess with the page. But we don't want it * to run forever because that would cause m->act to become unusable * if the machine were to become idle. */ if (vm_pages_needed == 0 && !vm_paging_inactive()) { if (time_uptime - vm_pagedaemon_uptime > vm_pageout_stats_rsecs) return; } if (vm_pageout_debug) { static time_t save_time; if (save_time != time_uptime) { save_time = time_uptime; kprintf("DEACTIVATE Q=%4d N=%ld\n", q, vm_paging_inactive_count()); } } /* * Limited scan to reduce cpu glitches, just in case the * pmap_ts_referenced() burns a lot of CPU. */ pcount = pq->lcnt; if (pcount > vm_pageout_stats_scan) pcount = vm_pageout_stats_scan; vm_page_queues_spin_lock(PQ_ACTIVE + q); /* * Queue locked at top of loop to avoid stack marker issues. */ while ((m = TAILQ_NEXT(marker, pageq)) != NULL && pcount-- > 0) { int actcount; KKASSERT(m->queue == PQ_ACTIVE + q); TAILQ_REMOVE(&pq->pl, marker, pageq); TAILQ_INSERT_AFTER(&pq->pl, m, marker, pageq); /* * Skip marker pages (atomic against other markers to avoid * infinite hop-over scans). */ if (m->flags & PG_MARKER) continue; ++counterp[0]; /* * Ignore pages we can't busy */ if (vm_page_busy_try(m, TRUE)) { continue; } /* * Remaining operations run with the page busy and neither * the page or the queue will be spin-locked. */ KKASSERT(m->queue == PQ_ACTIVE + q); vm_page_queues_spin_unlock(PQ_ACTIVE + q); /* * We can just remove wired pages from the queue */ if (m->wire_count) { vm_page_unqueue_nowakeup(m); vm_page_wakeup(m); goto next; } /* * We now have a safely busied page, the page and queue * spinlocks have been released. * * Ignore held and wired pages */ if (m->hold_count || m->wire_count) { vm_page_wakeup(m); goto next; } /* * Calculate activity */ actcount = 0; if (m->flags & PG_REFERENCED) { vm_page_flag_clear(m, PG_REFERENCED); actcount += 1; } actcount += pmap_ts_referenced(m); /* * Update act_count and move page to end of queue. */ if (actcount) { m->act_count += ACT_ADVANCE + actcount; if (m->act_count > ACT_MAX) m->act_count = ACT_MAX; #if 0 vm_page_and_queue_spin_lock(m); if (m->queue - m->pc == PQ_ACTIVE) { TAILQ_REMOVE(&pq->pl, m, pageq); TAILQ_INSERT_TAIL(&pq->pl, m, pageq); } vm_page_and_queue_spin_unlock(m); #endif vm_page_wakeup(m); goto next; } if (m->act_count == 0) { /* * If the deactivation target has not been reached * we try to deactivate the page. * * If the deactivation target has been reached it * is a complete waste of time (both now and later) * to try to deactivate more pages. */ if (vm_paging_inactive()) { vm_page_protect(m, VM_PROT_NONE); vm_page_deactivate(m); } ++counterp[1]; } else { m->act_count -= min(m->act_count, ACT_DECLINE); #if 0 vm_page_and_queue_spin_lock(m); if (m->queue - m->pc == PQ_ACTIVE) { TAILQ_REMOVE(&pq->pl, m, pageq); TAILQ_INSERT_TAIL(&pq->pl, m, pageq); } vm_page_and_queue_spin_unlock(m); #endif if (m->act_count < vm_pageout_stats_actcmp) { if (vm_paging_inactive()) { vm_page_protect(m, VM_PROT_NONE); vm_page_deactivate(m); } ++counterp[1]; } } vm_page_wakeup(m); next: vm_page_queues_spin_lock(PQ_ACTIVE + q); } /* * If the queue has been exhausted move the marker back to the head. */ if (m == NULL) { TAILQ_REMOVE(&pq->pl, marker, pageq); TAILQ_INSERT_HEAD(&pq->pl, marker, pageq); } /* * Remove our local marker * * Page queue still spin-locked. */ vm_page_queues_spin_unlock(PQ_ACTIVE + q); /* * After roughly every (inalim) pages determine if we are making * appropriate progress. If we are then reduce the comparison point * for act_count, and if we are not increase the comparison point. * * This allows us to handle heavier loads and also balances the * code, particularly at startup. */ if (counterp[0] > vm_pageout_stats_inalim) { if (counterp[1] < vm_pageout_stats_inamin) { if (vm_pageout_stats_actcmp < ACT_MAX * 3 / 4) ++vm_pageout_stats_actcmp; } else { if (vm_pageout_stats_actcmp > 0) --vm_pageout_stats_actcmp; } counterp[0] = 0; counterp[1] = 0; } } static void vm_pageout_free_page_calc(vm_size_t count) { /* * v_free_min normal allocations * v_free_reserved system allocations * v_pageout_free_min allocations by pageout daemon * v_interrupt_free_min low level allocations (e.g swap structures) * * v_free_min is used to generate several other baselines, and they * can get pretty silly on systems with a lot of memory. */ vmstats.v_free_min = 64 + vmstats.v_page_count / 200; vmstats.v_free_reserved = vmstats.v_free_min * 4 / 8 + 7; vmstats.v_free_severe = vmstats.v_free_min * 4 / 8 + 0; vmstats.v_pageout_free_min = vmstats.v_free_min * 2 / 8 + 7; vmstats.v_interrupt_free_min = vmstats.v_free_min * 1 / 8 + 7; } /* * vm_pageout is the high level pageout daemon. TWO kernel threads run * this daemon, the primary pageout daemon and the emergency pageout daemon. * * The emergency pageout daemon takes over when the primary pageout daemon * deadlocks. The emergency pageout daemon ONLY pages out to swap, thus * avoiding the many low-memory deadlocks which can occur when paging out * to VFS's. */ static void vm_pageout_thread(void) { int pass; int q; int q1iterator = 0; int q2iterator = 0; int q3iterator = 0; int isep; enum { PAGING_IDLE, PAGING_TARGET1, PAGING_TARGET2 } state; struct markers *markers; long scounter[2] = { 0, 0 }; time_t warn_time; curthread->td_flags |= TDF_SYSTHREAD; state = PAGING_IDLE; /* * Allocate continuous markers for hold, stats (active), and * paging active queue scan. These scans occur incrementally. */ markers = kmalloc(sizeof(*markers) * PQ_L2_SIZE, M_PAGEOUT, M_WAITOK | M_ZERO); for (q = 0; q < PQ_L2_SIZE; ++q) { struct markers *mark = &markers[q]; mark->hold.flags = PG_FICTITIOUS | PG_MARKER; mark->hold.busy_count = PBUSY_LOCKED; mark->hold.queue = PQ_HOLD + q; mark->hold.pc = PQ_HOLD + q; mark->hold.wire_count = 1; vm_page_queues_spin_lock(PQ_HOLD + q); TAILQ_INSERT_HEAD(&vm_page_queues[PQ_HOLD + q].pl, &mark->hold, pageq); vm_page_queues_spin_unlock(PQ_HOLD + q); mark->stat.flags = PG_FICTITIOUS | PG_MARKER; mark->stat.busy_count = PBUSY_LOCKED; mark->stat.queue = PQ_ACTIVE + q; mark->stat.pc = PQ_ACTIVE + q; mark->stat.wire_count = 1; vm_page_queues_spin_lock(PQ_ACTIVE + q); TAILQ_INSERT_HEAD(&vm_page_queues[PQ_ACTIVE + q].pl, &mark->stat, pageq); vm_page_queues_spin_unlock(PQ_ACTIVE + q); mark->pact.flags = PG_FICTITIOUS | PG_MARKER; mark->pact.busy_count = PBUSY_LOCKED; mark->pact.queue = PQ_ACTIVE + q; mark->pact.pc = PQ_ACTIVE + q; mark->pact.wire_count = 1; vm_page_queues_spin_lock(PQ_ACTIVE + q); TAILQ_INSERT_HEAD(&vm_page_queues[PQ_ACTIVE + q].pl, &mark->pact, pageq); vm_page_queues_spin_unlock(PQ_ACTIVE + q); } /* * We only need to setup once. */ isep = 0; if (curthread == emergpager) { isep = 1; goto skip_setup; } /* * Initialize vm_max_launder per pageout pass to be 1/16 * of total physical memory, plus a little slop. */ if (vm_max_launder == 0) vm_max_launder = physmem / 256 + 16; /* * Initialize some paging parameters. */ vm_pageout_free_page_calc(vmstats.v_page_count); /* * Basic pageout daemon paging operation settings */ vmstats.v_free_target = vmstats.v_free_min * 2; vmstats.v_paging_wait = vmstats.v_free_min * 2; vmstats.v_paging_start = vmstats.v_free_min * 3; vmstats.v_paging_target1 = vmstats.v_free_min * 4; vmstats.v_paging_target2 = vmstats.v_free_min * 5; /* * NOTE: With the new buffer cache b_act_count we want the default * inactive target to be a percentage of available memory. * * The inactive target essentially determines the minimum * number of 'temporary' pages capable of caching one-time-use * files when the VM system is otherwise full of pages * belonging to multi-time-use files or active program data. * * NOTE: The inactive target is aggressively persued only if the * inactive queue becomes too small. If the inactive queue * is large enough to satisfy page movement to free+cache * then it is repopulated more slowly from the active queue. * This allows a general inactive_target default to be set. * * There is an issue here for processes which sit mostly idle * 'overnight', such as sshd, tcsh, and X. Any movement from * the active queue will eventually cause such pages to * recycle eventually causing a lot of paging in the morning. * To reduce the incidence of this pages cycled out of the * buffer cache are moved directly to the inactive queue if * they were only used once or twice. * * The vfs.vm_cycle_point sysctl can be used to adjust this. * Increasing the value (up to 64) increases the number of * buffer recyclements which go directly to the inactive queue. * * NOTE: There is 'cache target'. The combined (free + cache( target * is handled by the v_paging_* targets above. */ vmstats.v_inactive_target = vmstats.v_free_count / 16; //vmstats.v_inactive_target = vmstats.v_free_min * 4; /* XXX does not really belong here */ if (vm_page_max_wired == 0) vm_page_max_wired = vmstats.v_free_count / 3; /* * page stats operation. * * scan - needs to be large enough for decent turn-around but * not so large that it eats a ton of CPU. Pages per run. * * ticks - interval per run in ticks. * * run - number of seconds after the pagedaemon has run that * we continue to collect page stats, after which we stop. * * Calculated for 50% coverage. * */ if (vm_pageout_stats_scan == 0) { vm_pageout_stats_scan = vmstats.v_free_count / PQ_L2_SIZE / 16; if (vm_pageout_stats_scan < 16) vm_pageout_stats_scan = 16; } if (vm_pageout_stats_ticks == 0) vm_pageout_stats_ticks = hz / 10; vm_pagedaemon_uptime = time_uptime; swap_pager_swap_init(); atomic_swap_int(&sequence_emerg_pager, 1); wakeup(&sequence_emerg_pager); skip_setup: /* * Sequence emergency pager startup */ if (isep) { while (sequence_emerg_pager == 0) tsleep(&sequence_emerg_pager, 0, "pstartup", hz); } pass = 0; warn_time = time_uptime; /* * The pageout daemon is never done, so loop forever. * * WARNING! This code is being executed by two kernel threads * potentially simultaneously. */ while (TRUE) { int error; long avail_shortage; long inactive_shortage; long vnodes_skipped = 0; long recycle_count = 0; long tmp; /* * Don't let pass overflow */ if (pass > 0x7FFF0000) pass = 0x70000000; /* * Wait for an action request. If we timeout check to * see if paging is needed (in case the normal wakeup * code raced us). */ if (isep) { /* * Emergency pagedaemon monitors the primary * pagedaemon while vm_pages_needed != 0. * * The emergency pagedaemon only runs if VM paging * is needed and the primary pagedaemon has not * updated vm_pagedaemon_uptime for more than 2 * seconds. */ if (vm_pages_needed) tsleep(&vm_pagedaemon_uptime, 0, "psleep", hz); else tsleep(&vm_pagedaemon_uptime, 0, "psleep", hz*10); if (vm_pages_needed == 0) { pass = 0; continue; } if ((int)(time_uptime - vm_pagedaemon_uptime) < 2) { pass = 0; continue; } } else { /* * Primary pagedaemon * * Do an unconditional partial scan to deal with * PQ_HOLD races and to maintain active stats on * pages that are in PQ_ACTIVE. */ vm_pageout_scan_hold(q3iterator & PQ_L2_MASK, &markers[q3iterator & PQ_L2_MASK].hold); vm_pageout_page_stats(q3iterator & PQ_L2_MASK, &markers[q3iterator & PQ_L2_MASK].stat, scounter); ++q3iterator; /* * Primary idle sleep loop, check condition after * sleep. * * NOTE: State will not be IDLE if vm_pages_needed * is non-zero. */ if (vm_pages_needed == 0) { error = tsleep(&vm_pages_needed, 0, "psleep", vm_pageout_stats_ticks); if (error && vm_paging_start(0) == 0 && vm_pages_needed == 0) { continue; } vm_pagedaemon_uptime = time_uptime; vm_pages_needed = 1; state = PAGING_TARGET1; /* * Wake the emergency pagedaemon up so it * can monitor us. It will automatically * go back into a long sleep when * vm_pages_needed returns to 0. */ wakeup(&vm_pagedaemon_uptime); } } mycpu->gd_cnt.v_pdwakeups++; /* * Scan for INACTIVE->CLEAN/PAGEOUT * * This routine tries to avoid thrashing the system with * unnecessary activity. * * Calculate our target for the number of free+cache pages we * want to get to. This is higher then the number that causes * allocations to stall (severe) in order to provide hysteresis, * and if we don't make it all the way but get to the minimum * we're happy. Goose it a bit if there are multiple requests * for memory. * * Don't reduce avail_shortage inside the loop or the * PQAVERAGE() calculation will break. * * NOTE! deficit is differentiated from avail_shortage as * REQUIRING at least (deficit) pages to be cleaned, * even if the page queues are in good shape. This * is used primarily for handling per-process * RLIMIT_RSS and may also see small values when * processes block due to low memory. */ vmstats_rollup(); if (isep == 0) vm_pagedaemon_uptime = time_uptime; if (state == PAGING_TARGET1) { avail_shortage = vm_paging_target1_count() + vm_pageout_deficit; } else { avail_shortage = vm_paging_target2_count() + vm_pageout_deficit; } vm_pageout_deficit = 0; if (avail_shortage > 0) { long delta = 0; long counts[4] = { 0, 0, 0, 0 }; long use = avail_shortage; int qq; if (vm_pageout_debug) { static time_t save_time3; if (save_time3 != time_uptime) { save_time3 = time_uptime; kprintf("scan_inactive " "pass %d isep=%d\n", pass, isep); } } /* * Once target1 is achieved we move on to target2, * but pageout more lazily in smaller batches. */ if (state == PAGING_TARGET2 && use > vmstats.v_inactive_target / 10) { use = vmstats.v_inactive_target / 10 + 1; } qq = q1iterator; for (q = 0; q < PQ_L2_SIZE; ++q) { delta += vm_pageout_scan_inactive( pass / MAXSCAN_DIVIDER, qq & PQ_L2_MASK, PQAVERAGE(use), &vnodes_skipped, counts); if (isep) --qq; else ++qq; if (avail_shortage - delta <= 0) break; /* * It is possible for avail_shortage to be * very large. If a large program exits or * frees a ton of memory all at once, we do * not have to continue deactivations. * * (We will still run the active->inactive * target, however). */ if (!vm_paging_target2() && !vm_paging_min_dnc(vm_page_free_hysteresis)) { avail_shortage = 0; break; } } if (vm_pageout_debug) { static time_t save_time2; if (save_time2 != time_uptime) { save_time2 = time_uptime; kprintf("flsh %ld cln %ld " "lru2 %ld react %ld " "delta %ld\n", counts[0], counts[1], counts[2], counts[3], delta); } } avail_shortage -= delta; q1iterator = qq; } /* * Figure out how many active pages we must deactivate. If * we were able to reach our target with just the inactive * scan above we limit the number of active pages we * deactivate to reduce unnecessary work. * * When calculating inactive_shortage notice that we are * departing from what vm_paging_inactive_count() does. * During paging, the free + cache queues are assumed to * be under stress, so only a pure inactive target is * calculated without taking into account v_free_min, * v_free_count, or v_cache_count. */ vmstats_rollup(); if (isep == 0) vm_pagedaemon_uptime = time_uptime; inactive_shortage = vmstats.v_inactive_target - vmstats.v_inactive_count; /* * If we were unable to free sufficient inactive pages to * satisfy the free/cache queue requirements then simply * reaching the inactive target may not be good enough. * Try to deactivate pages in excess of the target based * on the shortfall. * * However to prevent thrashing the VM system do not * deactivate more than an additional 1/10 the inactive * target's worth of active pages. */ if (avail_shortage > 0) { tmp = avail_shortage * 2; if (tmp > vmstats.v_inactive_target / 10) tmp = vmstats.v_inactive_target / 10; inactive_shortage += tmp; } /* * Only trigger a pmap cleanup on inactive shortage. */ if (isep == 0 && inactive_shortage > 0) { pmap_collect(); } /* * Scan for ACTIVE->INACTIVE * * Only trigger on inactive shortage. Triggering on * avail_shortage can starve the active queue with * unnecessary active->inactive transitions and destroy * performance. * * If this is the emergency pager, always try to move * a few pages from active to inactive because the inactive * queue might have enough pages, but not enough anonymous * pages. */ if (isep && inactive_shortage < vm_emerg_launder) inactive_shortage = vm_emerg_launder; if (/*avail_shortage > 0 ||*/ inactive_shortage > 0) { long delta = 0; int qq; qq = q2iterator; for (q = 0; q < PQ_L2_SIZE; ++q) { delta += vm_pageout_scan_active( pass / MAXSCAN_DIVIDER, qq & PQ_L2_MASK, PQAVERAGE(avail_shortage), PQAVERAGE(inactive_shortage), &markers[qq & PQ_L2_MASK].pact, &recycle_count); if (isep) --qq; else ++qq; if (inactive_shortage - delta <= 0 && avail_shortage - delta <= 0) { break; } /* * inactive_shortage can be a very large * number. This is intended to break out * early if our inactive_target has been * reached due to other system activity. */ if (vmstats.v_inactive_count > vmstats.v_inactive_target) { inactive_shortage = 0; break; } } inactive_shortage -= delta; avail_shortage -= delta; q2iterator = qq; } /* * Scan for CACHE->FREE * * Finally free enough cache pages to meet our free page * requirement and take more drastic measures if we are * still in trouble. */ vmstats_rollup(); if (isep == 0) vm_pagedaemon_uptime = time_uptime; vm_pageout_scan_cache(avail_shortage, pass / MAXSCAN_DIVIDER, vnodes_skipped, recycle_count); /* * This is a bit sophisticated because we do not necessarily * want to force paging until our targets are reached if we * were able to successfully retire the shortage we calculated. */ if (avail_shortage > 0) { /* * If we did not retire enough pages continue the * pageout operation until we are able to. It * takes MAXSCAN_DIVIDER passes to cover the entire * inactive list. * * We used to throw delays in here if paging went on * continuously but that really just makes things * worse. Just keep going. */ if (pass == 0) warn_time = time_uptime; ++pass; if (isep == 0 && time_uptime - warn_time >= 60) { kprintf("pagedaemon: WARNING! Continuous " "paging for %ld minutes\n", (time_uptime - warn_time ) / 60); warn_time = time_uptime; } if (vm_pages_needed) { /* * Normal operation, additional processes * have already kicked us. Retry immediately * unless swap space is completely full in * which case delay a bit. */ if (swap_pager_full) { tsleep(&vm_pages_needed, 0, "pdelay", hz / 5); } /* else immediate loop */ } /* else immediate loop */ } else { /* * Reset pass */ pass = 0; if (vm_paging_start(0) || vm_paging_min_dnc(vm_page_free_hysteresis)) { /* * Pages sufficiently exhausted to start * page-daemon in TARGET1 mode */ state = PAGING_TARGET1; vm_pages_needed = 2; /* * We can wakeup waiters if we are above * the wait point. */ if (!vm_paging_wait()) wakeup(&vmstats.v_free_count); } else if (vm_pages_needed) { /* * Continue paging until TARGET2 reached, * but waiters can be woken up. * * The PAGING_TARGET2 state tells the * pagedaemon to work a little less hard. */ if (vm_paging_target1()) { state = PAGING_TARGET1; vm_pages_needed = 2; } else if (vm_paging_target2()) { state = PAGING_TARGET2; vm_pages_needed = 2; } else { vm_pages_needed = 0; } wakeup(&vmstats.v_free_count); } /* else nothing to do here */ } } } static struct kproc_desc pg1_kp = { "pagedaemon", vm_pageout_thread, &pagethread }; SYSINIT(pagedaemon, SI_SUB_KTHREAD_PAGE, SI_ORDER_FIRST, kproc_start, &pg1_kp); static struct kproc_desc pg2_kp = { "emergpager", vm_pageout_thread, &emergpager }; SYSINIT(emergpager, SI_SUB_KTHREAD_PAGE, SI_ORDER_ANY, kproc_start, &pg2_kp); /* * Called after allocating a page out of the cache or free queue * to possibly wake the pagedaemon up to replentish our supply. * * We try to generate some hysteresis by waking the pagedaemon up * when our free+cache pages go below the free_min+cache_min level. * The pagedaemon tries to get the count back up to at least the * minimum, and through to the target level if possible. * * If the pagedaemon is already active bump vm_pages_needed as a hint * that there are even more requests pending. * * SMP races ok? * No requirements. */ void pagedaemon_wakeup(void) { if (vm_paging_start(0) && curthread != pagethread) { if (vm_pages_needed <= 1) { vm_pages_needed = 1; /* SMP race ok */ wakeup(&vm_pages_needed); /* tickle pageout */ } else if (vm_paging_min()) { ++vm_pages_needed; /* SMP race ok */ /* a wakeup() would be wasted here */ } } } #if !defined(NO_SWAPPING) /* * SMP races ok? * No requirements. */ static void vm_req_vmdaemon(void) { static int lastrun = 0; if ((ticks > (lastrun + hz)) || (ticks < lastrun)) { wakeup(&vm_daemon_needed); lastrun = ticks; } } static int vm_daemon_callback(struct proc *p, void *data __unused); /* * No requirements. * * Scan processes for exceeding their rlimits, deactivate pages * when RSS is exceeded. */ static void vm_daemon(void) { while (TRUE) { tsleep(&vm_daemon_needed, 0, "psleep", 0); allproc_scan(vm_daemon_callback, NULL, 0); } } static int vm_daemon_callback(struct proc *p, void *data __unused) { struct vmspace *vm; vm_pindex_t limit, size; /* * if this is a system process or if we have already * looked at this process, skip it. */ lwkt_gettoken(&p->p_token); if (p->p_flags & (P_SYSTEM | P_WEXIT)) { lwkt_reltoken(&p->p_token); return (0); } /* * if the process is in a non-running type state, * don't touch it. */ if (p->p_stat != SACTIVE && p->p_stat != SSTOP && p->p_stat != SCORE) { lwkt_reltoken(&p->p_token); return (0); } /* * get a limit */ limit = OFF_TO_IDX(qmin(p->p_rlimit[RLIMIT_RSS].rlim_cur, p->p_rlimit[RLIMIT_RSS].rlim_max)); vm = p->p_vmspace; vmspace_hold(vm); size = pmap_resident_tlnw_count(&vm->vm_pmap); if (limit >= 0 && size > 4096 && size - 4096 >= limit && vm_pageout_memuse_mode >= 1) { vm_pageout_map_deactivate_pages(&vm->vm_map, limit); } vmspace_drop(vm); lwkt_reltoken(&p->p_token); return (0); } #endif |