sys/kern/vfs_bio.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 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 | /* * Copyright (c) 1994,1997 John S. Dyson * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice immediately at the beginning of the file, without modification, * this list of conditions, and the following disclaimer. * 2. Absolutely no warranty of function or purpose is made by the author * John S. Dyson. * * $FreeBSD: src/sys/kern/vfs_bio.c,v 1.242.2.20 2003/05/28 18:38:10 alc Exp $ */ /* * this file contains a new buffer I/O scheme implementing a coherent * VM object and buffer cache scheme. Pains have been taken to make * sure that the performance degradation associated with schemes such * as this is not realized. * * Author: John S. Dyson * Significant help during the development and debugging phases * had been provided by David Greenman, also of the FreeBSD core team. * * see man buf(9) for more info. Note that man buf(9) doesn't reflect * the actual buf/bio implementation in DragonFly. */ #include <sys/param.h> #include <sys/systm.h> #include <sys/buf.h> #include <sys/conf.h> #include <sys/devicestat.h> #include <sys/eventhandler.h> #include <sys/lock.h> #include <sys/malloc.h> #include <sys/mount.h> #include <sys/kernel.h> #include <sys/kthread.h> #include <sys/proc.h> #include <sys/reboot.h> #include <sys/resourcevar.h> #include <sys/sysctl.h> #include <sys/vmmeter.h> #include <sys/vnode.h> #include <sys/dsched.h> #include <vm/vm.h> #include <vm/vm_param.h> #include <vm/vm_kern.h> #include <vm/vm_pageout.h> #include <vm/vm_page.h> #include <vm/vm_object.h> #include <vm/vm_extern.h> #include <vm/vm_map.h> #include <vm/vm_pager.h> #include <vm/swap_pager.h> #include <sys/buf2.h> #include <sys/spinlock2.h> #include <vm/vm_page2.h> #include "opt_ddb.h" #ifdef DDB #include <ddb/ddb.h> #endif /* * Buffer queues. */ enum bufq_type { BQUEUE_NONE, /* not on any queue */ BQUEUE_LOCKED, /* locked buffers */ BQUEUE_CLEAN, /* non-B_DELWRI buffers */ BQUEUE_DIRTY, /* B_DELWRI buffers */ BQUEUE_DIRTY_HW, /* B_DELWRI buffers - heavy weight */ BQUEUE_EMPTY, /* empty buffer headers */ BUFFER_QUEUES /* number of buffer queues */ }; typedef enum bufq_type bufq_type_t; #define BD_WAKE_SIZE 16384 #define BD_WAKE_MASK (BD_WAKE_SIZE - 1) TAILQ_HEAD(bqueues, buf); struct bufpcpu { struct spinlock spin; struct bqueues bufqueues[BUFFER_QUEUES]; } __cachealign; struct bufpcpu bufpcpu[MAXCPU]; static MALLOC_DEFINE(M_BIOBUF, "BIO buffer", "BIO buffer"); struct buf *buf; /* buffer header pool */ static void vfs_clean_pages(struct buf *bp); static void vfs_clean_one_page(struct buf *bp, int pageno, vm_page_t m); #if 0 static void vfs_dirty_one_page(struct buf *bp, int pageno, vm_page_t m); #endif static void vfs_vmio_release(struct buf *bp); static int flushbufqueues(struct buf *marker, bufq_type_t q); static vm_page_t bio_page_alloc(struct buf *bp, vm_object_t obj, vm_pindex_t pg, int deficit); static void bd_signal(long totalspace); static void buf_daemon(void); static void buf_daemon_hw(void); /* * bogus page -- for I/O to/from partially complete buffers * this is a temporary solution to the problem, but it is not * really that bad. it would be better to split the buffer * for input in the case of buffers partially already in memory, * but the code is intricate enough already. */ vm_page_t bogus_page; /* * These are all static, but make the ones we export globals so we do * not need to use compiler magic. */ long bufspace; /* atomic ops */ long maxbufspace; long lobufspace, hibufspace; static long lorunningspace; static long hirunningspace; static long dirtykvaspace; /* atomic */ long dirtybufspace; /* atomic (global for systat) */ static long dirtybufcount; /* atomic */ static long dirtybufspacehw; /* atomic */ static long dirtybufcounthw; /* atomic */ static long runningbufspace; /* atomic */ static long runningbufcount; /* atomic */ long lodirtybufspace; long hidirtybufspace; static int getnewbufcalls; static int needsbuffer; /* atomic */ static int runningbufreq; /* atomic */ static int bd_request; /* atomic */ static int bd_request_hw; /* atomic */ static u_int bd_wake_ary[BD_WAKE_SIZE]; static u_int bd_wake_index; static u_int vm_cycle_point = 40; /* 23-36 will migrate more act->inact */ static int debug_commit; static int debug_bufbio; static int debug_kvabio; static long bufcache_bw = 200 * 1024 * 1024; static struct thread *bufdaemon_td; static struct thread *bufdaemonhw_td; static u_int lowmempgallocs; static u_int flushperqueue = 1024; /* * Sysctls for operational control of the buffer cache. */ SYSCTL_UINT(_vfs, OID_AUTO, flushperqueue, CTLFLAG_RW, &flushperqueue, 0, "Number of buffers to flush from each per-cpu queue"); SYSCTL_LONG(_vfs, OID_AUTO, lodirtybufspace, CTLFLAG_RW, &lodirtybufspace, 0, "Number of dirty buffers to flush before bufdaemon becomes inactive"); SYSCTL_LONG(_vfs, OID_AUTO, hidirtybufspace, CTLFLAG_RW, &hidirtybufspace, 0, "High watermark used to trigger explicit flushing of dirty buffers"); SYSCTL_LONG(_vfs, OID_AUTO, lorunningspace, CTLFLAG_RW, &lorunningspace, 0, "Minimum amount of buffer space required for active I/O"); SYSCTL_LONG(_vfs, OID_AUTO, hirunningspace, CTLFLAG_RW, &hirunningspace, 0, "Maximum amount of buffer space to usable for active I/O"); SYSCTL_LONG(_vfs, OID_AUTO, bufcache_bw, CTLFLAG_RW, &bufcache_bw, 0, "Buffer-cache -> VM page cache transfer bandwidth"); SYSCTL_UINT(_vfs, OID_AUTO, lowmempgallocs, CTLFLAG_RW, &lowmempgallocs, 0, "Page allocations done during periods of very low free memory"); SYSCTL_UINT(_vfs, OID_AUTO, vm_cycle_point, CTLFLAG_RW, &vm_cycle_point, 0, "Recycle pages to active or inactive queue transition pt 0-64"); /* * Sysctls determining current state of the buffer cache. */ SYSCTL_LONG(_vfs, OID_AUTO, nbuf, CTLFLAG_RD, &nbuf, 0, "Total number of buffers in buffer cache"); SYSCTL_LONG(_vfs, OID_AUTO, dirtykvaspace, CTLFLAG_RD, &dirtykvaspace, 0, "KVA reserved by dirty buffers (all)"); SYSCTL_LONG(_vfs, OID_AUTO, dirtybufspace, CTLFLAG_RD, &dirtybufspace, 0, "Pending bytes of dirty buffers (all)"); SYSCTL_LONG(_vfs, OID_AUTO, dirtybufspacehw, CTLFLAG_RD, &dirtybufspacehw, 0, "Pending bytes of dirty buffers (heavy weight)"); SYSCTL_LONG(_vfs, OID_AUTO, dirtybufcount, CTLFLAG_RD, &dirtybufcount, 0, "Pending number of dirty buffers"); SYSCTL_LONG(_vfs, OID_AUTO, dirtybufcounthw, CTLFLAG_RD, &dirtybufcounthw, 0, "Pending number of dirty buffers (heavy weight)"); SYSCTL_LONG(_vfs, OID_AUTO, runningbufspace, CTLFLAG_RD, &runningbufspace, 0, "I/O bytes currently in progress due to asynchronous writes"); SYSCTL_LONG(_vfs, OID_AUTO, runningbufcount, CTLFLAG_RD, &runningbufcount, 0, "I/O buffers currently in progress due to asynchronous writes"); SYSCTL_LONG(_vfs, OID_AUTO, maxbufspace, CTLFLAG_RD, &maxbufspace, 0, "Hard limit on maximum amount of memory usable for buffer space"); SYSCTL_LONG(_vfs, OID_AUTO, hibufspace, CTLFLAG_RD, &hibufspace, 0, "Soft limit on maximum amount of memory usable for buffer space"); SYSCTL_LONG(_vfs, OID_AUTO, lobufspace, CTLFLAG_RD, &lobufspace, 0, "Minimum amount of memory to reserve for system buffer space"); SYSCTL_LONG(_vfs, OID_AUTO, bufspace, CTLFLAG_RD, &bufspace, 0, "Amount of memory available for buffers"); SYSCTL_INT(_vfs, OID_AUTO, getnewbufcalls, CTLFLAG_RD, &getnewbufcalls, 0, "New buffer header acquisition requests"); SYSCTL_INT(_vfs, OID_AUTO, debug_commit, CTLFLAG_RW, &debug_commit, 0, ""); SYSCTL_INT(_vfs, OID_AUTO, debug_bufbio, CTLFLAG_RW, &debug_bufbio, 0, ""); SYSCTL_INT(_vfs, OID_AUTO, debug_kvabio, CTLFLAG_RW, &debug_kvabio, 0, ""); SYSCTL_INT(_debug_sizeof, OID_AUTO, buf, CTLFLAG_RD, 0, sizeof(struct buf), "sizeof(struct buf)"); char *buf_wmesg = BUF_WMESG; #define VFS_BIO_NEED_ANY 0x01 /* any freeable buffer */ #define VFS_BIO_NEED_UNUSED02 0x02 #define VFS_BIO_NEED_UNUSED04 0x04 #define VFS_BIO_NEED_BUFSPACE 0x08 /* wait for buf space, lo hysteresis */ /* * Called when buffer space is potentially available for recovery. * getnewbuf() will block on this flag when it is unable to free * sufficient buffer space. Buffer space becomes recoverable when * bp's get placed back in the queues. */ static __inline void bufspacewakeup(void) { /* * If someone is waiting for BUF space, wake them up. Even * though we haven't freed the kva space yet, the waiting * process will be able to now. */ for (;;) { int flags = needsbuffer; cpu_ccfence(); if ((flags & VFS_BIO_NEED_BUFSPACE) == 0) break; if (atomic_cmpset_int(&needsbuffer, flags, flags & ~VFS_BIO_NEED_BUFSPACE)) { wakeup(&needsbuffer); break; } /* retry */ } } /* * runningbufwakeup: * * Accounting for I/O in progress. * */ static __inline void runningbufwakeup(struct buf *bp) { long totalspace; long flags; if ((totalspace = bp->b_runningbufspace) != 0) { atomic_add_long(&runningbufspace, -totalspace); atomic_add_long(&runningbufcount, -1); bp->b_runningbufspace = 0; /* * see waitrunningbufspace() for limit test. */ for (;;) { flags = runningbufreq; cpu_ccfence(); if (flags == 0) break; if (atomic_cmpset_int(&runningbufreq, flags, 0)) { wakeup(&runningbufreq); break; } /* retry */ } bd_signal(totalspace); } } /* * bufcountwakeup: * * Called when a buffer has been added to one of the free queues to * account for the buffer and to wakeup anyone waiting for free buffers. * This typically occurs when large amounts of metadata are being handled * by the buffer cache ( else buffer space runs out first, usually ). */ static __inline void bufcountwakeup(void) { long flags; for (;;) { flags = needsbuffer; if (flags == 0) break; if (atomic_cmpset_int(&needsbuffer, flags, (flags & ~VFS_BIO_NEED_ANY))) { wakeup(&needsbuffer); break; } /* retry */ } } /* * waitrunningbufspace() * * If runningbufspace exceeds 4/6 hirunningspace we block until * runningbufspace drops to 3/6 hirunningspace. We also block if another * thread blocked here in order to be fair, even if runningbufspace * is now lower than the limit. * * The caller may be using this function to block in a tight loop, we * must block while runningbufspace is greater than at least * hirunningspace * 3 / 6. */ void waitrunningbufspace(void) { long limit = hirunningspace * 4 / 6; long flags; while (runningbufspace > limit || runningbufreq) { tsleep_interlock(&runningbufreq, 0); flags = atomic_fetchadd_int(&runningbufreq, 1); if (runningbufspace > limit || flags) tsleep(&runningbufreq, PINTERLOCKED, "wdrn1", hz); } } /* * buf_dirty_count_severe: * * Return true if we have too many dirty buffers. */ int buf_dirty_count_severe(void) { return (runningbufspace + dirtykvaspace >= hidirtybufspace || dirtybufcount >= nbuf / 2); } /* * Return true if the amount of running I/O is severe and BIOQ should * start bursting. */ int buf_runningbufspace_severe(void) { return (runningbufspace >= hirunningspace * 4 / 6); } /* * vfs_buf_test_cache: * * Called when a buffer is extended. This function clears the B_CACHE * bit if the newly extended portion of the buffer does not contain * valid data. * * NOTE! Dirty VM pages are not processed into dirty (B_DELWRI) buffer * cache buffers. The VM pages remain dirty, as someone had mmap()'d * them while a clean buffer was present. */ static __inline__ void vfs_buf_test_cache(struct buf *bp, vm_ooffset_t foff, vm_offset_t off, vm_offset_t size, vm_page_t m) { if (bp->b_flags & B_CACHE) { int base = (foff + off) & PAGE_MASK; if (vm_page_is_valid(m, base, size) == 0) bp->b_flags &= ~B_CACHE; } } /* * bd_speedup() * * Spank the buf_daemon[_hw] if the total dirty buffer space exceeds the * low water mark. */ static __inline__ void bd_speedup(void) { if (dirtykvaspace < lodirtybufspace && dirtybufcount < nbuf / 2) return; if (bd_request == 0 && (dirtykvaspace > lodirtybufspace / 2 || dirtybufcount - dirtybufcounthw >= nbuf / 2)) { if (atomic_fetchadd_int(&bd_request, 1) == 0) wakeup(&bd_request); } if (bd_request_hw == 0 && (dirtykvaspace > lodirtybufspace / 2 || dirtybufcounthw >= nbuf / 2)) { if (atomic_fetchadd_int(&bd_request_hw, 1) == 0) wakeup(&bd_request_hw); } } /* * bd_heatup() * * Get the buf_daemon heated up when the number of running and dirty * buffers exceeds the mid-point. * * Return the total number of dirty bytes past the second mid point * as a measure of how much excess dirty data there is in the system. */ long bd_heatup(void) { long mid1; long mid2; long totalspace; mid1 = lodirtybufspace + (hidirtybufspace - lodirtybufspace) / 2; totalspace = runningbufspace + dirtykvaspace; if (totalspace >= mid1 || dirtybufcount >= nbuf / 2) { bd_speedup(); mid2 = mid1 + (hidirtybufspace - mid1) / 2; if (totalspace >= mid2) return(totalspace - mid2); } return(0); } /* * bd_wait() * * Wait for the buffer cache to flush (totalspace) bytes worth of * buffers, then return. * * Regardless this function blocks while the number of dirty buffers * exceeds hidirtybufspace. */ void bd_wait(long totalspace) { u_int i; u_int j; u_int mi; int count; if (curthread == bufdaemonhw_td || curthread == bufdaemon_td) return; while (totalspace > 0) { bd_heatup(); /* * Order is important. Suppliers adjust bd_wake_index after * updating runningbufspace/dirtykvaspace. We want to fetch * bd_wake_index before accessing. Any error should thus * be in our favor. */ i = atomic_fetchadd_int(&bd_wake_index, 0); if (totalspace > runningbufspace + dirtykvaspace) totalspace = runningbufspace + dirtykvaspace; count = totalspace / MAXBSIZE; if (count >= BD_WAKE_SIZE / 2) count = BD_WAKE_SIZE / 2; i = i + count; mi = i & BD_WAKE_MASK; /* * This is not a strict interlock, so we play a bit loose * with locking access to dirtybufspace*. We have to re-check * bd_wake_index to ensure that it hasn't passed us. */ tsleep_interlock(&bd_wake_ary[mi], 0); atomic_add_int(&bd_wake_ary[mi], 1); j = atomic_fetchadd_int(&bd_wake_index, 0); if ((int)(i - j) >= 0) tsleep(&bd_wake_ary[mi], PINTERLOCKED, "flstik", hz); totalspace = runningbufspace + dirtykvaspace - hidirtybufspace; } } /* * bd_signal() * * This function is called whenever runningbufspace or dirtykvaspace * is reduced. Track threads waiting for run+dirty buffer I/O * complete. */ static void bd_signal(long totalspace) { u_int i; if (totalspace > 0) { if (totalspace > MAXBSIZE * BD_WAKE_SIZE) totalspace = MAXBSIZE * BD_WAKE_SIZE; while (totalspace > 0) { i = atomic_fetchadd_int(&bd_wake_index, 1); i &= BD_WAKE_MASK; if (atomic_readandclear_int(&bd_wake_ary[i])) wakeup(&bd_wake_ary[i]); totalspace -= MAXBSIZE; } } } /* * BIO tracking support routines. * * Release a ref on a bio_track. Wakeup requests are atomically released * along with the last reference so bk_active will never wind up set to * only 0x80000000. */ static void bio_track_rel(struct bio_track *track) { int active; int desired; /* * Shortcut */ active = track->bk_active; if (active == 1 && atomic_cmpset_int(&track->bk_active, 1, 0)) return; /* * Full-on. Note that the wait flag is only atomically released on * the 1->0 count transition. * * We check for a negative count transition using bit 30 since bit 31 * has a different meaning. */ for (;;) { desired = (active & 0x7FFFFFFF) - 1; if (desired) desired |= active & 0x80000000; if (atomic_cmpset_int(&track->bk_active, active, desired)) { if (desired & 0x40000000) panic("bio_track_rel: bad count: %p", track); if (active & 0x80000000) wakeup(track); break; } active = track->bk_active; } } /* * Wait for the tracking count to reach 0. * * Use atomic ops such that the wait flag is only set atomically when * bk_active is non-zero. */ int bio_track_wait(struct bio_track *track, int slp_flags, int slp_timo) { int active; int desired; int error; /* * Shortcut */ if (track->bk_active == 0) return(0); /* * Full-on. Note that the wait flag may only be atomically set if * the active count is non-zero. * * NOTE: We cannot optimize active == desired since a wakeup could * clear active prior to our tsleep_interlock(). */ error = 0; while ((active = track->bk_active) != 0) { cpu_ccfence(); desired = active | 0x80000000; tsleep_interlock(track, slp_flags); if (atomic_cmpset_int(&track->bk_active, active, desired)) { error = tsleep(track, slp_flags | PINTERLOCKED, "trwait", slp_timo); if (error) break; } } return (error); } /* * bufinit: * * Load time initialisation of the buffer cache, called from machine * dependant initialization code. */ static void bufinit(void *dummy __unused) { struct bufpcpu *pcpu; struct buf *bp; vm_offset_t bogus_offset; int i; int j; long n; /* next, make a null set of free lists */ for (i = 0; i < ncpus; ++i) { pcpu = &bufpcpu[i]; spin_init(&pcpu->spin, "bufinit"); for (j = 0; j < BUFFER_QUEUES; j++) TAILQ_INIT(&pcpu->bufqueues[j]); } /* * Finally, initialize each buffer header and stick on empty q. * Each buffer gets its own KVA reservation. */ i = 0; pcpu = &bufpcpu[i]; for (n = 0; n < nbuf; n++) { bp = &buf[n]; bzero(bp, sizeof *bp); bp->b_flags = B_INVAL; /* we're just an empty header */ bp->b_cmd = BUF_CMD_DONE; bp->b_qindex = BQUEUE_EMPTY; bp->b_qcpu = i; bp->b_kvabase = (void *)(vm_map_min(buffer_map) + MAXBSIZE * n); bp->b_kvasize = MAXBSIZE; initbufbio(bp); xio_init(&bp->b_xio); buf_dep_init(bp); TAILQ_INSERT_TAIL(&pcpu->bufqueues[bp->b_qindex], bp, b_freelist); i = (i + 1) % ncpus; pcpu = &bufpcpu[i]; } /* * maxbufspace is the absolute maximum amount of buffer space we are * allowed to reserve in KVM and in real terms. The absolute maximum * is nominally used by buf_daemon. hibufspace is the nominal maximum * used by most other processes. The differential is required to * ensure that buf_daemon is able to run when other processes might * be blocked waiting for buffer space. * * Calculate hysteresis (lobufspace, hibufspace). Don't make it * too large or we might lockup a cpu for too long a period of * time in our tight loop. */ maxbufspace = nbuf * NBUFCALCSIZE; hibufspace = lmax(3 * maxbufspace / 4, maxbufspace - MAXBSIZE * 10); lobufspace = hibufspace * 7 / 8; if (hibufspace - lobufspace > 64 * 1024 * 1024) lobufspace = hibufspace - 64 * 1024 * 1024; if (lobufspace > hibufspace - MAXBSIZE) lobufspace = hibufspace - MAXBSIZE; lorunningspace = 512 * 1024; /* hirunningspace -- see below */ /* * Reduce the chance of a deadlock occuring by limiting the number * of delayed-write dirty buffers we allow to stack up. * * We don't want too much actually queued to the device at once * (XXX this needs to be per-mount!), because the buffers will * wind up locked for a very long period of time while the I/O * drains. */ hidirtybufspace = hibufspace / 2; /* dirty + running */ hirunningspace = hibufspace / 16; /* locked & queued to device */ if (hirunningspace < 1024 * 1024) hirunningspace = 1024 * 1024; dirtykvaspace = 0; dirtybufspace = 0; dirtybufspacehw = 0; lodirtybufspace = hidirtybufspace / 2; /* * Maximum number of async ops initiated per buf_daemon loop. This is * somewhat of a hack at the moment, we really need to limit ourselves * based on the number of bytes of I/O in-transit that were initiated * from buf_daemon. */ bogus_offset = kmem_alloc_pageable(kernel_map, PAGE_SIZE, VM_SUBSYS_BOGUS); vm_object_hold(kernel_object); bogus_page = vm_page_alloc(kernel_object, (bogus_offset >> PAGE_SHIFT), VM_ALLOC_NORMAL); vm_object_drop(kernel_object); vmstats.v_wire_count++; } SYSINIT(do_bufinit, SI_BOOT2_MACHDEP, SI_ORDER_FIRST, bufinit, NULL); /* * Initialize the embedded bio structures, typically used by * deprecated code which tries to allocate its own struct bufs. */ void initbufbio(struct buf *bp) { bp->b_bio1.bio_buf = bp; bp->b_bio1.bio_prev = NULL; bp->b_bio1.bio_offset = NOOFFSET; bp->b_bio1.bio_next = &bp->b_bio2; bp->b_bio1.bio_done = NULL; bp->b_bio1.bio_flags = 0; bp->b_bio2.bio_buf = bp; bp->b_bio2.bio_prev = &bp->b_bio1; bp->b_bio2.bio_offset = NOOFFSET; bp->b_bio2.bio_next = NULL; bp->b_bio2.bio_done = NULL; bp->b_bio2.bio_flags = 0; BUF_LOCKINIT(bp); } /* * Reinitialize the embedded bio structures as well as any additional * translation cache layers. */ void reinitbufbio(struct buf *bp) { struct bio *bio; for (bio = &bp->b_bio1; bio; bio = bio->bio_next) { bio->bio_done = NULL; bio->bio_offset = NOOFFSET; } } /* * Undo the effects of an initbufbio(). */ void uninitbufbio(struct buf *bp) { dsched_buf_exit(bp); BUF_LOCKFREE(bp); } /* * Push another BIO layer onto an existing BIO and return it. The new * BIO layer may already exist, holding cached translation data. */ struct bio * push_bio(struct bio *bio) { struct bio *nbio; if ((nbio = bio->bio_next) == NULL) { int index = bio - &bio->bio_buf->b_bio_array[0]; if (index >= NBUF_BIO - 1) { panic("push_bio: too many layers %d for bp %p", index, bio->bio_buf); } nbio = &bio->bio_buf->b_bio_array[index + 1]; bio->bio_next = nbio; nbio->bio_prev = bio; nbio->bio_buf = bio->bio_buf; nbio->bio_offset = NOOFFSET; nbio->bio_done = NULL; nbio->bio_next = NULL; } KKASSERT(nbio->bio_done == NULL); return(nbio); } /* * Pop a BIO translation layer, returning the previous layer. The * must have been previously pushed. */ struct bio * pop_bio(struct bio *bio) { return(bio->bio_prev); } void clearbiocache(struct bio *bio) { while (bio) { bio->bio_offset = NOOFFSET; bio = bio->bio_next; } } /* * Remove the buffer from the appropriate free list. * (caller must be locked) */ static __inline void _bremfree(struct buf *bp) { struct bufpcpu *pcpu = &bufpcpu[bp->b_qcpu]; if (bp->b_qindex != BQUEUE_NONE) { KASSERT(BUF_LOCKINUSE(bp), ("bremfree: bp %p not locked", bp)); TAILQ_REMOVE(&pcpu->bufqueues[bp->b_qindex], bp, b_freelist); bp->b_qindex = BQUEUE_NONE; } else { if (!BUF_LOCKINUSE(bp)) panic("bremfree: removing a buffer not on a queue"); } } /* * bremfree() - must be called with a locked buffer */ void bremfree(struct buf *bp) { struct bufpcpu *pcpu = &bufpcpu[bp->b_qcpu]; spin_lock(&pcpu->spin); _bremfree(bp); spin_unlock(&pcpu->spin); } /* * bremfree_locked - must be called with pcpu->spin locked */ static void bremfree_locked(struct buf *bp) { _bremfree(bp); } /* * This version of bread issues any required I/O asynchronously and * makes a callback on completion. * * The callback must check whether BIO_DONE is set in the bio and issue * the bpdone(bp, 0) if it isn't. The callback is responsible for clearing * BIO_DONE and disposing of the I/O (bqrelse()ing it). */ void breadcb(struct vnode *vp, off_t loffset, int size, int bflags, void (*func)(struct bio *), void *arg) { struct buf *bp; bp = getblk(vp, loffset, size, 0, 0); /* if not found in cache, do some I/O */ if ((bp->b_flags & B_CACHE) == 0) { bp->b_flags &= ~(B_ERROR | B_EINTR | B_INVAL | B_NOTMETA); bp->b_flags |= bflags; bp->b_cmd = BUF_CMD_READ; bp->b_bio1.bio_done = func; bp->b_bio1.bio_caller_info1.ptr = arg; vfs_busy_pages(vp, bp); BUF_KERNPROC(bp); vn_strategy(vp, &bp->b_bio1); } else if (func) { /* * Since we are issuing the callback synchronously it cannot * race the BIO_DONE, so no need for atomic ops here. */ /*bp->b_bio1.bio_done = func;*/ bp->b_bio1.bio_caller_info1.ptr = arg; bp->b_bio1.bio_flags |= BIO_DONE; func(&bp->b_bio1); } else { bqrelse(bp); } } /* * breadnx() - Terminal function for bread() and breadn(). * * This function will start asynchronous I/O on read-ahead blocks as well * as satisfy the primary request. * * We must clear B_ERROR and B_INVAL prior to initiating I/O. If B_CACHE is * set, the buffer is valid and we do not have to do anything. */ int breadnx(struct vnode *vp, off_t loffset, int size, int bflags, off_t *raoffset, int *rabsize, int cnt, struct buf **bpp) { struct buf *bp, *rabp; int i; int rv = 0, readwait = 0; int blkflags = (bflags & B_KVABIO) ? GETBLK_KVABIO : 0; if (*bpp) bp = *bpp; else *bpp = bp = getblk(vp, loffset, size, blkflags, 0); /* if not found in cache, do some I/O */ if ((bp->b_flags & B_CACHE) == 0) { bp->b_flags &= ~(B_ERROR | B_EINTR | B_INVAL | B_NOTMETA); bp->b_flags |= bflags; bp->b_cmd = BUF_CMD_READ; bp->b_bio1.bio_done = biodone_sync; bp->b_bio1.bio_flags |= BIO_SYNC; vfs_busy_pages(vp, bp); vn_strategy(vp, &bp->b_bio1); ++readwait; } for (i = 0; i < cnt; i++, raoffset++, rabsize++) { if (inmem(vp, *raoffset)) continue; rabp = getblk(vp, *raoffset, *rabsize, GETBLK_KVABIO, 0); if ((rabp->b_flags & B_CACHE) == 0) { rabp->b_flags &= ~(B_ERROR | B_EINTR | B_INVAL | B_NOTMETA); rabp->b_flags |= (bflags & ~B_KVABIO); rabp->b_cmd = BUF_CMD_READ; vfs_busy_pages(vp, rabp); BUF_KERNPROC(rabp); vn_strategy(vp, &rabp->b_bio1); } else { brelse(rabp); } } if (readwait) rv = biowait(&bp->b_bio1, "biord"); return (rv); } /* * bwrite: * * Synchronous write, waits for completion. * * Write, release buffer on completion. (Done by iodone * if async). Do not bother writing anything if the buffer * is invalid. * * Note that we set B_CACHE here, indicating that buffer is * fully valid and thus cacheable. This is true even of NFS * now so we set it generally. This could be set either here * or in biodone() since the I/O is synchronous. We put it * here. */ int bwrite(struct buf *bp) { int error; if (bp->b_flags & B_INVAL) { brelse(bp); return (0); } if (BUF_LOCKINUSE(bp) == 0) panic("bwrite: buffer is not busy???"); /* * NOTE: We no longer mark the buffer clear prior to the vn_strategy() * call because it will remove the buffer from the vnode's * dirty buffer list prematurely and possibly cause filesystem * checks to race buffer flushes. This is now handled in * bpdone(). * * bundirty(bp); REMOVED */ bp->b_flags &= ~(B_ERROR | B_EINTR); bp->b_flags |= B_CACHE; bp->b_cmd = BUF_CMD_WRITE; bp->b_error = 0; bp->b_bio1.bio_done = biodone_sync; bp->b_bio1.bio_flags |= BIO_SYNC; vfs_busy_pages(bp->b_vp, bp); /* * Normal bwrites pipeline writes. NOTE: b_bufsize is only * valid for vnode-backed buffers. */ bsetrunningbufspace(bp, bp->b_bufsize); vn_strategy(bp->b_vp, &bp->b_bio1); error = biowait(&bp->b_bio1, "biows"); brelse(bp); return (error); } /* * bawrite: * * Asynchronous write. Start output on a buffer, but do not wait for * it to complete. The buffer is released when the output completes. * * bwrite() ( or the VOP routine anyway ) is responsible for handling * B_INVAL buffers. Not us. */ void bawrite(struct buf *bp) { if (bp->b_flags & B_INVAL) { brelse(bp); return; } if (BUF_LOCKINUSE(bp) == 0) panic("bawrite: buffer is not busy???"); /* * NOTE: We no longer mark the buffer clear prior to the vn_strategy() * call because it will remove the buffer from the vnode's * dirty buffer list prematurely and possibly cause filesystem * checks to race buffer flushes. This is now handled in * bpdone(). * * bundirty(bp); REMOVED */ bp->b_flags &= ~(B_ERROR | B_EINTR); bp->b_flags |= B_CACHE; bp->b_cmd = BUF_CMD_WRITE; bp->b_error = 0; KKASSERT(bp->b_bio1.bio_done == NULL); vfs_busy_pages(bp->b_vp, bp); /* * Normal bwrites pipeline writes. NOTE: b_bufsize is only * valid for vnode-backed buffers. */ bsetrunningbufspace(bp, bp->b_bufsize); BUF_KERNPROC(bp); vn_strategy(bp->b_vp, &bp->b_bio1); } /* * bdwrite: * * Delayed write. (Buffer is marked dirty). Do not bother writing * anything if the buffer is marked invalid. * * Note that since the buffer must be completely valid, we can safely * set B_CACHE. In fact, we have to set B_CACHE here rather then in * biodone() in order to prevent getblk from writing the buffer * out synchronously. */ void bdwrite(struct buf *bp) { if (BUF_LOCKINUSE(bp) == 0) panic("bdwrite: buffer is not busy"); if (bp->b_flags & B_INVAL) { brelse(bp); return; } bdirty(bp); dsched_buf_enter(bp); /* might stack */ /* * Set B_CACHE, indicating that the buffer is fully valid. This is * true even of NFS now. */ bp->b_flags |= B_CACHE; /* * This bmap keeps the system from needing to do the bmap later, * perhaps when the system is attempting to do a sync. Since it * is likely that the indirect block -- or whatever other datastructure * that the filesystem needs is still in memory now, it is a good * thing to do this. Note also, that if the pageout daemon is * requesting a sync -- there might not be enough memory to do * the bmap then... So, this is important to do. */ if (bp->b_bio2.bio_offset == NOOFFSET) { VOP_BMAP(bp->b_vp, bp->b_loffset, &bp->b_bio2.bio_offset, NULL, NULL, BUF_CMD_WRITE); } /* * Because the underlying pages may still be mapped and * writable trying to set the dirty buffer (b_dirtyoff/end) * range here will be inaccurate. * * However, we must still clean the pages to satisfy the * vnode_pager and pageout daemon, so they think the pages * have been "cleaned". What has really occured is that * they've been earmarked for later writing by the buffer * cache. * * So we get the b_dirtyoff/end update but will not actually * depend on it (NFS that is) until the pages are busied for * writing later on. */ vfs_clean_pages(bp); bqrelse(bp); /* * note: we cannot initiate I/O from a bdwrite even if we wanted to, * due to the softdep code. */ } /* * Fake write - return pages to VM system as dirty, leave the buffer clean. * This is used by tmpfs. * * It is important for any VFS using this routine to NOT use it for * IO_SYNC or IO_ASYNC operations which occur when the system really * wants to flush VM pages to backing store. */ void buwrite(struct buf *bp) { vm_page_t m; int i; /* * Only works for VMIO buffers. If the buffer is already * marked for delayed-write we can't avoid the bdwrite(). */ if ((bp->b_flags & B_VMIO) == 0 || (bp->b_flags & B_DELWRI)) { bdwrite(bp); return; } /* * Mark as needing a commit. */ for (i = 0; i < bp->b_xio.xio_npages; i++) { m = bp->b_xio.xio_pages[i]; vm_page_need_commit(m); } bqrelse(bp); } /* * bdirty: * * Turn buffer into delayed write request by marking it B_DELWRI. * B_RELBUF and B_NOCACHE must be cleared. * * We reassign the buffer to itself to properly update it in the * dirty/clean lists. * * Must be called from a critical section. * The buffer must be on BQUEUE_NONE. */ void bdirty(struct buf *bp) { KASSERT(bp->b_qindex == BQUEUE_NONE, ("bdirty: buffer %p still on queue %d", bp, bp->b_qindex)); if (bp->b_flags & B_NOCACHE) { kprintf("bdirty: clearing B_NOCACHE on buf %p\n", bp); bp->b_flags &= ~B_NOCACHE; } if (bp->b_flags & B_INVAL) { kprintf("bdirty: warning, dirtying invalid buffer %p\n", bp); } bp->b_flags &= ~B_RELBUF; if ((bp->b_flags & B_DELWRI) == 0) { lwkt_gettoken(&bp->b_vp->v_token); bp->b_flags |= B_DELWRI; reassignbuf(bp); lwkt_reltoken(&bp->b_vp->v_token); atomic_add_long(&dirtybufcount, 1); atomic_add_long(&dirtykvaspace, bp->b_kvasize); atomic_add_long(&dirtybufspace, bp->b_bufsize); if (bp->b_flags & B_HEAVY) { atomic_add_long(&dirtybufcounthw, 1); atomic_add_long(&dirtybufspacehw, bp->b_bufsize); } bd_heatup(); } } /* * Set B_HEAVY, indicating that this is a heavy-weight buffer that * needs to be flushed with a different buf_daemon thread to avoid * deadlocks. B_HEAVY also imposes restrictions in getnewbuf(). */ void bheavy(struct buf *bp) { if ((bp->b_flags & B_HEAVY) == 0) { bp->b_flags |= B_HEAVY; if (bp->b_flags & B_DELWRI) { atomic_add_long(&dirtybufcounthw, 1); atomic_add_long(&dirtybufspacehw, bp->b_bufsize); } } } /* * bundirty: * * Clear B_DELWRI for buffer. * * Must be called from a critical section. * * The buffer is typically on BQUEUE_NONE but there is one case in * brelse() that calls this function after placing the buffer on * a different queue. */ void bundirty(struct buf *bp) { if (bp->b_flags & B_DELWRI) { lwkt_gettoken(&bp->b_vp->v_token); bp->b_flags &= ~B_DELWRI; reassignbuf(bp); lwkt_reltoken(&bp->b_vp->v_token); atomic_add_long(&dirtybufcount, -1); atomic_add_long(&dirtykvaspace, -bp->b_kvasize); atomic_add_long(&dirtybufspace, -bp->b_bufsize); if (bp->b_flags & B_HEAVY) { atomic_add_long(&dirtybufcounthw, -1); atomic_add_long(&dirtybufspacehw, -bp->b_bufsize); } bd_signal(bp->b_bufsize); } /* * Since it is now being written, we can clear its deferred write flag. */ bp->b_flags &= ~B_DEFERRED; } /* * Set the b_runningbufspace field, used to track how much I/O is * in progress at any given moment. */ void bsetrunningbufspace(struct buf *bp, int bytes) { bp->b_runningbufspace = bytes; if (bytes) { atomic_add_long(&runningbufspace, bytes); atomic_add_long(&runningbufcount, 1); } } /* * brelse: * * Release a busy buffer and, if requested, free its resources. The * buffer will be stashed in the appropriate bufqueue[] allowing it * to be accessed later as a cache entity or reused for other purposes. */ void brelse(struct buf *bp) { struct bufpcpu *pcpu; #ifdef INVARIANTS int saved_flags = bp->b_flags; #endif KASSERT(!(bp->b_flags & (B_CLUSTER|B_PAGING)), ("brelse: inappropriate B_PAGING or B_CLUSTER bp %p", bp)); /* * If B_NOCACHE is set we are being asked to destroy the buffer and * its backing store. Clear B_DELWRI. * * B_NOCACHE is set in two cases: (1) when the caller really wants * to destroy the buffer and backing store and (2) when the caller * wants to destroy the buffer and backing store after a write * completes. */ if ((bp->b_flags & (B_NOCACHE|B_DELWRI)) == (B_NOCACHE|B_DELWRI)) { bundirty(bp); } if ((bp->b_flags & (B_INVAL | B_DELWRI)) == B_DELWRI) { /* * A re-dirtied buffer is only subject to destruction * by B_INVAL. B_ERROR and B_NOCACHE are ignored. */ /* leave buffer intact */ } else if ((bp->b_flags & (B_NOCACHE | B_INVAL | B_ERROR)) || (bp->b_bufsize <= 0)) { /* * Either a failed read or we were asked to free or not * cache the buffer. This path is reached with B_DELWRI * set only if B_INVAL is already set. B_NOCACHE governs * backing store destruction. * * NOTE: HAMMER will set B_LOCKED in buf_deallocate if the * buffer cannot be immediately freed. */ bp->b_flags |= B_INVAL; if (LIST_FIRST(&bp->b_dep) != NULL) buf_deallocate(bp); if (bp->b_flags & B_DELWRI) { atomic_add_long(&dirtybufcount, -1); atomic_add_long(&dirtykvaspace, -bp->b_kvasize); atomic_add_long(&dirtybufspace, -bp->b_bufsize); if (bp->b_flags & B_HEAVY) { atomic_add_long(&dirtybufcounthw, -1); atomic_add_long(&dirtybufspacehw, -bp->b_bufsize); } bd_signal(bp->b_bufsize); } bp->b_flags &= ~(B_DELWRI | B_CACHE); } /* * We must clear B_RELBUF if B_DELWRI or B_LOCKED is set, * or if b_refs is non-zero. * * If vfs_vmio_release() is called with either bit set, the * underlying pages may wind up getting freed causing a previous * write (bdwrite()) to get 'lost' because pages associated with * a B_DELWRI bp are marked clean. Pages associated with a * B_LOCKED buffer may be mapped by the filesystem. * * If we want to release the buffer ourselves (rather then the * originator asking us to release it), give the originator a * chance to countermand the release by setting B_LOCKED. * * We still allow the B_INVAL case to call vfs_vmio_release(), even * if B_DELWRI is set. * * If B_DELWRI is not set we may have to set B_RELBUF if we are low * on pages to return pages to the VM page queues. */ if ((bp->b_flags & (B_DELWRI | B_LOCKED)) || bp->b_refs) { bp->b_flags &= ~B_RELBUF; } else if (vm_paging_min()) { if (LIST_FIRST(&bp->b_dep) != NULL) buf_deallocate(bp); /* can set B_LOCKED */ if (bp->b_flags & (B_DELWRI | B_LOCKED)) bp->b_flags &= ~B_RELBUF; else bp->b_flags |= B_RELBUF; } /* * Make sure b_cmd is clear. It may have already been cleared by * biodone(). * * At this point destroying the buffer is governed by the B_INVAL * or B_RELBUF flags. */ bp->b_cmd = BUF_CMD_DONE; dsched_buf_exit(bp); /* * VMIO buffer rundown. Make sure the VM page array is restored * after an I/O may have replaces some of the pages with bogus pages * in order to not destroy dirty pages in a fill-in read. * * Note that due to the code above, if a buffer is marked B_DELWRI * then the B_RELBUF and B_NOCACHE bits will always be clear. * B_INVAL may still be set, however. * * For clean buffers, B_INVAL or B_RELBUF will destroy the buffer * but not the backing store. B_NOCACHE will destroy the backing * store. * * Note that dirty NFS buffers contain byte-granular write ranges * and should not be destroyed w/ B_INVAL even if the backing store * is left intact. */ if (bp->b_flags & B_VMIO) { /* * Rundown for VMIO buffers which are not dirty NFS buffers. */ int i, j, resid; vm_page_t m; off_t foff; vm_pindex_t poff; vm_object_t obj; struct vnode *vp; vp = bp->b_vp; /* * Get the base offset and length of the buffer. Note that * in the VMIO case if the buffer block size is not * page-aligned then b_data pointer may not be page-aligned. * But our b_xio.xio_pages array *IS* page aligned. * * block sizes less then DEV_BSIZE (usually 512) are not * supported due to the page granularity bits (m->valid, * m->dirty, etc...). * * See man buf(9) for more information */ resid = bp->b_bufsize; foff = bp->b_loffset; for (i = 0; i < bp->b_xio.xio_npages; i++) { m = bp->b_xio.xio_pages[i]; /* * If we hit a bogus page, fixup *all* of them * now. Note that we left these pages wired * when we removed them so they had better exist, * and they cannot be ripped out from under us so * no critical section protection is necessary. */ if (m == bogus_page) { obj = vp->v_object; poff = OFF_TO_IDX(bp->b_loffset); vm_object_hold(obj); for (j = i; j < bp->b_xio.xio_npages; j++) { vm_page_t mtmp; mtmp = bp->b_xio.xio_pages[j]; if (mtmp == bogus_page) { if ((bp->b_flags & B_HASBOGUS) == 0) panic("brelse: bp %p corrupt bogus", bp); mtmp = vm_page_lookup(obj, poff + j); if (!mtmp) panic("brelse: bp %p page %d missing", bp, j); bp->b_xio.xio_pages[j] = mtmp; } } vm_object_drop(obj); if ((bp->b_flags & B_HASBOGUS) || (bp->b_flags & B_INVAL) == 0) { pmap_qenter_noinval( trunc_page((vm_offset_t)bp->b_data), bp->b_xio.xio_pages, bp->b_xio.xio_npages); bp->b_flags &= ~B_HASBOGUS; bp->b_flags |= B_KVABIO; bkvareset(bp); } m = bp->b_xio.xio_pages[i]; } /* * Invalidate the backing store if B_NOCACHE is set * (e.g. used with vinvalbuf()). If this is NFS * we impose a requirement that the block size be * a multiple of PAGE_SIZE and create a temporary * hack to basically invalidate the whole page. The * problem is that NFS uses really odd buffer sizes * especially when tracking piecemeal writes and * it also vinvalbuf()'s a lot, which would result * in only partial page validation and invalidation * here. If the file page is mmap()'d, however, * all the valid bits get set so after we invalidate * here we would end up with weird m->valid values * like 0xfc. nfs_getpages() can't handle this so * we clear all the valid bits for the NFS case * instead of just some of them. * * The real bug is the VM system having to set m->valid * to VM_PAGE_BITS_ALL for faulted-in pages, which * itself is an artifact of the whole 512-byte * granular mess that exists to support odd block * sizes and UFS meta-data block sizes (e.g. 6144). * A complete rewrite is required. * * XXX */ if (bp->b_flags & (B_NOCACHE|B_ERROR)) { int poffset = foff & PAGE_MASK; int presid; presid = PAGE_SIZE - poffset; if (bp->b_vp->v_tag == VT_NFS && bp->b_vp->v_type == VREG) { ; /* entire page */ } else if (presid > resid) { presid = resid; } KASSERT(presid >= 0, ("brelse: extra page")); vm_page_set_invalid(m, poffset, presid); /* * Also make sure any swap cache is removed * as it is now stale (HAMMER in particular * uses B_NOCACHE to deal with buffer * aliasing). */ swap_pager_unswapped(m); } resid -= PAGE_SIZE - (foff & PAGE_MASK); foff = (foff + PAGE_SIZE) & ~(off_t)PAGE_MASK; } if (bp->b_flags & (B_INVAL | B_RELBUF)) vfs_vmio_release(bp); } else { /* * Rundown for non-VMIO buffers. * * XXX With B_MALLOC buffers removed, there should no longer * be any situation where brelse() is called on a non B_VMIO * buffer. Recommend assertion here. XXX */ if (bp->b_flags & (B_INVAL | B_RELBUF)) { if (bp->b_bufsize) allocbuf(bp, 0); KKASSERT (LIST_FIRST(&bp->b_dep) == NULL); if (bp->b_vp) brelvp(bp); } } if (bp->b_qindex != BQUEUE_NONE) panic("brelse: free buffer onto another queue???"); /* * Figure out the correct queue to place the cleaned up buffer on. * Buffers placed in the EMPTY or EMPTYKVA had better already be * disassociated from their vnode. * * Return the buffer to its original pcpu area */ pcpu = &bufpcpu[bp->b_qcpu]; spin_lock(&pcpu->spin); if (bp->b_flags & B_LOCKED) { /* * Buffers that are locked are placed in the locked queue * immediately, regardless of their state. */ bp->b_qindex = BQUEUE_LOCKED; TAILQ_INSERT_TAIL(&pcpu->bufqueues[bp->b_qindex], bp, b_freelist); } else if (bp->b_bufsize == 0) { /* * Buffers with no memory. Due to conditionals near the top * of brelse() such buffers should probably already be * marked B_INVAL and disassociated from their vnode. */ bp->b_flags |= B_INVAL; KASSERT(bp->b_vp == NULL, ("bp1 %p flags %08x/%08x vnode %p " "unexpectededly still associated!", bp, saved_flags, bp->b_flags, bp->b_vp)); KKASSERT((bp->b_flags & B_HASHED) == 0); bp->b_qindex = BQUEUE_EMPTY; TAILQ_INSERT_HEAD(&pcpu->bufqueues[bp->b_qindex], bp, b_freelist); } else if (bp->b_flags & (B_INVAL | B_NOCACHE | B_RELBUF)) { /* * Buffers with junk contents. Again these buffers had better * already be disassociated from their vnode. */ KASSERT(bp->b_vp == NULL, ("bp2 %p flags %08x/%08x vnode %p unexpectededly " "still associated!", bp, saved_flags, bp->b_flags, bp->b_vp)); KKASSERT((bp->b_flags & B_HASHED) == 0); bp->b_flags |= B_INVAL; bp->b_qindex = BQUEUE_CLEAN; TAILQ_INSERT_HEAD(&pcpu->bufqueues[bp->b_qindex], bp, b_freelist); } else { /* * Remaining buffers. These buffers are still associated with * their vnode. */ switch(bp->b_flags & (B_DELWRI|B_HEAVY)) { case B_DELWRI: bp->b_qindex = BQUEUE_DIRTY; TAILQ_INSERT_TAIL(&pcpu->bufqueues[bp->b_qindex], bp, b_freelist); break; case B_DELWRI | B_HEAVY: bp->b_qindex = BQUEUE_DIRTY_HW; TAILQ_INSERT_TAIL(&pcpu->bufqueues[bp->b_qindex], bp, b_freelist); break; default: /* * NOTE: Buffers are always placed at the end of the * queue. If B_AGE is not set the buffer will cycle * through the queue twice. */ bp->b_qindex = BQUEUE_CLEAN; TAILQ_INSERT_TAIL(&pcpu->bufqueues[bp->b_qindex], bp, b_freelist); break; } } spin_unlock(&pcpu->spin); /* * If B_INVAL, clear B_DELWRI. We've already placed the buffer * on the correct queue but we have not yet unlocked it. */ if ((bp->b_flags & (B_INVAL|B_DELWRI)) == (B_INVAL|B_DELWRI)) bundirty(bp); /* * The bp is on an appropriate queue unless locked. If it is not * locked or dirty we can wakeup threads waiting for buffer space. * * We've already handled the B_INVAL case ( B_DELWRI will be clear * if B_INVAL is set ). */ if ((bp->b_flags & (B_LOCKED|B_DELWRI)) == 0) bufcountwakeup(); /* * Something we can maybe free or reuse */ if (bp->b_bufsize || bp->b_kvasize) bufspacewakeup(); /* * Clean up temporary flags and unlock the buffer. */ bp->b_flags &= ~(B_NOCACHE | B_RELBUF | B_DIRECT); BUF_UNLOCK(bp); } /* * bqrelse: * * Release a buffer back to the appropriate queue but do not try to free * it. The buffer is expected to be used again soon. * * bqrelse() is used by bdwrite() to requeue a delayed write, and used by * biodone() to requeue an async I/O on completion. It is also used when * known good buffers need to be requeued but we think we may need the data * again soon. * * XXX we should be able to leave the B_RELBUF hint set on completion. */ void bqrelse(struct buf *bp) { struct bufpcpu *pcpu; KASSERT(!(bp->b_flags & (B_CLUSTER|B_PAGING)), ("bqrelse: inappropriate B_PAGING or B_CLUSTER bp %p", bp)); if (bp->b_qindex != BQUEUE_NONE) panic("bqrelse: free buffer onto another queue???"); buf_act_advance(bp); pcpu = &bufpcpu[bp->b_qcpu]; spin_lock(&pcpu->spin); if (bp->b_flags & B_LOCKED) { /* * Locked buffers are released to the locked queue. However, * if the buffer is dirty it will first go into the dirty * queue and later on after the I/O completes successfully it * will be released to the locked queue. */ bp->b_qindex = BQUEUE_LOCKED; TAILQ_INSERT_TAIL(&pcpu->bufqueues[bp->b_qindex], bp, b_freelist); } else if (bp->b_flags & B_DELWRI) { bp->b_qindex = (bp->b_flags & B_HEAVY) ? BQUEUE_DIRTY_HW : BQUEUE_DIRTY; TAILQ_INSERT_TAIL(&pcpu->bufqueues[bp->b_qindex], bp, b_freelist); } else if (vm_paging_min()) { /* * We are too low on memory, we have to try to free the * buffer (most importantly: the wired pages making up its * backing store) *now*. */ spin_unlock(&pcpu->spin); brelse(bp); return; } else { bp->b_qindex = BQUEUE_CLEAN; TAILQ_INSERT_TAIL(&pcpu->bufqueues[bp->b_qindex], bp, b_freelist); } spin_unlock(&pcpu->spin); /* * We have now placed the buffer on the proper queue, but have yet * to unlock it. */ if ((bp->b_flags & B_LOCKED) == 0 && ((bp->b_flags & B_INVAL) || (bp->b_flags & B_DELWRI) == 0)) { bufcountwakeup(); } /* * Something we can maybe free or reuse. */ if (bp->b_bufsize && !(bp->b_flags & B_DELWRI)) bufspacewakeup(); /* * Final cleanup and unlock. Clear bits that are only used while a * buffer is actively locked. */ bp->b_flags &= ~(B_NOCACHE | B_RELBUF); dsched_buf_exit(bp); BUF_UNLOCK(bp); } /* * Hold a buffer, preventing it from being reused. This will prevent * normal B_RELBUF operations on the buffer but will not prevent B_INVAL * operations. If a B_INVAL operation occurs the buffer will remain held * but the underlying pages may get ripped out. * * These functions are typically used in VOP_READ/VOP_WRITE functions * to hold a buffer during a copyin or copyout, preventing deadlocks * or recursive lock panics when read()/write() is used over mmap()'d * space. * * NOTE: bqhold() requires that the buffer be locked at the time of the * hold. bqdrop() has no requirements other than the buffer having * previously been held. */ void bqhold(struct buf *bp) { atomic_add_int(&bp->b_refs, 1); } void bqdrop(struct buf *bp) { KKASSERT(bp->b_refs > 0); atomic_add_int(&bp->b_refs, -1); } /* * Return backing pages held by the buffer 'bp' back to the VM system. * This routine is called when the bp is invalidated, released, or * reused. * * The KVA mapping (b_data) for the underlying pages is removed by * this function. * * WARNING! This routine is integral to the low memory critical path * when a buffer is B_RELBUF'd. If the system has a severe page * deficit we need to get the page(s) onto the PQ_FREE or PQ_CACHE * queues so they can be reused in the current pageout daemon * pass. */ static void vfs_vmio_release(struct buf *bp) { int i; vm_page_t m; for (i = 0; i < bp->b_xio.xio_npages; i++) { m = bp->b_xio.xio_pages[i]; bp->b_xio.xio_pages[i] = NULL; /* * We need to own the page in order to safely unwire it. */ vm_page_busy_wait(m, FALSE, "vmiopg"); /* * The VFS is telling us this is not a meta-data buffer * even if it is backed by a block device. */ if (bp->b_flags & B_NOTMETA) vm_page_flag_set(m, PG_NOTMETA); /* * This is a very important bit of code. We try to track * VM page use whether the pages are wired into the buffer * cache or not. While wired into the buffer cache the * bp tracks the act_count. * * We can choose to place unwired pages on the inactive * queue (0) or active queue (1). If we place too many * on the active queue the queue will cycle the act_count * on pages we'd like to keep, just from single-use pages * (such as when doing a tar-up or file scan). */ if (bp->b_act_count < vm_cycle_point) vm_page_unwire(m, 0); else vm_page_unwire(m, 1); /* * If the wire_count has dropped to 0 we may need to take * further action before unbusying the page. * * WARNING: vm_page_try_*() also checks PG_NEED_COMMIT for us. */ if (m->wire_count == 0) { if (bp->b_flags & B_DIRECT) { /* * Attempt to free the page if B_DIRECT is * set, the caller does not desire the page * to be cached. */ vm_page_wakeup(m); vm_page_try_to_free(m); } else if ((bp->b_flags & (B_NOTMETA | B_TTC)) || vm_paging_min()) { /* * Attempt to move the page to PQ_CACHE * if B_NOTMETA is set. This flag is set * by HAMMER to remove one of the two pages * present when double buffering is enabled. * * Attempt to move the page to PQ_CACHE * If we have a severe page deficit. This * will cause buffer cache operations related * to pageouts to recycle the related pages * in order to avoid a low memory deadlock. */ m->act_count = bp->b_act_count; vm_page_try_to_cache(m); } else { /* * Nominal case, leave the page on the * queue the original unwiring placed it on * (active or inactive). */ m->act_count = bp->b_act_count; vm_page_wakeup(m); } } else { vm_page_wakeup(m); } } /* * Zero out the pmap pte's for the mapping, but don't bother * invalidating the TLB. The range will be properly invalidating * when new pages are entered into the mapping. * * This in particular reduces tmpfs tear-down overhead and reduces * buffer cache re-use overhead (one invalidation sequence instead * of two per re-use). */ pmap_qremove_noinval(trunc_page((vm_offset_t) bp->b_data), bp->b_xio.xio_npages); CPUMASK_ASSZERO(bp->b_cpumask); if (bp->b_bufsize) { atomic_add_long(&bufspace, -bp->b_bufsize); bp->b_bufsize = 0; bufspacewakeup(); } bp->b_xio.xio_npages = 0; bp->b_flags &= ~(B_VMIO | B_TTC); KKASSERT (LIST_FIRST(&bp->b_dep) == NULL); if (bp->b_vp) brelvp(bp); } /* * Find and initialize a new buffer header, freeing up existing buffers * in the bufqueues as necessary. The new buffer is returned locked. * * Important: B_INVAL is not set. If the caller wishes to throw the * buffer away, the caller must set B_INVAL prior to calling brelse(). * * We block if: * We have insufficient buffer headers * We have insufficient buffer space * * To avoid VFS layer recursion we do not flush dirty buffers ourselves. * Instead we ask the buf daemon to do it for us. We attempt to * avoid piecemeal wakeups of the pageout daemon. */ struct buf * getnewbuf(int blkflags, int slptimeo, int size, int maxsize) { struct bufpcpu *pcpu; struct buf *bp; struct buf *nbp; int nqindex; int nqcpu; int slpflags = (blkflags & GETBLK_PCATCH) ? PCATCH : 0; int maxloops = 200000; int restart_reason = 0; struct buf *restart_bp = NULL; static char flushingbufs[MAXCPU]; char *flushingp; /* * We can't afford to block since we might be holding a vnode lock, * which may prevent system daemons from running. We deal with * low-memory situations by proactively returning memory and running * async I/O rather then sync I/O. */ ++getnewbufcalls; nqcpu = mycpu->gd_cpuid; flushingp = &flushingbufs[nqcpu]; restart: if (bufspace < lobufspace) *flushingp = 0; if (debug_bufbio && --maxloops == 0) panic("getnewbuf, excessive loops on cpu %d restart %d (%p)", mycpu->gd_cpuid, restart_reason, restart_bp); /* * Setup for scan. If we do not have enough free buffers, * we setup a degenerate case that immediately fails. Note * that if we are specially marked process, we are allowed to * dip into our reserves. * * The scanning sequence is nominally: EMPTY->CLEAN */ pcpu = &bufpcpu[nqcpu]; spin_lock(&pcpu->spin); /* * Prime the scan for this cpu. Locate the first buffer to * check. If we are flushing buffers we must skip the * EMPTY queue. */ nqindex = BQUEUE_EMPTY; nbp = TAILQ_FIRST(&pcpu->bufqueues[BQUEUE_EMPTY]); if (nbp == NULL || *flushingp) { nqindex = BQUEUE_CLEAN; nbp = TAILQ_FIRST(&pcpu->bufqueues[BQUEUE_CLEAN]); } /* * Run scan, possibly freeing data and/or kva mappings on the fly, * depending. * * WARNING! spin is held! */ while ((bp = nbp) != NULL) { int qindex = nqindex; nbp = TAILQ_NEXT(bp, b_freelist); /* * BQUEUE_CLEAN - B_AGE special case. If not set the bp * cycles through the queue twice before being selected. */ if (qindex == BQUEUE_CLEAN && (bp->b_flags & B_AGE) == 0 && nbp) { bp->b_flags |= B_AGE; TAILQ_REMOVE(&pcpu->bufqueues[qindex], bp, b_freelist); TAILQ_INSERT_TAIL(&pcpu->bufqueues[qindex], bp, b_freelist); continue; } /* * Calculate next bp ( we can only use it if we do not block * or do other fancy things ). */ if (nbp == NULL) { switch(qindex) { case BQUEUE_EMPTY: nqindex = BQUEUE_CLEAN; if ((nbp = TAILQ_FIRST(&pcpu->bufqueues[BQUEUE_CLEAN]))) break; /* fall through */ case BQUEUE_CLEAN: /* * nbp is NULL. */ break; } } /* * Sanity Checks */ KASSERT(bp->b_qindex == qindex, ("getnewbuf: inconsistent queue %d bp %p", qindex, bp)); /* * Note: we no longer distinguish between VMIO and non-VMIO * buffers. */ KASSERT((bp->b_flags & B_DELWRI) == 0, ("delwri buffer %p found in queue %d", bp, qindex)); /* * Do not try to reuse a buffer with a non-zero b_refs. * This is an unsynchronized test. A synchronized test * is also performed after we lock the buffer. */ if (bp->b_refs) continue; /* * Start freeing the bp. This is somewhat involved. nbp * remains valid only for BQUEUE_EMPTY bp's. Buffers * on the clean list must be disassociated from their * current vnode. Buffers on the empty lists have * already been disassociated. * * b_refs is checked after locking along with queue changes. * We must check here to deal with zero->nonzero transitions * made by the owner of the buffer lock, which is used by * VFS's to hold the buffer while issuing an unlocked * uiomove()s. We cannot invalidate the buffer's pages * for this case. Once we successfully lock a buffer the * only 0->1 transitions of b_refs will occur via findblk(). * * We must also check for queue changes after successful * locking as the current lock holder may dispose of the * buffer and change its queue. */ if (BUF_LOCK(bp, LK_EXCLUSIVE | LK_NOWAIT) != 0) { spin_unlock(&pcpu->spin); tsleep(&bd_request, 0, "gnbxxx", (hz + 99) / 100); restart_reason = 1; restart_bp = bp; goto restart; } if (bp->b_qindex != qindex || bp->b_refs) { spin_unlock(&pcpu->spin); BUF_UNLOCK(bp); restart_reason = 2; restart_bp = bp; goto restart; } bremfree_locked(bp); spin_unlock(&pcpu->spin); /* * Dependancies must be handled before we disassociate the * vnode. * * NOTE: HAMMER will set B_LOCKED if the buffer cannot * be immediately disassociated. HAMMER then becomes * responsible for releasing the buffer. * * NOTE: spin is UNLOCKED now. */ if (LIST_FIRST(&bp->b_dep) != NULL) { buf_deallocate(bp); if (bp->b_flags & B_LOCKED) { bqrelse(bp); restart_reason = 3; restart_bp = bp; goto restart; } KKASSERT(LIST_FIRST(&bp->b_dep) == NULL); } /* * CLEAN buffers have content or associations that must be * cleaned out if not repurposing. */ if (qindex == BQUEUE_CLEAN) { if (bp->b_flags & B_VMIO) vfs_vmio_release(bp); if (bp->b_vp) brelvp(bp); } /* * NOTE: nbp is now entirely invalid. We can only restart * the scan from this point on. * * Get the rest of the buffer freed up. b_kva* is still * valid after this operation. */ KASSERT(bp->b_vp == NULL, ("bp3 %p flags %08x vnode %p qindex %d " "unexpectededly still associated!", bp, bp->b_flags, bp->b_vp, qindex)); KKASSERT((bp->b_flags & B_HASHED) == 0); if (bp->b_bufsize) allocbuf(bp, 0); if (bp->b_flags & (B_VNDIRTY | B_VNCLEAN | B_HASHED)) { kprintf("getnewbuf: caught bug vp queue " "%p/%08x qidx %d\n", bp, bp->b_flags, qindex); brelvp(bp); } bp->b_flags = B_BNOCLIP; bp->b_cmd = BUF_CMD_DONE; bp->b_vp = NULL; bp->b_error = 0; bp->b_resid = 0; bp->b_bcount = 0; bp->b_xio.xio_npages = 0; bp->b_dirtyoff = bp->b_dirtyend = 0; bp->b_act_count = ACT_INIT; reinitbufbio(bp); KKASSERT(LIST_FIRST(&bp->b_dep) == NULL); buf_dep_init(bp); if (blkflags & GETBLK_BHEAVY) bp->b_flags |= B_HEAVY; if (bufspace >= hibufspace) *flushingp = 1; if (bufspace < lobufspace) *flushingp = 0; if (*flushingp) { bp->b_flags |= B_INVAL; brelse(bp); restart_reason = 5; restart_bp = bp; goto restart; } /* * b_refs can transition to a non-zero value while we hold * the buffer locked due to a findblk(). Our brelvp() above * interlocked any future possible transitions due to * findblk()s. * * If we find b_refs to be non-zero we can destroy the * buffer's contents but we cannot yet reuse the buffer. */ if (bp->b_refs) { bp->b_flags |= B_INVAL; brelse(bp); restart_reason = 6; restart_bp = bp; goto restart; } /* * We found our buffer! */ break; } /* * If we exhausted our list, iterate other cpus. If that fails, * sleep as appropriate. We may have to wakeup various daemons * and write out some dirty buffers. * * Generally we are sleeping due to insufficient buffer space. * * NOTE: spin is held if bp is NULL, else it is not held. */ if (bp == NULL) { int flags; char *waitmsg; spin_unlock(&pcpu->spin); nqcpu = (nqcpu + 1) % ncpus; if (nqcpu != mycpu->gd_cpuid) { restart_reason = 7; restart_bp = bp; goto restart; } if (bufspace >= hibufspace) { waitmsg = "bufspc"; flags = VFS_BIO_NEED_BUFSPACE; } else { waitmsg = "newbuf"; flags = VFS_BIO_NEED_ANY; } bd_speedup(); /* heeeelp */ atomic_set_int(&needsbuffer, flags); while (needsbuffer & flags) { int value; tsleep_interlock(&needsbuffer, 0); value = atomic_fetchadd_int(&needsbuffer, 0); if (value & flags) { if (tsleep(&needsbuffer, PINTERLOCKED|slpflags, waitmsg, slptimeo)) { return (NULL); } } } } else { /* * We finally have a valid bp. Reset b_data. * * (spin is not held) */ bp->b_data = bp->b_kvabase; } return(bp); } /* * buf_daemon: * * Buffer flushing daemon. Buffers are normally flushed by the * update daemon but if it cannot keep up this process starts to * take the load in an attempt to prevent getnewbuf() from blocking. * * Once a flush is initiated it does not stop until the number * of buffers falls below lodirtybuffers, but we will wake up anyone * waiting at the mid-point. */ static struct kproc_desc buf_kp = { "bufdaemon", buf_daemon, &bufdaemon_td }; SYSINIT(bufdaemon, SI_SUB_KTHREAD_BUF, SI_ORDER_FIRST, kproc_start, &buf_kp); static struct kproc_desc bufhw_kp = { "bufdaemon_hw", buf_daemon_hw, &bufdaemonhw_td }; SYSINIT(bufdaemon_hw, SI_SUB_KTHREAD_BUF, SI_ORDER_FIRST, kproc_start, &bufhw_kp); static void buf_daemon1(struct thread *td, int queue, int (*buf_limit_fn)(long), int *bd_req) { long limit; struct buf *marker; marker = kmalloc(sizeof(*marker), M_BIOBUF, M_WAITOK | M_ZERO); marker->b_flags |= B_MARKER; marker->b_qindex = BQUEUE_NONE; marker->b_qcpu = 0; /* * This process needs to be suspended prior to shutdown sync. */ EVENTHANDLER_REGISTER(shutdown_pre_sync, shutdown_kproc, td, SHUTDOWN_PRI_LAST); curthread->td_flags |= TDF_SYSTHREAD; /* * This process is allowed to take the buffer cache to the limit */ for (;;) { kproc_suspend_loop(); /* * Do the flush as long as the number of dirty buffers * (including those running) exceeds lodirtybufspace. * * When flushing limit running I/O to hirunningspace * Do the flush. Limit the amount of in-transit I/O we * allow to build up, otherwise we would completely saturate * the I/O system. Wakeup any waiting processes before we * normally would so they can run in parallel with our drain. * * Our aggregate normal+HW lo water mark is lodirtybufspace, * but because we split the operation into two threads we * have to cut it in half for each thread. */ waitrunningbufspace(); limit = lodirtybufspace / 2; while (buf_limit_fn(limit)) { if (flushbufqueues(marker, queue) == 0) break; if (runningbufspace < hirunningspace) continue; waitrunningbufspace(); } /* * We reached our low water mark, reset the * request and sleep until we are needed again. * The sleep is just so the suspend code works. */ tsleep_interlock(bd_req, 0); if (atomic_swap_int(bd_req, 0) == 0) tsleep(bd_req, PINTERLOCKED, "psleep", hz); } /* NOT REACHED */ /*kfree(marker, M_BIOBUF);*/ } static int buf_daemon_limit(long limit) { return (runningbufspace + dirtykvaspace > limit || dirtybufcount - dirtybufcounthw >= nbuf / 2); } static int buf_daemon_hw_limit(long limit) { return (runningbufspace + dirtykvaspace > limit || dirtybufcounthw >= nbuf / 2); } static void buf_daemon(void) { buf_daemon1(bufdaemon_td, BQUEUE_DIRTY, buf_daemon_limit, &bd_request); } static void buf_daemon_hw(void) { buf_daemon1(bufdaemonhw_td, BQUEUE_DIRTY_HW, buf_daemon_hw_limit, &bd_request_hw); } /* * Flush up to (flushperqueue) buffers in the dirty queue. Each cpu has a * localized version of the queue. Each call made to this function iterates * to another cpu. It is desireable to flush several buffers from the same * cpu's queue at once, as these are likely going to be linear. * * We must be careful to free up B_INVAL buffers instead of write them, which * NFS is particularly sensitive to. * * B_RELBUF may only be set by VFSs. We do set B_AGE to indicate that we * really want to try to get the buffer out and reuse it due to the write * load on the machine. * * We must lock the buffer in order to check its validity before we can mess * with its contents. spin isn't enough. */ static int flushbufqueues(struct buf *marker, bufq_type_t q) { struct bufpcpu *pcpu; struct buf *bp; int r = 0; u_int loops = flushperqueue; int lcpu = marker->b_qcpu; KKASSERT(marker->b_qindex == BQUEUE_NONE); KKASSERT(marker->b_flags & B_MARKER); again: /* * Spinlock needed to perform operations on the queue and may be * held through a non-blocking BUF_LOCK(), but cannot be held when * BUF_UNLOCK()ing or through any other major operation. */ pcpu = &bufpcpu[marker->b_qcpu]; spin_lock(&pcpu->spin); marker->b_qindex = q; TAILQ_INSERT_HEAD(&pcpu->bufqueues[q], marker, b_freelist); bp = marker; while ((bp = TAILQ_NEXT(bp, b_freelist)) != NULL) { /* * NOTE: spinlock is always held at the top of the loop */ if (bp->b_flags & B_MARKER) continue; if ((bp->b_flags & B_DELWRI) == 0) { kprintf("Unexpected clean buffer %p\n", bp); continue; } if (BUF_LOCK(bp, LK_EXCLUSIVE | LK_NOWAIT)) continue; KKASSERT(bp->b_qcpu == marker->b_qcpu && bp->b_qindex == q); /* * Once the buffer is locked we will have no choice but to * unlock the spinlock around a later BUF_UNLOCK and re-set * bp = marker when looping. Move the marker now to make * things easier. */ TAILQ_REMOVE(&pcpu->bufqueues[q], marker, b_freelist); TAILQ_INSERT_AFTER(&pcpu->bufqueues[q], bp, marker, b_freelist); /* * Must recheck B_DELWRI after successfully locking * the buffer. */ if ((bp->b_flags & B_DELWRI) == 0) { spin_unlock(&pcpu->spin); BUF_UNLOCK(bp); spin_lock(&pcpu->spin); bp = marker; continue; } /* * Remove the buffer from its queue. We still own the * spinlock here. */ _bremfree(bp); /* * Disposing of an invalid buffer counts as a flush op */ if (bp->b_flags & B_INVAL) { spin_unlock(&pcpu->spin); brelse(bp); goto doloop; } /* * Release the spinlock for the more complex ops we * are now going to do. */ spin_unlock(&pcpu->spin); lwkt_yield(); /* * This is a bit messy */ if (LIST_FIRST(&bp->b_dep) != NULL && (bp->b_flags & B_DEFERRED) == 0 && buf_countdeps(bp, 0)) { spin_lock(&pcpu->spin); TAILQ_INSERT_TAIL(&pcpu->bufqueues[q], bp, b_freelist); bp->b_qindex = q; bp->b_flags |= B_DEFERRED; spin_unlock(&pcpu->spin); BUF_UNLOCK(bp); spin_lock(&pcpu->spin); bp = marker; continue; } /* * spinlock not held here. * * If the buffer has a dependancy, buf_checkwrite() must * also return 0 for us to be able to initate the write. * * If the buffer is flagged B_ERROR it may be requeued * over and over again, we try to avoid a live lock. */ if (LIST_FIRST(&bp->b_dep) != NULL && buf_checkwrite(bp)) { brelse(bp); } else if (bp->b_flags & B_ERROR) { tsleep(bp, 0, "bioer", 1); bp->b_flags &= ~B_AGE; cluster_awrite(bp); } else { bp->b_flags |= B_AGE | B_KVABIO; cluster_awrite(bp); } /* bp invalid but needs to be NULL-tested if we break out */ doloop: spin_lock(&pcpu->spin); ++r; if (--loops == 0) break; bp = marker; } /* bp is invalid here but can be NULL-tested to advance */ TAILQ_REMOVE(&pcpu->bufqueues[q], marker, b_freelist); marker->b_qindex = BQUEUE_NONE; spin_unlock(&pcpu->spin); /* * Advance the marker to be fair. */ marker->b_qcpu = (marker->b_qcpu + 1) % ncpus; if (bp == NULL) { if (marker->b_qcpu != lcpu) goto again; } return (r); } /* * inmem: * * Returns true if no I/O is needed to access the associated VM object. * This is like findblk except it also hunts around in the VM system for * the data. * * Note that we ignore vm_page_free() races from interrupts against our * lookup, since if the caller is not protected our return value will not * be any more valid then otherwise once we exit the critical section. */ int inmem(struct vnode *vp, off_t loffset) { vm_object_t obj; vm_offset_t toff, tinc, size; vm_page_t m; int res = 1; if (findblk(vp, loffset, FINDBLK_TEST)) return 1; if (vp->v_mount == NULL) return 0; if ((obj = vp->v_object) == NULL) return 0; size = PAGE_SIZE; if (size > vp->v_mount->mnt_stat.f_iosize) size = vp->v_mount->mnt_stat.f_iosize; vm_object_hold(obj); for (toff = 0; toff < vp->v_mount->mnt_stat.f_iosize; toff += tinc) { m = vm_page_lookup(obj, OFF_TO_IDX(loffset + toff)); if (m == NULL) { res = 0; break; } tinc = size; if (tinc > PAGE_SIZE - ((toff + loffset) & PAGE_MASK)) tinc = PAGE_SIZE - ((toff + loffset) & PAGE_MASK); if (vm_page_is_valid(m, (vm_offset_t) ((toff + loffset) & PAGE_MASK), tinc) == 0) { res = 0; break; } } vm_object_drop(obj); return (res); } /* * findblk: * * Locate and return the specified buffer. Unless flagged otherwise, * a locked buffer will be returned if it exists or NULL if it does not. * * findblk()'d buffers are still on the bufqueues and if you intend * to use your (locked NON-TEST) buffer you need to bremfree(bp) * and possibly do other stuff to it. * * FINDBLK_TEST - Do not lock the buffer. The caller is responsible * for locking the buffer and ensuring that it remains * the desired buffer after locking. * * FINDBLK_NBLOCK - Lock the buffer non-blocking. If we are unable * to acquire the lock we return NULL, even if the * buffer exists. * * FINDBLK_REF - Returns the buffer ref'd, which prevents normal * reuse by getnewbuf() but does not prevent * disassociation (B_INVAL). Used to avoid deadlocks * against random (vp,loffset)s due to reassignment. * * FINDBLK_KVABIO - Only applicable when returning a locked buffer. * Indicates that the caller supports B_KVABIO. * * (0) - Lock the buffer blocking. */ struct buf * findblk(struct vnode *vp, off_t loffset, int flags) { struct buf *bp; int lkflags; lkflags = LK_EXCLUSIVE; if (flags & FINDBLK_NBLOCK) lkflags |= LK_NOWAIT; for (;;) { /* * Lookup. Ref the buf while holding v_token to prevent * reuse (but does not prevent diassociation). */ lwkt_gettoken_shared(&vp->v_token); bp = buf_rb_hash_RB_LOOKUP(&vp->v_rbhash_tree, loffset); if (bp == NULL) { lwkt_reltoken(&vp->v_token); return(NULL); } bqhold(bp); lwkt_reltoken(&vp->v_token); /* * If testing only break and return bp, do not lock. */ if (flags & FINDBLK_TEST) break; /* * Lock the buffer, return an error if the lock fails. * (only FINDBLK_NBLOCK can cause the lock to fail). */ if (BUF_LOCK(bp, lkflags)) { atomic_add_int(&bp->b_refs, -1); /* bp = NULL; not needed */ return(NULL); } /* * Revalidate the locked buf before allowing it to be * returned. * * B_KVABIO is only set/cleared when locking. When * clearing B_KVABIO, we must ensure that the buffer * is synchronized to all cpus. */ if (bp->b_vp == vp && bp->b_loffset == loffset) { if (flags & FINDBLK_KVABIO) bp->b_flags |= B_KVABIO; else bkvasync_all(bp); break; } atomic_add_int(&bp->b_refs, -1); BUF_UNLOCK(bp); } /* * Success */ if ((flags & FINDBLK_REF) == 0) atomic_add_int(&bp->b_refs, -1); return(bp); } /* * getcacheblk: * * Similar to getblk() except only returns the buffer if it is * B_CACHE and requires no other manipulation. Otherwise NULL * is returned. NULL is also returned if GETBLK_NOWAIT is set * and the getblk() would block. * * If B_RAM is set the buffer might be just fine, but we return * NULL anyway because we want the code to fall through to the * cluster read to issue more read-aheads. Otherwise read-ahead breaks. * * If blksize is 0 the buffer cache buffer must already be fully * cached. * * If blksize is non-zero getblk() will be used, allowing a buffer * to be reinstantiated from its VM backing store. The buffer must * still be fully cached after reinstantiation to be returned. */ struct buf * getcacheblk(struct vnode *vp, off_t loffset, int blksize, int blkflags) { struct buf *bp; int fndflags = 0; if (blkflags & GETBLK_NOWAIT) fndflags |= FINDBLK_NBLOCK; if (blkflags & GETBLK_KVABIO) fndflags |= FINDBLK_KVABIO; if (blksize) { bp = getblk(vp, loffset, blksize, blkflags, 0); if (bp) { if ((bp->b_flags & (B_INVAL | B_CACHE)) == B_CACHE) { bp->b_flags &= ~B_AGE; if (bp->b_flags & B_RAM) { bqrelse(bp); bp = NULL; } } else { brelse(bp); bp = NULL; } } } else { bp = findblk(vp, loffset, fndflags); if (bp) { if ((bp->b_flags & (B_INVAL | B_CACHE | B_RAM)) == B_CACHE) { bp->b_flags &= ~B_AGE; bremfree(bp); } else { BUF_UNLOCK(bp); bp = NULL; } } } return (bp); } /* * getblk: * * Get a block given a specified block and offset into a file/device. * B_INVAL may or may not be set on return. The caller should clear * B_INVAL prior to initiating a READ. * * IT IS IMPORTANT TO UNDERSTAND THAT IF YOU CALL GETBLK() AND B_CACHE * IS NOT SET, YOU MUST INITIALIZE THE RETURNED BUFFER, ISSUE A READ, * OR SET B_INVAL BEFORE RETIRING IT. If you retire a getblk'd buffer * without doing any of those things the system will likely believe * the buffer to be valid (especially if it is not B_VMIO), and the * next getblk() will return the buffer with B_CACHE set. * * For a non-VMIO buffer, B_CACHE is set to the opposite of B_INVAL for * an existing buffer. * * For a VMIO buffer, B_CACHE is modified according to the backing VM. * If getblk()ing a previously 0-sized invalid buffer, B_CACHE is set * and then cleared based on the backing VM. If the previous buffer is * non-0-sized but invalid, B_CACHE will be cleared. * * If getblk() must create a new buffer, the new buffer is returned with * both B_INVAL and B_CACHE clear unless it is a VMIO buffer, in which * case it is returned with B_INVAL clear and B_CACHE set based on the * backing VM. * * getblk() also forces a bwrite() for any B_DELWRI buffer whos * B_CACHE bit is clear. * * What this means, basically, is that the caller should use B_CACHE to * determine whether the buffer is fully valid or not and should clear * B_INVAL prior to issuing a read. If the caller intends to validate * the buffer by loading its data area with something, the caller needs * to clear B_INVAL. If the caller does this without issuing an I/O, * the caller should set B_CACHE ( as an optimization ), else the caller * should issue the I/O and biodone() will set B_CACHE if the I/O was * a write attempt or if it was a successfull read. If the caller * intends to issue a READ, the caller must clear B_INVAL and B_ERROR * prior to issuing the READ. biodone() will *not* clear B_INVAL. * * getblk flags: * * GETBLK_PCATCH - catch signal if blocked, can cause NULL return * GETBLK_BHEAVY - heavy-weight buffer cache buffer */ struct buf * getblk(struct vnode *vp, off_t loffset, int size, int blkflags, int slptimeo) { struct buf *bp; int slpflags = (blkflags & GETBLK_PCATCH) ? PCATCH : 0; int error; int lkflags; if (size > MAXBSIZE) panic("getblk: size(%d) > MAXBSIZE(%d)", size, MAXBSIZE); if (vp->v_object == NULL) panic("getblk: vnode %p has no object!", vp); /* * NOTE: findblk does not try to resolve KVABIO in REF-only mode. * we still have to handle that ourselves. */ loop: if ((bp = findblk(vp, loffset, FINDBLK_REF | FINDBLK_TEST)) != NULL) { /* * The buffer was found in the cache, but we need to lock it. * We must acquire a ref on the bp to prevent reuse, but * this will not prevent disassociation (brelvp()) so we * must recheck (vp,loffset) after acquiring the lock. * * Without the ref the buffer could potentially be reused * before we acquire the lock and create a deadlock * situation between the thread trying to reuse the buffer * and us due to the fact that we would wind up blocking * on a random (vp,loffset). */ if (BUF_LOCK(bp, LK_EXCLUSIVE | LK_NOWAIT)) { if (blkflags & GETBLK_NOWAIT) { bqdrop(bp); return(NULL); } lkflags = LK_EXCLUSIVE | LK_SLEEPFAIL; if (blkflags & GETBLK_PCATCH) lkflags |= LK_PCATCH; error = BUF_TIMELOCK(bp, lkflags, "getblk", slptimeo); if (error) { bqdrop(bp); if (error == ENOLCK) goto loop; return (NULL); } /* buffer may have changed on us */ } bqdrop(bp); /* * Once the buffer has been locked, make sure we didn't race * a buffer recyclement. Buffers that are no longer hashed * will have b_vp == NULL, so this takes care of that check * as well. */ if (bp->b_vp != vp || bp->b_loffset != loffset) { #if 0 kprintf("Warning buffer %p (vp %p loffset %lld) " "was recycled\n", bp, vp, (long long)loffset); #endif BUF_UNLOCK(bp); goto loop; } /* * If SZMATCH any pre-existing buffer must be of the requested * size or NULL is returned. The caller absolutely does not * want getblk() to bwrite() the buffer on a size mismatch. */ if ((blkflags & GETBLK_SZMATCH) && size != bp->b_bcount) { BUF_UNLOCK(bp); return(NULL); } /* * All vnode-based buffers must be backed by a VM object. * * Set B_KVABIO for any incidental work, we will fix it * up later. */ KKASSERT(bp->b_flags & B_VMIO); KKASSERT(bp->b_cmd == BUF_CMD_DONE); bp->b_flags &= ~B_AGE; bp->b_flags |= B_KVABIO; /* * Make sure that B_INVAL buffers do not have a cached * block number translation. */ if ((bp->b_flags & B_INVAL) && (bp->b_bio2.bio_offset != NOOFFSET)) { kprintf("Warning invalid buffer %p (vp %p loffset %lld)" " did not have cleared bio_offset cache\n", bp, vp, (long long)loffset); clearbiocache(&bp->b_bio2); } /* * The buffer is locked. B_CACHE is cleared if the buffer is * invalid. * * After the bremfree(), disposals must use b[q]relse(). */ if (bp->b_flags & B_INVAL) bp->b_flags &= ~B_CACHE; bremfree(bp); /* * Any size inconsistancy with a dirty buffer or a buffer * with a softupdates dependancy must be resolved. Resizing * the buffer in such circumstances can lead to problems. * * Dirty or dependant buffers are written synchronously. * Other types of buffers are simply released and * reconstituted as they may be backed by valid, dirty VM * pages (but not marked B_DELWRI). * * NFS NOTE: NFS buffers which straddle EOF are oddly-sized * and may be left over from a prior truncation (and thus * no longer represent the actual EOF point), so we * definitely do not want to B_NOCACHE the backing store. */ if (size != bp->b_bcount) { if (bp->b_flags & B_DELWRI) { bp->b_flags |= B_RELBUF; bwrite(bp); } else if (LIST_FIRST(&bp->b_dep)) { bp->b_flags |= B_RELBUF; bwrite(bp); } else { bp->b_flags |= B_RELBUF; brelse(bp); } goto loop; } KKASSERT(size <= bp->b_kvasize); KASSERT(bp->b_loffset != NOOFFSET, ("getblk: no buffer offset")); /* * A buffer with B_DELWRI set and B_CACHE clear must * be committed before we can return the buffer in * order to prevent the caller from issuing a read * ( due to B_CACHE not being set ) and overwriting * it. * * Most callers, including NFS and FFS, need this to * operate properly either because they assume they * can issue a read if B_CACHE is not set, or because * ( for example ) an uncached B_DELWRI might loop due * to softupdates re-dirtying the buffer. In the latter * case, B_CACHE is set after the first write completes, * preventing further loops. * * NOTE! b*write() sets B_CACHE. If we cleared B_CACHE * above while extending the buffer, we cannot allow the * buffer to remain with B_CACHE set after the write * completes or it will represent a corrupt state. To * deal with this we set B_NOCACHE to scrap the buffer * after the write. * * XXX Should this be B_RELBUF instead of B_NOCACHE? * I'm not even sure this state is still possible * now that getblk() writes out any dirty buffers * on size changes. * * We might be able to do something fancy, like setting * B_CACHE in bwrite() except if B_DELWRI is already set, * so the below call doesn't set B_CACHE, but that gets real * confusing. This is much easier. */ if ((bp->b_flags & (B_CACHE|B_DELWRI)) == B_DELWRI) { kprintf("getblk: Warning, bp %p loff=%jx DELWRI set " "and CACHE clear, b_flags %08x\n", bp, (uintmax_t)bp->b_loffset, bp->b_flags); bp->b_flags |= B_NOCACHE; bwrite(bp); goto loop; } } else { /* * Buffer is not in-core, create new buffer. The buffer * returned by getnewbuf() is locked. Note that the returned * buffer is also considered valid (not marked B_INVAL). * * Calculating the offset for the I/O requires figuring out * the block size. We use DEV_BSIZE for VBLK or VCHR and * the mount's f_iosize otherwise. If the vnode does not * have an associated mount we assume that the passed size is * the block size. * * Note that vn_isdisk() cannot be used here since it may * return a failure for numerous reasons. Note that the * buffer size may be larger then the block size (the caller * will use block numbers with the proper multiple). Beware * of using any v_* fields which are part of unions. In * particular, in DragonFly the mount point overloading * mechanism uses the namecache only and the underlying * directory vnode is not a special case. */ int bsize, maxsize; if (vp->v_type == VBLK || vp->v_type == VCHR) bsize = DEV_BSIZE; else if (vp->v_mount) bsize = vp->v_mount->mnt_stat.f_iosize; else bsize = size; maxsize = size + (loffset & PAGE_MASK); maxsize = imax(maxsize, bsize); bp = getnewbuf(blkflags, slptimeo, size, maxsize); if (bp == NULL) { if (slpflags || slptimeo) return NULL; goto loop; } /* * Atomically insert the buffer into the hash, so that it can * be found by findblk(). * * If bgetvp() returns non-zero a collision occured, and the * bp will not be associated with the vnode. * * Make sure the translation layer has been cleared. */ bp->b_loffset = loffset; bp->b_bio2.bio_offset = NOOFFSET; /* bp->b_bio2.bio_next = NULL; */ if (bgetvp(vp, bp, size)) { bp->b_flags |= B_INVAL; brelse(bp); goto loop; } /* * All vnode-based buffers must be backed by a VM object. * * Set B_KVABIO for incidental work */ KKASSERT(vp->v_object != NULL); bp->b_flags |= B_VMIO | B_KVABIO; KKASSERT(bp->b_cmd == BUF_CMD_DONE); allocbuf(bp, size); } /* * Do the nasty smp broadcast (if the buffer needs it) when KVABIO * is not supported. */ if (bp && (blkflags & GETBLK_KVABIO) == 0) { bkvasync_all(bp); } return (bp); } /* * regetblk(bp) * * Reacquire a buffer that was previously released to the locked queue, * or reacquire a buffer which is interlocked by having bioops->io_deallocate * set B_LOCKED (which handles the acquisition race). * * To this end, either B_LOCKED must be set or the dependancy list must be * non-empty. */ void regetblk(struct buf *bp) { KKASSERT((bp->b_flags & B_LOCKED) || LIST_FIRST(&bp->b_dep) != NULL); BUF_LOCK(bp, LK_EXCLUSIVE | LK_RETRY); bremfree(bp); } /* * allocbuf: * * This code constitutes the buffer memory from either anonymous system * memory (in the case of non-VMIO operations) or from an associated * VM object (in the case of VMIO operations). This code is able to * resize a buffer up or down. * * Note that this code is tricky, and has many complications to resolve * deadlock or inconsistant data situations. Tread lightly!!! * There are B_CACHE and B_DELWRI interactions that must be dealt with by * the caller. Calling this code willy nilly can result in the loss of * data. * * allocbuf() only adjusts B_CACHE for VMIO buffers. getblk() deals with * B_CACHE for the non-VMIO case. * * This routine does not need to be called from a critical section but you * must own the buffer. */ void allocbuf(struct buf *bp, int size) { vm_page_t m; int newbsize; int desiredpages; int i; if (BUF_LOCKINUSE(bp) == 0) panic("allocbuf: buffer not busy"); if (bp->b_kvasize < size) panic("allocbuf: buffer too small"); KKASSERT(bp->b_flags & B_VMIO); newbsize = roundup2(size, DEV_BSIZE); desiredpages = ((int)(bp->b_loffset & PAGE_MASK) + newbsize + PAGE_MASK) >> PAGE_SHIFT; KKASSERT(desiredpages <= XIO_INTERNAL_PAGES); /* * Set B_CACHE initially if buffer is 0 length or will become * 0-length. */ if (size == 0 || bp->b_bufsize == 0) bp->b_flags |= B_CACHE; if (newbsize < bp->b_bufsize) { /* * DEV_BSIZE aligned new buffer size is less then the * DEV_BSIZE aligned existing buffer size. Figure out * if we have to remove any pages. */ if (desiredpages < bp->b_xio.xio_npages) { for (i = desiredpages; i < bp->b_xio.xio_npages; i++) { /* * the page is not freed here -- it * is the responsibility of * vnode_pager_setsize */ m = bp->b_xio.xio_pages[i]; KASSERT(m != bogus_page, ("allocbuf: bogus page found")); vm_page_busy_wait(m, TRUE, "biodep"); bp->b_xio.xio_pages[i] = NULL; vm_page_unwire(m, 0); vm_page_wakeup(m); } pmap_qremove_noinval((vm_offset_t) trunc_page((vm_offset_t)bp->b_data) + (desiredpages << PAGE_SHIFT), (bp->b_xio.xio_npages - desiredpages)); bp->b_xio.xio_npages = desiredpages; /* * Don't bother invalidating the pmap changes * (which wastes global SMP invalidation IPIs) * when setting the size to 0. This case occurs * when called via getnewbuf() during buffer * recyclement. */ if (desiredpages == 0) { CPUMASK_ASSZERO(bp->b_cpumask); } else { bkvareset(bp); } } } else if (size > bp->b_bcount) { /* * We are growing the buffer, possibly in a * byte-granular fashion. */ struct vnode *vp; vm_object_t obj; vm_offset_t toff; vm_offset_t tinc; /* * Step 1, bring in the VM pages from the object, * allocating them if necessary. We must clear * B_CACHE if these pages are not valid for the * range covered by the buffer. */ vp = bp->b_vp; obj = vp->v_object; vm_object_hold(obj); while (bp->b_xio.xio_npages < desiredpages) { vm_page_t m; vm_pindex_t pi; int error; pi = OFF_TO_IDX(bp->b_loffset) + bp->b_xio.xio_npages; /* * Blocking on m->busy_count might lead to a * deadlock: * * vm_fault->getpages->cluster_read->allocbuf */ m = vm_page_lookup_busy_try(obj, pi, FALSE, &error); if (error) { vm_page_sleep_busy(m, FALSE, "pgtblk"); continue; } if (m == NULL) { /* * note: must allocate system pages * since blocking here could intefere * with paging I/O, no matter which * process we are. */ m = bio_page_alloc(bp, obj, pi, desiredpages - bp->b_xio.xio_npages); if (m) { vm_page_wire(m); vm_page_wakeup(m); bp->b_flags &= ~B_CACHE; bp->b_xio.xio_pages[bp->b_xio.xio_npages] = m; ++bp->b_xio.xio_npages; } continue; } /* * We found a page and were able to busy it. */ vm_page_wire(m); vm_page_wakeup(m); bp->b_xio.xio_pages[bp->b_xio.xio_npages] = m; ++bp->b_xio.xio_npages; if (bp->b_act_count < m->act_count) bp->b_act_count = m->act_count; } vm_object_drop(obj); /* * Step 2. We've loaded the pages into the buffer, * we have to figure out if we can still have B_CACHE * set. Note that B_CACHE is set according to the * byte-granular range ( bcount and size ), not the * aligned range ( newbsize ). * * The VM test is against m->valid, which is DEV_BSIZE * aligned. Needless to say, the validity of the data * needs to also be DEV_BSIZE aligned. Note that this * fails with NFS if the server or some other client * extends the file's EOF. If our buffer is resized, * B_CACHE may remain set! XXX */ toff = bp->b_bcount; tinc = PAGE_SIZE - ((bp->b_loffset + toff) & PAGE_MASK); while ((bp->b_flags & B_CACHE) && toff < size) { vm_pindex_t pi; if (tinc > (size - toff)) tinc = size - toff; pi = ((bp->b_loffset & PAGE_MASK) + toff) >> PAGE_SHIFT; vfs_buf_test_cache( bp, bp->b_loffset, toff, tinc, bp->b_xio.xio_pages[pi] ); toff += tinc; tinc = PAGE_SIZE; } /* * Step 3, fixup the KVM pmap. Remember that * bp->b_data is relative to bp->b_loffset, but * bp->b_loffset may be offset into the first page. */ bp->b_data = (caddr_t)trunc_page((vm_offset_t)bp->b_data); pmap_qenter_noinval((vm_offset_t)bp->b_data, bp->b_xio.xio_pages, bp->b_xio.xio_npages); bp->b_data = (caddr_t)((vm_offset_t)bp->b_data | (vm_offset_t)(bp->b_loffset & PAGE_MASK)); bkvareset(bp); } atomic_add_long(&bufspace, newbsize - bp->b_bufsize); /* adjust space use on already-dirty buffer */ if (bp->b_flags & B_DELWRI) { /* dirtykvaspace unchanged */ atomic_add_long(&dirtybufspace, newbsize - bp->b_bufsize); if (bp->b_flags & B_HEAVY) { atomic_add_long(&dirtybufspacehw, newbsize - bp->b_bufsize); } } bp->b_bufsize = newbsize; /* actual buffer allocation */ bp->b_bcount = size; /* requested buffer size */ bufspacewakeup(); } /* * biowait: * * Wait for buffer I/O completion, returning error status. B_EINTR * is converted into an EINTR error but not cleared (since a chain * of biowait() calls may occur). * * On return bpdone() will have been called but the buffer will remain * locked and will not have been brelse()'d. * * NOTE! If a timeout is specified and ETIMEDOUT occurs the I/O is * likely still in progress on return. * * NOTE! This operation is on a BIO, not a BUF. * * NOTE! BIO_DONE is cleared by vn_strategy() */ static __inline int _biowait(struct bio *bio, const char *wmesg, int to) { struct buf *bp = bio->bio_buf; u_int32_t flags; u_int32_t nflags; int error; KKASSERT(bio == &bp->b_bio1); for (;;) { flags = bio->bio_flags; if (flags & BIO_DONE) break; nflags = flags | BIO_WANT; tsleep_interlock(bio, 0); if (atomic_cmpset_int(&bio->bio_flags, flags, nflags)) { if (wmesg) error = tsleep(bio, PINTERLOCKED, wmesg, to); else if (bp->b_cmd == BUF_CMD_READ) error = tsleep(bio, PINTERLOCKED, "biord", to); else error = tsleep(bio, PINTERLOCKED, "biowr", to); if (error) { kprintf("tsleep error biowait %d\n", error); return (error); } } } /* * Finish up. */ KKASSERT(bp->b_cmd == BUF_CMD_DONE); bio->bio_flags &= ~(BIO_DONE | BIO_SYNC); if (bp->b_flags & B_EINTR) return (EINTR); if (bp->b_flags & B_ERROR) return (bp->b_error ? bp->b_error : EIO); return (0); } int biowait(struct bio *bio, const char *wmesg) { return(_biowait(bio, wmesg, 0)); } int biowait_timeout(struct bio *bio, const char *wmesg, int to) { return(_biowait(bio, wmesg, to)); } /* * This associates a tracking count with an I/O. vn_strategy() and * dev_dstrategy() do this automatically but there are a few cases * where a vnode or device layer is bypassed when a block translation * is cached. In such cases bio_start_transaction() may be called on * the bypassed layers so the system gets an I/O in progress indication * for those higher layers. */ void bio_start_transaction(struct bio *bio, struct bio_track *track) { bio->bio_track = track; bio_track_ref(track); dsched_buf_enter(bio->bio_buf); /* might stack */ } /* * Initiate I/O on a vnode. * * SWAPCACHE OPERATION: * * Real buffer cache buffers have a non-NULL bp->b_vp. Unfortunately * devfs also uses b_vp for fake buffers so we also have to check * that B_PAGING is 0. In this case the passed 'vp' is probably the * underlying block device. The swap assignments are related to the * buffer cache buffer's b_vp, not the passed vp. * * The passed vp == bp->b_vp only in the case where the strategy call * is made on the vp itself for its own buffers (a regular file or * block device vp). The filesystem usually then re-calls vn_strategy() * after translating the request to an underlying device. * * Cluster buffers set B_CLUSTER and the passed vp is the vp of the * underlying buffer cache buffers. * * We can only deal with page-aligned buffers at the moment, because * we can't tell what the real dirty state for pages straddling a buffer * are. * * In order to call swap_pager_strategy() we must provide the VM object * and base offset for the underlying buffer cache pages so it can find * the swap blocks. */ void vn_strategy(struct vnode *vp, struct bio *bio) { struct bio_track *track; struct buf *bp = bio->bio_buf; KKASSERT(bp->b_cmd != BUF_CMD_DONE); /* * Set when an I/O is issued on the bp. Cleared by consumers * (aka HAMMER), allowing the consumer to determine if I/O had * actually occurred. */ bp->b_flags |= B_IOISSUED; /* * Handle the swapcache intercept. * * NOTE: The swapcache itself always supports KVABIO and will * do the right thing if its underlying devices do not. */ if (vn_cache_strategy(vp, bio)) return; /* * If the vnode does not support KVABIO and the buffer is using * KVABIO, we must synchronize b_data to all cpus before dispatching. */ if ((vp->v_flag & VKVABIO) == 0 && (bp->b_flags & B_KVABIO)) bkvasync_all(bp); /* * Otherwise do the operation through the filesystem */ if (bp->b_cmd == BUF_CMD_READ) track = &vp->v_track_read; else track = &vp->v_track_write; KKASSERT((bio->bio_flags & BIO_DONE) == 0); bio->bio_track = track; bio_track_ref(track); dsched_buf_enter(bp); /* might stack */ vop_strategy(*vp->v_ops, vp, bio); } /* * vn_cache_strategy() * * Returns 1 if the interrupt was successful, 0 if not. * * NOTE: This function supports the KVABIO API wherein b_data might not * be synchronized to the current cpu. */ static void vn_cache_strategy_callback(struct bio *bio); int vn_cache_strategy(struct vnode *vp, struct bio *bio) { struct buf *bp = bio->bio_buf; struct bio *nbio; vm_object_t object; vm_page_t m; int i; /* * Stop using swapcache if paniced, dumping, or dumped */ if (panicstr || dumping) return(0); /* * Is this buffer cache buffer suitable for reading from * the swap cache? */ if (vm_swapcache_read_enable == 0 || bp->b_cmd != BUF_CMD_READ || ((bp->b_flags & B_CLUSTER) == 0 && (bp->b_vp == NULL || (bp->b_flags & B_PAGING))) || ((int)bp->b_loffset & PAGE_MASK) != 0 || (bp->b_bcount & PAGE_MASK) != 0) { return(0); } /* * Figure out the original VM object (it will match the underlying * VM pages). Note that swap cached data uses page indices relative * to that object, not relative to bio->bio_offset. */ if (bp->b_flags & B_CLUSTER) object = vp->v_object; else object = bp->b_vp->v_object; /* * In order to be able to use the swap cache all underlying VM * pages must be marked as such, and we can't have any bogus pages. */ for (i = 0; i < bp->b_xio.xio_npages; ++i) { m = bp->b_xio.xio_pages[i]; if ((m->flags & PG_SWAPPED) == 0) break; if (m == bogus_page) break; } /* * If we are good then issue the I/O using swap_pager_strategy(). * * We can only do this if the buffer actually supports object-backed * I/O. If it doesn't npages will be 0. */ if (i && i == bp->b_xio.xio_npages) { m = bp->b_xio.xio_pages[0]; nbio = push_bio(bio); nbio->bio_done = vn_cache_strategy_callback; nbio->bio_offset = ptoa(m->pindex); KKASSERT(m->object == object); swap_pager_strategy(object, nbio); return(1); } return(0); } /* * This is a bit of a hack but since the vn_cache_strategy() function can * override a VFS's strategy function we must make sure that the bio, which * is probably bio2, doesn't leak an unexpected offset value back to the * filesystem. The filesystem (e.g. UFS) might otherwise assume that the * bio went through its own file strategy function and the the bio2 offset * is a cached disk offset when, in fact, it isn't. */ static void vn_cache_strategy_callback(struct bio *bio) { bio->bio_offset = NOOFFSET; biodone(pop_bio(bio)); } /* * bpdone: * * Finish I/O on a buffer after all BIOs have been processed. * Called when the bio chain is exhausted or by biowait. If called * by biowait, elseit is typically 0. * * bpdone is also responsible for setting B_CACHE in a B_VMIO bp. * In a non-VMIO bp, B_CACHE will be set on the next getblk() * assuming B_INVAL is clear. * * For the VMIO case, we set B_CACHE if the op was a read and no * read error occured, or if the op was a write. B_CACHE is never * set if the buffer is invalid or otherwise uncacheable. * * bpdone does not mess with B_INVAL, allowing the I/O routine or the * initiator to leave B_INVAL set to brelse the buffer out of existance * in the biodone routine. * * bpdone is responsible for calling bundirty() on the buffer after a * successful write. We previously did this prior to initiating the * write under the assumption that the buffer might be dirtied again * while the write was in progress, however doing it before-hand creates * a race condition prior to the call to vn_strategy() where the * filesystem may not be aware that a dirty buffer is present. * It should not be possible for the buffer or its underlying pages to * be redirtied prior to bpdone()'s unbusying of the underlying VM * pages. */ void bpdone(struct buf *bp, int elseit) { buf_cmd_t cmd; KASSERT(BUF_LOCKINUSE(bp), ("bpdone: bp %p not busy", bp)); KASSERT(bp->b_cmd != BUF_CMD_DONE, ("bpdone: bp %p already done!", bp)); /* * No more BIOs are left. All completion functions have been dealt * with, now we clean up the buffer. */ cmd = bp->b_cmd; bp->b_cmd = BUF_CMD_DONE; /* * Only reads and writes are processed past this point. */ if (cmd != BUF_CMD_READ && cmd != BUF_CMD_WRITE) { if (cmd == BUF_CMD_FREEBLKS) bp->b_flags |= B_NOCACHE; if (elseit) brelse(bp); return; } /* * A failed write must re-dirty the buffer unless B_INVAL * was set. * * A successful write must clear the dirty flag. This is done after * the write to ensure that the buffer remains on the vnode's dirty * list for filesystem interlocks / checks until the write is actually * complete. HAMMER2 is sensitive to this issue. * * Only applicable to normal buffers (with VPs). vinum buffers may * not have a vp. * * Must be done prior to calling buf_complete() as the callback might * re-dirty the buffer. */ if (cmd == BUF_CMD_WRITE) { if ((bp->b_flags & (B_ERROR | B_INVAL)) == B_ERROR) { bp->b_flags &= ~B_NOCACHE; if (bp->b_vp) bdirty(bp); } else { if (bp->b_vp) bundirty(bp); } } /* * Warning: softupdates may re-dirty the buffer, and HAMMER can do * a lot worse. XXX - move this above the clearing of b_cmd */ if (LIST_FIRST(&bp->b_dep) != NULL) buf_complete(bp); if (bp->b_flags & B_VMIO) { int i; vm_ooffset_t foff; vm_page_t m; vm_object_t obj; int iosize; struct vnode *vp = bp->b_vp; obj = vp->v_object; #if defined(VFS_BIO_DEBUG) if (vp->v_auxrefs == 0) panic("bpdone: zero vnode hold count"); if ((vp->v_flag & VOBJBUF) == 0) panic("bpdone: vnode is not setup for merged cache"); #endif foff = bp->b_loffset; KASSERT(foff != NOOFFSET, ("bpdone: no buffer offset")); KASSERT(obj != NULL, ("bpdone: missing VM object")); #if defined(VFS_BIO_DEBUG) if (obj->paging_in_progress < bp->b_xio.xio_npages) { kprintf("bpdone: paging in progress(%d) < " "bp->b_xio.xio_npages(%d)\n", obj->paging_in_progress, bp->b_xio.xio_npages); } #endif /* * Set B_CACHE if the op was a normal read and no error * occured. B_CACHE is set for writes in the b*write() * routines. */ iosize = bp->b_bcount - bp->b_resid; if (cmd == BUF_CMD_READ && (bp->b_flags & (B_INVAL|B_NOCACHE|B_ERROR)) == 0) { bp->b_flags |= B_CACHE; } vm_object_hold(obj); for (i = 0; i < bp->b_xio.xio_npages; i++) { int resid; int isbogus; resid = ((foff + PAGE_SIZE) & ~(off_t)PAGE_MASK) - foff; if (resid > iosize) resid = iosize; /* * cleanup bogus pages, restoring the originals. Since * the originals should still be wired, we don't have * to worry about interrupt/freeing races destroying * the VM object association. */ m = bp->b_xio.xio_pages[i]; if (m == bogus_page) { if ((bp->b_flags & B_HASBOGUS) == 0) panic("bpdone: bp %p corrupt bogus", bp); m = vm_page_lookup(obj, OFF_TO_IDX(foff)); if (m == NULL) panic("bpdone: page disappeared"); bp->b_xio.xio_pages[i] = m; isbogus = 1; } else { isbogus = 0; } #if defined(VFS_BIO_DEBUG) if (OFF_TO_IDX(foff) != m->pindex) { kprintf("bpdone: foff(%lu)/m->pindex(%ld) " "mismatch\n", (unsigned long)foff, (long)m->pindex); } #endif /* * In the write case, the valid and clean bits are * already changed correctly (see bdwrite()), so we * only need to do this here in the read case. */ vm_page_busy_wait(m, FALSE, "bpdpgw"); if (cmd == BUF_CMD_READ && isbogus == 0 && resid > 0) vfs_clean_one_page(bp, i, m); /* * when debugging new filesystems or buffer I/O * methods, this is the most common error that pops * up. if you see this, you have not set the page * busy flag correctly!!! */ if ((m->busy_count & PBUSY_MASK) == 0) { kprintf("bpdone: page busy < 0, " "pindex: %d, foff: 0x(%x,%x), " "resid: %d, index: %d\n", (int) m->pindex, (int)(foff >> 32), (int) foff & 0xffffffff, resid, i); if (!vn_isdisk(vp, NULL)) kprintf(" iosize: %ld, loffset: %lld, " "flags: 0x%08x, npages: %d\n", bp->b_vp->v_mount->mnt_stat.f_iosize, (long long)bp->b_loffset, bp->b_flags, bp->b_xio.xio_npages); else kprintf(" VDEV, loffset: %lld, flags: 0x%08x, npages: %d\n", (long long)bp->b_loffset, bp->b_flags, bp->b_xio.xio_npages); kprintf(" valid: 0x%x, dirty: 0x%x, " "wired: %d\n", m->valid, m->dirty, m->wire_count); panic("bpdone: page busy < 0"); } vm_page_io_finish(m); vm_page_wakeup(m); vm_object_pip_wakeup(obj); foff = (foff + PAGE_SIZE) & ~(off_t)PAGE_MASK; iosize -= resid; } if (bp->b_flags & B_HASBOGUS) { pmap_qenter_noinval(trunc_page((vm_offset_t)bp->b_data), bp->b_xio.xio_pages, bp->b_xio.xio_npages); bp->b_flags &= ~B_HASBOGUS; bkvareset(bp); } vm_object_drop(obj); } /* * Finish up by releasing the buffer. There are no more synchronous * or asynchronous completions, those were handled by bio_done * callbacks. */ if (elseit) { if (bp->b_flags & (B_NOCACHE|B_INVAL|B_ERROR|B_RELBUF)) brelse(bp); else bqrelse(bp); } } /* * Normal biodone. */ void biodone(struct bio *bio) { struct buf *bp = bio->bio_buf; runningbufwakeup(bp); /* * Run up the chain of BIO's. Leave b_cmd intact for the duration. */ while (bio) { biodone_t *done_func; struct bio_track *track; /* * BIO tracking. Most but not all BIOs are tracked. */ if ((track = bio->bio_track) != NULL) { bio_track_rel(track); bio->bio_track = NULL; } /* * A bio_done function terminates the loop. The function * will be responsible for any further chaining and/or * buffer management. * * WARNING! The done function can deallocate the buffer! */ if ((done_func = bio->bio_done) != NULL) { bio->bio_done = NULL; done_func(bio); return; } bio = bio->bio_prev; } /* * If we've run out of bio's do normal [a]synchronous completion. */ bpdone(bp, 1); } /* * Synchronous biodone - this terminates a synchronous BIO. * * bpdone() is called with elseit=FALSE, leaving the buffer completed * but still locked. The caller must brelse() the buffer after waiting * for completion. */ void biodone_sync(struct bio *bio) { struct buf *bp = bio->bio_buf; int flags; int nflags; KKASSERT(bio == &bp->b_bio1); bpdone(bp, 0); for (;;) { flags = bio->bio_flags; nflags = (flags | BIO_DONE) & ~BIO_WANT; if (atomic_cmpset_int(&bio->bio_flags, flags, nflags)) { if (flags & BIO_WANT) wakeup(bio); break; } } } /* * vfs_unbusy_pages: * * This routine is called in lieu of iodone in the case of * incomplete I/O. This keeps the busy status for pages * consistant. */ void vfs_unbusy_pages(struct buf *bp) { int i; runningbufwakeup(bp); if (bp->b_flags & B_VMIO) { struct vnode *vp = bp->b_vp; vm_object_t obj; obj = vp->v_object; vm_object_hold(obj); for (i = 0; i < bp->b_xio.xio_npages; i++) { vm_page_t m = bp->b_xio.xio_pages[i]; /* * When restoring bogus changes the original pages * should still be wired, so we are in no danger of * losing the object association and do not need * critical section protection particularly. */ if (m == bogus_page) { m = vm_page_lookup(obj, OFF_TO_IDX(bp->b_loffset) + i); if (!m) { panic("vfs_unbusy_pages: page missing"); } bp->b_xio.xio_pages[i] = m; } vm_page_busy_wait(m, FALSE, "bpdpgw"); vm_page_io_finish(m); vm_page_wakeup(m); vm_object_pip_wakeup(obj); } if (bp->b_flags & B_HASBOGUS) { pmap_qenter_noinval(trunc_page((vm_offset_t)bp->b_data), bp->b_xio.xio_pages, bp->b_xio.xio_npages); bp->b_flags &= ~B_HASBOGUS; bkvareset(bp); } vm_object_drop(obj); } } /* * vfs_busy_pages: * * This routine is called before a device strategy routine. * It is used to tell the VM system that paging I/O is in * progress, and treat the pages associated with the buffer * almost as being PBUSY_LOCKED. Also the object 'paging_in_progress' * flag is handled to make sure that the object doesn't become * inconsistant. * * Since I/O has not been initiated yet, certain buffer flags * such as B_ERROR or B_INVAL may be in an inconsistant state * and should be ignored. */ void vfs_busy_pages(struct vnode *vp, struct buf *bp) { int i, bogus; struct lwp *lp = curthread->td_lwp; /* * The buffer's I/O command must already be set. If reading, * B_CACHE must be 0 (double check against callers only doing * I/O when B_CACHE is 0). */ KKASSERT(bp->b_cmd != BUF_CMD_DONE); KKASSERT(bp->b_cmd == BUF_CMD_WRITE || (bp->b_flags & B_CACHE) == 0); if (bp->b_flags & B_VMIO) { vm_object_t obj; obj = vp->v_object; KASSERT(bp->b_loffset != NOOFFSET, ("vfs_busy_pages: no buffer offset")); /* * Busy all the pages. We have to busy them all at once * to avoid deadlocks. */ retry: for (i = 0; i < bp->b_xio.xio_npages; i++) { vm_page_t m = bp->b_xio.xio_pages[i]; if (vm_page_busy_try(m, FALSE)) { vm_page_sleep_busy(m, FALSE, "vbpage"); while (--i >= 0) vm_page_wakeup(bp->b_xio.xio_pages[i]); goto retry; } } /* * Setup for I/O, soft-busy the page right now because * the next loop may block. */ for (i = 0; i < bp->b_xio.xio_npages; i++) { vm_page_t m = bp->b_xio.xio_pages[i]; if ((bp->b_flags & B_CLUSTER) == 0) { vm_object_pip_add(obj, 1); vm_page_io_start(m); } } /* * Adjust protections for I/O and do bogus-page mapping. * Assume that vm_page_protect() can block (it can block * if VM_PROT_NONE, don't take any chances regardless). * * In particular note that for writes we must incorporate * page dirtyness from the VM system into the buffer's * dirty range. * * For reads we theoretically must incorporate page dirtyness * from the VM system to determine if the page needs bogus * replacement, but we shortcut the test by simply checking * that all m->valid bits are set, indicating that the page * is fully valid and does not need to be re-read. For any * VM system dirtyness the page will also be fully valid * since it was mapped at one point. */ bogus = 0; for (i = 0; i < bp->b_xio.xio_npages; i++) { vm_page_t m = bp->b_xio.xio_pages[i]; if (bp->b_cmd == BUF_CMD_WRITE) { /* * When readying a vnode-backed buffer for * a write we must zero-fill any invalid * portions of the backing VM pages, mark * it valid and clear related dirty bits. * * vfs_clean_one_page() incorporates any * VM dirtyness and updates the b_dirtyoff * range (after we've made the page RO). * * It is also expected that the pmap modified * bit has already been cleared by the * vm_page_protect(). We may not be able * to clear all dirty bits for a page if it * was also memory mapped (NFS). * * Finally be sure to unassign any swap-cache * backing store as it is now stale. */ vm_page_protect(m, VM_PROT_READ); vfs_clean_one_page(bp, i, m); swap_pager_unswapped(m); } else if (m->valid == VM_PAGE_BITS_ALL) { /* * When readying a vnode-backed buffer for * read we must replace any dirty pages with * a bogus page so dirty data is not destroyed * when filling gaps. * * To avoid testing whether the page is * dirty we instead test that the page was * at some point mapped (m->valid fully * valid) with the understanding that * this also covers the dirty case. */ bp->b_xio.xio_pages[i] = bogus_page; bp->b_flags |= B_HASBOGUS; bogus++; } else if (m->valid & m->dirty) { /* * This case should not occur as partial * dirtyment can only happen if the buffer * is B_CACHE, and this code is not entered * if the buffer is B_CACHE. */ kprintf("Warning: vfs_busy_pages - page not " "fully valid! loff=%jx bpf=%08x " "idx=%d val=%02x dir=%02x\n", (uintmax_t)bp->b_loffset, bp->b_flags, i, m->valid, m->dirty); vm_page_protect(m, VM_PROT_NONE); } else { /* * The page is not valid and can be made * part of the read. */ vm_page_protect(m, VM_PROT_NONE); } vm_page_wakeup(m); } if (bogus) { pmap_qenter_noinval(trunc_page((vm_offset_t)bp->b_data), bp->b_xio.xio_pages, bp->b_xio.xio_npages); bkvareset(bp); } } /* * This is the easiest place to put the process accounting for the I/O * for now. */ if (lp != NULL) { if (bp->b_cmd == BUF_CMD_READ) lp->lwp_ru.ru_inblock++; else lp->lwp_ru.ru_oublock++; } } /* * Tell the VM system that the pages associated with this buffer * are clean. This is used for delayed writes where the data is * going to go to disk eventually without additional VM intevention. * * NOTE: While we only really need to clean through to b_bcount, we * just go ahead and clean through to b_bufsize. */ static void vfs_clean_pages(struct buf *bp) { vm_page_t m; int i; if ((bp->b_flags & B_VMIO) == 0) return; KASSERT(bp->b_loffset != NOOFFSET, ("vfs_clean_pages: no buffer offset")); for (i = 0; i < bp->b_xio.xio_npages; i++) { m = bp->b_xio.xio_pages[i]; vfs_clean_one_page(bp, i, m); } } /* * vfs_clean_one_page: * * Set the valid bits and clear the dirty bits in a page within a * buffer. The range is restricted to the buffer's size and the * buffer's logical offset might index into the first page. * * The caller has busied or soft-busied the page and it is not mapped, * test and incorporate the dirty bits into b_dirtyoff/end before * clearing them. Note that we need to clear the pmap modified bits * after determining the the page was dirty, vm_page_set_validclean() * does not do it for us. * * This routine is typically called after a read completes (dirty should * be zero in that case as we are not called on bogus-replace pages), * or before a write is initiated. */ static void vfs_clean_one_page(struct buf *bp, int pageno, vm_page_t m) { int bcount; int xoff; int soff; int eoff; /* * Calculate offset range within the page but relative to buffer's * loffset. loffset might be offset into the first page. */ xoff = (int)bp->b_loffset & PAGE_MASK; /* loffset offset into pg 0 */ bcount = bp->b_bcount + xoff; /* offset adjusted */ if (pageno == 0) { soff = xoff; eoff = PAGE_SIZE; } else { soff = (pageno << PAGE_SHIFT); eoff = soff + PAGE_SIZE; } if (eoff > bcount) eoff = bcount; if (soff >= eoff) return; /* * Test dirty bits and adjust b_dirtyoff/end. * * If dirty pages are incorporated into the bp any prior * B_NEEDCOMMIT state (NFS) must be cleared because the * caller has not taken into account the new dirty data. * * If the page was memory mapped the dirty bits might go beyond the * end of the buffer, but we can't really make the assumption that * a file EOF straddles the buffer (even though this is the case for * NFS if B_NEEDCOMMIT is also set). So for the purposes of clearing * B_NEEDCOMMIT we only test the dirty bits covered by the buffer. * This also saves some console spam. * * When clearing B_NEEDCOMMIT we must also clear B_CLUSTEROK, * NFS can handle huge commits but not huge writes. */ vm_page_test_dirty(m); if (m->dirty) { if ((bp->b_flags & B_NEEDCOMMIT) && (m->dirty & vm_page_bits(soff & PAGE_MASK, eoff - soff))) { if (debug_commit) kprintf("Warning: vfs_clean_one_page: bp %p " "loff=%jx,%d flgs=%08x clr B_NEEDCOMMIT" " cmd %d vd %02x/%02x x/s/e %d %d %d " "doff/end %d %d\n", bp, (uintmax_t)bp->b_loffset, bp->b_bcount, bp->b_flags, bp->b_cmd, m->valid, m->dirty, xoff, soff, eoff, bp->b_dirtyoff, bp->b_dirtyend); bp->b_flags &= ~(B_NEEDCOMMIT | B_CLUSTEROK); if (debug_commit) print_backtrace(-1); } /* * Only clear the pmap modified bits if ALL the dirty bits * are set, otherwise the system might mis-clear portions * of a page. */ if (m->dirty == VM_PAGE_BITS_ALL && (bp->b_flags & B_NEEDCOMMIT) == 0) { pmap_clear_modify(m); } if (bp->b_dirtyoff > soff - xoff) bp->b_dirtyoff = soff - xoff; if (bp->b_dirtyend < eoff - xoff) bp->b_dirtyend = eoff - xoff; } /* * Set related valid bits, clear related dirty bits. * Does not mess with the pmap modified bit. * * WARNING! We cannot just clear all of m->dirty here as the * buffer cache buffers may use a DEV_BSIZE'd aligned * block size, or have an odd size (e.g. NFS at file EOF). * The putpages code can clear m->dirty to 0. * * If a VOP_WRITE generates a buffer cache buffer which * covers the same space as mapped writable pages the * buffer flush might not be able to clear all the dirty * bits and still require a putpages from the VM system * to finish it off. * * WARNING! vm_page_set_validclean() currently assumes vm_token * is held. The page might not be busied (bdwrite() case). * XXX remove this comment once we've validated that this * is no longer an issue. */ vm_page_set_validclean(m, soff & PAGE_MASK, eoff - soff); } #if 0 /* * Similar to vfs_clean_one_page() but sets the bits to valid and dirty. * The page data is assumed to be valid (there is no zeroing here). */ static void vfs_dirty_one_page(struct buf *bp, int pageno, vm_page_t m) { int bcount; int xoff; int soff; int eoff; /* * Calculate offset range within the page but relative to buffer's * loffset. loffset might be offset into the first page. */ xoff = (int)bp->b_loffset & PAGE_MASK; /* loffset offset into pg 0 */ bcount = bp->b_bcount + xoff; /* offset adjusted */ if (pageno == 0) { soff = xoff; eoff = PAGE_SIZE; } else { soff = (pageno << PAGE_SHIFT); eoff = soff + PAGE_SIZE; } if (eoff > bcount) eoff = bcount; if (soff >= eoff) return; vm_page_set_validdirty(m, soff & PAGE_MASK, eoff - soff); } #endif /* * vfs_bio_clrbuf: * * Clear a buffer. This routine essentially fakes an I/O, so we need * to clear B_ERROR and B_INVAL. * * Note that while we only theoretically need to clear through b_bcount, * we go ahead and clear through b_bufsize. */ void vfs_bio_clrbuf(struct buf *bp) { int i, mask = 0; caddr_t sa, ea; KKASSERT(bp->b_flags & B_VMIO); bp->b_flags &= ~(B_INVAL | B_EINTR | B_ERROR); bkvasync(bp); if ((bp->b_xio.xio_npages == 1) && (bp->b_bufsize < PAGE_SIZE) && (bp->b_loffset & PAGE_MASK) == 0) { mask = (1 << (bp->b_bufsize / DEV_BSIZE)) - 1; if ((bp->b_xio.xio_pages[0]->valid & mask) == mask) { bp->b_resid = 0; return; } if ((bp->b_xio.xio_pages[0]->valid & mask) == 0) { bzero(bp->b_data, bp->b_bufsize); bp->b_xio.xio_pages[0]->valid |= mask; bp->b_resid = 0; return; } } sa = bp->b_data; for(i = 0; i < bp->b_xio.xio_npages; i++, sa=ea) { int j = ((vm_offset_t)sa & PAGE_MASK) / DEV_BSIZE; ea = (caddr_t)trunc_page((vm_offset_t)sa + PAGE_SIZE); ea = (caddr_t)(vm_offset_t)ulmin( (u_long)(vm_offset_t)ea, (u_long)(vm_offset_t)bp->b_data + bp->b_bufsize); mask = ((1 << ((ea - sa) / DEV_BSIZE)) - 1) << j; if ((bp->b_xio.xio_pages[i]->valid & mask) == mask) continue; if ((bp->b_xio.xio_pages[i]->valid & mask) == 0) { bzero(sa, ea - sa); } else { for (; sa < ea; sa += DEV_BSIZE, j++) { if ((bp->b_xio.xio_pages[i]->valid & (1<<j)) == 0) { bzero(sa, DEV_BSIZE); } } } bp->b_xio.xio_pages[i]->valid |= mask; } bp->b_resid = 0; } /* * Allocate a page for a buffer cache buffer. * * If NULL is returned the caller is expected to retry (typically check if * the page already exists on retry before trying to allocate one). * * NOTE! Low-memory handling is dealt with in b[q]relse(), not here. This * function will use the system reserve with the hope that the page * allocations can be returned to PQ_CACHE/PQ_FREE when the caller * is done with the buffer. * * NOTE! However, TMPFS is a special case because flushing a dirty buffer * to TMPFS doesn't clean the page. For TMPFS, only the pagedaemon * is capable of retiring pages (to swap). For TMPFS we don't dig * into the system reserve because doing so could stall out pretty * much every process running on the system. */ static vm_page_t bio_page_alloc(struct buf *bp, vm_object_t obj, vm_pindex_t pg, int deficit) { int vmflags = VM_ALLOC_NORMAL | VM_ALLOC_NULL_OK; vm_page_t p; ASSERT_LWKT_TOKEN_HELD(vm_object_token(obj)); /* * Avoid localized page-queue exhaustion by rotating the effective * cpu-base for the BIO page allocation. Remember we are trying to * avoid contention, so we want all the cpus to be in lockstep with * different cpuids. Really serious contention in the kernel page * allocator can occur without this. * * This is kinda anti-NUMA, but localizing file data is a really hard * call. It works great in some situations (temporary files in tmpfs), * and horribly in other situations. * * XXX add some NUMA relocalization (2 zones or 4 zones). */ vmflags |= VM_ALLOC_CPU((mycpu->gd_cpuid + (u_short)ticks) % ncpus); /* * Try a normal allocation first. */ p = vm_page_alloc(obj, pg, vmflags); if (p) return(p); if (vm_page_lookup(obj, pg)) return(NULL); vm_pageout_deficit += deficit; /* * Try again, digging into the system reserve. * * Trying to recover pages from the buffer cache here can deadlock * against other threads trying to busy underlying pages so we * depend on the code in brelse() and bqrelse() to free/cache the * underlying buffer cache pages when memory is low. */ if (curthread->td_flags & TDF_SYSTHREAD) vmflags |= VM_ALLOC_SYSTEM | VM_ALLOC_INTERRUPT; else if (bp->b_vp && bp->b_vp->v_tag == VT_TMPFS) vmflags |= 0; else vmflags |= VM_ALLOC_SYSTEM; /*recoverbufpages();*/ p = vm_page_alloc(obj, pg, vmflags); if (p) return(p); if (vm_page_lookup(obj, pg)) return(NULL); /* * Wait for memory to free up and try again */ if (vm_paging_severe()) ++lowmempgallocs; vm_wait(hz / 20 + 1); p = vm_page_alloc(obj, pg, vmflags); if (p) return(p); if (vm_page_lookup(obj, pg)) return(NULL); /* * Ok, now we are really in trouble. */ if (bootverbose) { static struct krate biokrate = { .freq = 1 }; krateprintf(&biokrate, "Warning: bio_page_alloc: memory exhausted " "during buffer cache page allocation from %s\n", curthread->td_comm); } if (curthread->td_flags & TDF_SYSTHREAD) vm_wait(hz / 20 + 1); else vm_wait(hz / 2 + 1); return (NULL); } /* * The buffer's mapping has changed. Adjust the buffer's memory * synchronization. The caller is the exclusive holder of the buffer * and has set or cleared B_KVABIO according to preference. * * WARNING! If the caller is using B_KVABIO mode, this function will * not map the data to the current cpu. The caller must also * call bkvasync(bp). */ void bkvareset(struct buf *bp) { if (bp->b_flags & B_KVABIO) { CPUMASK_ASSZERO(bp->b_cpumask); } else { CPUMASK_ORMASK(bp->b_cpumask, smp_active_mask); smp_invltlb(); cpu_invltlb(); } } /* * The buffer will be used by the caller on the caller's cpu, synchronize * its data to the current cpu. Caller must control the buffer by holding * its lock, but calling cpu does not necessarily have to be the owner of * the lock (i.e. HAMMER2's concurrent I/O accessors). * * If B_KVABIO is not set, the buffer is already fully synchronized. */ void bkvasync(struct buf *bp) { int cpuid = mycpu->gd_cpuid; char *bdata; if ((bp->b_flags & B_KVABIO) && CPUMASK_TESTBIT(bp->b_cpumask, cpuid) == 0) { bdata = bp->b_data; while (bdata < bp->b_data + bp->b_bufsize) { cpu_invlpg(bdata); bdata += PAGE_SIZE - ((intptr_t)bdata & PAGE_MASK); } ATOMIC_CPUMASK_ORBIT(bp->b_cpumask, cpuid); } } /* * The buffer will be used by a subsystem that does not understand * the KVABIO API. Make sure its data is synchronized to all cpus. * * If B_KVABIO is not set, the buffer is already fully synchronized. * * NOTE! This is the only safe way to clear B_KVABIO on a buffer. */ void bkvasync_all(struct buf *bp) { if (debug_kvabio > 0) { --debug_kvabio; print_backtrace(10); } if ((bp->b_flags & B_KVABIO) && CPUMASK_CMPMASKNEQ(bp->b_cpumask, smp_active_mask)) { smp_invltlb(); cpu_invltlb(); ATOMIC_CPUMASK_ORMASK(bp->b_cpumask, smp_active_mask); } bp->b_flags &= ~B_KVABIO; } /* * Scan all buffers in the system and issue the callback. */ int scan_all_buffers(int (*callback)(struct buf *, void *), void *info) { int count = 0; int error; long n; for (n = 0; n < nbuf; ++n) { if ((error = callback(&buf[n], info)) < 0) { count = error; break; } count += error; } return (count); } /* * nestiobuf_iodone: biodone callback for nested buffers and propagate * completion to the master buffer. */ static void nestiobuf_iodone(struct bio *bio) { struct bio *mbio; struct buf *mbp, *bp; struct devstat *stats; int error; int donebytes; bp = bio->bio_buf; mbio = bio->bio_caller_info1.ptr; stats = bio->bio_caller_info2.ptr; mbp = mbio->bio_buf; KKASSERT(bp->b_bcount <= bp->b_bufsize); KKASSERT(mbp != bp); error = bp->b_error; if (bp->b_error == 0 && (bp->b_bcount < bp->b_bufsize || bp->b_resid > 0)) { /* * Not all got transfered, raise an error. We have no way to * propagate these conditions to mbp. */ error = EIO; } donebytes = bp->b_bufsize; relpbuf(bp, NULL); nestiobuf_done(mbio, donebytes, error, stats); } void nestiobuf_done(struct bio *mbio, int donebytes, int error, struct devstat *stats) { struct buf *mbp; mbp = mbio->bio_buf; KKASSERT((int)(intptr_t)mbio->bio_driver_info > 0); /* * If an error occured, propagate it to the master buffer. * * Several biodone()s may wind up running concurrently so * use an atomic op to adjust b_flags. */ if (error) { mbp->b_error = error; atomic_set_int(&mbp->b_flags, B_ERROR); } /* * Decrement the operations in progress counter and terminate the * I/O if this was the last bit. */ if (atomic_fetchadd_int((int *)&mbio->bio_driver_info, -1) == 1) { mbp->b_resid = 0; if (stats) devstat_end_transaction_buf(stats, mbp); biodone(mbio); } } /* * Initialize a nestiobuf for use. Set an initial count of 1 to prevent * the mbio from being biodone()'d while we are still adding sub-bios to * it. */ void nestiobuf_init(struct bio *bio) { bio->bio_driver_info = (void *)1; } /* * The BIOs added to the nestedio have already been started, remove the * count that placeheld our mbio and biodone() it if the count would * transition to 0. */ void nestiobuf_start(struct bio *mbio) { struct buf *mbp = mbio->bio_buf; /* * Decrement the operations in progress counter and terminate the * I/O if this was the last bit. */ if (atomic_fetchadd_int((int *)&mbio->bio_driver_info, -1) == 1) { if (mbp->b_flags & B_ERROR) mbp->b_resid = mbp->b_bcount; else mbp->b_resid = 0; biodone(mbio); } } /* * Set an intermediate error prior to calling nestiobuf_start() */ void nestiobuf_error(struct bio *mbio, int error) { struct buf *mbp = mbio->bio_buf; if (error) { mbp->b_error = error; atomic_set_int(&mbp->b_flags, B_ERROR); } } /* * nestiobuf_add: setup a "nested" buffer. * * => 'mbp' is a "master" buffer which is being divided into sub pieces. * => 'bp' should be a buffer allocated by getiobuf. * => 'offset' is a byte offset in the master buffer. * => 'size' is a size in bytes of this nested buffer. */ void nestiobuf_add(struct bio *mbio, struct buf *bp, int offset, size_t size, struct devstat *stats) { struct buf *mbp = mbio->bio_buf; struct vnode *vp = mbp->b_vp; KKASSERT(mbp->b_bcount >= offset + size); atomic_add_int((int *)&mbio->bio_driver_info, 1); /* kernel needs to own the lock for it to be released in biodone */ BUF_KERNPROC(bp); bp->b_vp = vp; bp->b_cmd = mbp->b_cmd; bp->b_bio1.bio_done = nestiobuf_iodone; bp->b_data = (char *)mbp->b_data + offset; bp->b_resid = bp->b_bcount = size; bp->b_bufsize = bp->b_bcount; bp->b_bio1.bio_track = NULL; bp->b_bio1.bio_caller_info1.ptr = mbio; bp->b_bio1.bio_caller_info2.ptr = stats; } const char * buf_cmd_name(struct buf *bp) { const char *name; switch(bp->b_cmd) { case BUF_CMD_DONE: name = "(DONE)"; break; case BUF_CMD_READ: name = "READ"; break; case BUF_CMD_WRITE: name = "WRITE"; break; case BUF_CMD_FREEBLKS: name = "FREEBLKS"; break; case BUF_CMD_FORMAT: name = "FORMAT"; break; case BUF_CMD_FLUSH: name = "FLUSH"; break; default: name = "(UNKNOWN)"; break; } return name; } #ifdef DDB DB_SHOW_COMMAND(buffer, db_show_buffer) { /* get args */ struct buf *bp = (struct buf *)addr; if (!have_addr) { db_printf("usage: show buffer <addr>\n"); return; } db_printf("b_flags = 0x%pb%i\n", PRINT_BUF_FLAGS, bp->b_flags); db_printf("b_cmd = %d\n", bp->b_cmd); db_printf("b_error = %d, b_bufsize = %d, b_bcount = %d, " "b_resid = %d\n, b_data = %p, " "bio_offset(disk) = %lld, bio_offset(phys) = %lld\n", bp->b_error, bp->b_bufsize, bp->b_bcount, bp->b_resid, bp->b_data, (long long)bp->b_bio2.bio_offset, (long long)(bp->b_bio2.bio_next ? bp->b_bio2.bio_next->bio_offset : (off_t)-1)); if (bp->b_xio.xio_npages) { int i; db_printf("b_xio.xio_npages = %d, pages(OBJ, IDX, PA): ", bp->b_xio.xio_npages); for (i = 0; i < bp->b_xio.xio_npages; i++) { vm_page_t m; m = bp->b_xio.xio_pages[i]; db_printf("(%p, 0x%lx, 0x%lx)", (void *)m->object, (u_long)m->pindex, (u_long)VM_PAGE_TO_PHYS(m)); if ((i + 1) < bp->b_xio.xio_npages) db_printf(","); } db_printf("\n"); } } #endif /* DDB */ |