Codebase list ibutils / 828eeccd-6d6e-49fc-957f-adf00d8a1d4e/main debian / patches / Fix-POD-errors.patch
828eeccd-6d6e-49fc-957f-adf00d8a1d4e/main

Tree @828eeccd-6d6e-49fc-957f-adf00d8a1d4e/main (Download .tar.gz)

Fix-POD-errors.patch @828eeccd-6d6e-49fc-957f-adf00d8a1d4e/mainraw · history · blame

   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
From 0a63dd31e4c612ae222a3c8fed65c9c12ac3839d Mon Sep 17 00:00:00 2001
From: Benjamin Drung <benjamin.drung@cloud.ionos.com>
Date: Wed, 11 Nov 2020 13:03:59 +0100
Subject: Fix POD errors

Signed-off-by: Benjamin Drung <benjamin.drung@cloud.ionos.com>
---
 ibdiag/doc/ibdiagui.pod     |   7 +-
 ibdm/doc/ibdm-ibnl-file.pod |  15 +-
 ibdm/doc/ibdm-topo-file.pod |   4 +-
 ibdm/doc/ibdmchk.pod        |  16 ++
 ibdm/doc/ibdmsh.pod         |  42 +++-
 ibdm/doc/ibdmtr.pod         |  39 ++--
 ibdm/doc/ibtopodiff.pod     |   8 +
 ibis/doc/ibis.pod           | 374 +++++++++++++++++++++++++++---------
 8 files changed, 376 insertions(+), 129 deletions(-)

diff --git a/ibdiag/doc/ibdiagui.pod b/ibdiag/doc/ibdiagui.pod
index 86a2df9..6c21394 100644
--- a/ibdiag/doc/ibdiagui.pod
+++ b/ibdiag/doc/ibdiagui.pod
@@ -12,8 +12,8 @@ ibdiagui [-c <count>] [-v] [-r] [-u] [-o <out-dir>]
 
 =head1 DESCRIPTION
 
-  ibdiagui is a GUI wrapper for ibdiagnet.
-  Its main features:
+ibdiagui is a GUI wrapper for ibdiagnet.
+Its main features:
 
 =over
 
@@ -27,5 +27,8 @@ ibdiagui [-c <count>] [-v] [-r] [-u] [-o <out-dir>]
 
 =head1 OPTIONS
 
+=over
+
 =item ibdiagui simply passes its options to ibdiagnet. Please see ibdiagnet man page for the complete list.
 
+=back
diff --git a/ibdm/doc/ibdm-ibnl-file.pod b/ibdm/doc/ibdm-ibnl-file.pod
index ffdd560..219154e 100644
--- a/ibdm/doc/ibdm-ibnl-file.pod
+++ b/ibdm/doc/ibdm-ibnl-file.pod
@@ -34,7 +34,7 @@ The top most system defined in the given file
 
 Many systems allow multiple variations of their subsystem such as a 12X version of a leaf board in a MTS9600. The modifier is a suffix to the board name. The IBNL format supports assigning multiple names to the same board.
 
-=back 4
+=back
 
 =head1 2. File Format
 
@@ -50,7 +50,7 @@ Connections are defined inside the SYSTEM/TOPSYSTEM section only and thus might
 
 =item 2. From any node or sub-system to a connector of the system.
 
-=back 4
+=back
 
 
 NOTE-1: The top system can define ports that might be redundant and not connected to any lower level board connector. In these cases the ports are simply omitted from the resulting system. This feature enables defining the front panel ports of a 12X/4X such that if a 12X leaf is selected only the 12X front panel ports are used.
@@ -93,6 +93,7 @@ SYSTEM LEAF:12x,LEAF:12X
 
 ...
 
+=back
 
 NOTE-3: The instantiations of the LEAF boards in another board or the top system need not specify the postfix and are being decided upon only when the topology file is being parsed. The "SYSTEM LEAF" with no postfix will be used by default. To continue the example here is how the LEAFs are instantiated in the top system:
 
@@ -108,7 +109,7 @@ LEAF leaf2
 
 ...
 
-=back 4
+=back
 
 The actual 4x or 12x version of the LEAF board can then be specified in the topology file CFG section to select the right combination of optional boards in the system. An example will be:
 
@@ -116,6 +117,8 @@ The actual 4x or 12x version of the LEAF board can then be specified in the topo
 
 MyIbSystem N001 CFG: leaf2=12x
 
+=back
+
 In this case leaf1 will be 4x as no special modifier is defined for it (and LEAF is by default a 4x leaf). Leaf2 will be 12x as defined in the CFG section.
 
 =item e)
@@ -158,9 +161,7 @@ SUBSYSTEM LEAF leaf1
 
 12XP1 -> L1/P1-12x
 
-=back 4
-
-=over 4
+=back
 
 =item f)
 
