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
|
/* -*- Mode: C; c-basic-offset:4 ; indent-tabs-mode:nil -*- */
/*
* Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
* University Research and Technology
* Corporation. All rights reserved.
* Copyright (c) 2004-2008 The University of Tennessee and The University
* of Tennessee Research Foundation. All rights
* reserved.
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
* University of Stuttgart. All rights reserved.
* Copyright (c) 2004-2005 The Regents of the University of California.
* All rights reserved.
* Copyright (c) 2006 Sandia National Laboratories. All rights
* reserved.
* Copyright (c) 2009-2019 Cisco Systems, Inc. All rights reserved
* Copyright (c) 2014-2016 Los Alamos National Security, LLC. All rights
* reserved.
* Copyright (c) 2014-2020 Intel, Inc. All rights reserved.
* Copyright (c) 2018 Amazon.com, Inc. or its affiliates. All Rights reserved.
* $COPYRIGHT$
*
* Additional copyrights may follow
*
* $HEADER$
*/
#include "opal_config.h"
#include <errno.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include <unistd.h>
#include "opal/class/opal_bitmap.h"
#include "opal/datatype/opal_convertor.h"
#include "opal/mca/memchecker/base/base.h"
#include "opal/prefetch.h"
#include "opal/util/output.h"
#include "opal/util/printf.h"
#include "opal/util/show_help.h"
#include "opal_stdint.h"
#include "opal/mca/btl/base/btl_base_error.h"
#include "opal/mca/btl/btl.h"
#include "opal/mca/mpool/base/base.h"
#include "opal/mca/mpool/mpool.h"
#include "opal/mca/rcache/base/base.h"
#include "opal/mca/rcache/rcache.h"
#include "btl_usnic.h"
#include "btl_usnic_ack.h"
#include "btl_usnic_compat.h"
#include "btl_usnic_connectivity.h"
#include "btl_usnic_endpoint.h"
#include "btl_usnic_frag.h"
#include "btl_usnic_hwloc.h"
#include "btl_usnic_module.h"
#include "btl_usnic_proc.h"
#include "btl_usnic_send.h"
#include "btl_usnic_stats.h"
#include "btl_usnic_util.h"
static void finalize_one_channel(opal_btl_usnic_module_t *module,
struct opal_btl_usnic_channel_t *channel);
static int channel_addr2str(opal_btl_usnic_module_t *module, int channel, char *str,
size_t len_param)
{
size_t len;
len = len_param;
fi_av_straddr(module->av, module->mod_channels[channel].info->src_addr, str, &len);
if (len > len_param) {
opal_show_help("help-mpi-btl-usnic.txt", "libfabric API failed", true,
opal_process_info.nodename, module->linux_device_name, "fi_av_straddr",
__FILE__, __LINE__, FI_ENODATA,
"Failed to convert address to string: buffer too short");
return OPAL_ERR_OUT_OF_RESOURCE;
}
return OPAL_SUCCESS;
}
/*
* Loop over a block of procs sent to us in add_procs and see if we
* want to add a proc/endpoint for them.
*/
static int add_procs_block_create_endpoints(opal_btl_usnic_module_t *module, size_t block_offset,
size_t block_len, opal_proc_t **procs,
mca_btl_base_endpoint_t **endpoints)
{
int rc;
opal_proc_t *my_proc;
size_t num_created = 0;
char *errhost;
/* get pointer to my proc structure */
my_proc = opal_proc_local_get();
if (NULL == my_proc) {
return OPAL_ERR_OUT_OF_RESOURCE;
}
/* Loop over a block in the procs we were given */
for (size_t i = block_offset; i < (block_offset + block_len); i++) {
struct opal_proc_t *opal_proc = procs[i];
opal_btl_usnic_proc_t *usnic_proc;
mca_btl_base_endpoint_t *usnic_endpoint;
endpoints[i] = NULL;
/* Do not create loopback usnic connections */
if (opal_proc == my_proc) {
opal_output_verbose(75, USNIC_OUT, "btl:usnic:add_procs:%s: not connecting to self",
module->linux_device_name);
continue;
}
/* usNIC does not support loopback to the same machine */
if (OPAL_PROC_ON_LOCAL_NODE(opal_proc->proc_flags)) {
opal_output_verbose(75, USNIC_OUT,
"btl:usnic:add_procs:%s: not connecting to %s on same server",
module->linux_device_name,
usnic_compat_proc_name_print(&opal_proc->proc_name));
continue;
}
/* Find (or create if it doesn't exist) this peer's proc.
This will receive the modex info for that proc. Note that
the proc is shared by all usnic modules that are trying
to reach this destination. */
usnic_proc = NULL;
rc = opal_btl_usnic_proc_match(opal_proc, module, &usnic_proc);
if (OPAL_ERR_UNREACH == rc) {
/* If the peer doesn't have usnic modex info, then we just
skip it */
if (74 < opal_output_get_verbosity(USNIC_OUT)) {
errhost = opal_get_proc_hostname(opal_proc);
opal_output(0,
"btl:usnic:add_procs:%s: peer %s on %s does not have usnic modex info; "
"skipping",
module->linux_device_name,
usnic_compat_proc_name_print(&opal_proc->proc_name), errhost);
free(errhost);
}
continue;
} else if (OPAL_SUCCESS != rc) {
return OPAL_ERR_OUT_OF_RESOURCE;
}
/* Create the endpoint for this proc/module combination. If we cannot
* reach this proc via this module, move on to the next proc. */
usnic_endpoint = NULL;
rc = opal_btl_usnic_create_endpoint(module, usnic_proc, &usnic_endpoint);
if (OPAL_SUCCESS != rc) {
if (4 < opal_output_get_verbosity(USNIC_OUT)) {
errhost = opal_get_proc_hostname(opal_proc);
opal_output(0, "btl:usnic:add_procs:%s: unable to create endpoint to peer %s on %s",
module->linux_device_name,
usnic_compat_proc_name_print(&opal_proc->proc_name), errhost);
free(errhost);
}
OBJ_RELEASE(usnic_proc);
continue;
}
/* We like this new endpoint; save it */
opal_pointer_array_add(&module->all_procs, usnic_proc);
char str[IPV4STRADDRLEN];
struct opal_btl_usnic_modex_t *modex = &usnic_endpoint->endpoint_remote_modex;
opal_btl_usnic_snprintf_ipv4_addr(str, sizeof(str), modex->ipv4_addr, modex->netmask);
char local_pri_addr[64] = {0};
rc = channel_addr2str(module, USNIC_PRIORITY_CHANNEL, local_pri_addr,
sizeof(local_pri_addr));
if (OPAL_SUCCESS != rc) {
OBJ_RELEASE(usnic_proc);
continue;
}
char local_data_addr[64] = {0};
rc = channel_addr2str(module, USNIC_DATA_CHANNEL, local_data_addr, sizeof(local_data_addr));
if (OPAL_SUCCESS != rc) {
OBJ_RELEASE(usnic_proc);
continue;
}
opal_output_verbose(5, USNIC_OUT,
"btl:usnic:add_procs:%s: new usnic peer endpoint: pri=%s:%d, "
"data=%s:%d (local: pri=%s, data=%s)",
module->linux_device_name, str, modex->ports[USNIC_PRIORITY_CHANNEL],
str, modex->ports[USNIC_DATA_CHANNEL], local_pri_addr, local_data_addr);
endpoints[i] = usnic_endpoint;
++num_created;
}
opal_output_verbose(5, USNIC_OUT, "btl:usnic: made %" PRIsize_t " endpoints", num_created);
return OPAL_SUCCESS;
}
/*
* Print a warning about how the remote peer was unreachable.
*
* This is a separate helper function simply because it's somewhat
* bulky to put inline.
*/
static void add_procs_warn_unreachable(opal_btl_usnic_module_t *module,
opal_btl_usnic_endpoint_t *endpoint)
{
char *errhost;
/* Only show the warning if it is enabled */
if (!mca_btl_usnic_component.show_route_failures) {
return;
}
char remote[IPV4STRADDRLEN];
opal_btl_usnic_snprintf_ipv4_addr(remote, sizeof(remote),
endpoint->endpoint_remote_modex.ipv4_addr,
endpoint->endpoint_remote_modex.netmask);
opal_output_verbose(15, USNIC_OUT, "btl:usnic: %s (which is %s) couldn't reach peer %s",
module->linux_device_name, module->if_ipv4_addr_str, remote);
errhost = opal_get_proc_hostname(endpoint->endpoint_proc->proc_opal);
opal_show_help("help-mpi-btl-usnic.txt", "unreachable peer IP", true,
opal_process_info.nodename, module->if_ipv4_addr_str, module->linux_device_name,
errhost, remote);
free(errhost);
}
/* A bunch of calls to fi_av_insert() were previously
* invoked. Go reap them all.
*/
static int add_procs_block_reap_fi_av_inserts(opal_btl_usnic_module_t *module, size_t block_offset,
size_t block_len,
struct mca_btl_base_endpoint_t **endpoints)
{
int ret = OPAL_SUCCESS;
int num_left;
size_t i, channel;
uint32_t event;
struct fi_eq_entry entry;
struct fi_eq_err_entry err_entry;
bool error_occurred = false;
/* compute num fi_av_insert completions we are waiting for */
num_left = 0;
for (i = block_offset; i < (block_offset + block_len); ++i) {
if (NULL != endpoints[i]) {
num_left += USNIC_NUM_CHANNELS;
}
}
/* Loop polling for fi_av_insert completion (they were
individually started in btl_usnic_proc.c) */
while (num_left > 0) {
opal_btl_usnic_addr_context_t *context;
ret = fi_eq_sread(module->av_eq, &event, &entry, sizeof(entry), -1, 0);
/* fi_eq_sread() will return ret==sizeof(entry) if there are
no entries on the error queue and the event read completes
successfully. We'll get a non-error event back for every
fi_av_insert(), even if that insert errors out. */
if (sizeof(entry) == ret) {
context = entry.context;
free(context);
--num_left;
ret = 0;
}
/* fi_eq_sread() will return -FI_EAVAIL if there's something
on the error queue.
Note that if an fi_av_insert() fails, it will *first*
return an entry on the error queue (i.e., have
fi_eq_sread() return -FI_EVAIL), and *second* it will
return an entry on the normal queue. Meaning: the failed
fi_av_insert() context will show up twice. So don't free
the context (or anything associated with it) here in this
error case, because the same context will show up in the
non-error case (above). */
else if (-FI_EAVAIL == ret) {
ret = fi_eq_readerr(module->av_eq, &err_entry, 0);
if (sizeof(err_entry) == ret) {
context = err_entry.context;
/* Got some kind of address failure. This usually means
that we couldn't find a route to that peer (e.g., the
networking is hosed between us). So just mark that we
can't reach this peer, and print a pretty warning. */
if (EADDRNOTAVAIL == err_entry.err || EHOSTUNREACH == err_entry.err) {
/* Note that endpoint was passed in a context in
USNIC_NUM_CHANNELS fi_av_insert() calls.
Meaning: if that address fails to resolve,
we'll get USNIC_NUM_CHANNELS error events back
with a context containing that endpoint.
We therefore only want to print a pretty
warning about (and OBJ_RELEASE) that endpoint
the *first* time it is reported. */
for (i = block_offset; i < (block_offset + block_len); ++i) {
if (endpoints[i] == context->endpoint) {
add_procs_warn_unreachable(module, context->endpoint);
OBJ_RELEASE(context->endpoint);
endpoints[i] = NULL;
break;
}
}
ret = 0;
}
/* Got some other kind of error -- give up on this
interface. */
else {
opal_show_help("help-mpi-btl-usnic.txt", "libfabric API failed", true,
opal_process_info.nodename, module->linux_device_name,
"async insertion result", __FILE__, __LINE__, err_entry.err,
"Failed to insert address to AV");
ret = OPAL_ERR_OUT_OF_RESOURCE;
error_occurred = true;
/* we can't break here, need to finish reaping all
inserts */
}
/* Don't free the context or the endpoint -- events
that come in as errors will *also* come in as real
events */
} else {
/* If we get here, it means fi_eq_readerr() failed
badly, which means something has gone tremendously
wrong. Probably the only safe thing to do here is
exit. */
opal_show_help("help-mpi-btl-usnic.txt", "internal error during init", true,
opal_process_info.nodename, module->linux_device_name,
"fi_eq_readerr()", __FILE__, __LINE__, ret,
"Returned != sizeof(err_entry)");
ret = OPAL_ERR_OUT_OF_RESOURCE;
error_occurred = true;
/* Per above, there's really nothing sane left to do
but exit */
opal_btl_usnic_exit(module);
}
} else {
/* If we get here, it means fi_eq_readerr() failed badly,
which means something has gone tremendously wrong.
Given that we're potentially not even all the way
through MPI_INIT yet, the only sane thing to do here is
exit. */
opal_show_help("help-mpi-btl-usnic.txt", "internal error during init", true,
opal_process_info.nodename, module->linux_device_name, "fi_eq_sread()",
__FILE__, __LINE__, ret, "Returned != (sizeof(entry) or -FI_EAVAIL)");
ret = OPAL_ERR_OUT_OF_RESOURCE;
error_occurred = true;
/* Per above, there's really nothing sane left to do but
exit */
opal_btl_usnic_exit(module);
}
}
/* Look through the list:
- If something went wrong above, free all endpoints.
- If an otherwise-valid endpoint has no dest, that means we timed
out trying to resolve it, so just release that endpoint. */
size_t num_endpoints_created = 0;
for (i = block_offset; i < (block_offset + block_len); i++) {
if (NULL != endpoints[i]) {
bool happy;
happy = true;
if (error_occurred) {
happy = false;
} else {
for (channel = 0; channel < USNIC_NUM_CHANNELS; ++channel) {
if (FI_ADDR_NOTAVAIL == endpoints[i]->endpoint_remote_addrs[channel]) {
happy = false;
break;
}
}
}
if (happy) {
++num_endpoints_created;
} else {
OBJ_RELEASE(endpoints[i]);
endpoints[i] = NULL;
}
}
}
/* All done */
opal_output_verbose(5, USNIC_OUT,
"btl:usnic: created destinations for %" PRIsize_t " endpoints",
num_endpoints_created);
return ret;
}
/*
* Create endpoints for the procs we were given in add_procs.
*/
static int add_procs_create_endpoints(struct opal_btl_usnic_module_t *module, size_t nprocs,
struct opal_proc_t **procs,
struct mca_btl_base_endpoint_t **endpoints)
{
/* We need to ensure that we don't overrun the libfabric AV EQ.
Divide up all the peer address resolutions we need to do into a
series of blocks; insert and complete each block before moving
to the next (note: if performance mandates it, we can move to a
sliding window style of AV inserts to get better concurrency of
AV resolution). */
/* Leave a few empty slots in the AV EQ, just for good measure */
if (module->av_eq_size < 8) {
opal_show_help("help-mpi-btl-usnic.txt", "fi_av_eq too small", true,
opal_process_info.nodename, module->av_eq_size, 8);
return OPAL_ERR_OUT_OF_RESOURCE;
}
size_t eq_size = module->av_eq_size - 8;
size_t block_len = eq_size;
size_t num_av_inserts = nprocs * USNIC_NUM_CHANNELS;
size_t num_blocks = num_av_inserts / block_len;
if (num_av_inserts % block_len != 0) {
++num_blocks;
}
/* Per above, the blocks are expressed in terms of number of AV
inserts. Convert them to be expressed in terms of number of
procs. */
block_len /= USNIC_NUM_CHANNELS;
/* Per above, loop over creating the endpoints so that we do not
overrun the libfabric AV EQ. */
int rc;
for (size_t block_offset = 0, block = 0; block < num_blocks;
block_offset += block_len, ++block) {
/* Adjust for the last block */
if (block_len > (nprocs - block_offset)) {
block_len = nprocs - block_offset;
}
/* First, create endpoints (and procs, if they're not already
created) for the usnic-reachable procs we were given. */
rc = add_procs_block_create_endpoints(module, block_offset, block_len, procs, endpoints);
if (OPAL_SUCCESS != rc) {
return rc;
}
/* For each endpoint that was created, we initiated the
process to create NUM_CHANNELS fi_addrs. Go finish all of
those. This will be the final determination of whether we
can use the endpoint or not because we'll find out if each
endpoint is reachable or not. */
rc = add_procs_block_reap_fi_av_inserts(module, block_offset, block_len, endpoints);
if (OPAL_SUCCESS != rc) {
return rc;
}
}
return OPAL_SUCCESS;
}
/*
* Add procs to this BTL module, receiving endpoint information from
* the modex. This is done in 2 phases:
*
* 1. Find (or create) the remote proc, and create the associated
* endpoint.
* 2. Resolve the address handles for all remote endpoints.
*
* The second part is a separate loop from the first part to allow the
* address lookups to be done in parallel. This comes at a cost,
* however: we may determine during the 2nd part that we should tear
* down some or all the endpoints that we created in the 1st part.
* For example, fi_av_insert() may fail in a fatal way (i.e., we
* should fail the entire add_procs()), or it may fail for one or more
* peers (i.e., we should just mark those peers as unreachable and not
* add a proc or endpoint for them).
*/
static int usnic_add_procs(struct mca_btl_base_module_t *base_module, size_t nprocs,
struct opal_proc_t **procs, struct mca_btl_base_endpoint_t **endpoints,
opal_bitmap_t *reachable)
{
opal_btl_usnic_module_t *module = (opal_btl_usnic_module_t *) base_module;
int rc;
/* Go create the endpoints (including all relevant address
resolution) */
rc = add_procs_create_endpoints(module, nprocs, procs, endpoints);
if (OPAL_SUCCESS != rc) {
goto fail;
}
/* Find all the endpoints with a complete set of USD destinations
and mark them as reachable */
for (size_t i = 0; NULL != reachable && i < nprocs; ++i) {
if (NULL != endpoints[i]) {
bool happy = true;
for (int channel = 0; channel < USNIC_NUM_CHANNELS; ++channel) {
if (FI_ADDR_NOTAVAIL == endpoints[i]->endpoint_remote_addrs[channel]) {
happy = false;
break;
}
}
if (happy) {
opal_bitmap_set_bit(reachable, i);
}
}
}
/* This is fairly gross, but we need to output the connectivity
map after add_procs() has been called on all existing usnic
modules. The only way I can think to do that is to count each
time add_procs() is called, and when we're at a multiple of
component.num_modules (i.e., add_procs() has been called on
each module -- both during MPI_INIT and dynamic process cases),
call the function to output the map. */
static int num_times_add_procs_called = 0;
++num_times_add_procs_called;
if (0 == (num_times_add_procs_called % mca_btl_usnic_component.num_modules)) {
opal_btl_usnic_connectivity_map();
}
return OPAL_SUCCESS;
fail:
/* If we get here, it means something went terribly wrong. Scorch
the earth: destroy all endpoints and say that nothing was
reachable. */
for (size_t i = 0; i < nprocs; ++i) {
if (NULL != endpoints[i]) {
OBJ_RELEASE(endpoints[i]);
endpoints[i] = NULL;
}
}
return rc;
}
/*
* Delete the proc as reachable from this module. If there are
* multiple usnic modules in a process, we'll come through here
* multiple times to remove each proc. The OBJ reference counts
* will make all the details work out.
*/
static int usnic_del_procs(struct mca_btl_base_module_t *base_module, size_t nprocs,
struct opal_proc_t **procs, struct mca_btl_base_endpoint_t **peers)
{
size_t i, j;
opal_btl_usnic_module_t *module;
opal_btl_usnic_endpoint_t *endpoint;
int index;
module = (struct opal_btl_usnic_module_t *) base_module;
for (i = 0; i < nprocs; i++) {
opal_btl_usnic_proc_t *proc = opal_btl_usnic_proc_lookup_ompi(procs[i]);
if (NULL != proc) {
/* find endpoint for this module */
for (j = 0; j < proc->proc_endpoint_count; ++j) {
endpoint = proc->proc_endpoints[j];
if (NULL != endpoint && endpoint->endpoint_module == module) {
/* This call to usnic_del_procs is actually an
* implicit ACK of every packet we have ever sent
* ***because it is only ever invoked after an
* OOB/grpcomm barrier (in MPI_COMM_DISCONNECT and
* MPI_FINALIZE)***, so call handle_ack (via
* flush_endpoint) to do all the ACK processing
* and release all the data that needs
* releasing. */
if (!ENDPOINT_DRAINED(endpoint)) {
opal_btl_usnic_flush_endpoint(endpoint);
}
/* We're all done with this endpoint */
OBJ_RELEASE(endpoint);
break; /* done once we found match */
}
}
/* remove proc from this module, and decrement its refcount */
for (index = 0; index < module->all_procs.size; ++index) {
if (opal_pointer_array_get_item(&module->all_procs, index) == proc) {
OBJ_RELEASE(proc);
opal_pointer_array_set_item(&module->all_procs, index, NULL);
break;
}
}
}
}
return OPAL_SUCCESS;
}
/*
* Let the PML register a callback function with me
*/
static int usnic_register_pml_err_cb(struct mca_btl_base_module_t *btl,
mca_btl_base_module_error_cb_fn_t cbfunc)
{
opal_btl_usnic_module_t *module = (opal_btl_usnic_module_t *) btl;
module->pml_error_callback = cbfunc;
return OPAL_SUCCESS;
}
/**
* Allocate control messages or eager frags if BTL does not have
* INPLACE flag. To be clear: max it will ever alloc is eager_limit.
* THEREFORE: eager_limit is the max that ALLOC must always be able to
* alloc.
* --> Contraction in the btl.h documentation.
*/
static mca_btl_base_descriptor_t *usnic_alloc(struct mca_btl_base_module_t *btl,
struct mca_btl_base_endpoint_t *endpoint,
uint8_t order, size_t size, uint32_t flags)
{
opal_btl_usnic_send_frag_t *frag;
opal_btl_usnic_module_t *module = (opal_btl_usnic_module_t *) btl;
mca_btl_base_descriptor_t *desc;
/* small is easy, just allocate a small segment */
if (OPAL_LIKELY(size <= module->max_frag_payload)) {
opal_btl_usnic_small_send_frag_t *sfrag;
sfrag = opal_btl_usnic_small_send_frag_alloc(module);
if (NULL == sfrag) {
return NULL;
}
frag = &sfrag->ssf_base;
/* between MTU and eager limit, we need to allocate a buffer
* which can hold the data. We will allocate a
* large fragment, and attach the buffer to it.
*/
} else {
opal_btl_usnic_large_send_frag_t *lfrag;
/* truncate to eager_limit */
if (OPAL_UNLIKELY(size > module->super.btl_eager_limit)) {
size = module->super.btl_eager_limit;
}
lfrag = opal_btl_usnic_large_send_frag_alloc(module);
if (OPAL_UNLIKELY(NULL == lfrag)) {
return NULL;
}
frag = &lfrag->lsf_base;
assert(size > 0);
lfrag->lsf_buffer = malloc(size);
if (OPAL_UNLIKELY(NULL == lfrag->lsf_buffer)) {
opal_btl_usnic_frag_return(module, &lfrag->lsf_base.sf_base);
return NULL;
}
/* pointer to buffer for caller */
frag->sf_base.uf_base.USNIC_SEND_LOCAL[0].seg_addr.pval = lfrag->lsf_buffer;
MSGDEBUG1_OUT("usnic_alloc: packing frag %p on the fly", (void *) frag);
lfrag->lsf_pack_on_the_fly = true;
}
#if MSGDEBUG2
opal_output(0, "usnic_alloc: %s frag=%p, size=%d, flags=0x%x\n",
(size <= module->max_frag_payload) ? "small" : "large", (void *) frag, (int) size,
flags);
#endif
/* set endpoint */
frag->sf_endpoint = endpoint;
/* set up descriptor */
desc = &frag->sf_base.uf_base;
desc->des_flags = flags;
desc->USNIC_SEND_LOCAL[0].seg_len = size;
desc->USNIC_SEND_LOCAL_COUNT = 1;
return desc;
}
/**
* Return an allocated fragment
*
* Return the send fragment to the appropriate list
*/
static int usnic_free(struct mca_btl_base_module_t *btl, mca_btl_base_descriptor_t *des)
{
opal_btl_usnic_frag_t *frag = (opal_btl_usnic_frag_t *) des;
#if MSGDEBUG2
opal_output(0, "usnic_free: %p (%s)\n", (void *) frag, usnic_frag_type(frag->uf_type));
#endif
/* calling free routine gives us ownership - we need to make sure
* the flag is set for lower layers.
*/
frag->uf_base.des_flags |= MCA_BTL_DES_FLAGS_BTL_OWNERSHIP;
opal_btl_usnic_frag_return_cond((struct opal_btl_usnic_module_t *) btl, frag);
return OPAL_SUCCESS;
}
/* Packs data from the given large send frag into single new segment and
* returns a pointer to it. The packed data comes first from SG[0] (PML
* header) and then second from either SG[1] (if seg_addr is non-NULL) or from
* the convertor contained in the frag.
*
* The frag's bookkeeping data will be updated appropriately. */
static opal_btl_usnic_chunk_segment_t *
pack_chunk_seg_from_frag(struct opal_btl_usnic_module_t *module,
opal_btl_usnic_large_send_frag_t *lfrag)
{
opal_btl_usnic_chunk_segment_t *seg;
uint8_t *copyptr;
size_t copylen;
size_t seg_space;
size_t max_data;
assert(NULL != lfrag);
/* never should be attempting to pack if we've already packed everything */
assert(lfrag->lsf_pack_bytes_left > 0);
seg = opal_btl_usnic_chunk_segment_alloc(module);
if (OPAL_UNLIKELY(NULL == seg)) {
/* TODO look at ways to deal with this case more gracefully, possibly as
* part of capping the overall BTL memory consumption. Watch out for
* possible MPI-layer deadlock. */
opal_btl_usnic_util_abort("chunk segment allocation error", __FILE__, __LINE__);
}
seg_space = module->max_chunk_payload;
copyptr = seg->ss_base.us_payload.raw;
/* Keep copying in as long as we have space, there is data to be copied, and
* we aren't using a convertor (SG[1] will be NULL if we have a convertor).
*/
while (seg_space > 0 && lfrag->lsf_pack_bytes_left > 0 && NULL != lfrag->lsf_cur_ptr) {
if (seg_space > lfrag->lsf_bytes_left_in_sge) {
copylen = lfrag->lsf_bytes_left_in_sge;
} else {
copylen = seg_space;
}
memcpy(copyptr, lfrag->lsf_cur_ptr, copylen);
seg_space -= copylen;
copyptr += copylen;
lfrag->lsf_bytes_left_in_sge -= copylen;
lfrag->lsf_pack_bytes_left -= copylen;
if (lfrag->lsf_bytes_left_in_sge > 0) {
lfrag->lsf_cur_ptr += copylen;
} else {
++lfrag->lsf_cur_sge;
lfrag->lsf_cur_ptr = lfrag->lsf_des_src[lfrag->lsf_cur_sge].seg_addr.pval;
lfrag->lsf_bytes_left_in_sge = lfrag->lsf_des_src[lfrag->lsf_cur_sge].seg_len;
}
}
if (seg_space > 0 && lfrag->lsf_pack_bytes_left > 0) {
/* the remaining bytes come from a convertor; pack using it */
assert(NULL == lfrag->lsf_cur_ptr);
assert(1 == lfrag->lsf_cur_sge);
copylen = lfrag->lsf_pack_bytes_left;
if (copylen > seg_space) {
copylen = seg_space;
}
usnic_convertor_pack_simple(&lfrag->lsf_base.sf_convertor, copyptr, copylen, &max_data);
seg_space -= max_data;
lfrag->lsf_bytes_left_in_sge -= max_data;
lfrag->lsf_pack_bytes_left -= max_data;
}
MSGDEBUG1_OUT("%s: packed seg=%p, frag=%p, payload=%zd\n", __func__, (void *) seg,
(void *) lfrag, (module->max_chunk_payload - seg_space));
assert(lfrag->lsf_cur_sge <= 2);
assert(seg_space < module->max_chunk_payload); /* must make progress */
seg->ss_parent_frag = &lfrag->lsf_base;
seg->ss_len = module->max_chunk_payload - seg_space;
return seg;
}
static int usnic_finalize(struct mca_btl_base_module_t *btl)
{
opal_btl_usnic_module_t *module = (opal_btl_usnic_module_t *) btl;
if (module->device_async_event_active) {
opal_event_del(&(module->device_async_event));
module->device_async_event_active = false;
}
opal_btl_usnic_connectivity_unlisten(module);
finalize_one_channel(module, &module->mod_channels[USNIC_DATA_CHANNEL]);
finalize_one_channel(module, &module->mod_channels[USNIC_PRIORITY_CHANNEL]);
/* Shutdown the stats on this module */
opal_btl_usnic_stats_finalize(module);
/* Note that usnic_del_procs will have been called for *all* procs
by this point, so the module->all_endpoints list will be empty.
Destruct it. */
opal_mutex_lock(&module->all_endpoints_lock);
OBJ_DESTRUCT(&(module->all_endpoints));
module->all_endpoints_constructed = false;
opal_mutex_unlock(&module->all_endpoints_lock);
/* _flush_endpoint should have emptied this list */
assert(opal_list_is_empty(&(module->pending_resend_segs)));
OBJ_DESTRUCT(&module->pending_resend_segs);
/* Similarly, empty the endpoints_that_need_acks list so that
endpoints don't still have an endpoint_ack_li item still in
use */
while (!opal_list_is_empty(&(module->endpoints_that_need_acks))) {
(void) opal_list_remove_first(&(module->endpoints_that_need_acks));
}
OBJ_DESTRUCT(&module->endpoints_that_need_acks);
/* Note that usnic_del_procs will have been called for *all* procs
by this point, so the module->all_procs list will be empty.
Destruct it. */
OBJ_DESTRUCT(&module->all_procs);
for (int i = module->first_pool; i <= module->last_pool; ++i) {
OBJ_DESTRUCT(&module->module_recv_buffers[i]);
}
free(module->module_recv_buffers);
OBJ_DESTRUCT(&module->ack_segs);
OBJ_DESTRUCT(&module->endpoints_with_sends);
OBJ_DESTRUCT(&module->small_send_frags);
OBJ_DESTRUCT(&module->large_send_frags);
OBJ_DESTRUCT(&module->put_dest_frags);
OBJ_DESTRUCT(&module->chunk_segs);
OBJ_DESTRUCT(&module->senders);
mca_rcache_base_module_destroy(module->rcache);
if (NULL != module->av) {
fi_close(&module->av->fid);
}
if (NULL != module->av_eq) {
fi_close(&module->av_eq->fid);
}
if (NULL != module->dom_eq) {
fi_close(&module->dom_eq->fid);
}
fi_close(&module->domain->fid);
fi_close(&module->fabric->fid);
free(module->linux_device_name);
return OPAL_SUCCESS;
}
static inline unsigned get_send_credits(struct opal_btl_usnic_channel_t *chan)
{
return chan->credits;
}
static void usnic_do_resends(opal_btl_usnic_module_t *module)
{
opal_btl_usnic_send_segment_t *sseg;
opal_btl_usnic_endpoint_t *endpoint;
struct opal_btl_usnic_channel_t *data_channel;
int ret, count;
data_channel = &module->mod_channels[USNIC_DATA_CHANNEL];
count = mca_btl_usnic_component.max_resends_per_iteration;
while (count > 0 && (get_send_credits(data_channel) > 1)
&& !opal_list_is_empty(&module->pending_resend_segs)) {
/*
* If a segment is on the re-send list, it will not
* be in the retransmit hotel. Post the segment, then check it in.
*/
sseg = (opal_btl_usnic_send_segment_t *) opal_list_remove_first(
&module->pending_resend_segs);
endpoint = sseg->ss_parent_frag->sf_endpoint;
/* clobber any stale piggy-backed ACK */
sseg->ss_base.us_btl_header->ack_present = 0;
/* Only post this segment if not already posted */
if (sseg->ss_send_posted == 0) {
/* resends are always standard segments */
sseg->ss_channel = USNIC_DATA_CHANNEL;
/* re-send the segment (we have a send credit available) */
opal_btl_usnic_post_segment(module, endpoint, sseg);
/* consume a send credit for this endpoint. May send us
* negative, oh well... This is because the completion routine
* always increments send credits, and we must balance.
* Alternative is to mark this as a retrans segment and check in
* completion, but this ugly way avoids extra checks in the
* critical path. And, really, respects the concept of send
* credits more.
*/
--endpoint->endpoint_send_credits;
++module->stats.num_resends;
}
/* restart the retrans timer */
ret = opal_hotel_checkin(&endpoint->endpoint_hotel, sseg, &sseg->ss_hotel_room);
if (OPAL_UNLIKELY(OPAL_SUCCESS != ret)) {
opal_btl_usnic_util_abort("hotel checkin failed\n", __FILE__, __LINE__);
}
--count;
}
}
/* Given a large send frag (which is at the head of the given endpoint's send
* queue), generate a new segment, fill it with data, and
* endpoint_send_segment() it. Takes care of subsequent frag
* cleanup/bookkeeping (dequeue, descriptor callback, etc.) if this frag was
* completed by this segment.
*
* ASSUMES THAT THE CALLER HAS ALREADY CHECKED TO SEE IF WE HAVE
* A SEND CREDIT!
*/
static void usnic_handle_large_send(opal_btl_usnic_module_t *module,
opal_btl_usnic_endpoint_t *endpoint,
opal_btl_usnic_send_frag_t *frag)
{
opal_btl_usnic_large_send_frag_t *lfrag;
opal_btl_usnic_btl_chunk_header_t *chp;
opal_btl_usnic_send_segment_t *sseg;
size_t payload_len;
assert(frag->sf_base.uf_type == OPAL_BTL_USNIC_FRAG_LARGE_SEND);
lfrag = (opal_btl_usnic_large_send_frag_t *) frag;
if (lfrag->lsf_cur_offset == 0) {
/* assign a fragment ID */
do {
lfrag->lsf_frag_id = endpoint->endpoint_next_frag_id++;
} while (lfrag->lsf_frag_id == 0);
}
if (lfrag->lsf_pack_on_the_fly) {
assert(opal_list_is_empty(&lfrag->lsf_seg_chain));
/* just pack a single chunk segment and put it on the list */
sseg = pack_chunk_seg_from_frag(module, lfrag);
} else {
/* data was pre-packed in prepare_src */
sseg = (opal_btl_usnic_send_segment_t *) opal_list_remove_first(&lfrag->lsf_seg_chain);
}
assert(NULL != sseg);
payload_len = sseg->ss_len;
assert(payload_len > 0); /* must have made progress */
assert(payload_len <= module->max_chunk_payload);
assert(lfrag->lsf_bytes_left >= payload_len);
/* set actual packet length */
sseg->ss_len = sizeof(opal_btl_usnic_btl_chunk_header_t) + payload_len;
lfrag->lsf_bytes_left -= payload_len;
/* fill in the chunk's BTL header with frag info */
chp = sseg->ss_base.us_btl_chunk_header;
chp->ch_frag_id = lfrag->lsf_frag_id;
chp->ch_frag_size = lfrag->lsf_base.sf_size;
chp->ch_frag_offset = lfrag->lsf_cur_offset;
chp->ch_hdr.tag = lfrag->lsf_tag;
/* payload length into the header*/
sseg->ss_base.us_btl_header->payload_len = payload_len;
// We assume that the caller has checked to see that we have a
// send credit, so do the send.
opal_btl_usnic_endpoint_send_segment(module, sseg);
/* do fragment bookkeeping */
lfrag->lsf_cur_offset += payload_len;
#if MSGDEBUG1
opal_output(0, "%s: payload_len=%zd, bytes_left=%zd on_the_fly=%s\n", __func__, payload_len,
lfrag->lsf_bytes_left, lfrag->lsf_pack_on_the_fly ? "true" : "false");
#endif
/* done with fragment? */
if (lfrag->lsf_bytes_left == 0) {
/* remove this frag from sending list now because upper layer may
* decide to put it on some other list in the callback
*/
opal_list_remove_item(&endpoint->endpoint_frag_send_queue,
&frag->sf_base.uf_base.super.super);
/* only callback now if this was not a PUT and we own the fragment,
* otherwise we need to wait until last byte is ACKed
*/
if (frag->sf_base.uf_remote_seg[0].seg_addr.pval == NULL
&& (frag->sf_base.uf_base.des_flags & MCA_BTL_DES_FLAGS_BTL_OWNERSHIP)) {
OPAL_BTL_USNIC_DO_SEND_FRAG_CB(module, frag, "large");
}
}
}
/*
* Progress the send engine.
* Should only ever be called from usnic_component_progress() to
* avoid re-entrancy issues.
*/
void opal_btl_usnic_module_progress_sends(opal_btl_usnic_module_t *module)
{
opal_btl_usnic_send_frag_t *frag;
opal_btl_usnic_send_segment_t *sseg;
opal_btl_usnic_endpoint_t *endpoint;
struct opal_btl_usnic_channel_t *data_channel;
struct opal_btl_usnic_channel_t *prio_channel;
/*
* Post all the sends that we can
* resends 1st priority
* ACKs 2nd priority
* new sends 3rd
*/
data_channel = &module->mod_channels[USNIC_DATA_CHANNEL];
prio_channel = &module->mod_channels[USNIC_PRIORITY_CHANNEL];
/*
* Handle all the retransmits we can
*/
OPAL_THREAD_LOCK(&btl_usnic_lock);
if (OPAL_UNLIKELY(!opal_list_is_empty(&module->pending_resend_segs))) {
usnic_do_resends(module);
}
/*
* Keep sending as long as there are WQEs and something to do
*/
while ((get_send_credits(data_channel) > 1)
&& !opal_list_is_empty(&module->endpoints_with_sends)) {
opal_btl_usnic_small_send_frag_t *sfrag;
size_t payload_len;
/*
* Grab the first endpoint with a pending send. Presence on this
* list means there is a fragment with data ready to go and
* the endpoint's send window is open, and the endpoint has send
* credits.
*/
endpoint = (opal_btl_usnic_endpoint_t *) opal_list_get_first(&module->endpoints_with_sends);
frag = (opal_btl_usnic_send_frag_t *) opal_list_get_first(
&endpoint->endpoint_frag_send_queue);
/*
* small send? (fragment fits in one segment)
* Send ptr and length will be in uf_local_seg[0]
*/
if (frag->sf_base.uf_type == OPAL_BTL_USNIC_FRAG_SMALL_SEND) {
/* remove this frag from sending list now because upper layer may
* decide to put it on some other list in the callback
*/
opal_list_remove_item(&endpoint->endpoint_frag_send_queue,
&frag->sf_base.uf_base.super.super);
sfrag = (opal_btl_usnic_small_send_frag_t *) frag;
sseg = &sfrag->ssf_segment;
/* get payload len from segment */
payload_len = sfrag->ssf_base.sf_size;
sseg->ss_base.us_btl_header->payload_len = payload_len;
#if MSGDEBUG1
opal_output(0,
"progress send small, frag=%p, ptr=%p, payload=%zd, len=%" PRIu32
", ep=%p, tag=%d\n",
(void *) frag, (void *) sseg->ss_ptr, payload_len, sseg->ss_len,
(void *) frag->sf_endpoint, sseg->ss_base.us_btl_header->tag);
#endif
/* post the send (we have a send credit available) */
opal_btl_usnic_endpoint_send_segment(module, sseg);
/* don't do callback yet if this is a put */
if (frag->sf_base.uf_remote_seg[0].seg_addr.pval == NULL) {
/* we have copied the data, perform a callback if
* we own the fragment and callback is requested.
* If we don't own the fragment, we cannot callback yet
* because we are not done with the segment inside.
* (ACK not received yet)
*/
if ((frag->sf_base.uf_base.des_flags
& (MCA_BTL_DES_SEND_ALWAYS_CALLBACK | MCA_BTL_DES_FLAGS_BTL_OWNERSHIP))
== (MCA_BTL_DES_SEND_ALWAYS_CALLBACK | MCA_BTL_DES_FLAGS_BTL_OWNERSHIP)) {
OPAL_BTL_USNIC_DO_SEND_FRAG_CB(module, frag, "small");
}
}
/* Large sends... */
} else {
usnic_handle_large_send(module, endpoint, frag);
}
/* If no more sends or endpoint send window is closed,
* or no more send credits, remove from send list
*/
if (opal_list_is_empty(&endpoint->endpoint_frag_send_queue)
|| endpoint->endpoint_send_credits <= 0 || !WINDOW_OPEN(endpoint)) {
opal_list_remove_item(&module->endpoints_with_sends, &endpoint->super);
endpoint->endpoint_ready_to_send = false;
}
}
/*
* Handle any ACKs that need to be sent
*/
endpoint = opal_btl_usnic_get_first_endpoint_needing_ack(module);
while (get_send_credits(prio_channel) > 1 && endpoint != NULL) {
opal_btl_usnic_endpoint_t *next_endpoint;
/* get next in list */
next_endpoint = opal_btl_usnic_get_next_endpoint_needing_ack(endpoint);
/* Is it time to send ACK? */
if (endpoint->endpoint_acktime == 0 || endpoint->endpoint_acktime <= get_ticks()) {
if (OPAL_LIKELY(opal_btl_usnic_ack_send(module, endpoint) == OPAL_SUCCESS)) {
opal_btl_usnic_remove_from_endpoints_needing_ack(endpoint);
} else {
// If we fail, it means we're out of send credits on
// the ACK channel
break;
}
}
endpoint = next_endpoint;
}
OPAL_THREAD_UNLOCK(&btl_usnic_lock);
}
/*
* Initiate a send.
*
* Send completion callbacks can be done from a few different places.
*
* If this is a send from a fragment we do not own, we always have
* to wait for the last ACK of the fragment, because we cannot allow
* the fragment to be re-used until we know we have no more retransmits to do.
*
* If this is a send from a fragment we own, and we know we have copied the
* data from the user's buffer, we can perform the callback immediately
* (or possibly not at all, simply returning "1" to indicate completion).
*
* If this is a send from a fragment we own and we have not yet copied out
* all the data (as is the case in a large send) then we defer the callback
* until the last of the data has been copied out by routines called
* from opal_btl_usnic_progress_sends()
*/
static int usnic_send(struct mca_btl_base_module_t *base_module,
struct mca_btl_base_endpoint_t *base_endpoint,
struct mca_btl_base_descriptor_t *descriptor, mca_btl_base_tag_t tag)
{
int rc;
opal_btl_usnic_send_frag_t *frag;
opal_btl_usnic_small_send_frag_t *sfrag;
opal_btl_usnic_endpoint_t *endpoint;
opal_btl_usnic_module_t *module;
opal_btl_usnic_send_segment_t *sseg;
OPAL_THREAD_LOCK(&btl_usnic_lock);
endpoint = (opal_btl_usnic_endpoint_t *) base_endpoint;
module = (opal_btl_usnic_module_t *) base_module;
frag = (opal_btl_usnic_send_frag_t *) descriptor;
assert(frag->sf_endpoint == endpoint);
frag->sf_base.uf_remote_seg[0].seg_addr.pval = NULL; /* not a PUT */
opal_btl_usnic_compute_sf_size(frag);
frag->sf_ack_bytes_left = frag->sf_size;
#if MSGDEBUG2
opal_output(0, "usnic_send: frag=%p, endpoint=%p, tag=%d, sf_size=%d\n", (void *) frag,
(void *) endpoint, tag, (int) frag->sf_size);
# if MSGDEBUG1
{
unsigned i;
opal_output(0, " descriptor->des_flags=0x%x\n", descriptor->des_flags);
for (i = 0; i < descriptor->USNIC_SEND_LOCAL_COUNT; ++i) {
opal_output(0, " %d: ptr:%p len:%d\n", i,
descriptor->USNIC_SEND_LOCAL[i].seg_addr.pval,
descriptor->USNIC_SEND_LOCAL[i].seg_len);
}
}
# endif
#endif
/*
* If this fragment is small enough to inline,
* and we have enough send WQEs,
* then inline and fastpath it
*/
if (frag->sf_base.uf_type == OPAL_BTL_USNIC_FRAG_SMALL_SEND
&& frag->sf_ack_bytes_left < module->max_tiny_payload && WINDOW_OPEN(endpoint)
&& (get_send_credits(&module->mod_channels[USNIC_DATA_CHANNEL])
>= module->mod_channels[USNIC_DATA_CHANNEL].fastsend_wqe_thresh)) {
size_t payload_len;
sfrag = (opal_btl_usnic_small_send_frag_t *) frag;
sseg = &sfrag->ssf_segment;
payload_len = frag->sf_ack_bytes_left;
sseg->ss_base.us_btl_header->payload_len = payload_len;
/* copy the 2nd SGE into the segment */
if (frag->sf_base.uf_base.USNIC_SEND_LOCAL_COUNT > 1) {
memcpy(((char *) (intptr_t) frag->sf_base.uf_local_seg[0].seg_addr.lval
+ frag->sf_base.uf_local_seg[0].seg_len),
frag->sf_base.uf_local_seg[1].seg_addr.pval,
frag->sf_base.uf_local_seg[1].seg_len);
/* update 1st segment length */
frag->sf_base.uf_base.USNIC_SEND_LOCAL_COUNT = 1;
frag->sf_base.uf_local_seg[0].seg_len += frag->sf_base.uf_local_seg[1].seg_len;
}
/* assign length */
sseg->ss_len = sizeof(opal_btl_usnic_btl_header_t) + frag->sf_size;
sseg->ss_channel = USNIC_DATA_CHANNEL;
sseg->ss_base.us_btl_header->tag = tag;
#if MSGDEBUG1
opal_output(0, "INLINE send, sseg=%p", (void *) sseg);
#endif
/* post the segment now (we have a send credit available) */
opal_btl_usnic_endpoint_send_segment(module, sseg);
/* If we own the frag and callback was requested, callback now,
* else just return 1 to show completion.
* If we don't own the frag, need to wait for ACK before
* performing callback on the frag
*/
if (descriptor->des_flags & MCA_BTL_DES_FLAGS_BTL_OWNERSHIP) {
if (descriptor->des_flags & MCA_BTL_DES_SEND_ALWAYS_CALLBACK) {
OPAL_BTL_USNIC_DO_SEND_FRAG_CB(module, frag, "immediate small");
rc = 0;
} else {
#if MSGDEBUG1
opal_output(0, "skipping callback for frag %p, returning 1\n", (void *) frag);
#endif
rc = 1;
++module->stats.pml_send_callbacks; /* returning "1" is an implicit CB */
}
} else {
#if MSGDEBUG1
opal_output(0, "don't own descriptor, defer callback for frag %p\n", (void *) frag);
#endif
descriptor->des_flags |= MCA_BTL_DES_SEND_ALWAYS_CALLBACK;
rc = 0;
}
} else {
/*
* We move this off to another function because having it inside
* this function seems to add a little latency, likely due to inlines
* making the function too big. In fact, the routine had to go to
* another file entirely, else the compiler tried to be helpful
* and inline all by itself.
*/
rc = opal_btl_usnic_finish_put_or_send(module, endpoint, frag, tag);
/* FIXME can we clarify flag set/clear ordering? */
frag->sf_base.uf_base.des_flags |= MCA_BTL_DES_SEND_ALWAYS_CALLBACK;
}
++module->stats.pml_module_sends;
OPAL_THREAD_UNLOCK(&btl_usnic_lock);
return rc;
}
#if 0
/*
* Initiate an immediate send
*/
static int usnic_sendi(struct mca_btl_base_module_t* btl,
struct mca_btl_base_endpoint_t* endpoint,
struct opal_convertor_t* convertor,
void* header,
size_t header_size,
size_t payload_size,
uint8_t order,
uint32_t flags,
mca_btl_base_tag_t tag,
mca_btl_base_descriptor_t** descriptor)
{
/* JMS write me */
return OPAL_ERROR;
}
#endif
/*
* RDMA Memory Pool (de)register callbacks
*/
static int usnic_reg_mr(void *reg_data, void *base, size_t size,
mca_rcache_base_registration_t *reg)
{
opal_btl_usnic_module_t *mod = (opal_btl_usnic_module_t *) reg_data;
opal_btl_usnic_reg_t *ur = (opal_btl_usnic_reg_t *) reg;
int rc;
rc = fi_mr_reg(mod->domain, base, size, 0, 0, 0, 0, &ur->ur_mr, NULL);
if (0 != rc) {
return OPAL_ERR_OUT_OF_RESOURCE;
}
return OPAL_SUCCESS;
}
static int usnic_dereg_mr(void *reg_data, mca_rcache_base_registration_t *reg)
{
opal_btl_usnic_reg_t *ur = (opal_btl_usnic_reg_t *) reg;
if (ur->ur_mr != NULL) {
if (0 != fi_close(&ur->ur_mr->fid)) {
opal_output(0, "%s: error unpinning USD memory mr=%p: %s\n", __func__,
(void *) ur->ur_mr, strerror(errno));
return OPAL_ERROR;
}
}
ur->ur_mr = NULL;
return OPAL_SUCCESS;
}
/*
* Called back by libevent if an async event occurs on the device
*/
static void module_async_event_callback(int fd, short flags, void *arg)
{
char *str = NULL;
bool fatal = false;
opal_btl_usnic_module_t *module = (opal_btl_usnic_module_t *) arg;
uint32_t event;
struct fi_eq_entry entry;
/* Get the async event */
int ret = fi_eq_read(module->dom_eq, &event, &entry, sizeof(entry), 0);
if (-FI_EAGAIN == ret) {
/* Nothing to see here... */
return;
}
else if (ret != 0) {
opal_show_help("help-mpi-btl-usnic.txt", "libfabric API failed", true,
opal_process_info.nodename, module->linux_device_name, "fi_eq_read()",
__FILE__, __LINE__, ret, "Failed to get domain event");
fatal = true;
}
else if (event == 42 /* RFXXX FI_LINKSTATE */) {
opal_memchecker_base_mem_defined(&event, sizeof(event));
opal_memchecker_base_mem_defined(&entry, sizeof(entry));
switch (entry.data) {
case 0: // USD_EVENT_LINK_UP:
/* This event should never happen, because OMPI will
ignore ports that are down, and we should only get this
event if a port *was* down and is now *up*. But if we
ever do get it, it should be a harmless event -- just
ignore it. */
opal_output_verbose(10, USNIC_OUT, "btl:usnic: got LINK_UP on %s",
module->linux_device_name);
break;
case 1: // USD_EVENT_LINK_DOWN:
str = "link down";
/* Fall through */
default:
if (NULL == str) {
str = "unknown event";
}
/* For the moment, these are the only other cases libfabric
will report to us. However, they're only listed here
for completeness. We currently abort if any async
event other than LINK_UP occurs. */
opal_show_help("help-mpi-btl-usnic.txt", "async event", true,
opal_process_info.nodename, module->linux_device_name, str, entry.data);
fatal = true;
}
}
/* If this is fatal, invoke the upper layer error handler to abort
the job */
if (fatal) {
opal_btl_usnic_exit(module);
/* Does not return */
}
}
/*
* Create a single libfabric endpoint
*/
static int create_ep(opal_btl_usnic_module_t *module, struct opal_btl_usnic_channel_t *channel)
{
int rc;
struct sockaddr_in *sin;
size_t addrlen;
struct fi_info *hint;
hint = fi_dupinfo(module->fabric_info);
if (NULL == hint) {
opal_show_help("help-mpi-btl-usnic.txt", "internal error during init", true,
opal_process_info.nodename, module->linux_device_name, "fi_dupinfo() failed",
__FILE__, __LINE__, -1, "Unknown");
return OPAL_ERR_OUT_OF_RESOURCE;
}
hint->rx_attr->size = channel->chan_rd_num;
hint->tx_attr->size = channel->chan_sd_num;
/* specific ports requested? */
sin = hint->src_addr;
if (0 == mca_btl_usnic_component.udp_port_base) {
sin->sin_port = 0;
} else {
sin->sin_port = htons(mca_btl_usnic_component.udp_port_base
+ opal_process_info.my_local_rank);
}
rc = fi_getinfo(module->libfabric_api, NULL, 0, 0, hint, &channel->info);
fi_freeinfo(hint);
if (0 != rc) {
opal_show_help("help-mpi-btl-usnic.txt", "internal error during init", true,
opal_process_info.nodename, module->linux_device_name, "fi_getinfo() failed",
__FILE__, __LINE__, rc, fi_strerror(-rc));
return OPAL_ERR_OUT_OF_RESOURCE;
}
if (channel->chan_index != USNIC_PRIORITY_CHANNEL) {
channel->info->caps &= ~(1ULL << 63);
}
/* This #if prevents compiler warnings about sa being assigned and
not used when NDEBUG is defined */
#if !defined(NDEBUG)
/* all of the OMPI code assumes IPv4, but some versions of libfabric will
* return FI_SOCKADDR instead of FI_SOCKADDR_IN, so we need to do a little
* bit of sanity checking */
assert(FI_SOCKADDR_IN == channel->info->addr_format
|| FI_SOCKADDR == channel->info->addr_format);
if (FI_SOCKADDR == channel->info->addr_format) {
struct sockaddr *sa;
sa = (struct sockaddr *) channel->info->src_addr;
assert(AF_INET == sa->sa_family);
}
#endif
sin = (struct sockaddr_in *) channel->info->src_addr;
assert(sizeof(struct sockaddr_in) == channel->info->src_addrlen);
/* no matter the version of libfabric, this should hold */
assert(0 == sin->sin_port);
rc = fi_endpoint(module->domain, channel->info, &channel->ep, NULL);
if (0 != rc || NULL == channel->ep) {
opal_show_help("help-mpi-btl-usnic.txt", "internal error during init", true,
opal_process_info.nodename, module->linux_device_name,
"fi_endpoint() failed", __FILE__, __LINE__, rc, fi_strerror(-rc));
return OPAL_ERR_OUT_OF_RESOURCE;
}
/* Check to ensure that the RX/TX queue lengths are at least as
long as we asked for */
if ((int) channel->info->rx_attr->size < channel->chan_rd_num) {
rc = FI_ETOOSMALL;
opal_show_help("help-mpi-btl-usnic.txt", "internal error during init", true,
opal_process_info.nodename, module->linux_device_name,
"endpoint RX queue length is too short", __FILE__, __LINE__, rc,
fi_strerror(rc));
return OPAL_ERR_OUT_OF_RESOURCE;
}
if ((int) channel->info->tx_attr->size < channel->chan_sd_num) {
rc = FI_ETOOSMALL;
opal_show_help("help-mpi-btl-usnic.txt", "internal error during init", true,
opal_process_info.nodename, module->linux_device_name,
"endpoint TX queue length is too short", __FILE__, __LINE__, rc,
fi_strerror(rc));
return OPAL_ERR_OUT_OF_RESOURCE;
}
/* attach CQ to EP */
rc = fi_ep_bind(channel->ep, &channel->cq->fid, FI_SEND);
if (0 != rc) {
opal_show_help("help-mpi-btl-usnic.txt", "internal error during init", true,
opal_process_info.nodename, module->linux_device_name,
"fi_ep_bind() SCQ to EP failed", __FILE__, __LINE__, rc, fi_strerror(-rc));
return OPAL_ERR_OUT_OF_RESOURCE;
}
rc = fi_ep_bind(channel->ep, &channel->cq->fid, FI_RECV);
if (0 != rc) {
opal_show_help("help-mpi-btl-usnic.txt", "internal error during init", true,
opal_process_info.nodename, module->linux_device_name,
"fi_ep_bind() RCQ to EP failed", __FILE__, __LINE__, rc, fi_strerror(-rc));
return OPAL_ERR_OUT_OF_RESOURCE;
}
rc = fi_ep_bind(channel->ep, &module->av->fid, 0);
if (0 != rc) {
opal_show_help("help-mpi-btl-usnic.txt", "internal error during init", true,
opal_process_info.nodename, module->linux_device_name,
"fi_ep_bind() AV to EP failed", __FILE__, __LINE__, rc, fi_strerror(-rc));
return OPAL_ERR_OUT_OF_RESOURCE;
}
/* Enable the endpoint */
rc = fi_enable(channel->ep);
if (0 != rc) {
opal_show_help("help-mpi-btl-usnic.txt", "internal error during init", true,
opal_process_info.nodename, module->linux_device_name, "fi_enable() failed",
__FILE__, __LINE__, rc, fi_strerror(-rc));
return OPAL_ERR_OUT_OF_RESOURCE;
}
/* Immediately after libfabric v1.0 was released, we implemented support
* for fi_getname and changed the behavior of fi_endpoint w.r.t. setting
* the src_addr field of the fi_info struct passed in. Before the change
* fi_endpoint would set the src_addr field, including the sin_port field
* but calling fi_getname would return -FI_ENOSYS. Afterwards the address
* would not be touched relative to whatever was set by fi_getinfo. So we
* must call fi_getname in that case.
*/
if (0 == sin->sin_port) {
addrlen = sizeof(struct sockaddr_in);
rc = fi_getname(&channel->ep->fid, channel->info->src_addr, &addrlen);
if (0 != rc) {
opal_show_help("help-mpi-btl-usnic.txt", "internal error during init", true,
opal_process_info.nodename, module->linux_device_name,
"fi_getname() failed", __FILE__, __LINE__, rc, fi_strerror(-rc));
return OPAL_ERR_OUT_OF_RESOURCE;
}
assert(0 != sin->sin_port);
}
char *str;
if (USNIC_PRIORITY_CHANNEL == channel->chan_index) {
str = "priority";
} else if (USNIC_DATA_CHANNEL == channel->chan_index) {
str = "data";
} else {
str = "UNKNOWN";
}
opal_output_verbose(15, USNIC_OUT,
"btl:usnic:create_ep:%s: new usnic local endpoint channel %s: %s:%d",
module->linux_device_name, str, inet_ntoa(sin->sin_addr),
ntohs(sin->sin_port));
return OPAL_SUCCESS;
}
/*
* finalize channel - release all associated resources
*/
static void finalize_one_channel(opal_btl_usnic_module_t *module,
struct opal_btl_usnic_channel_t *channel)
{
if (NULL != channel->ep) {
fi_close(&channel->ep->fid);
channel->ep = NULL;
}
/* destroy CQ if created */
if (NULL != channel->cq) {
fi_close(&channel->cq->fid);
channel->cq = NULL;
}
if (NULL != channel->info) {
fi_freeinfo(channel->info);
channel->info = NULL;
}
/* gets set right after constructor called, lets us know recv_segs
* have been constructed. Make sure to wait until queues
* destroyed to destroy the recv_segs */
if (channel->recv_segs.ctx == module) {
assert(NULL == channel->ep && NULL == channel->cq);
OBJ_DESTRUCT(&channel->recv_segs);
}
}
/*
* Initialize a channel
*/
static int init_one_channel(opal_btl_usnic_module_t *module, int index, int max_msg_size,
int rd_num, int sd_num, int cq_num)
{
int i;
int rc;
uint32_t segsize;
opal_btl_usnic_recv_segment_t *rseg;
opal_free_list_item_t *item;
struct opal_btl_usnic_channel_t *channel;
struct fi_cq_attr cq_attr;
channel = &module->mod_channels[index];
channel->chan_max_msg_size = max_msg_size;
channel->chan_rd_num = rd_num;
channel->chan_sd_num = sd_num;
channel->chan_index = index;
channel->chan_deferred_recv = NULL;
channel->chan_error = false;
channel->fastsend_wqe_thresh = sd_num - 10;
channel->credits = sd_num;
channel->rx_post_cnt = 0;
/* We did math up in component_init() to know that there should be
enough CQs available. So if create_cq() fails, then either the
memlock limits are too low, or something other than this MPI
job is consuming CQs. */
memset(&cq_attr, 0, sizeof(cq_attr));
cq_attr.format = FI_CQ_FORMAT_CONTEXT;
cq_attr.wait_obj = FI_WAIT_NONE;
cq_attr.size = cq_num;
rc = fi_cq_open(module->domain, &cq_attr, &channel->cq, NULL);
if (0 != rc) {
opal_show_help("help-mpi-btl-usnic.txt", "internal error during init", true,
opal_process_info.nodename, module->linux_device_name, "failed to create CQ",
__FILE__, __LINE__, rc, fi_strerror(-rc));
goto error;
}
/* Ensure that we got a CQ that is at least as long as we asked
for */
if ((int) cq_attr.size < cq_num) {
rc = FI_ETOOSMALL;
opal_show_help("help-mpi-btl-usnic.txt", "internal error during init", true,
opal_process_info.nodename, module->linux_device_name,
"created CQ is too small", __FILE__, __LINE__, rc, fi_strerror(rc));
goto error;
}
/* Set up the endpoint for this channel */
rc = create_ep(module, channel);
if (OPAL_SUCCESS != rc) {
goto error;
}
assert(channel->info->ep_attr->msg_prefix_size
== (uint32_t) mca_btl_usnic_component.transport_header_len);
opal_output_verbose(15, USNIC_OUT,
"btl:usnic:init_one_channel:%s: channel %s, rx queue size=%" PRIsize_t
", tx queue size=%" PRIsize_t ", cq size=%" PRIsize_t ", send credits=%d",
module->linux_device_name,
(index == USNIC_PRIORITY_CHANNEL) ? "priority" : "data",
channel->info->rx_attr->size, channel->info->tx_attr->size, cq_attr.size,
channel->credits);
/*
* Initialize pool of receive segments. Round MTU up to cache
* line size so that each segment is guaranteed to start on a
* cache line boundary.
*/
segsize = (max_msg_size + channel->info->ep_attr->msg_prefix_size + opal_cache_line_size - 1)
& ~(opal_cache_line_size - 1);
OBJ_CONSTRUCT(&channel->recv_segs, opal_free_list_t);
rc = usnic_compat_free_list_init(
&channel->recv_segs, sizeof(opal_btl_usnic_recv_segment_t) /* frag size */,
opal_cache_line_size /* frag alignment */, OBJ_CLASS(opal_btl_usnic_recv_segment_t),
segsize /* payload buffer size */, opal_cache_line_size /* payload alignmt */,
rd_num /* num erorments to alloc */, rd_num /* max elements to alloc */,
rd_num /* num elements per alloc */,
module->super.btl_mpool /* mpool for (1.x, 2.0: reg, 2.1+: allocation) */,
0 /* mpool reg flags */, module->rcache /* registration cache for 2.1+ */,
NULL /* item_init */, NULL /* item_init_context */);
channel->recv_segs.ctx = module; /* must come after
free_list_init,
otherwise ctx gets
clobbered */
if (OPAL_SUCCESS != rc) {
goto error;
}
/* Post receive descriptors */
for (i = 0; i < rd_num; i++) {
USNIC_COMPAT_FREE_LIST_GET(&channel->recv_segs, item);
assert(NULL != item);
rseg = (opal_btl_usnic_recv_segment_t *) item;
if (NULL == rseg) {
opal_show_help("help-mpi-btl-usnic.txt", "internal error during init", true,
opal_process_info.nodename, module->linux_device_name,
"Failed to get receive buffer from freelist", __FILE__, __LINE__);
goto error;
}
/* cannot find length from constructor, set it now */
rseg->rs_len = segsize;
rc = fi_recv(channel->ep, rseg->rs_protocol_header, segsize, NULL, FI_ADDR_UNSPEC, rseg);
if (0 != rc) {
opal_show_help("help-mpi-btl-usnic.txt", "internal error during init", true,
opal_process_info.nodename, module->linux_device_name,
"Failed to post receive buffer", __FILE__, __LINE__);
goto error;
}
}
return OPAL_SUCCESS;
error:
finalize_one_channel(module, channel);
return OPAL_ERROR;
}
/*
* generate initial send sequence number
*/
static opal_btl_usnic_seq_t get_initial_seq_no(void)
{
opal_btl_usnic_seq_t isn;
isn = (opal_btl_usnic_seq_t) opal_rand(&opal_btl_usnic_rand_buff);
return isn;
}
/*************************************************************************
The following routines are all short utility / convenience functions
for module_init().
*************************************************************************/
/*
* Setup some globals on the module
*/
static void init_module_globals(opal_btl_usnic_module_t *module)
{
OBJ_CONSTRUCT(&module->all_endpoints_lock, opal_mutex_t);
}
/*
* Initialize our local modex entry from the device attributes
*/
static void init_local_modex_part1(opal_btl_usnic_module_t *module)
{
/* Fill (most of) the local address information on the module. We
don't have the following yet: qp numbers, header length,
connectivity checker UDP port. */
opal_btl_usnic_modex_t *modex = &module->local_modex;
struct fi_info *info = module->fabric_info;
struct fi_usnic_info *uip = &module->usnic_info;
struct sockaddr_in *sin;
sin = info->src_addr;
modex->ipv4_addr = sin->sin_addr.s_addr;
modex->netmask = uip->ui.v1.ui_netmask_be;
modex->max_msg_size = info->ep_attr->max_msg_size;
modex->link_speed_mbps = uip->ui.v1.ui_link_speed;
opal_btl_usnic_snprintf_ipv4_addr(module->if_ipv4_addr_str, sizeof(module->if_ipv4_addr_str),
modex->ipv4_addr, modex->netmask);
opal_output_verbose(5, USNIC_OUT, "btl:usnic: %s IP charactertics: %s, %u Mbps",
module->linux_device_name, module->if_ipv4_addr_str,
modex->link_speed_mbps);
}
/*
* Find the header length for our transport.
*
* Do this super-early in the startup process because we need it to
* calculate some payload lengths (and indirectly, some queue
* lengths).
*/
static void init_find_transport_header_len(opal_btl_usnic_module_t *module)
{
mca_btl_usnic_component.transport_header_len = module->fabric_info->ep_attr->msg_prefix_size;
mca_btl_usnic_component.transport_protocol = module->fabric_info->ep_attr->protocol;
/* The usnic provider in libfabric v1.0.0 (i.e., API v1.0) treated
FI_MSG_PREFIX inconsistently between senders and receivers. It
was corrected in libfabric v1.1.0 (i.e., API v1.1), meaning
that FI_MSG_PREFIX is treated consistently between senders and
receivers.
So check what version of the libfabric API we have, and setup
to use the "old" (inconsistent) MSG_PREFIX behavior, or the
"new" MSG_PREFIX (consistent) behavior.
NOTE: This is a little redundant; we're setting a
component-level attribute during each module's setup. We do
this here (and not earlier, when we check fi_version() during
the component setup) because we can't obtain the value of the
endpoint msg_prefix_size until we setup the first module.
Also, it's safe because each module will set the component
attribute to the same value. So it's ok. */
uint32_t libfabric_api;
libfabric_api = fi_version();
if (1 == FI_MAJOR(libfabric_api) && 0 == FI_MINOR(libfabric_api)) {
mca_btl_usnic_component.prefix_send_offset = 0;
} else {
mca_btl_usnic_component.prefix_send_offset = module->fabric_info->ep_attr->msg_prefix_size;
}
}
/*
* How many xQ entries do we want?
*/
static void init_queue_lengths(opal_btl_usnic_module_t *module)
{
bool cq_is_sum = false;
if (-1 == mca_btl_usnic_component.cq_num) {
cq_is_sum = true;
}
if (-1 == mca_btl_usnic_component.sd_num) {
module->sd_num = module->fabric_info->tx_attr->size;
} else {
module->sd_num = mca_btl_usnic_component.sd_num;
}
if (-1 == mca_btl_usnic_component.rd_num) {
module->rd_num = module->fabric_info->rx_attr->size;
} else {
module->rd_num = mca_btl_usnic_component.rd_num;
}
if (cq_is_sum) {
module->cq_num = module->rd_num + module->sd_num;
} else {
module->cq_num = mca_btl_usnic_component.cq_num;
}
module->av_eq_num = mca_btl_usnic_component.av_eq_num;
/*
* Queue sizes for priority channel scale with # of endpoint. A
* little bit of chicken and egg here, we really want procs*ports,
* but we can't know # of ports until we try to initialize, so
* 32*num_procs is best guess. User can always override.
*/
if (-1 == mca_btl_usnic_component.prio_sd_num) {
module->prio_sd_num = max(128, 32 * USNIC_MCW_SIZE) - 1;
} else {
module->prio_sd_num = mca_btl_usnic_component.prio_sd_num;
}
if (module->prio_sd_num > 0
&& (unsigned) module->prio_sd_num > module->fabric_info->tx_attr->size) {
module->prio_sd_num = module->fabric_info->tx_attr->size;
}
if (-1 == mca_btl_usnic_component.prio_rd_num) {
module->prio_rd_num = max(128, 32 * USNIC_MCW_SIZE) - 1;
} else {
module->prio_rd_num = mca_btl_usnic_component.prio_rd_num;
}
if (module->prio_rd_num > 0
&& (unsigned) module->prio_rd_num > module->fabric_info->rx_attr->size) {
module->prio_rd_num = module->fabric_info->rx_attr->size;
}
if (cq_is_sum) {
module->prio_cq_num = module->prio_rd_num + module->prio_sd_num;
} else {
module->prio_cq_num = module->cq_num;
}
}
static void init_payload_lengths(opal_btl_usnic_module_t *module)
{
/* Find the max payload this port can handle */
module->max_frag_payload = module->local_modex.max_msg_size - /* start with the MTU */
sizeof(opal_btl_usnic_btl_header_t) - /* subtract size of
the BTL header */
mca_btl_usnic_component.prefix_send_offset;
/* same, but use chunk header */
module->max_chunk_payload = module->local_modex.max_msg_size
- sizeof(opal_btl_usnic_btl_chunk_header_t)
- mca_btl_usnic_component.prefix_send_offset;
/* Priorirty queue MTU and max size */
if (0 == module->max_tiny_msg_size) {
module->max_tiny_msg_size = 768;
}
module->max_tiny_payload = module->max_tiny_msg_size - sizeof(opal_btl_usnic_btl_header_t);
}
static void init_pml_values(opal_btl_usnic_module_t *module)
{
module->super.btl_bandwidth = module->local_modex.link_speed_mbps;
/* If the eager rndv limit is 0, initialize it to default */
if (0 == module->super.btl_rndv_eager_limit) {
module->super.btl_rndv_eager_limit = USNIC_DFLT_RNDV_EAGER_LIMIT;
}
/* If the eager send limit is 0, initialize it to default */
if (0 == module->super.btl_eager_limit) {
/* 150k for 1 module, 25k for >1 module */
if (1 == mca_btl_usnic_component.num_modules) {
module->super.btl_eager_limit = USNIC_DFLT_EAGER_LIMIT_1DEVICE;
} else {
module->super.btl_eager_limit = USNIC_DFLT_EAGER_LIMIT_NDEVICES;
}
}
/* Since we emulate PUT, max_send_size can be same as
eager_limit */
module->super.btl_max_send_size = module->super.btl_eager_limit;
#if BTL_VERSION == 30
module->super.btl_put_limit = module->super.btl_eager_limit;
#endif
}
static void init_senders(opal_btl_usnic_module_t *module)
{
/* Make a hash table of senders */
OBJ_CONSTRUCT(&module->senders, opal_hash_table_t);
/* JMS This is a fixed size -- BAD! But since hash table
doesn't grow dynamically, I don't know what size to put
here. I think the long-term solution is to write a better
hash table... :-( */
opal_hash_table_init(&module->senders, 4096);
}
static void init_connectivity_checker(opal_btl_usnic_module_t *module)
{
/* Setup a connectivity agent listener */
int rc = opal_btl_usnic_connectivity_listen(module);
if (OPAL_SUCCESS != rc) {
OPAL_ERROR_LOG(rc);
opal_btl_usnic_util_abort("Failed to notify connectivity agent to listen", __FILE__,
__LINE__);
}
}
static void init_hwloc(opal_btl_usnic_module_t *module)
{
/* If this process is bound to a single NUMA locality, calculate
its NUMA distance from this usNIC device */
if (mca_btl_usnic_component.want_numa_device_assignment) {
opal_btl_usnic_hwloc_distance(module);
} else {
opal_output_verbose(5, USNIC_OUT,
"btl:usnic: not sorting devices by NUMA distance (MCA "
"btl_usnic_want_numa_device_assignment)");
}
}
static void init_procs(opal_btl_usnic_module_t *module)
{
/* Setup the pointer array for the procs that will be used by this
module */
OBJ_CONSTRUCT(&module->all_procs, opal_pointer_array_t);
opal_pointer_array_init(&module->all_procs, USNIC_MCW_SIZE, INT_MAX, 32);
}
/*
* Setup the mpool
*/
static int init_mpool(opal_btl_usnic_module_t *module)
{
struct mca_rcache_base_resources_t rcache_resources;
rcache_resources.reg_data = (void *) module;
rcache_resources.sizeof_reg = sizeof(opal_btl_usnic_reg_t);
rcache_resources.register_mem = usnic_reg_mr;
rcache_resources.deregister_mem = usnic_dereg_mr;
rcache_resources.cache_name = mca_btl_usnic_component.usnic_rcache_name;
module->rcache = mca_rcache_base_module_create(mca_btl_usnic_component.usnic_rcache_name,
&module->super, &rcache_resources);
if (NULL == module->rcache) {
opal_show_help("help-mpi-btl-usnic.txt", "internal error during init", true,
opal_process_info.nodename, module->linux_device_name, "create rcache",
__FILE__, __LINE__);
return OPAL_ERROR;
}
module->super.btl_mpool = mca_mpool_base_module_lookup(
mca_btl_usnic_component.usnic_mpool_hints);
if (NULL == module->super.btl_mpool) {
opal_show_help("help-mpi-btl-usnic.txt", "internal error during init", true,
opal_process_info.nodename, module->linux_device_name, "create mpool",
__FILE__, __LINE__);
return OPAL_ERROR;
}
return OPAL_SUCCESS;
}
static int init_channels(opal_btl_usnic_module_t *module)
{
int rc;
struct fi_av_attr av_attr;
struct fi_eq_attr eq_attr;
memset(&module->mod_channels[0], 0, sizeof(module->mod_channels[0]));
memset(&module->mod_channels[1], 0, sizeof(module->mod_channels[1]));
memset(&av_attr, 0, sizeof(av_attr));
av_attr.type = FI_AV_MAP;
av_attr.flags = FI_EVENT;
rc = fi_av_open(module->domain, &av_attr, &module->av, NULL);
if (rc != OPAL_SUCCESS) {
goto destroy;
}
rc = fi_open_ops(&module->av->fid, FI_USNIC_AV_OPS_1, 0, (void **) &module->usnic_av_ops, NULL);
if (rc != OPAL_SUCCESS) {
goto destroy;
}
memset(&eq_attr, 0, sizeof(eq_attr));
eq_attr.size = module->av_eq_num;
eq_attr.wait_obj = FI_WAIT_UNSPEC;
rc = fi_eq_open(module->fabric, &eq_attr, &module->av_eq, NULL);
if (rc != OPAL_SUCCESS) {
goto destroy;
}
// Save the size of the created EQ
module->av_eq_size = eq_attr.size;
eq_attr.wait_obj = FI_WAIT_FD;
rc = fi_eq_open(module->fabric, &eq_attr, &module->dom_eq, NULL);
if (rc != OPAL_SUCCESS) {
goto destroy;
}
rc = fi_av_bind(module->av, &module->av_eq->fid, 0);
if (rc != OPAL_SUCCESS) {
goto destroy;
}
rc = fi_domain_bind(module->domain, &module->dom_eq->fid, 0);
if (rc != OPAL_SUCCESS) {
goto destroy;
}
/* initialize data and priority channels */
rc = init_one_channel(module, USNIC_PRIORITY_CHANNEL, module->max_tiny_msg_size,
module->prio_rd_num, module->prio_sd_num, module->prio_cq_num);
if (rc != OPAL_SUCCESS) {
goto destroy;
}
rc = init_one_channel(module, USNIC_DATA_CHANNEL, module->fabric_info->ep_attr->max_msg_size,
module->rd_num, module->sd_num, module->cq_num);
if (rc != OPAL_SUCCESS) {
goto destroy;
}
return OPAL_SUCCESS;
destroy:
finalize_one_channel(module, &module->mod_channels[USNIC_DATA_CHANNEL]);
finalize_one_channel(module, &module->mod_channels[USNIC_PRIORITY_CHANNEL]);
return rc;
}
/* Fill in the UDP ports of the channel QPs, and fill in the wire
header length */
static void init_local_modex_part2(opal_btl_usnic_module_t *module)
{
module->local_modex.isn = get_initial_seq_no();
/* Place EP number in our local modex information */
for (int id = 0; id < USNIC_NUM_CHANNELS; ++id) {
opal_btl_usnic_channel_t *channel = &module->mod_channels[id];
struct sockaddr_in *sin;
sin = channel->info->src_addr;
module->local_modex.ports[id] = ntohs(sin->sin_port);
module->local_modex.protocol = channel->info->ep_attr->protocol;
}
}
static void init_async_event(opal_btl_usnic_module_t *module)
{
int fd;
int ret;
ret = fi_control(&module->dom_eq->fid, FI_GETWAIT, &fd);
if (ret != 0) {
opal_show_help("help-mpi-btl-usnic.txt", "libfabric API failed", true,
opal_process_info.nodename, module->linux_device_name,
"fi_control(eq, FI_GETWAIT)", __FILE__, __LINE__, ret, fi_strerror(-ret));
return;
}
/* Get the fd to receive events on this device. Keep this in the
sync event base (not the async event base) */
opal_event_set(opal_sync_event_base, &(module->device_async_event), fd,
OPAL_EV_READ | OPAL_EV_PERSIST, module_async_event_callback, module);
opal_event_add(&(module->device_async_event), NULL);
module->device_async_event_active = true;
}
static void init_random_objects(opal_btl_usnic_module_t *module)
{
/* list of all endpoints */
opal_mutex_lock(&module->all_endpoints_lock);
OBJ_CONSTRUCT(&(module->all_endpoints), opal_list_t);
module->all_endpoints_constructed = true;
opal_mutex_unlock(&module->all_endpoints_lock);
/* Pending send segs list */
OBJ_CONSTRUCT(&module->pending_resend_segs, opal_list_t);
OBJ_CONSTRUCT(&module->endpoints_that_need_acks, opal_list_t);
/* list of endpoints that are ready to send */
OBJ_CONSTRUCT(&module->endpoints_with_sends, opal_list_t);
}
static void init_freelists(opal_btl_usnic_module_t *module)
{
int rc __opal_attribute_unused__;
uint32_t segsize;
segsize = (module->local_modex.max_msg_size + mca_btl_usnic_component.prefix_send_offset
+ opal_cache_line_size - 1)
& ~(opal_cache_line_size - 1);
/* Send frags freelists */
OBJ_CONSTRUCT(&module->small_send_frags, opal_free_list_t);
rc = usnic_compat_free_list_init(&module->small_send_frags,
sizeof(opal_btl_usnic_small_send_frag_t), opal_cache_line_size,
OBJ_CLASS(opal_btl_usnic_small_send_frag_t), segsize,
opal_cache_line_size, module->sd_num * 4, -1,
module->sd_num / 2, module->super.btl_mpool,
0 /* mpool reg flags */, module->rcache, NULL /* item_init */,
NULL /* item_init_context */);
assert(OPAL_SUCCESS == rc);
OBJ_CONSTRUCT(&module->large_send_frags, opal_free_list_t);
rc = usnic_compat_free_list_init(&module->large_send_frags,
sizeof(opal_btl_usnic_large_send_frag_t), opal_cache_line_size,
OBJ_CLASS(opal_btl_usnic_large_send_frag_t),
0, /* payload size */
0, /* payload align */
module->sd_num / 8, -1, module->sd_num / 8, NULL,
0 /* mpool reg flags */, NULL /* unused0 */,
NULL /* item_init */, NULL /* item_init_context */);
assert(OPAL_SUCCESS == rc);
OBJ_CONSTRUCT(&module->put_dest_frags, opal_free_list_t);
rc = usnic_compat_free_list_init(&module->put_dest_frags,
sizeof(opal_btl_usnic_put_dest_frag_t), opal_cache_line_size,
OBJ_CLASS(opal_btl_usnic_put_dest_frag_t),
0, /* payload size */
0, /* payload align */
module->sd_num / 8, -1, module->sd_num / 8, NULL,
0 /* mpool reg flags */, NULL /* unused0 */,
NULL /* item_init */, NULL /* item_init_context */);
assert(OPAL_SUCCESS == rc);
/* list of segments to use for sending */
OBJ_CONSTRUCT(&module->chunk_segs, opal_free_list_t);
rc = usnic_compat_free_list_init(&module->chunk_segs, sizeof(opal_btl_usnic_chunk_segment_t),
opal_cache_line_size,
OBJ_CLASS(opal_btl_usnic_chunk_segment_t), segsize,
opal_cache_line_size, module->sd_num * 4, -1,
module->sd_num / 2, module->super.btl_mpool,
0 /* mpool reg flags */, module->rcache, NULL /* item_init */,
NULL /* item_init_context */);
assert(OPAL_SUCCESS == rc);
/* ACK segments freelist */
uint32_t ack_segment_len;
ack_segment_len = (sizeof(opal_btl_usnic_btl_header_t)
+ mca_btl_usnic_component.prefix_send_offset + opal_cache_line_size - 1)
& ~(opal_cache_line_size - 1);
OBJ_CONSTRUCT(&module->ack_segs, opal_free_list_t);
rc = usnic_compat_free_list_init(&module->ack_segs, sizeof(opal_btl_usnic_ack_segment_t),
opal_cache_line_size, OBJ_CLASS(opal_btl_usnic_ack_segment_t),
ack_segment_len, opal_cache_line_size, module->sd_num * 4, -1,
module->sd_num / 2, module->super.btl_mpool,
0 /* mpool reg flags */, module->rcache, NULL /* item_init */,
NULL /* item_init_context */);
assert(OPAL_SUCCESS == rc);
/*
* Initialize pools of large recv buffers
*
* NOTE: (last_pool < first_pool) is _not_ erroneous; recv buffer
* pools simply won't be used in that case.
*/
module->first_pool = 16; /* 64 kiB */
module->last_pool = usnic_fls(module->super.btl_eager_limit - 1);
module->module_recv_buffers = calloc(module->last_pool + 1, sizeof(opal_free_list_t));
assert(module->module_recv_buffers != NULL);
for (int i = module->first_pool; i <= module->last_pool; ++i) {
size_t elt_size = sizeof(opal_btl_usnic_rx_buf_t) - 1 + (1 << i);
OBJ_CONSTRUCT(&module->module_recv_buffers[i], opal_free_list_t);
rc = usnic_compat_free_list_init(&module->module_recv_buffers[i], elt_size,
opal_cache_line_size, OBJ_CLASS(opal_btl_usnic_rx_buf_t),
0, /* payload size */
0, /* payload align */
128, /* init elts to alloc */
128, /* max elts to alloc */
128, /* num elts per alloc */
NULL /* mpool */, 0 /* mpool reg flags */,
NULL /* unused0 */, NULL /* item_init */,
NULL /* item_init_context */);
assert(OPAL_SUCCESS == rc);
}
}
/*
* Initialize the btl module by allocating
* a memory pool, priority and data channels, and free lists
*/
int opal_btl_usnic_module_init(opal_btl_usnic_module_t *module)
{
init_module_globals(module);
init_local_modex_part1(module);
init_find_transport_header_len(module);
init_queue_lengths(module);
init_payload_lengths(module);
init_pml_values(module);
init_senders(module);
init_connectivity_checker(module);
init_hwloc(module);
init_procs(module);
int ret;
if (OPAL_SUCCESS != (ret = init_mpool(module))
|| OPAL_SUCCESS != (ret = init_channels(module))) {
mca_rcache_base_module_destroy(module->rcache);
return ret;
}
init_local_modex_part2(module);
init_async_event(module);
init_random_objects(module);
init_freelists(module);
opal_btl_usnic_stats_init(module);
/* Setup a connectivity listener. This fills in the last part of
the local modex info (the connectivity listener UDP port) */
if (mca_btl_usnic_component.connectivity_enabled) {
int rc = opal_btl_usnic_connectivity_listen(module);
if (OPAL_SUCCESS != rc) {
OPAL_ERROR_LOG(rc);
opal_btl_usnic_util_abort("Failed to notify connectivity agent to listen", __FILE__,
__LINE__);
}
} else {
/* If we're not doing a connectivity check, just set the port
to 0 */
module->local_modex.connectivity_udp_port = 0;
}
return OPAL_SUCCESS;
}
opal_btl_usnic_module_t opal_btl_usnic_module_template = {
.super = {
.btl_component = &mca_btl_usnic_component.super,
#if BTL_VERSION == 20
.btl_prepare_dst = opal_btl_usnic_prepare_dst,
.btl_seg_size = sizeof(mca_btl_base_segment_t),
#elif BTL_VERSION == 30
.btl_atomic_flags = 0,
.btl_registration_handle_size = 0,
.btl_get_limit = 0,
.btl_get_alignment = 0,
.btl_put_limit = 0,
.btl_put_alignment = 0,
.btl_atomic_op = NULL,
.btl_atomic_fop = NULL,
.btl_atomic_cswap = NULL,
#endif
.btl_exclusivity = MCA_BTL_EXCLUSIVITY_DEFAULT,
.btl_flags = MCA_BTL_FLAGS_SEND | MCA_BTL_FLAGS_SEND_INPLACE |
/* Need to set FLAGS_SINGLE_ADD_PROCS until
btl_recv.h:lookup_sender() can handle an incoming
message with an unknown sender. */
MCA_BTL_FLAGS_SINGLE_ADD_PROCS,
.btl_add_procs = usnic_add_procs,
.btl_del_procs = usnic_del_procs,
.btl_register = NULL,
.btl_finalize = usnic_finalize,
.btl_alloc = usnic_alloc,
.btl_free = usnic_free,
.btl_prepare_src = opal_btl_usnic_prepare_src,
.btl_send = usnic_send,
.btl_sendi = NULL,
.btl_put = opal_btl_usnic_put,
.btl_get = NULL,
.btl_dump = mca_btl_base_dump,
.btl_mpool = NULL,
.btl_register_error = usnic_register_pml_err_cb,
}};
|