aboutsummaryrefslogtreecommitdiff
path: root/tools/tools/sysdoc/tunables.mdoc
blob: 6d88856cfd00ee015d4c44bebb516c4868c5d4de (plain) (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
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
# $FreeBSD$
---
debug.disablecwd
bool

Determines whether or not the
.Xr getwcd 3
system call should be allowed. 

---
debug.disablefullpath
bool

Determines whether or not the
.Fn vn_fullpath
function may be used.

---
debug.dobkgrdwrite
bool

Determines if background writes should be performed.

---
debug.hashstat.nchash
struct

Displays nchash chain lengths.  This is a read-only
variable.

---
debug.hashstat.rawnchash

---
debug.ieee80211
bool

This 
.Nm
allows you to enable or disable debugging for 802.11 devices.

---
debug.kdb.available
variable

Used to retrieve a list of currently available debugger backends.

---
debug.kdb.current
variable

Allows for the selection of the debugger backend
which is used to handle debugger requests.

---
debug.kdb.enter
variable

When written to, the system should break to the debugger.

---
debug.malloc.failure_count
bool

Number of times a coerced malloc failure has occurred as a
result of
.Va debug.malloc.failure_rate .
Useful for tracking what might have happened
and whether failures are being generated.

---
debug.malloc.failure_rate
bool

Debugging feature causing
.Dv M_NOWAIT
allocations to fail at a specified rate.
How often to generate a failure: if set to 0 (default), this
feature is disabled.
In other words if set to 10 (one in ten
.Xr malloc 3
calls will fail).

---
debug.rman_debug
bool

This
.Nm
allows you to enable or disable debugging for
.Xr rman 9 ,
the
.Fx
resource manager.

---
debug.sizeof.bio

---
debug.sizeof.buf

---
debug.sizeof.cdev

---
debug.sizeof.devstat

---
debug.sizeof.kinfo_proc

---
debug.sizeof.proc

---
debug.sizeof.vnode

---
debug.vnlru_nowhere

---
hw.acpi.cpu.current_speed
bool

Display the current CPU speed.
This is adjustable, but doing so is not recommended.

---
hw.acpi.cpu.max_speed
int

Allows you to change the stepping for processor speed
on machines which support
.Xr acpi 4 .

---
hw.acpi.disable_on_poweroff
bool

Some systems using
.Xr acpi 4
have problems powering off when shutting down with
.Xr acpi 4
enabled.  This
.Nm
disables
.Xr acpi 4
when rebooting and shutting down.

---
hw.acpi.s4bios
bool

This
.Nm
determines whether or not the S4BIOS sleep implementation
should be used.

---
hw.acpi.sleep_delay
int

Set the sleep delay for
.Xr acpi 4 .

---
hw.acpi.supported_sleep_state
bool

List supported
.Tn ACPI
sleep states

---
hw.acpi.thermal.min_runtime

---
hw.acpi.thermal.polling_rate
int

The interval in seconds that should be used to check
the current system temperature.

---
hw.acpi.thermal.tz0.temperature
str

Displays the current temperature.
This is a read-only variable.

---
hw.acpi.thermal.tz0.thermal_flags

---
hw.acpi.verbose
bool

Determines whether or not
.Xr acpi 4
should be verbose.

---
hw.ata.ata_dma
bool

Allows the enabling and disabling of DMA for
ATA devices.

---
hw.ata.atapi_dma
bool

Allows the enabling and disabling of DMA for
atapi devices, such as CD-ROM drives.

---
hw.ata.tags
bool

An experimental feature for IDE hard drives which
allows write caching to be turned on.
Please read the
.Xr tuning 7
manual page carefully before using this.

---
hw.ata.wc
bool

Determines whether or not IDE write caching should
be turned on or off.
See
.Xr tuning 7 
for more information.

---
hw.bus.devices

---
hw.bus.info
int

This is an internally used function that returns
the kernel bus interface version.

---
hw.bus.rman

---
hw.busdmafree_bpages

---
hw.busdma.reserved_bpages

---
hw.busdma.active_bpages

---
hw.busdma.total_bpages

---
hw.busdma.total_bounced

---
hw.busdma.total_deferred

---
hw.byteorder
int

Returns the system byte order.
This is a read-only variable.

---
hw.cardbus.cis_debug

---
hw.cardbus.debug

---
hw.cbb.debug

---
hw.cbb.start_16_io

---
hw.cbb.start_32_io

---
hw.cbb.start_memory

---
hw.floatingpoint
bool

Reports true if the machine has a floating point processor.
This is a read-only variable.

---
hw.fxp0.bundle_max
int

Controls the receive interrupt microcode bundle size limit 
for the
.Xr fxp 4
device.

---
hw.fxp0.int_delay
int

Controls the receive interrupt microcode bundling delay 
for the
.Xr fxp 4
device.

---
hw.fxp_noflow
bool

Disables flow control support on
.Xr fxp 4
cards.
When flow control is enabled, and if the operating system
does not acknowledge the packet buffer filling,
the card will begin to generate Ethernet quench
packets, but appears to get into a feedback
loop of some sort, hosing local switches.
This is a workaround for this issue.

---
hw.fxp_rnr
int

Set the amount of times that a no-resource 
condition may occur before the 
.Xr fxp 4
device may restart.

---
hw.instruction_sse
bool

Returns true if SSE support is enabled in the kernel.
This is a read-only variable.

---
hw.intrcnt
bool

Displays a list of interrupt counters.
This is a read-only variable.

---
hw.intrnames
str

Displays a list of zero-terminated interrupt
names.  This is a read-only variable.

---
hw.kbd.keymap_restrict_change
bool

This sysctl acts as a sort of secure-level, allowing
control of the console keymap.
Giving this a value of 1 means that only the
root user can change restricted keys
(like boot, panic...).
A value of 2 means that only root
can change restricted keys and regular keys.
Regular users still can change accents and function keys.
A value of 3 means only root can change restricted,
regular and accent keys, while a value of 4 means that
no changes to the keymap are
allowed by anyone other than the root user.

---
hw.machine
str

Displays the machine class.
This is a read-only variable.

---
hw.machine_arch
str

Displays the current architecture.
This is a read-only variable.

---
hw.model
str

Displays the model information of the current running hardware.
This is a read-only variable.

---
hw.ncpu
bool

Report the number of CPU's in the system.
This is a read-only variable.

---
hw.pagesize
int

Displays the current 
.Xr pagesize 1 .
This is a read-only variable.

---
hw.pccard.cis_debug
int

Allows debugging to be turned on or off for
CIS.

---
hw.pccard.debug
bool

Determines whether or not to use debugging for the
PC Card bus driver.

---
hw.pci.allow_unsupported_io_range
bool

Some machines do not detect their CardBus slots correctly
because they use unsupported I/O ranges.
This 
.Nm
allows FreeBSD to use those ranges.

---
hw.pci.enable_io_modes

---
hw.snd.pcm0.ac97rate

---
hw.snd.verbose
int

Control the level of verbosity for the
.Pa /dev/sndstat
device.  See the
.Xr pcm 4
man page for more information on debug
levels.

---
hw.snd.report_soft_formats
bool

Controls the internal format conversion if it is available 
transparently to the application software.
See 
.Xr pcm 4
for more information.

---
hw.syscons.bell
bool

Allows you to control whether or not to use the 'bell'
while using the console.  This is turned on by default.

---
hw.syscons.saver.keybonly
bool

This variable tells the system that the screen saver
may only wake up if the keyboard is used.  This means
that log messages that are pushed to the console will
not cause the screen saver to stop, and display the log
message will not display.  This can be disabled to mimic
the behavior of older syscons.

---
hw.syscons.sc_no_suspend_vtswitch
bool

Disables switching between virtual terminals during suspend
or resume.  See 
.Xr syscons 4
for more information.

---
hw.wi.debug
bool

Controls the level of debugging for 
.Xr wi 4
devices.

---
hw.wi.txerate
int

This value allows controls the maximum amount of error 
messages per second.
Giving this
.Nm
a value of 0 (zero) disables error messages completely.

---
kern.acct_chkfreq
int

Specifies the frequency (in minutes) with which free disk 
space should be checked.
This is used in conjunction with
.Va kern.acct_resume
and
.Va kern.acct_suspend.

---
kern.acct_resume
int

The percentage of free disk space above which process 
accounting will resume.

---
kern.acct_suspend
int

The percentage of free disk space below which process
accounting stops.

---
kern.argmax
bool

The maximum number of bytes that can be
used in an argument to
.Xr execve 2 .
This is basically the maximum number of
characters which can be used in a single
command line.
On some rare occasions, this value needs
altering.
If so, please check out the
.Xr xargs 1
utility.

---
kern.bootfile
str

The kernel which was used to boot the system.

---
kern.boottime
str

The time at which the current kernel became 
active after the system booted.  This is a
read-only variable.

---
kern.chroot_allow_open_directories
bool

Depending on the setting of this variable, open
file descriptors which reference directories will
fail.
If set to
.Em 0 ,
.Xr chroot 8
will always fail with
.Er EPERM
if there are any directories open.
If set to
.Em 1
(the default),
.Xr chroot 8
will fail with
.Er EPERM
if there are any directories open and the
process is already subject to the
.Xr chroot 8
system call.
Any other value will bypass the check for open directories.
Please see the
.Xr chroot 2
man page for more information.

---
kern.clockrate
struct

Displays information about the system clock.
This is a read-only variable.

---
kern.console

---
kern.coredump
bool

Determines where the kernel should dump a core file
in the event of a kernel panic.

---
kern.corefile
str

Describes the file name that a core image should be stored to.
See the
.Xr core 5
man page for more information on this variable.

---
kern.cp_time
struct

Contains CPU time statistics.
This is a read-only variable.

---
kern.devname
struct

An internally used 
.Nm
that returns suitable device names for the 
.Fn devname
function.
See the 
.Xr devname 3
manual page for more information.

---
kern.devstat.all
struct

An internally used
.Nm
that returns current devstat statistics as well
as the current devstat generation number.
See the 
.Xr devstat 3
man page for more information.

---
kern.devstat.generation

---
kern.devstat.numdevs

---
kern.devstat.version
int

Displays the devstat list version number.
This is a read-only variable.

---
kern.disks
str

Display disk devices that the kernel is currently 
aware of.
This is a read-only variable.

---
kern.domainname
str

This shows the name of the current YP/NIS domain.

---
kern.drainwait
int

The time to wait after dropping DTR to the given number.
The units are measured in hundredths of a second.
The default is 300 hundredths,
i.e., 3 seconds.
This option is needed mainly to set proper recover
time after modem resets.

---
kern.elf32.fallback_brand

---
kern.fallback_elf_brand

---
kern.file
struct

Returns the entire file structure.

---
kern.function_list
struct

Returns all functions names in the kernel.

---
kern.geom.confdot

---
kern.geom.conftxt

---
kern.geom.confxml

---
kern.hostid
int

This
.Nm
may contain the IP address of the system.

---
kern.hostname
str

Display the system hostname.
This can be modified with the
.Xr hostname 1
utility.

---
kern.init_path
string

The path to search for the 
.Xr init 8
process.
This is a read-only variable.

---
kern.iov_max

---
kern.ipc.clust_hiwm

---
kern.ipc.clust_lowm

---
kern.ipc.maxsockbuf
int

The maximum buffer size that may be allocated for sockets.
See
.Xr getsockopt 2
for more information.

---
kern.ipc.maxsockets
int

The maximum number of sockets available.

---
kern.ipc.mb_statpcpu

---
kern.ipc.mbstat

---
kern.ipc.mbuf_hiwm

---
kern.ipc.mbuf_lowm

---
kern.ipc.mbuf_wait

---
kern.ipc.msqids

---
kern.ipc.nmbclusters
bool

Maximum number of mbuf clusters available.
The kernel uses a preallocated pool of
.Dq mbuf clusters
for the
.Xr mbuf 9
allocator.
The pool size is tuned by the kernel during boot.
That size is set to a value which seems appropriate
for the current system.

---
kern.ipc.nmbcnt

---
kern.ipc.nmbufs

---
kern.ipc.nsfbufs

---
kern.ipc.numopensockets

---
kern.ipc.somaxconn
int

The maximum pending socket connection queue size.

---
kern.ipc.zero_copy.receive
bool

When set to a non-zero value, zero copy is
enabled for received packets.
This reduces copying of data around for
outgoing packets and can significantly
improve throughput for network connections.

---
kern.ipc.zero_copy.send
bool

When set to a non-zero value, zero copy is
enabled for sent packets.
This reduces copying of data around for outgoing
packets and can significantly improve throughput
for network connections.

---
kern.job_control
bool

Reports whether or not job control is available.
This is a read-only variable.

---
kern.kq_calloutmax

---
kern.lastpid
int

Displays the last PID used by a process.  
This is a read-only variable.

---
kern.logsigexit
bool

Tells the kernel whether or not to log fatal signal exits.

---
kern.malloc
str

Displays how memory is currently being allocated.
This is a read-only variable.

---
kern.maxfiles
int

The maximum number of files allowed for all the
processes of the running kernel.
You can override the default value which the 
kernel calculates by explicitly setting this to
a non-zero value.
Also see the
.Xr tuning 7
man page for more information.

---
kern.maxfilesperproc
int

The maximum number of files any one process can open.
See the
.Xr ps 1
utility for more information on monitoring processes.

---
kern.maxproc
int

The maximum number of processes that the system
can be running at any time.
See the
.Xr ps 1
utility for more information on monitoring processes.

---
kern.maxprocperuid
int

The maximum number of processes one user ID can run.
See the
.Xr ps 1
utility for more information on monitoring processes.

---
kern.maxusers
int

Controls the scaling of a number of static system tables, including
defaults for the maximum number of open files, sizing of network
memory resources, etc.
See the
.Xr tuning 7
man page for more information.
This
.Nm
cannot be set using
.Xr sysctl 8 .
Use 
.Xr loader 8
instead to set this at boot time.

---
kern.maxvnodes
bool

The maximum number of
.Em vnodes
(virtual file system nodes)
the system can have open simultaneously.

---
kern.minvnodes
bool

The minimun number of
.Em vnodes
(virtual file system nodes)
the system can have open simultaneously.

---
kern.module_path
str

This 
.Nm
holds a colon-separated list of directories in which the
kernel will search for loadable kernel modules.
This path is search when using commands such as
.Xr kldload 8 
and 
.Xr kldunload 8 .

---
kern.msgbuf
string

Contains the kernel message buffer.

---
kern.msgbuf_clear
bool

Giving this 
.Nm
a value of 1 (one) will cause the kernel message buffer to
be cleared.  It should be noted though, that the 
.Nm
will then automatically revert back to it's original
value of 0 (zero).

---
kern.ngroups
int

Contains the maximum number of groups that a
user may belong to.
This is a read-only variable.

---
kern.openfiles
int

Shows the current amount of system-wide
open files.
This is useful when used in conjunction
with
.Va kern.maxfiles
for tuning your system.
This is a read-only variable.

---
kern.osreldate
string

Displays the kernel release date.
This is a read-only variable.

---
kern.osrelease
str

Displays the current version of
.Fx
running.
This is a read-only variable.

---
kern.osrevision
string

Displays the operating system revision.
This is a read-only variable.

---
kern.ostype
str

Alter the name of the current operating system.
Changing this will change the output from
the
.Xr uname 1
utility.
Changing the default is not recommended.

---
kern.posix1version
string

Returns the version of
.Tn POSIX
that the system
is attempting to comply with.
This is a read-only variable.

---
kern.proc.all

---
kern.proc.args
int

Allows a process to retrieve the argument list
or process title for another process without 
looking in the address space of another program.
This is a read-only variable.

---
kern.proc.pgrp

---
kern.proc.pid
struct

This internally used 
.Nm
may be used to extract process information.  See
.Xr sysctl 3
for an example.

---
kern.proc.ruid

---
kern.proc.tty

---
kern.proc.uid

---
kern.ps_argsopen
bool

By setting this to 0, command line arguments are hidden 
for processes which you are not running.
This is useful on multi-user machines where things
like passwords might accidentally be added to command
line programs.

---

kern.quantum

---
kern.random.adaptors
str

Displays registered PRNG adaptors.
This is a read-only variable.

---
kern.random.sys.burst

---
kern.random.sys.harvest.ethernet

---
kern.random.sys.harvest.interrupt

---
kern.random.sys.harvest.point_to_point

---
kern.random.sys.harvest.swi

---
kern.random.sys.seeded

---
kern.random.yarrow.bins

---
kern.random.yarrow.fastthresh

---
kern.random.yarrow.gengateinterval

---
kern.random.yarrow.slowoverthresh

---
kern.random.yarrow.slowthresh

---
kern.randompid

---
kern.rootdev
string

Displays the current root file system device.  This
is a read-only variable.

---
kern.saved_ids
bool

Displays whether or not saved set-group/user ID is 
available.  This is a read-only variable.

---
kern.securelevel
bool

The current kernel security level.
See the
.Xr init 8
manual page for a good description
about what a security level is.

---
kern.sugid_coredump
bool

By default, a process that changes user or group credentials whether
real or effective will not create a corefile.
This behavior can be changed to generate a core dump by
setting this variable to 1.

---
kern.sync_on_panic
bool

In the event of a panic, this variable controls whether or not the
system should try and 
.Xr sync 8 .
In some circumstances, this could cause a double panic, and as a result,
this may be turned off if needed.

---
kern.threads.debug
bool

Determines whether to use debugging for kernel threads.
This is useful for testing.

---
kern.threads.max_groups_per_proc

---
kern.threads.max_threads_hits

---
kern.threads.max_threads_per_proc

---
kern.threads.virtual_cpu
int

The maximum amount of virtual CPU's that be used for 
threading.

---
kern.tty_nin

---
kern.tty_nout

---
kern.ttys
bool

Used internally by the 
.Xr pstat 8
command.
This is a read-only variable.

---
kern.version
str

Displays the current kernel version information.
This is a read-only variable.

---
machdep.acpi_root

---
machdep.cpu_idle_hlt
bool

Halt idle CPUs.
This is good for an SMP system.

---
machdep.disable_mtrrs

---
machdep.guessed_bootdev

---
machdep.hyperthreading_allowed
bool

Setting this tunable to zero disables
the use of additional logical processors
provided by Intel HTT technology.

---
machdep.panic_on_nmi

---
machdep.siots

---
net.inet.accf.unloadable

---
net.inet.icmp.bmcastecho

---
net.inet.icmp.drop_redirect

---
net.inet.icmp.icmplim

---
net.inet.icmp.icmplim_output

---
net.inet.icmp.log_redirect

---
net.inet.icmp.maskfake

---
net.inet.icmp.maskrepl

---
net.inet.ip.accept_sourceroute
bool

Controls forwarding of source-routed IP packets.

---
net.inet.ip.check_interface
bool

This
.Nm 
verifies that packets arrive on the correct interfaces.  

---
net.inet.ip.fastforwarding
bool

When fast forwarding is enabled, IP packets are forwarded directly to
the appropriate network interface with a minimal validity checking,
which greatly improves throughput.
Please see the
.Xr inet 4
man page for more information.

---
net.inet.ip.forwarding
bool

Act as a gateway machine and forward packets.
This can also be configured using the
gateway_enable value in 
.Pa /etc/rc.conf

---
net.inet.ip.fw.one_pass
int

---
net.inet.ip.intr_queue_drops

---
net.inet.ip.intr_queue_maxlen

---
net.inet.ip.maxfragpackets

---
net.inet.ip.maxfragsperpacket

---
net.inet.ip.redirect
bool

Controls the sending of ICMP redirects in response to unforwardable IP
packets.

---
net.inet.ip.rtexpire
int

Lifetime in seconds of protocol-cloned IP routes after the last
reference drops (default one hour).  

---
net.inet.ip.rtmaxcache
int

Trigger level of cached, unreferenced, protocol-cloned 
routes which initiates dynamic adaptation.

---
net.inet.ip.rtminexpire
int

See 
.Xr inet 4
for more information.

---
net.inet.ip.sendsourcequench
bool

This 
.Nm
enables or disables the transmission of
source quench packets.

---
net.inet.ip.sourceroute
bool

Determines whether or not source routed IP packets
should be forwarded.

---
net.inet.ip.stats

---
net.inet.ip.ttl
int

The TTL (time-to-live) to use for outgoing packets.

---
net.inet.raw.maxdgram

---
net.inet.raw.olddiverterror

---
net.inet.raw.pcblist

---
net.inet.raw.recvspace

---
net.inet.tcp.always_keepalive
bool

Determines whether or not to attempt to detect dead TCP
connections by sending 'keepalives' intermittently.  This 
is enabled by default and can also be configured using the
tcp_keepalive value in 
.Pa /etc/rc.conf

---
net.inet.tcp.blackhole
bool

Manipulates system behavior when
connection requests are received on a 
TCP port without a socket listening.
See the 
.Xr blackhole 4
man page for more information.

---
net.inet.tcp.delacktime

---
net.inet.tcp.delayed_ack
bool

Historically speaking, this feature was designed to allow the
acknowledgment to transmitted data to be returned along with the
response.  See the
.Xr tuning 7
man page for more information.

---
net.inet.tcp.do_tcpdrain

---
net.inet.tcp.getcred

---
net.inet.tcp.icmp_may_rst

---
net.inet.tcp.inflight_debug
bool

Control debugging for the
.Va net.inet.tcp.inflight_enable
.Nm .
Please see the
.Xr tuning 7
man page for more information.

---
net.inet.tcp.inflight_enable
bool

Turns on bandwidth delay product limiting for all
TCP connections.  Please see the
.Xr tuning 7
man page for more information.

---
net.inet.tcp.inflight_max
bool

.Em double check
The maximum amount of data that may be queued for 
bandwidth delay product limiting.

---
net.inet.tcp.inflight_min
bool

.Em double check
The minimum amount of data that may be queued for 
bandwidth delay product limiting.

---
net.inet.tcp.inflight_stab
bool

This parameter represents the maximal packets 
added to the bandwidth delay product window
calculation.  Changing this is not recommended.

---
net.inet.tcp.isn_reseed_interval

---
net.inet.tcp.local_slowstart_flightsize

---
net.inet.tcp.log_in_vain
bool

Allows the system to log connections to TCP
ports that do not have sockets listening.
This variable can also be tuned by changing 
the value for log_in_vain
in 
.Pa /etc/rc.conf

---
net.inet.tcp.minmss
bool

Enable for network link optimization TCP can adjust its MSS and thus
packet size according to the observed path MTU.  This is done
dynamically based on feedback from the remote host and network
components along the packet path.  This information can be
abused to pretend an extremely low path MTU.

---
net.inet.tcp.minmssoverload
bool

The PSS rate for the
.Va net.inet.tcp.minmss
sysctl.
Setting this will force packets to be reset
and dropped, this should hinder the availability
of DoS attacks on WWW servers using POST attacks.

---
net.inet.tcp.msl

---
net.inet.tcp.mssdflt
bool

This is the default TCP Maximum Segment Size
for TCP packets.  The default setting is recommended
in most cases.

---
net.inet.tcp.v6mssdflt
bool

This is the default TCP Maximum Segment Size
for TCP IPv6 packets.  The default setting is recommend
in most cases.

---
net.inet.tcp.newreno

---
net.inet.tcp.path_mtu_discovery

---
net.inet.tcp.pcbcount

---
net.inet.tcp.pcblist

---
net.inet.tcp.recvspace
bool

This variables controls the amount of receive 
buffer space for any given TCP connection.  This
can be particularly useful when tuning network 
applications.  See the 
.Xr tuning 7
man page for more information.

---
net.inet.tcp.rexmit_min

---
net.inet.tcp.rexmit_slop

---
net.inet.tcp.rfc1323
bool

Determines whether support for RFC1323 (TCP Extensions 
for High Performance) should be enabled.
This variable can also be tuned by changing the value
for tcp_extensions in
.Pa /etc/rc.conf

---
net.inet.tcp.rfc1644

---
net.inet.tcp.rfc3042

---
net.inet.tcp.rfc3390

---
net.inet.tcp.sendspace
bool

This variables controls the amount of send 
buffer space for any given TCP connection.  This
can be particularly useful when tuning network 
applications.  See the 
.Xr tuning 7
manual page for more information.

---
net.inet.tcp.slowstart_flightsize

---
net.inet.tcp.stats

---
net.inet.tcp.syncache.bucketlimit

---
net.inet.tcp.syncache.cachelimit

---
net.inet.tcp.syncache.count

---
net.inet.tcp.syncache.hashsize

---
net.inet.tcp.syncache.rexmtlimit

---
net.inet.tcp.syncookies

---
net.inet.tcp.tcbhashsize

---
net.inet.tcp.v6mssdflt

---
net.inet.udp.blackhole
bool

Manipulates system behavior when 
connection requests are received on a 
UDP port.
See the 
.Xr blackhole 4
man page for more information.

---
net.inet.udp.getcred

---
net.inet.udp.log_in_vain
bool

Allows the system to log connections to UDP
ports that do not have sockets listening.
This variable can also be tuned by changing 
the value for log_in_vain
in 
.Pa /etc/rc.conf

---
net.inet.udp.maxdgram

---
net.inet.udp.pcblist

---
net.inet.udp.recvspace

---
net.inet.udp.stats

---
net.inet6.icmp6.errppslimit

---
net.inet6.icmp6.nd6_debug

---
net.inet6.icmp6.nd6_delay

---
net.inet6.icmp6.nd6_maxnudhint

---
net.inet6.icmp6.nd6_mmaxtries

---
net.inet6.icmp6.nd6_prune

---
net.inet6.icmp6.nd6_umaxtries

---
net.inet6.icmp6.nd6_useloopback

---
net.inet6.icmp6.nodeinfo

---
net.inet6.icmp6.rediraccept

---
net.inet6.icmp6.redirtimeout

---
net.inet6.tcp6.getcred

---
net.inet6.udp6.getcred

---
net.isr.enable

---
net.link.ether.inet.log_arp_movements

---
net.link.ether.inet.log_arp_wrong_iface

---
net.link.ether.ipfw

---
net.link.generic.ifdata

---
net.link.generic.system.ifcount

---
net.link.gif.max_nesting
bool

Determines whether to allow recursive tunnels or not.

---
net.link.gif.parallel_tunnels
bool

Determines whether to allow parallel tunnels or not.

---
net.local.dgram.pcblist

---
net.local.stream.pcblist

---
security.bsd.see_other_uids
bool

Turning this option on will prevent users from viewing information
about processes running under other user id numbers (UIDs).

---
security.bsd.suser_enabled

---
security.bsd.unprivileged_proc_debug

---
security.bsd.unprivileged_read_msgbuf

---
security.jail.set_hostname_allowed
bool

Determines whether or not the root user
within the jail can set the hostname.

---
security.jail.socket_unixiproute_only

---
security.jail.sysvipc_allowed

---
security.mac.biba.enabled
bool

Enables enforcement of the Biba integrity policy.

---
security.mac.biba.ptys_equal
bool

Label
.Sm off
.Xr pty 4
s
.Sm on
as
.Dq biba/equal
upon creation.

---
security.mac.biba.revocation_enabled
bool

Revoke access to objects if the label is changed to dominate the subject.

---
security.mac.enforce_fs
bool

Enforce MAC policies for file system accesses.

---
security.mac.enforce_kld
bool

Enforce MAC policies on
.Xr kld 4 .

---
security.mac.enforce_network
bool

Enforce MAC policies on network interfaces.

---
security.mac.enforce_pipe
bool

Enforce MAC policies on pipes.

---
security.mac.enforce_process
bool

Enforce MAC policies between system processes
(e.g.
.Xr ps 1 ,
.Xr ktrace 2 ).

---
security.mac.enforce_socket
bool

Enforce MAC policies on sockets.

---
security.mac.enforce_system
bool

Enforce MAC policies on system-related items
(e.g.
.Xr kenv 1 ,
.Xr acct 2 ,
.Xr reboot 2 ).

---
security.mac.enforce_vm
bool

Enforce MAC policies on
.Xr mmap 2
and
.Xr mprotect 2 .

---
security.mac.ifoff.lo_enabled
bool

Use this too disable network traffic over the loopback
.Xr lo 4
interface.
See
.Xr mac_ifoff 4
for more information.

---
security.mac.ifoff.other_enabled
bool

Use this to enable network traffic over other interfaces.
See
.Xr mac_ifoff 4
for more information.

---
security.mac.ifoff.bpfrecv_enabled
bool

Use this too allow
.Xr bpf 4
traffic to be received,
even while other traffic is disabled.

---
security.mac.mls.enabled
bool

Enables the enforcement of the MLS confidentiality policy,
see
.Xr mac_mls 4
for more information.

---
security.mac.mls.ptys_equal
bool

Label
.Sm off
.Xr pty 4
s
.Sm on
as
.Dq mls/equal
upon creation.

---
security.mac.mls.revocation_enabled
bool

Revoke access to objects if the label is changed to a more sensitive
level than the subject.

---
security.mac.portacl.rules
str

The port access control list is specified in the following format:

.Sy idtype
.Li :
.Sy id
.Li :
.Sy protocol
.Li :
.Sy port
.Li [,
.Sy idtype
.Li :
.Sy id
.Li :
.Sy protocol
.Li :
.Sy port
.Li ,...]

.Sy idtype
Describes the type of subject match to be performed.
Either
.Li uid
for userid matching, or
.Li gid
for group ID matching.
.Sy id
The user or group ID (depending on
.Sy idtype )
allowed to bind to the specified port.
.Bf -emphasis
NOTE: User and group names are not valid; only the actual ID numbers
may be used.
.Ef
.Sy protocol
Describes which protocol this entry applies to.
Either
.Li tcp
or
.Li udp
are supported.
.Sy port
Describes which port this entry applies to.
.Bf -emphasis
NOTE: MAC security policies may not override other security system policies
by allowing accesses that they may deny, such as
.Va net.inet.ip.portrange.reservedlow /
.Va net.inet.ip.portrange.reservedhigh .
.Ef

---
security.mac.seeotheruids.enabled
bool

Enable/disable
.Va security.mac.seeotheruids
See
.Xr mac_seeotheruids 4
for more information.

---
security.mac.seeotheruids.primarygroup_enabled
bool

Allow users to see processes and sockets owned by the same primary
group.

---
security.mac.seeotheruids.specificgid_enabled
bool

Allow processes with a specific group ID to be exempt from the policy,
set this to
.Li 1
and set
.Va security.mac.seeotheruids.specificgid
to the gid to be exempted.

---
security.mac_test
str

Used for debugging.
See
.Xr mac_test 4
for more information.

---
user.bc_base_max

---
user.bc_dim_max

---
user.bc_scale_max

---
user.bc_string_max

---
user.coll_weights_max

---
user.cs_path

---
user.line_max

---
user.posix2_c_bind

---
user.posix2_c_dev

---
user.posix2_fort_dev

---
user.posix2_fort_run

---
user.posix2_localedef

---
user.posix2_sw_dev

---
user.posix2_upe

---
user.posix2_version

---
user.re_dup_max

---
user.stream_max

---
user.tzname_max

---
vfs.altbufferflushes

---
vfs.bufdefragcnt

---
vfs.buffreekvacnt

---
vfs.bufmallocspace

---
vfs.bufreusecnt

---
vfs.bufspace

---
vfs.cache.nchstats

---
vfs.conflist

---
vfs.devfs.generation

---
vfs.devfs.inodes

---
vfs.devfs.noverflow

---
vfs.devfs.topinode

---
vfs.dirtybufferflushes

---
vfs.dirtybufthresh

---
vfs.ffs.adjblkcnt

---
vfs.ffs.adjrefcnt

---
vfs.ffs.freeblks

---
vfs.ffs.freedirs

---
vfs.ffs.freefiles

---
vfs.ffs.setflags

---
vfs.flushwithdeps

---
vfs.getnewbufcalls

---
vfs.getnewbufrestarts

---
vfs.hibufspace

---
vfs.hidirtybuffers

---
vfs.hifreebuffers

---
vfs.hirunningspace

---
vfs.lobufspace

---
vfs.lodirtybuffers

---
vfs.lofreebuffers

---
vfs.lorunningspace

---
vfs.maxbufspace

---
vfs.maxmallocbufspace

---
vfs.numdirtybuffers

---
vfs.numfreebuffers

---
vfs.opv_numops

---
vfs.pfs.vncache.entries

---
vfs.pfs.vncache.hits

---
vfs.pfs.vncache.maxentries

---
vfs.pfs.vncache.misses

---
vfs.read_max

---
vfs.recursiveflushes

---
vfs.runningbufspace

---
vfs.ufs.dirhash_docheck

---
vfs.ufs.dirhash_maxmem

---
vfs.ufs.dirhash_mem

---
vfs.ufs.dirhash_minsize

---
vfs.usermount
bool

This
.Nm
allows the root user to grant access to non-root users
so that they may mount floppy and CD-ROM drives.

---
vfs.vmiodirenable
bool

Controls how directories are cached by the system.
This is turned on by default.  See the 
.Xr tuning 7
man page for a more detailed explanation on this
variable.

---
vfs.write_behind
bool

Tells the file system to issue media writes as
full clusters are collected, which typically 
occurs when writing large sequential files.
This is turned on by default, but under certain
circumstances may stall processes and can therefore
be turned off.

---
vm.defer_swapspace_pageouts

---
vm.disable_swapspace_pageouts

---
vm.dmmax

---
vm.kvm_free

---
vm.kvm_size

---
vm.loadavg
struct

Displays the load average history.  This is a 
read-only variable.

---
vm.max_launder

---
vm.nswapdev
int

Displays the number of swap devices available
to the system.  This is a read-only variable.

---
vm.pageout_full_stats_interval

---
vm.pageout_lock_miss

---
vm.pageout_stats_free_max

---
vm.pageout_stats_interval

---
vm.pageout_stats_max

---
vm.stats.sys.v_intr

---
vm.stats.sys.v_soft

---
vm.stats.sys.v_swtch

---
vm.stats.sys.v_syscall

---
vm.stats.sys.v_trap

---
vm.stats.vm.v_cow_faults

---
vm.stats.vm.v_cow_optim

---
vm.stats.vm.v_forkpages

---
vm.stats.vm.v_forks

---
vm.stats.vm.v_intrans

---
vm.stats.vm.v_kthreadpages

---
vm.stats.vm.v_kthreads

---
vm.stats.vm.v_ozfod

---
vm.stats.vm.v_pdpages

---
vm.stats.vm.v_pdwakeups

---
vm.stats.vm.v_reactivated

---
vm.stats.vm.v_rforkpages

---
vm.stats.vm.v_rforks

---
vm.stats.vm.v_swapin

---
vm.stats.vm.v_swapout

---
vm.stats.vm.v_swappgsin

---
vm.stats.vm.v_swappgsout

---
vm.stats.vm.v_vforkpages

---
vm.stats.vm.v_vforks

---
vm.stats.vm.v_vm_faults

---
vm.stats.vm.v_vnodein

---
vm.stats.vm.v_vnodeout

---
vm.stats.vm.v_vnodepgsin

---
vm.stats.vm.v_vnodepgsout

---
vm.stats.vm.v_zfod

---
vm.swap_async_max
int

The maximum number of in-progress async operations
that may be performed.  

---
vm.swap_enabled
bool

Determines whether or not processes may swap.

---
vm.swap_idle_enabled

See 
.Xr tuning 7
for a detailed explanation of this
.Nm .

---
vm.swap_info

---
vm.vmtotal
string

Displays virtual memory statistics which are collected
at five second intervals.

---
vm.zone
string

Shows memory used by the kernel zone allocator, by zone.
This information can also be found by using the 
.Xr vmstat 8 
command.

---