@@ -171,6 +172,8 @@ Place the file in the <prefix>/lib/IBDM/ibdm1.0/ibnl directory
 
 Check the new file syntax by placing it in the ibnl directory as described above, creating a simple topology (B<ibdm-topo-file> file with one such system and running B<ibdmtr> utility to parse it tracing a simple path through it.
 
+=back
+
 =head1 4. Formal definition in YACC Syntax:
 
 INT ::= ([1-9][0-9]*|0) ;
diff --git a/ibdm/doc/ibdm-topo-file.pod b/ibdm/doc/ibdm-topo-file.pod
index af89afc..7deba46 100644
--- a/ibdm/doc/ibdm-topo-file.pod
+++ b/ibdm/doc/ibdm-topo-file.pod
@@ -11,7 +11,7 @@ It serves two purposes:
 
 =item 2. Connectivity verification: The specified network topology is verified against the discovered one. Mismatch errors resulting from missing cables and/or wrong connections are reported by IBADM.
 
-=back 4
+=back
 
 The topology file is composed "system" sections. Each such section describes the connectivity of one system to other systems in the network. The first line of each section is a declaration of the system composed of a system-type, its system-name section, and optional configuration details. The lines to follow until the next empty line describe the connections between this system ports to the other systems. The following is a formal definition of a system section syntax.
 
@@ -62,7 +62,7 @@ The name of the system connected to the local port.
 
 A name of the remote system port. We use the numbers as printed on the front panel and Ln for Leaf number N or Sn for Spine number N.
 
-=back 4
+=back
 
 =head1 EXAMPLE
 
diff --git a/ibdm/doc/ibdmchk.pod b/ibdm/doc/ibdmchk.pod
index dabfafa..a66dce0 100644
--- a/ibdm/doc/ibdmchk.pod
+++ b/ibdm/doc/ibdmchk.pod
@@ -24,6 +24,8 @@ The Design mode is intended to be used before the cluster is built. It provides
 
 =head1 ARGUMENTS:
 
+=over
+
 =item -t|--topo <topo file>
 
 The B<topology file> specifying the network. See man B<ibdm-topology-file>
@@ -36,8 +38,12 @@ The name of the Subnet Manager node (syntax: <Topo-File-System>/U1)
 
 The port number by which the SM nodes is attached to the fabric.
 
+=back
+
 =head1 OPTIONS
 
+=over
+
 =item -v|--verbose
 
 Verbsoe mode
@@ -57,6 +63,8 @@ Use enhanced routing algorithm when LMC > 0 and report the resulting paths corre
 =item -r|--roots <roots file>
 A file with all the roots node names (one on each line).
 
+=back
+
 =head1 VERIFICATION MODE DESCRIPTION
 
 After the cluster is built and OpenSM is run (using flag -D 0x43) it reports the subnet and FDB tables into the files osm-subnet.lst, osm.fdbs and osm.fdbs in /var/log/ (or subnet.lst, osm.fdbs and osm.mcfdbs into /tmp in older OpenSM versions). ibdiagnet is also producing the same files in its output directory.
@@ -65,12 +73,18 @@ In case of an LMC > 0 it reports histograms for how many systems and nodes are c
 
 =head1 ARGUMENTS
 
+=over
+
 =item -l|--lmc <lmc>
 
 The LMC value used while running OpenSM. Mandatory if not the default 0.
 
+=back
+
 =head1 OPTIONS
 
+=over
+
 =item -v|--verbose
 
 Verbsoe mode
@@ -120,6 +134,8 @@ Include multicast routing in credit loops analysis.
 Verify not only CA-CA paths but also SW-SW, CA-SW and SW-CA.
 Both check for FDB path connectivity and also for credit loops.
 
+=back
+
 =head1 AUTHOR
 
 Eitan Zahavi, Mellanox Technologies LTD, eitan@mellanox.co.il
diff --git a/ibdm/doc/ibdmsh.pod b/ibdm/doc/ibdmsh.pod
index 3892143..599a5ad 100644
--- a/ibdm/doc/ibdmsh.pod
+++ b/ibdm/doc/ibdmsh.pod
@@ -23,7 +23,7 @@ The following constants are used by the node object type field
 
 [ Constant : int  ] $IB_CA_NODE = IB_CA_NODE
 
-=back 4
+=back
 
 =head2 Log Verbosity Flags
 
@@ -39,7 +39,7 @@ The following constants are used as argument bits for the global variable $Fabri
 
 [ Constant : int  ]  $FABU_LOG_VERBOSE = 0x4
 
-=back 4
+=back
 
 =head1 IBDM Globals
 
@@ -49,7 +49,7 @@ Log level: set to FABU_LOG* values
 
 [ Global : int ] $FabricUtilsVerboseLevel
 
-=back 4
+=back
 
 =head1 IBDM Objects
 
@@ -102,6 +102,8 @@ B<Objects:>
 
 The following are the different fields and methods of the IB Port class which describes an IB device (chip) physical port.
 
+=over
+
 =item [ Member data: returns IBPort * ] -p_remotePort
 
 Port connected on the other side of link
@@ -158,10 +160,14 @@ Connect the port to another node port with optional width and speed parameters
 
 Disconnect the port. Return 0 if successful
 
+=back
+
 =head2 class IBNode
 
 The IB Node class represents a single IB Device (chip)
 
+=over
+
 =item [ Member data: returns string * ] -name
 
 Name of the node (instance name of the chip)
@@ -258,10 +264,14 @@ Get the LFT for a given LID
 
 Dump out the min hop table of the node
 
+=back
+
 =head2 class IBSysPort
 
 The IBSysPort class represents an IB plug on the system front or back pannels
 
+=over
+
 =item [ Member data: returns string * ] -name
 
 The front pannel name (silk) of the port
@@ -290,10 +300,14 @@ Connect two SysPorts
 
 Disconnect the SysPort (and ports). Return 0 if successful
 
+=back
+
 =head2 class IBSystem
 
 The IBSystem class represents an entire chassis
 
+=over
+
 =item [ Member data: returns string * ] -name
 
 The "host" name of the system
@@ -338,10 +352,14 @@ Get the node port for the given sys port by name
 
 Get a Sys Port by name
 
+=back
+
 =head2 class IBFabric
 
 Represents an entire IB subnet made of systems
 
+=over
+
 =item [ Member data: returns map_str_pnode * ] -NodeByName
 
 Provide a list of node name and pointer pairs
@@ -470,6 +488,8 @@ Construct a new fabric
 
 Destruct a fabric
 
+=back
+
 =head1 IBDM Functions
 
 This section provide the details about the functions IBDM exposes.
@@ -480,6 +500,8 @@ They all return 0 on succes.
 
 The file holds a set of utilities to be run on the subnet to mimic OpenSM initialization and analyze the results:
 
+=over
+
 =item [ returns int  ] ibdmAssignLids p_smNodePort ?lmc?
 
 Assign LIDs with an optional LMC (multiple LID per port)
@@ -548,10 +570,14 @@ Analyze multicast routing to make sure it obeys Up/Down rule
 
 Prepare a schedule for transmission from a set of sources to destinations such that in each stage there are no links that are over subscribed and after all stages all the links of the fabric were excersized
 
+=back
+
 =head2  Tracing Utilities
 
 These functions allows tracing paths reporting back the visited nodes
 
+=over
+
 =item [ returns int  ] ibdmTraceDRPathRoute p_smNodePort drPathPortNums
 
 Trace a directed route path from the given port
@@ -564,10 +590,14 @@ Trace a path along the MinHop from the source to destination LIDs
 
 Trace a path following the LFT updating the hops and node list variables
 
+=back
+
 =head2 Topology Matching Utilities
 
 The following utilities matches two fabrics providing both missmatch messages and a unified fabric
 
+=over
+
 =item [ returns int  ] ibdmMatchFabrics p_spec_fabric p_discovered_fabric anchorNodeName anchorPortNum anchorPortGuid
 
 Match a topology based fabric with a discovered one starting at the enchor port
@@ -576,10 +606,14 @@ Match a topology based fabric with a discovered one starting at the enchor port
 
 After matching using ibdmMatchFabrics populate the "merged fabric" with information merged for the matched nodes
 
+=back
+
 =head2 Congestion Analysis Utilities
 
 Provide ability to track and report link oversubscription
 
+=over
+
 =item [ returns int  ] ibdmCongInit p_fabric
 
 Initialize the tracking system
@@ -604,6 +638,8 @@ Report the resulting congestion information
 
 Dump all congestion tracking info
 
+=back
+
 =head1 AUTHOR
 
 Eitan Zahavi, Mellanox Technologies LTD, eitan@mellanox.co.il
diff --git a/ibdm/doc/ibdmtr.pod b/ibdm/doc/ibdmtr.pod
index 15ad7e5..c8f168d 100644
--- a/ibdm/doc/ibdmtr.pod
+++ b/ibdm/doc/ibdmtr.pod
@@ -12,67 +12,50 @@ ibdmtr [-v][-h] {-c <cbaling file>|-t <topo file>} -s <sm node name>
 This utility parses a cabling list or topology file describing the systems connections that make a fabric.  Then it start following the direct route provided and print out the systems and nodes on the route.
 
 =head1 ARGUMENTS
+
 Required arguments description.
 
 =over
 
 =item -t|--topology <file>
 
-=over
-
-=item Topology file describing the network. See man ibdm-topology-file.
-
-=back
+Topology file describing the network. See man ibdm-topology-file.
 
 =item -c|--cables <file>
 
+Cabling list file. Following the line format:
+
 =over
 
-=item Cabling list file. Following the line format:
+<Sys1Type> <Sys1Name> <Port1Name> <Sys2Type> <Sys2Name> <Port2Name>
 
 =back
 
-<Sys1Type> <Sys1Name> <Port1Name> <Sys2Type> <Sys2Name> <Port2Name>
-
 =item -s|--sm-node <name>
 
-=over
-
-=item The name of the SM node (not system). E.g. OSM/U1.
-
-=back
+The name of the SM node (not system). E.g. OSM/U1.
 
 =item -p|--port-num <num>
 
-=over
-
-=item The number of the SM node port the SM is attached to
-
-=back
+The number of the SM node port the SM is attached to
 
 =item -d|--dr-path <comm-sep-dr-path>
 
-=over
-
-=item A list of ports to go out through
+A list of ports to go out through
 
 =back
 
 =head1 OPTIONS
 
-=item -v|--verbose
-
 =over
 
-=item verbsoe mode
+=item -v|--verbose
 
-=back
+verbsoe mode
 
 =item -h|--help
 
-=over
-
-=item provide this help message
+provide this help message
 
 =back
 
diff --git a/ibdm/doc/ibtopodiff.pod b/ibdm/doc/ibtopodiff.pod
index caf71f4..cdb2dd7 100644
--- a/ibdm/doc/ibtopodiff.pod
+++ b/ibdm/doc/ibtopodiff.pod
@@ -13,6 +13,8 @@ This utility performs matching between a given topology file (see man B<ibdm-top
 
 =head1 ARGUMENTS
 
+=over
+
 =item -t|--topology <file>
 
 Topology file. See man B<ibdm-topology-file> for its definition.
@@ -33,8 +35,12 @@ The number of the matching start port, also known as anchor port
 
 The guid of the matching start port
 
+=back
+
 =head1 OPTIONS
 
+=over
+
 =item -v|--verbose
 
 Verbsoe mode
@@ -43,6 +49,8 @@ Verbsoe mode
 
 Provides this help message
 
+=back
+
 =head1 AUTHOR
 
 Eitan Zahavi, Mellanox Technologies LTD, eitan@mellanox.co.il
diff --git a/ibis/doc/ibis.pod b/ibis/doc/ibis.pod
index d75fd5e..7102ca1 100644
--- a/ibis/doc/ibis.pod
+++ b/ibis/doc/ibis.pod
@@ -36,11 +36,15 @@ These constants are provided by IBIS:
 
 =item [ Constant : int  ] $IBIS_LOG_FRAMES = 0x20
 
+=back
+
 =head1 IBIS Functions
 
 This section provide the details about the functions IBIS exposes.
 They all return 0 on succes.
 
+=over
+
 =item [return list] ibis_get_local_ports_info
 
 Return the list of available IB ports with GUID, LID, state and port number.
@@ -74,23 +78,26 @@ Exit IBIS.
 
 Appends a message to the OpenSM log
 
-=back 4
+=back
 
 =head2 IBIS Options Object
 
-=over 4
-
-
 The IBIS options are available through the predefined object: ibis_opts.
 It can be manipulated using the standard Tcl methods: cget and configure.
 Examples:
 
-   ibis_opts cget -force_log_flush
+=over 4
+
+ibis_opts cget -force_log_flush
 
-   ibis_opts configure -force_log_flush TRUE
+ibis_opts configure -force_log_flush TRUE
+
+=back
 
 The following are the different options that can be configured:
 
+=over
+
 =item [ Member data: returns boolean_t * ] -single_thread
 
 Run single threaded
@@ -120,6 +127,8 @@ The M_Key to be used when sending SubnetMgt
 
 The Vendor Key to be used when sending Vendor Specific MADs.
 
+=back
+
 =head1 IBPM
 
 IBPM stands for IB Performance Monitoring MADs. IB provides standard facilities for tracking statistics on every port.
@@ -127,6 +136,8 @@ IBPM stands for IB Performance Monitoring MADs. IB provides standard facilities
 This section provide the details about the functions IBPM exposes.
 They all return 0 on succes.
 
+=over
+
 =item [ returns int  ] pmMultiMaxGet
 
 Obtain the maximal number of parallel queries that can be sent
@@ -154,23 +165,22 @@ Sends a command to "clear all counters" on the given LID and port
 Send a batch of "clear all counters" commands to the given list of LIDs and ports.
 num - defines the number of elements in each list.
 
+=back
+
 =head1 IBSAC
 
 IBSAC stands for IB Subnet Administrator (SA) Client. It provide means to query the SA for information about the various objects it manages
 
 The following sections describe the concepts behind the SAC interface and then provides detailed description of each attribute that can be queried.
 
-=back 4
-
 =head2 IBSAC Objects
 
-=over 4
-
-
 IBSAC uses predefined global objects to facilitate SA Queries.
 Such objects are named sac<Attribute>Query. Each such object
 exposes a standard set of methods:
 
+=over
+
 =item dump
 
 dump out all fields and values for the obejct
@@ -253,15 +263,14 @@ Queries of non embedded attributes:
 =item vlarb:<idx>= VL Arbitration table record
 
 
-=back 4
+=back
 
 =head2 NODE INFO RECORD
 
-=over 4
-
-
 Component mask bits:
 
+=over 4
+
 =item [ Constant : int  ] $IB_NR_COMPMASK_LID = 0x1
 
 =item [ Constant : int  ] $IB_NR_COMPMASK_RESERVED1 = 0x2
@@ -292,6 +301,8 @@ Component mask bits:
 
 =item [ Constant : int  ] $IB_NR_COMPMASK_NODEDESC = 0x4000
 
+=back
+
 ----
 
 =head3  class sacNodeInfo
@@ -299,6 +310,8 @@ Component mask bits:
 
 Fields:
 
+=over
+
 =item [ Member data: returns uint8_t * ] -base_version
 
 =item [ Member data: returns uint8_t * ] -class_version
@@ -323,37 +336,42 @@ Fields:
 
 =item [ Member : returns void  ] delete
 
+=back
+
 ----
 
 =head3  class sacNodeRec
 
 RID Fields:
 
+=over
+
 =item [ Member data: returns ib_net16_t * ] -lid
 
 =item [ Member data: returns sacNodeInfo * ] -node_info
 
 =item [ Member data: returns ib_node_desc_t * ] -node_desc
 
+=back
 
 Methods:
 
+=over
+
 =item [ Member : returns char * ] get comp_mask
 
 =item [ Member : returns char * ] getTable comp_mask
 
 =item [ Member : returns void  ] delete
 
-
-=back 4
+=back
 
 =head2 PORT INFO RECORD
 
-=over 4
-
-
 Component mask bits:
 
+=over 4
+
 =item [ Constant : char * ] $IB_PIR_COMPMASK_LID = 0x1
 
 =item [ Constant : char * ] $IB_PIR_COMPMASK_PORTNUM = 0x2
@@ -450,13 +468,16 @@ Component mask bits:
 
 =item [ Constant : char * ] $IB_PIR_COMPMASK_OVERRUNERR = 0x1000000000000
 
+=back
+
 ----
 
 =head3  class sacPortInfo
 
-
 Fields:
 
+=over
+
 =item [ Member data: returns ib_net64_t * ] -m_key
 
 =item [ Member data: returns ib_net64_t * ] -subnet_prefix
@@ -527,37 +548,42 @@ VlCap and InitType
 
 =item [ Member : returns void  ] delete
 
+=back
+
 ----
 
 =head3 class sacPortRec
 
 RID Fields:
 
+=over
+
 =item [ Member data: returns ib_net16_t * ] -lid
 
 =item [ Member data: returns uint8_t * ] -port_num
 
 =item [ Member data: returns sacPortInfo * ] -port_info
 
+=back
 
 Methods:
 
+=over
+
 =item [ Member : returns char * ] get comp_mask
 
 =item [ Member : returns char * ] getTable comp_mask
 
 =item [ Member : returns void  ] delete
 
-
-=back 4
+=back
 
 =head2 SM INFO RECORD
 
-=over 4
-
-
 Component mask bits:
 
+=over 4
+
 =item [ Constant : char * ] $IB_SMR_COMPMASK_LID = 0x1
 
 =item [ Constant : char * ] $IB_SMR_COMPMASK_GUID = 0x2
@@ -570,13 +596,16 @@ Component mask bits:
 
 =item [ Constant : int  ] $IB_SMR_COMPMASK_PRI = 0x20
 
+=back
+
 ----
 
 =head3 class sacSmInfo
 
-
 Fields:
 
+=over
+
 =item [ Member data: returns ib_net64_t * ] -guid
 
 =item [ Member data: returns ib_net64_t * ] -sm_key
@@ -587,19 +616,26 @@ Fields:
 
 =item [ Member : returns void  ] delete
 
+=back
+
 ----
 
 =head3 class sacSmRec
 
 RID Fields:
 
+=over
+
 =item [ Member data: returns ib_net16_t * ] -lid
 
 =item [ Member data: returns sacSmInfo * ] -sm_info
 
+=back
 
 Methods:
 
+=over
+
 =item [ Member : returns char * ] get comp_mask
 
 =item [ Member : returns char * ] getTable comp_mask
@@ -607,15 +643,14 @@ Methods:
 =item [ Member : returns void  ] delete
 
 
-=back 4
+=back
 
 =head2 SWITCH INFO RECORD
 
-=over 4
-
-
 Component mask bits:
 
+=over 4
+
 =item [ Constant : char * ] $IB_SWR_COMPMASK_LID = 0x1
 
 =item [ Constant : char * ] $IB_SWR_COMPMASK_LIN_CAP = 0x2
@@ -642,6 +677,8 @@ Component mask bits:
 
 =item [ Constant : char * ] $IB_SWR_COMPMASK_FLAGS = 0x1000
 
+=back
+
 ----
 
 =head3 class sacSwInfo
@@ -649,6 +686,8 @@ Component mask bits:
 
 Fields:
 
+=over
+
 =item [ Member data: returns ib_net16_t * ] -lin_cap
 
 =item [ Member data: returns ib_net16_t * ] -rand_cap
@@ -673,19 +712,26 @@ Fields:
 
 =item [ Member : returns void  ] delete
 
+=back
+
 ----
 
 =head3 class sacSwRec
 
 RID Fields:
 
+=over
+
 =item [ Member data: returns ib_net16_t * ] -lid
 
 =item [ Member data: returns sacSwInfo * ] -switch_info
 
+=back
 
 Methods:
 
+=over
+
 =item [ Member : returns char * ] get comp_mask
 
 =item [ Member : returns char * ] getTable comp_mask
@@ -693,15 +739,14 @@ Methods:
 =item [ Member : returns void  ] delete
 
 
-=back 4
+=back
 
 =head2 LINK RECORD
 
-=over 4
-
-
 Component mask bits:
 
+=over 4
+
 =item [ Constant : int  ] $IB_LR_COMPMASK_FROM_LID = 0x1
 
 =item [ Constant : int  ] $IB_LR_COMPMASK_FROM_PORT = 0x2
@@ -710,6 +755,8 @@ Component mask bits:
 
 =item [ Constant : int  ] $IB_LR_COMPMASK_TO_LID = 0x8
 
+=back
+
 ----
 
 =head3 class sacLinkRec
@@ -717,6 +764,8 @@ Component mask bits:
 
 Fields:
 
+=over
+
 =item [ Member data: returns ib_net16_t * ] -from_lid
 
 =item [ Member data: returns uint8_t * ] -from_port_num
@@ -725,9 +774,12 @@ Fields:
 
 =item [ Member data: returns ib_net16_t * ] -to_lid
 
+=back
 
 Methods:
 
+=over
+
 =item [ Member : returns char * ] get comp_mask
 
 =item [ Member : returns char * ] getTable comp_mask
@@ -735,15 +787,14 @@ Methods:
 =item [ Member : returns void  ] delete
 
 
-=back 4
+=back
 
 =head2 PATH RECORD
 
-=over 4
-
-
 Component mask bits:
 
+=over 4
+
 =item [ Constant : int  ] $IB_PR_COMPMASK_DGID = 0x4
 
 =item [ Constant : int  ] $IB_PR_COMPMASK_SGID = 0x8
@@ -784,6 +835,8 @@ Component mask bits:
 
 =item [ Constant : int  ] $IB_PR_COMPMASK_PFTLIFETIME = 0x200000
 
+=back
+
 ----
 
 =head3 class sacPathRec
@@ -791,6 +844,8 @@ Component mask bits:
 
 Fields:
 
+=over
+
 =item [ Member data: returns ib_gid_t * ] -dgid
 
 =item [ Member data: returns ib_gid_t * ] -sgid
@@ -817,8 +872,12 @@ Fields:
 
 =item [ Member data: returns uint8_t * ] -preference
 
+=back
+
 Methds:
 
+=over
+
 =item [ Member : returns char * ] get comp_mask
 
 =item [ Member : returns char * ] getTable comp_mask
@@ -826,19 +885,21 @@ Methds:
 =item [ Member : returns void  ] delete
 
 
-=back 4
+=back
 
 =head2 LINEAR FORWARDING TABLE
 
-=over 4
-
 
 Component mask bits:
 
+=over 4
+
 =item [ Constant : char * ] $IB_LFT_COMPMASK_LID = 0x1
 
 =item [ Constant : char * ] $IB_LFT_COMPMASK_BLOCK = 0x2
 
+=back
+
 ----
 
 =head3 class sacLFTRec
@@ -846,15 +907,20 @@ Component mask bits:
 
 Fields:
 
+=over
+
 =item [ Member data: returns ib_net16_t * ] -lid
 
 =item [ Member data: returns ib_net16_t * ] -block_num
 
 =item [ Member data: returns ib_lft_t * ] -lft
 
+=back
 
 Methods:
 
+=over
+
 =item [ Member : returns char * ] get comp_mask
 
 =item [ Member : returns char * ] getTable comp_mask
@@ -862,15 +928,14 @@ Methods:
 =item [ Member : returns void  ] delete
 
 
-=back 4
+=back
 
 =head2 MULTICAST MEMBER RECORD
 
-=over 4
-
-
 Component mask bits:
 
+=over 4
+
 =item [ Constant : char * ] $IB_MCR_COMPMASK_GID = 0x1
 
 =item [ Constant : char * ] $IB_MCR_COMPMASK_MGID = 0x1
@@ -909,6 +974,8 @@ Component mask bits:
 
 =item [ Constant : char * ] $IB_MCR_COMPMASK_PROXY = 0x20000
 
+=back
+
 ----
 
 =head3 class sacMCMRec
@@ -916,6 +983,8 @@ Component mask bits:
 
 Fields:
 
+=over
+
 =item [ Member data: returns ib_gid_t * ] -mgid
 
 =item [ Member data: returns ib_gid_t * ] -port_gid
@@ -938,9 +1007,12 @@ Fields:
 
 =item [ Member data: returns uint8_t * ] -scope_state
 
+=back
 
 Methods:
 
+=over
+
 =item [ Member : returns char * ] get comp_mask
 
 =item [ Member : returns char * ] getTable comp_mask
@@ -962,12 +1034,10 @@ Instead of simple field configure
 Delete the object
 
 
-=back 4
+=back
 
 =head2 SA CLASS PORT INFO
 
-=over 4
-
 ----
 
 =head3 class sacClassPortInfo
@@ -975,6 +1045,8 @@ Delete the object
 
 Fields:
 
+=over 4
+
 =item [ Member data: returns uint8_t * ] -base_ver
 
 =item [ Member data: returns uint8_t * ] -class_ver
@@ -1007,20 +1079,21 @@ Fields:
 
 =item [ Member data: returns ib_net32_t * ] -trap_qkey
 
+=back
 
 Methods:
 
+=over
+
 =item [ Member : returns char * ] get
 
 =item [ Member : returns void  ] delete
 
 
-=back 4
+=back
 
 =head2 INFORM INFO RECORD
 
-=over 4
-
 
 The inform Info is built with heirarchy of objects. So several classes are defined.
 
@@ -1031,6 +1104,8 @@ The inform Info is built with heirarchy of objects. So several classes are defin
 
 Fields:
 
+=over 4
+
 =item [ Member data: returns ib_gid_t * ] -gid
 
 =item [ Member data: returns ib_net16_t * ] -lid_range_begin
@@ -1047,13 +1122,18 @@ Fields:
 
 =item [ Member data: returns sacInformInfo_g_or_v * ] -g_or_v
 
+=back
 
 Methods:
 
+=over
+
 =item [ Member : returns char * ] set
 
 =item [ Member : returns void  ] delete
 
+=back
+
 ----
 
 =head3 class sacInformInfo_g_or_v
@@ -1061,10 +1141,14 @@ Methods:
 
 Fields:
 
+=over
+
 =item [ Member data: returns sacInformInfo_g_or_v_generic * ] -generic
 
 =item [ Member data: returns sacInformInfo_g_or_v_vend * ] -vend
 
+=back
+
 ----
 
 =head3 class sacInformInfo_g_or_v_generic
@@ -1072,6 +1156,8 @@ Fields:
 
 Fields:
 
+=over
+
 =item [ Member data: returns ib_net16_t * ] -trap_num
 
 =item [ Member data: returns ib_net32_t * ] -qpn_resp_time_val
@@ -1082,6 +1168,8 @@ Fields:
 
 =item [ Member data: returns ib_net16_t * ] -node_type_lsb
 
+=back
+
 ----
 
 =head3 class sacInformInfo_g_or_v_vend
@@ -1089,6 +1177,8 @@ Fields:
 
 Fields:
 
+=over
+
 =item [ Member data: returns ib_net16_t * ] -dev_id
 
 =item [ Member data: returns ib_net32_t * ] -qpn_resp_time_val
@@ -1099,16 +1189,14 @@ Fields:
 
 =item [ Member data: returns ib_net16_t * ] -vendor_id_lsb
 
-
-=back 4
+=back
 
 =head2 SERVICE RECORD
 
-=over 4
-
-
 Component mask bits:
 
+=over 4
+
 =item [ Constant : char * ] $IB_SR_COMPMASK_SID = 0x1
 
 =item [ Constant : char * ] $IB_SR_COMPMASK_SGID = 0x1
@@ -1183,6 +1271,8 @@ Component mask bits:
 
 =item [ Constant : char * ] $IB_SR_COMPMASK_SDATA64_1 = 0x800000000
 
+=back
+
 ----
 
 =head3 class sacServiceRec
@@ -1190,6 +1280,8 @@ Component mask bits:
 
 Fields:
 
+=over
+
 =item [ Member data: returns ib_net64_t * ] -service_id
 
 =item [ Member data: returns ib_gid_t * ] -service_gid
@@ -1212,9 +1304,12 @@ Fields:
 
 =item [ Member data: returns ib_net64_array_t * ] -service_data64
 
+=back
 
 Methods:
 
+=over
+
 =item [ Member : returns char * ] get comp_mask
 
 =item [ Member : returns char * ] set comp_mask
@@ -1226,33 +1321,40 @@ Methods:
 =item [ Member : returns void  ] obj_delete
 
 
-=back 4
+=back
 
 =head2 SL to VL TABLE RECORD
 
-=over 4
-
-
 Component mask bits:
 
+=over 4
+
 =item [ Constant : char * ] $IB_SLVL_COMPMASK_LID = 0x1
 
 =item [ Constant : char * ] $IB_SLVL_COMPMASK_IN_PORT = 0x2
 
 =item [ Constant : char * ] $IB_SLVL_COMPMASK_OUT_PORT = 0x4
 
+=back
+
 ----
 
 =head3 class sacSlVlTbl
 
+=over
+
 =item [ Member data: returns uint8_array_t * ] -raw_vl_by_sl
 
+=back
+
 ----
 
 =head3 class sacSlVlRec
 
 RID Fields:
 
+=over
+
 =item [ Member data: returns ib_net16_t * ] -lid
 
 for CA: lid of port, for switch lid of port 0
@@ -1269,9 +1371,12 @@ reserved for CA's
 
 =item [ Member data: returns sacSlVlTbl * ] -slvl_tbl
 
+=back
 
 Methods:
 
+=over
+
 =item [ Member : returns char * ] get comp_mask
 
 =item [ Member : returns char * ] getTable comp_mask
@@ -1279,21 +1384,22 @@ Methods:
 =item [ Member : returns void  ] delete
 
 
-=back 4
+=back
 
 =head2 VL ARBITRATION TABLE RECORD
 
-=over 4
-
-
 Component mask bits:
 
+=over 4
+
 =item [ Constant : char * ] $IB_VLA_COMPMASK_LID = 0x1
 
 =item [ Constant : char * ] $IB_VLA_COMPMASK_OUT_PORT = 0x2
 
 =item [ Constant : char * ] $IB_VLA_COMPMASK_BLOCK = 0x4
 
+=back
+
 ----
 
 =head3 class sacVlArbRec
@@ -1301,6 +1407,8 @@ Component mask bits:
 
 Fields:
 
+=over
+
 =item [ Member data: returns ib_net16_t * ] -lid
 
 for CA: lid of port, for switch lid of port 0
@@ -1313,9 +1421,12 @@ for CA: lid of port, for switch lid of port 0
 
 =item [ Member data: returns sac_vl_arb_tbl_t * ] -vl_arb_tbl
 
+=back
 
 Methods:
 
+=over
+
 =item [ Member : returns char * ] get comp_mask
 
 =item [ Member : returns char * ] getTable comp_mask
@@ -1323,21 +1434,23 @@ Methods:
 =item [ Member : returns void  ] delete
 
 
-=back 4
+=back
 
 =head2 PKEY TABLE RECORD
 
-=over 4
-
 
 Component mask bits:
 
+=over 4
+
 =item [ Constant : char * ] $IB_PKEY_COMPMASK_LID = 0x1
 
 =item [ Constant : char * ] $IB_PKEY_COMPMASK_BLOCK = 0x2
 
 =item [ Constant : char * ] $IB_PKEY_COMPMASK_PORT = 0x4
 
+=back
+
 ----
 
 =head3 class sacPKeyTbl
@@ -1345,14 +1458,20 @@ Component mask bits:
 
 Fields:
 
+=over
+
 =item [ Member data: returns ib_net16_array_t * ] -pkey_entry
 
+=back
+
 ----
 
 =head3 class sacPKeyRec
 
 RID Fields:
 
+=over
+
 =item [ Member data: returns ib_net16_t * ] -lid
 
 for CA: lid of port, for switch lid of port 0
@@ -1369,21 +1488,29 @@ for switch: port number, for CA: reserved
 
 =item [ Member data: returns sacPKeyTbl * ] -pkey_tbl
 
+=back
 
 Methods:
 
+=over
+
 =item [ Member : returns char * ] get comp_mask
 
 =item [ Member : returns char * ] getTable comp_mask
 
 =item [ Member : returns void  ] delete
 
+=back
+
 =head1 Subnet Management MADs (SMPs)
 
 The SM interface supports sending Subnet Management Packets to the fabric devices. The specific attributes that can be access is provided in detail in each sub section below.
 
 A set of object types is defined. The user can allocate a new attribute object. Then the object can be set using configure or the direct manipulation methods.
 Extra methods are provided for each object:
+
+=over
+
 =item setByDr <dr> <attrMod>
 
 Set the attribute on the object accessible by the given directed route. A directed route is a list of port numbers to go out from.
@@ -1392,25 +1519,23 @@ Set the attribute on the object accessible by the given directed route. A direct
 
 Get the attribute value by traversing a directed route.
 
-setByLid <lid> <attrMod>
+=item setByLid <lid> <attrMod>
 
 Set the attribute on the object accessible by the given LID
 
-getByLid <lid> <attrMod>
+=item getByLid <lid> <attrMod>
 
 get the attribute on the object accessible by the given LID
 
 
-=back 4
+=back
 
 =head2 class smNodeInfo
 
-=over 4
-
-
-
 Fields:
 
+=over 4
+
 =item [ Member data: returns uint8_t * ] -base_version
 
 =item [ Member data: returns uint8_t * ] -class_version
@@ -1433,9 +1558,12 @@ Fields:
 
 =item [ Member data: returns ib_net32_t * ] -port_num_vendor_id
 
+=back
 
 Methods:
 
+=over
+
 =item [ Member : returns int  ] getByDr dr
 
 =item [ Member : returns int  ] setByDr dr
@@ -1444,11 +1572,15 @@ Methods:
 
 =item [ Member : returns int  ] setByLid lid
 
+=back
+
 =head1 class smPortInfo
 
 
 Fields:
 
+=over
+
 =item [ Member data: returns ib_net64_t * ] -m_key
 
 =item [ Member data: returns ib_net64_t * ] -subnet_prefix
@@ -1517,9 +1649,12 @@ VlCap and InitType
 
 =item [ Member data: returns uint8_t * ] -error_threshold
 
+=back
 
 Methods:
 
+=over
+
 =item [ Member : returns int  ] getByDr dr portNum
 
 =item [ Member : returns int  ] setByDr dr portNum
@@ -1529,7 +1664,7 @@ Methods:
 =item [ Member : returns int  ] setByLid lid portNum
 
 
-=back 4
+=back
 
 =head2 class smSwInfo
 
@@ -1567,7 +1702,7 @@ Methods:
 =item [ Member : returns int  ] setByLid lid
 
 
-=back 4
+=back
 
 =head2 class smLftBlock
 
@@ -1585,7 +1720,7 @@ Methods:
 =item [ Member : returns int  ] setByLid lid blockNum
 
 
-=back 4
+=back
 
 =head2 class smMftBlock
 
@@ -1603,7 +1738,7 @@ Methods:
 =item [ Member : returns int  ] setByLid lid startLid startPort
 
 
-=back 4
+=back
 
 =head2 class smGuidInfo
 
@@ -1621,7 +1756,7 @@ Methods:
 =item [ Member : returns int  ] setByLid lid blockNum
 
 
-=back 4
+=back
 
 =head2 class smPkeyTable
 
@@ -1639,7 +1774,7 @@ Methods:
 =item [ Member : returns int  ] setByLid lid portNum blockNum
 
 
-=back 4
+=back
 
 =head2 class smSlVlTable
 
@@ -1657,7 +1792,7 @@ Methods:
 =item [ Member : returns int  ] setByLid lid inPortNum outPortNum
 
 
-=back 4
+=back
 
 =head2  class smVlArbTable
 
@@ -1675,7 +1810,7 @@ Methods:
 =item [ Member : returns int  ] setByLid lid portNum block
 
 
-=back 4
+=back
 
 =head2 class smNodeDesc
 
@@ -1693,7 +1828,7 @@ Methods:
 =item [ Member : returns int  ] setByLid lid
 
 
-=back 4
+=back
 
 =head2 class smSMInfo
 
@@ -1717,15 +1852,14 @@ Methods:
 =item [ Member : returns int  ] setByLid lid
 
 
-=back 4
+=back
 
 =head2 class smNotice
 
-=over 4
-
-
 The NOTICE attribute is built out of several sub objects
 
+=over 4
+
 =item [ Member data: returns uint8_t * ] -generic_type
 
 =item [ Member data: returns ib_net16_t * ] -issuer_lid
@@ -1742,18 +1876,26 @@ The NOTICE attribute is built out of several sub objects
 
 =item [ Member : returns int  ] trapByLid lid
 
+=back
+
 ----
 
 =head3 class smNotice_g_or_v
 
+=over
+
 =item [ Member data: returns smNotice_g_or_v_generic * ] -generic
 
 =item [ Member data: returns smNotice_g_or_v_vend * ] -vend
 
+=back
+
 ----
 
 =head3  class smNotice_data_details
 
+=over
+
 =item [ Member data: returns smNotice_data_details_raw_data * ] -raw_data
 
 =item [ Member data: returns smNotice_data_details_ntc_64_67 * ] -ntc_64_67
@@ -1772,55 +1914,78 @@ The NOTICE attribute is built out of several sub objects
 
 =item [ Member data: returns smNotice_data_details_ntc_259 * ] -ntc_259
 
+=back
+
 ----
 
 =head3  class smNotice_g_or_v_generic
 
+=over
+
 =item [ Member data: returns uint8_t * ] -prod_type_msb
 
 =item [ Member data: returns ib_net16_t * ] -prod_type_lsb
 
 =item [ Member data: returns ib_net16_t * ] -trap_num
 
+=back
+
 ----
 
 =head3  class smNotice_g_or_v_vend
 
+=over
+
 =item [ Member data: returns uint8_t * ] -vend_id_msb
 
 =item [ Member data: returns ib_net16_t * ] -vend_id_lsb
 
 =item [ Member data: returns ib_net16_t * ] -dev_id
 
+=back
+
 ----
 
 =head3 class smNotice_data_details_raw_data
 
+=over
+
 =item [ Member data: returns uint8_array_t * ] -details
 
+=back
 
 ----
 
 =head3 class smNotice_data_details_ntc_64_67
 
+=over
+
 =item [ Member data: returns uint8_array_t * ] -res
 
 =item [ Member data: returns ib_gid_t * ] -gid
 
 the Node or Multicast Group that came in/out
 
+=back
+
 ----
 
 =head3 class smNotice_data_details_ntc_128
 
+=over
+
 =item [ Member data: returns ib_net16_t * ] -sw_lid
 
 the sw lid of which link state changed
 
+=back
+
 ----
 
 =head3 class smNotice_data_details_ntc_129_131
 
+=over
+
 =item [ Member data: returns ib_net16_t * ] -pad
 
 =item [ Member data: returns ib_net16_t * ] -lid
@@ -1829,10 +1994,14 @@ lid and port number of the violation
 
 =item [ Member data: returns uint8_t * ] -port_num
 
+=back
+
 ----
 
 =head3 class smNotice_data_details_ntc_144
 
+=over
+
 =item [ Member data: returns ib_net16_t * ] -pad1
 
 =item [ Member data: returns ib_net16_t * ] -lid
@@ -1845,10 +2014,14 @@ lid where capability mask changed
 
 new capability mask
 
+=back
+
 ----
 
 =head3 class smNotice_data_details_ntc_145
 
+=over
+
 =item [ Member data: returns ib_net16_t * ] -pad1
 
 =item [ Member data: returns ib_net16_t * ] -lid
@@ -1861,10 +2034,14 @@ lid where sys guid changed
 
 new system image guid
 
+=back
+
 ----
 
 =head3 class smNotice_data_details_ntc_256
 
+=over
+
 =item [ Member data: returns ib_net16_t * ] -pad1
 
 =item [ Member data: returns ib_net16_t * ] -lid
@@ -1887,10 +2064,14 @@ new system image guid
 
 =item [ Member data: returns uint8_array_t * ] -dr_rtn_path
 
+=back
+
 ----
 
 =head3 class smNotice_data_details_ntc_257_258
 
+=over
+
 =item [ Member data: returns ib_net16_t * ] -pad1
 
 =item [ Member data: returns ib_net16_t * ] -lid1
@@ -1909,10 +2090,14 @@ new system image guid
 
 =item [ Member data: returns ib_gid_t * ] -gid2
 
+=back
+
 ----
 
 =head3 class smNotice_data_details_ntc_259
 
+=over
+
 =item [ Member data: returns ib_net16_t * ] -data_valid
 
 =item [ Member data: returns ib_net16_t * ] -lid1
@@ -1937,6 +2122,8 @@ new system image guid
 
 =item [ Member data: returns uint8_t * ] -port_no
 
+=back
+
 =head1 IBCR Functions
 
 Provides vendor specific access to the device internal coniguration space
@@ -1944,6 +2131,8 @@ Provides vendor specific access to the device internal coniguration space
 This section provide the details about the functions IBCR exposes.
 They all return 0 on succes.
 
+=over
+
 =item [ returns int  ] crMultiMaxGet
 
 =item [ returns int  ] crRead lid address
@@ -1954,6 +2143,8 @@ They all return 0 on succes.
 
 =item [ returns int  ] crWriteMulti num lid_list data address
 
+=back
+
 =head1  IB Vendor Specific Functions
 
 IBVS stands for Vendor Specific MADs.
@@ -1961,6 +2152,8 @@ IBVS stands for Vendor Specific MADs.
 This section provide the details about the functions IBVS exposes.
 They all return 0 on succes.
 
+=over
+
 =item [ returns int  ] vsMultiMaxGet
 
 =item [ returns int  ] vsCpuRead lid size cpu_traget_size address
@@ -1997,11 +2190,15 @@ They all return 0 on succes.
 
 =item [ returns int  ] vsMirrorWrite lid rx_mirror tx_mirror
 
+=back
+
 =head1  IBBBM Functions
 
 This section provide the details about the functions IBBBM exposes.
 They all return 0 on succes.
 
+=over
+
 =item [ returns int  ] bbmVpdRead lid vpd_device_selector bytes_num offset
 
 =item [ returns int  ] bbmVpdWrite lid vpd_device_selector bytes_num offset p_data
@@ -2016,6 +2213,7 @@ They all return 0 on succes.
 
 =item [ returns int  ] bbmFWVerRead lid
 
+=back
 
 =head1 AUTHOR
 
-- 
2.25.1