[ create a new paste ] login | about

Link: http://codepad.org/FIjqh2Nt    [ raw code | fork ]

Plain Text, pasted on Jan 2:
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
beastie11 dumped core - see /var/crash/vmcore.0

Thu Dec 19 17:13:58 EST 2013

FreeBSD beastie11 9.2-RELEASE FreeBSD 

9.2-RELEASE #0 r255898: Thu Sep 26 22:50:31 UTC 2013     root@bake.isc.freebsd.org:/usr/obj/usr/src/sys/GENERIC  

amd64

panic: page fault

GNU gdb 6.1.1 [FreeBSD]
Copyright 2004 Free Software Foundation, Inc.
GDB is free software, 

covered by the GNU General Public License, and you are
welcome to change it and/or distribute copies of it under 

certain conditions.
Type "show copying" to see the conditions.
There is absolutely no warranty for GDB.  Type "show 

warranty" for details.
This GDB was configured as "amd64-marcel-freebsd"...

Unread portion of the kernel message 

buffer:


Fatal trap 12: page fault while in kernel mode
cpuid = 3; apic id = 06
fault virtual address	= 

0xfffffe0b2bc4fdf8
fault code		= supervisor read data, page not present
instruction pointer	= 

0x20:0xffffffff80b891a2
stack pointer	        = 0x28:0xffffff82497c07d0
frame pointer	        = 

0x28:0xffffff82497c0800
code segment		= base 0x0, limit 0xfffff, type 0x1b
			= DPL 0, 

pres 1, long 1, def32 0, gran 1
processor eflags	= interrupt enabled, resume, IOPL = 0
current process		= 

5194 (dd)
trap number		= 12
panic: page fault
cpuid = 3
KDB: stack backtrace:
#0 0xffffffff80947986 at 

kdb_backtrace+0x66
#1 0xffffffff8090d9ae at panic+0x1ce
#2 0xffffffff80cf20d0 at trap_fatal+0x290
#3 

0xffffffff80cf2431 at trap_pfault+0x211
#4 0xffffffff80cf29e4 at trap+0x344
#5 0xffffffff80cdbd13 at calltrap+0x8
#6 

0xffffffff80b89318 at vm_page_free_toq+0x38
#7 0xffffffff80b87d95 at vm_object_page_remove+0x135
#8 

0xffffffff80b7f2c6 at vm_map_delete+0x326
#9 0xffffffff80b7f3d1 at vm_map_remove+0x51
#10 0xffffffff80b826d7 at 

vmspace_exit+0xc7
#11 0xffffffff808d7b90 at exit1+0x3e0
#12 0xffffffff808d8ede at sys_sys_exit+0xe
#13 

0xffffffff80cf187a at amd64_syscall+0x5ea
#14 0xffffffff80cdbff7 at Xfast_syscall+0xf7
Uptime: 1d17h10m51s
Dumping 680 

out of 8106 MB:..3%..12%..22%..31%..43%..52%..62%..71%..83%..92%

#0  doadump (textdump=<value optimized out>) at 

pcpu.h:234
234	pcpu.h: No such file or directory.
	in pcpu.h
(kgdb) #0  doadump (textdump=<value optimized 

out>) at pcpu.h:234
#1  0xffffffff8090d486 in kern_reboot (howto=260)
    at /usr/src/sys/kern/kern_shutdown.c:449
#2  

0xffffffff8090d987 in panic (fmt=0x1 <Address 0x1 out of bounds>)
    at /usr/src/sys/kern/kern_shutdown.c:637
#3  

0xffffffff80cf20d0 in trap_fatal (frame=0xc, eva=<value optimized out>)
    at /usr/src/sys/amd64/amd64/trap.c:879
#4 

 0xffffffff80cf2431 in trap_pfault (frame=0xffffff82497c0720, usermode=0)
    at 

/usr/src/sys/amd64/amd64/trap.c:795
#5  0xffffffff80cf29e4 in trap (frame=0xffffff82497c0720)
    at 

/usr/src/sys/amd64/amd64/trap.c:463
#6  0xffffffff80cdbd13 in calltrap ()
    at 

/usr/src/sys/amd64/amd64/exception.S:232
#7  0xffffffff80b891a2 in vm_page_remove (m=0xfffffe022bc4fd60)
    at 

/usr/src/sys/vm/vm_page.c:995
#8  0xffffffff80b89318 in vm_page_free_toq (m=0xfffffe022bc4fd60)
    at 

/usr/src/sys/vm/vm_page.c:1892
#9  0xffffffff80b87d95 in vm_object_page_remove (object=0xfffffe0073b23910, 
    

start=161, end=52385, options=<value optimized out>)
    at /usr/src/sys/vm/vm_object.c:1905
#10 0xffffffff80b7f2c6 

in vm_map_delete (map=0xfffffe0073979000, 
    start=<value optimized out>, end=140737488355328)
    at 

/usr/src/sys/vm/vm_map.c:2733
#11 0xffffffff80b7f3d1 in vm_map_remove (map=0xfffffe0073979000, start=4096, 
    

end=140737488355328) at /usr/src/sys/vm/vm_map.c:2865
#12 0xffffffff80b826d7 in vmspace_exit (td=0xfffffe0073b8d000)
 

   at /usr/src/sys/vm/vm_map.c:350
#13 0xffffffff808d7b90 in exit1 (td=0xfffffe0073b8d000, rv=0)
    at 

/usr/src/sys/kern/kern_exit.c:323
#14 0xffffffff808d8ede in sys_sys_exit (td=<value optimized out>, 
    uap=<value 

optimized out>) at /usr/src/sys/kern/kern_exit.c:122
#15 0xffffffff80cf187a in amd64_syscall (td=0xfffffe0073b8d000, 

traced=0)
    at subr_syscall.c:135
#16 0xffffffff80cdbff7 in Xfast_syscall ()
    at 

/usr/src/sys/amd64/amd64/exception.S:391
#17 0x00000008008c650c in ?? ()
Previous frame inner to this frame (corrupt 

stack?)
(kgdb) 

------------------------------------------------------------------------
ps -axl

UID  PID PPID CPU PRI 

NI    VSZ RSS MWCHAN   STAT TT        TIME COMMAND
  0    0    0   0 -52  0      0   0 -        DLs  ??     0:00.05 

[kernel]
  0    1    0   0  52  0   6276   0 wait     DLs  ??     0:00.00 [init]
  0    2    0   0 -16  0      0   0 

waiting_ DL   ??     0:00.00 [sctp_iterator
  0    3    0   0 -16  0      0   0 ccb_scan DL   ??     0:00.00 

[xpt_thrd]
  0    4    0   0 -16  0      0   0 psleep   DL   ??     0:00.03 [pagedaemon]
  0    5    0   0 -16  0     

 0   0 psleep   DL   ??     0:00.00 [vmdaemon]
  0    6    0   0 155  0      0   0 pgzero   DL   ??     0:00.00 

[pagezero]
  0    7    0   0 -16  0      0   0 psleep   DL   ??     0:00.11 [bufdaemon]
  0    8    0   0  16  0      

0   0 syncer   DL   ??     0:26.03 [syncer]
  0    9    0   0 -16  0      0   0 vlruwt   DL   ??     0:00.12 [vnlru]
 

 0   10    0   0 -16  0      0   0 audit_wo DL   ??     0:00.00 [audit]
  0   11    0   0 155  0      0   0 -        

RL   ??  7240:38.78 [idle]
  0   12    0   0 -76  0      0   0 -        WL   ??    46:10.43 [intr]
  0   13    0   0  

-8  0      0   0 -        DL   ??    29:11.13 [geom]
  0   14    0   0 -68  0      0   0 -        DL   ??     

0:03.21 [usb]
  0   15    0   0 -16  0      0   0 tzpoll   DL   ??     0:00.58 [acpi_thermal]
  0   16    0   0 -16  

0      0   0 cooling  DL   ??     0:00.10 [acpi_cooling1
  0   17    0   0 -16  0      0   0 sdflush  DL   ??     

0:00.20 [softdepflush]
  0  105    1   0  52  0   9952   0 pause    Ds   ??     0:00.00 [adjkerntz]
  0  766    1   0 

 52  0  14264   0 select   Ds   ??     0:00.00 [moused]
  0  783    1   0  20  0  10376   0 select   Ds   ??     

0:00.02 [devd]
  0  901    1   0  27  0  12080   0 select   Ds   ??     0:00.02 [dhclient]
 65  939    1   0  20  0  

12080   0 select   Ds   ??     0:00.02 [dhclient]
  0  966    1   0  20  0  12076   0 select   Ds   ??     0:00.06 

[syslogd]
  0 1067    1   0  52  0  46876   0 select   Ds   ??     0:00.00 [sshd]
  0 1070    1   0  20  0  20340   0 

select   Ds   ??     0:00.44 [sendmail]
 25 1073    1   0  20  0  20340   0 pause    Ds   ??     0:00.01 [sendmail]
  

0 1077    1   0  42  0  14176   0 nanslp   Ds   ??     0:00.09 [cron]
  0 1109    1   0  20  0  45332   0 wait     

Ds   ??     0:00.01 [login]
  0 1110    1   0  52  0  12084   0 ttyin    Ds+  ??     0:00.00 [getty]
  0 1111    1   

0  52  0  12084   0 ttyin    Ds+  ??     0:00.00 [getty]
  0 1112    1   0  52  0  12084   0 ttyin    Ds+  ??     

0:00.00 [getty]
  0 1113    1   0  52  0  12084   0 ttyin    Ds+  ??     0:00.00 [getty]
  0 1114    1   0  52  0  

12084   0 ttyin    Ds+  ??     0:00.00 [getty]
  0 1115    1   0  52  0  12084   0 ttyin    Ds+  ??     0:00.00 

[getty]
  0 1116    1   0  52  0  12084   0 ttyin    Ds+  ??     0:00.00 [getty]
  0 1117 1109   0  20  0  14508   0 

ttyin    D+   ??     0:00.02 [csh]
  0 5194 1117   0  20  0      0   0 -        RE   ??     6:18.22 [dd]
  0 5195 

1117   0  20  0 214748   0 physwr   DL   ??     6:07.94 [dd]
  0 5198 1117   0  20  0 214748   0 physwr   DL   ??    

 4:55.72 [dd]

------------------------------------------------------------------------
vmstat -s

3823870260 cpu 

context switches
487850526 device interrupts
  5766407 software interrupts
   923231 traps
  5026562 system calls
       

17 kernel threads created
     2740  fork() calls
     3632 vfork() calls
        0 rfork() calls
        0 swap pager 

pageins
        0 swap pager pages paged in
        0 swap pager pageouts
        0 swap pager pages paged out
      

521 vnode pager pageins
     3407 vnode pager pages paged in
        0 vnode pager pageouts
        0 vnode pager 

pages paged out
        0 page daemon wakeups
        0 pages examined by the page daemon
        0 pages reactivated
  

 159778 copy-on-write faults
      114 copy-on-write optimized faults
   679590 zero fill pages zeroed
        0 zero 

fill pages prezeroed
       33 intransit blocking page faults
   883043 total VM faults taken
        0 pages affected 

by kernel thread creation
  1390584 pages affected by  fork()
  1871391 pages affected by vfork()
        0 pages 

affected by rfork()
        0 pages cached
   928877 pages freed
        0 pages freed by daemon
        0 pages freed 

by exiting processes
    79479 pages active
    20163 pages inactive
        0 pages in VM cache
   101337 pages wired 

down
  1806819 pages free
     4096 bytes per page
  1387396 total name lookups
          cache hits (39% pos + 1% neg) 

system 3% per-directory
          deletions 0%, falsehits 0%, toolong 0%

------------------------------------------------------------------------
vmstat -m

         Type InUse MemUse HighUse 

Requests  Size(s)
      acpidev    65     5K       -       65  64
       USBdev    33     8K       -       36  

64,128,512,4096
       isadev     7     1K       -        7  128
          USB    60    87K       -       78  

16,32,64,128,256,2048,4096
         cdev     7     2K       -        7  256
        sigio     1     1K       -        

1  64
     filedesc    39    20K       -     6390  512
      kdtrace   222    48K       -     6572  64,256
         

kenv    85    12K       -      102  16,32,64,128
       kqueue     0     0K       -      122  256,2048
    proc-args  

  23     2K       -    36186  16,32,64,128,256
        hhook     2     1K       -        2  256
       kbdmux     7   

 18K       -        8  16,512,1024,2048
      ithread   118    20K       -      118  32,128,256
          LED    28   

  2K       -       28  16,128
       KTRACE   100    13K       -      100  128
       linker   161    11K       -     

 163  16,32,64,512
        lockf    23     3K       -      301  64,128
   loginclass     2     1K       -      809  

64
       ip6ndp     6     1K       -        6  64,128
         temp    35     1K       -    14069  

16,32,64,128,256,512,1024,2048,4096
       devbuf 18304 37920K       -    18695  16,32,64,128,256,512,1024,2048,4096
 

    pci_link    16     2K       -       16  64,128
       module   477    60K       -      478  128
     mtx_pool     

2    16K       -        2  
     pmchooks     1     1K       -        1  128
    acpi_perf     4     2K       -       

 4  512
      subproc   173   227K       -     6523  512,4096
         proc     2    16K       -        2  
      

session    19     3K       -      835  128
         pgrp    23     3K       -      873  128
         cred    28     

5K       -    53580  64,256
      uidinfo     4     3K       -      745  128,2048
       plimit    13     4K       -  

  10684  256
      acpipwr    11     1K       -       11  64
    sysctltmp     0     0K       -      512  

16,32,64,128,512
    sysctloid  4875   243K       -     4998  16,32,64,128
       sysctl     0     0K       -     

2751  16,32
      tidhash     1    16K       -        1  
      callout     3  1536K       -        3  
         umtx  

 420    53K       -      420  128
     p1003.1b     1     1K       -        1  16
         SWAP     2   549K       -  

      2  64
       feeder     7     1K       -        7  32
       bus-sc    81   250K       -     3421  

16,32,64,128,256,512,1024,2048,4096
          bus  1282   111K       -     5811  16,32,64,128,256,1024
      devstat  

  10    21K       -       10  32,4096
 eventhandler    91     8K       -       91  64,128
   CAM periph    22     6K  

     -       46  16,32,64,128,256
         kobj   333  1332K       -      697  4096
      Per-cpu     1     1K       

-        1  32
       DEVFS1   148    74K       -      158  512
       DEVFS3   165    42K       -      182  256
      

   rman   268    32K       -      643  16,32,128
         sbuf     0     0K       -     1228  

16,32,64,128,256,512,1024,2048,4096
        DEVFS    30     1K       -       33  16,128
       DEVFSP     2     1K    

   -        2  64
    taskqueue    31     3K       -       31  16,32,128
       Unitno    15     1K       -     2839  

32,64
          iov     0     0K       -     1224  32,64,128,256,512
       select    27     4K       -       27  128
 

    ioctlops     0     0K       -     1752  16,32,64,128,256,512,1024
          msg     4    30K       -        4  

2048,4096
          sem     4   106K       -        4  2048,4096
          shm     1    20K       -        1  
        

  tty    20    20K       -       20  1024
     mbuf_tag     0     0K       -      102  32
        shmfd     1     8K  

     -        1  
          pcb    16   157K       -      181  16,32,128,1024,2048,4096
       soname     3     1K    

   -     5799  16,32,128
          acl     0     0K       -        4  4096
     vfscache     1  2048K       -        

1  
     vfs_hash     1  1024K       -        1  
       vnodes     2     1K       -        2  256
        mount    16 

    1K       -       86  16,32,64,128,256
  vnodemarker     0     0K       -     9570  512
          BPF    10    10K 

      -       10  128,512,4096
  ether_multi    17     1K       -       24  16,32,64
       ifaddr    58    15K       

-       59  32,64,128,256,512,4096
        ifnet     6    11K       -        6  128,2048
        clone     6    24K   

    -        6  4096
       arpcom     2     1K       -        2  16
      lltable    18     7K       -       69  

256,512
     routetbl    31     5K       -      261  32,64,128,256,512
         igmp     5     2K       -        5  

256
     in_multi     2     1K       -        3  256
    sctp_iter     0     0K       -        3  256
     sctp_ifn    

 2     1K       -        2  128
     sctp_ifa     4     1K       -        4  128
     sctp_vrf     1     1K       -   

     1  64
    sctp_a_it     0     0K       -        3  16
    hostcache     1    28K       -        1  
     syncache 

    1    96K       -        1  
    in6_multi    15     2K       -       15  32,256
          mld     5     1K       

-        5  128
      NFS FHA     1     2K       -        1  2048
          rpc     2     1K       -        2  256
audit_evclass   180     6K       -      219  32
      jblocks     2     1K       -        2  128,256
     savedino    

 0     0K       -      277  256
        sbdep     0     0K       -      992  64
      jsegdep    17     2K       -    

 4792  64
         jseg     1     1K       -      569  128
    jfreefrag     0     0K       -        6  128
      

jnewblk     0     0K       -      494  128
      jremref     0     0K       -     2132  128
      jaddref     0     

0K       -     2160  128
     freework     2     1K       -      436  32,128
    newdirblk     0     0K       -       

 6  64
       dirrem     8     1K       -     2120  128
        mkdir     0     0K       -       12  128
       diradd 

    8     1K       -     2148  128
     freefile     0     0K       -      396  64
     freeblks     1     1K       - 

     435  256
     freefrag     0     0K       -        6  128
       newblk     2   257K       -      495  256
    

bmsafemap     2     9K       -      706  256
     inodedep    10  1029K       -     2805  512
      pagedep     2   

257K       -      379  256
  ufs_dirhash   468    91K       -      468  16,32,64,128,256,512
    ufs_quota     1  

1024K       -        1  
    ufs_mount     3    13K       -        3  512,4096
    vm_pgdata     2  1025K       -     

   2  128
      UMAHash     2   130K       -       12  512,1024,2048,4096
    pfs_nodes    21     6K       -       21 

 256
         GEOM   130    29K       -     1486  16,32,64,128,256,512,1024,2048
      memdesc     1     4K       -   

     1  4096
     acpiintr     1     1K       -        1  64
       acpica  6850   681K       -   361275  

16,32,64,128,256,512,1024,2048,4096
     acpitask     1     8K       -        1  
CAM dev queue    11     2K       -  

     11  128
    raid_data     0     0K       -      204  32,128,256
         UART     9     5K       -        9  

16,512,1024
md_nvidia_data     0     0K       -       33  512
       apmdev     1     1K       -        1  128
   

madt_table     0     0K       -        1  4096
      acpisem   119    15K       -      119  128
  md_sii_data     0   

  0K       -       33  512
     CAM path    31     1K       -       79  32
      CAM CCB    41    82K       -       

91  2048
      io_apic     1     2K       -        1  2048
      scsi_cd     0     0K       -       10  16
          

MCA    14     2K       -       14  32,128
          msi    19     3K       -       19  128
     nexusdev     3     1K 

      -        3  16
      CAM DEV    21    42K       -       26  2048
      CAM XPT    79     6K       -      279  

16,32,64,128,256,1024
    CAM queue    54     6K       -      146  16,32,64,512
      CAM SIM    11     3K       -    

   11  256

------------------------------------------------------------------------
vmstat -z

ITEM                   

SIZE  LIMIT     USED     FREE      REQ FAIL SLEEP

UMA Kegs:               208,      0,      89,      13,      89,   

0,   0
UMA Zones:              896,      0,      89,       3,      89,   0,   0
UMA Slabs:              568,      0,  

 12836,       2,   14135,   0,   0
UMA RCntSlabs:          568,      0,    2312,       5,    2312,   0,   0
UMA Hash: 

              256,      0,       2,      13,       4,   0,   0
16 Bucket:              152,      0,     120,       

5,     120,   0,   0
32 Bucket:              280,      0,     106,       6,     106,   2,   0
64 Bucket:              

536,      0,     105,       0,     105,  57,   0
128 Bucket:            1048,      0,     193,       2,     

193,252360,   0
VM OBJECT:              232,      0,   41170,     302,  120841,   0,   0
MAP:                    232, 

     0,       8,      24,       8,   0,   0
KMAP ENTRY:             120, 275652,     103,     889,419918873,   0,   

0
MAP ENTRY:              120,      0,     482,     603,  190530,   0,   0
fakepg:                 120,      0,       

0,      93,      10,   0,   0
mt_zone:               4112,      0,     322,       5,     322,   0,   0
16:            

          16,      0,    2507,     181,  228272,   0,   0
32:                      32,      0,    2502,     528,   

48516,   0,   0
64:                      64,      0,   12798,     642,  158476,   0,   0
128:                    128, 

     0,    7800,     610,   29756,   0,   0
256:                    256,      0,     767,     253,   43577,   0,   

0
512:                    512,      0,     588,     217,   20905,   0,   0
1024:                  1024,      0,      

66,     190,   38847,   0,   0
2048:                  2048,      0,     102,      64,     675,   0,   0
4096:         

         4096,      0,     428,      97,    7651,   0,   0
Files:                   80,      0,      61,     299,  

361356,   0,   0
rl_entry:                40,      0,     103,     317,     103,   0,   0
TURNSTILE:              

136,      0,     211,      89,     211,   0,   0
umtx pi:                 96,      0,       0,       0,       0,   

0,   0
MAC labels:              40,      0,       0,       0,       0,   0,   0
PROC:                  1192,      0,  

    39,      93,    6389,   0,   0
THREAD:                1160,      0,     181,      29,     181,   0,   0
SLEEPQUEUE:              80,      0,     211,      79,     211,   0,   0
VMSPACE:                392,      0,      

23,      97,    6374,   0,   0
cpuset:                  72,      0,      69,      81,      77,   0,   0
audit_record: 

          960,      0,       0,       0,       0,   0,   0
mbuf_packet:            256,      0,    4092,     518, 

1155133,   0,   0
mbuf:                   256,      0,       1,     641,    2429,   0,   0
mbuf_cluster:          

2048,  25600,    4608,       6,    4608,   0,   0
mbuf_jumbo_page:       4096,  12800,       0,       5,       2,   

0,   0
mbuf_jumbo_9k:         9216,  19200,       0,       0,       0,   0,   0
mbuf_jumbo_16k:       16384,  12800,  

     0,       0,       0,   0,   0
mbuf_ext_refcnt:          4,      0,       0,       0,       0,   0,   0
ttyinq:   

              160,      0,     120,      96,     480,   0,   0
ttyoutq:                256,      0,      64,      

56,     256,   0,   0
g_bio:                  248,      0,       4,    5036,1462447840,   0,   0
ata_request:         

   328,      0,       0,       0,       0,   0,   0
ata_composite:          336,      0,       0,       0,       0,  

 0,   0
vtnet_tx_hdr:            24,      0,       0,       0,       0,   0,   0
FPU_save_area:          832,      0, 

      0,       0,       0,   0,   0
VNODE:                  504,      0,   92049,      87,  778980,   0,   0
VNODEPOLL:              112,      0,       0,       0,       0,   0,   0
S VFS Cache:            108,      0,   

92079,    5700,  796505,   0,   0
STS VFS Cache:          148,      0,       0,       0,       0,   0,   0
L VFS 

Cache:            328,      0,     251,    1705,   10186,   0,   0
LTS VFS Cache:          368,      0,       0,     

  0,       0,   0,   0
NAMEI:                 1024,      0,       0,      96, 1400965,   0,   0
NCLNODE:              

  568,      0,       0,       0,       0,   0,   0
DIRHASH:               1024,      0,     698,      38,     698,   

0,   0
pipe:                   728,      0,       1,      89,    2907,   0,   0
Mountpoints:            824,      0,  

     2,       6,       2,   0,   0
ksiginfo:               112,      0,     122,     934,    5234,   0,   0
itimer:   

              344,      0,       0,       0,       0,   0,   0
KNOTE:                  128,      0,       0,     

145,     122,   0,   0
socket:                 680,  25602,      13,      35,    1736,   0,   0
ipq:                  

   56,    819,       0,       0,       0,   0,   0
udp_inpcb:              392,  25600,       2,      48,     262,   

0,   0
udpcb:                   16,  25704,       2,     670,     262,   0,   0
tcp_inpcb:              392,  25600,  

     3,      47,      37,   0,   0
tcpcb:                  976,  25600,       3,      25,      37,   0,   0
tcptw:    

               72,   5150,       0,     200,       4,   0,   0
syncache:               152,  15375,       0,     

100,       4,   0,   0
hostcache:              136,  15372,       0,      84,       2,   0,   0
tcpreass:             

   40,   1680,       0,       0,       0,   0,   0
sackhole:                32,      0,       0,       0,       0,   

0,   0
sctp_ep:               1384,  25600,       0,       0,       0,   0,   0
sctp_asoc:             2288,  40000,  

     0,       0,       0,   0,   0
sctp_laddr:              48,  80064,       0,     288,       3,   0,   0
sctp_raddr:             704,  80000,       0,       0,       0,   0,   0
sctp_chunk:             136, 400008,       

0,       0,       0,   0,   0
sctp_readq:             104, 400032,       0,       0,       0,   0,   0
sctp_stream_msg_out:    104, 400032,       0,       0,       0,   0,   0
sctp_asconf:             40, 400008,       

0,       0,       0,   0,   0
sctp_asconf_ack:         48, 400032,       0,       0,       0,   0,   0
ripcb:         

         392,  25600,       1,      29,       3,   0,   0
unpcb:                  240,  25600,       6,      74,    

1341,   0,   0
rtentry:                200,      0,      13,      82,      14,   0,   0
selfd:                   56,  

    0,      47,     331,   53263,   0,   0
SWAPMETA:               288, 1003964,       0,       0,       0,   0,   

0
FFS inode:              168,      0,   92014,     122,  778897,   0,   0
FFS1 dinode:            128,      0,       

0,       0,       0,   0,   0
FFS2 dinode:            256,      0,   92014,     146,  778897,   0,   0


------------------------------------------------------------------------
vmstat -i

interrupt                          

total       rate
irq16: ehci0 mvs0              236973568    4936949
irq23: ehci1                      409961       

8540
cpu0:timer                      78153597    1628199
irq264: igb0:que 0                705900      14706
irq265: 

igb0:que 1                334817       6975
irq266: igb0:que 2                318850       6642
irq267: igb0:que 3    

            383887       7997
irq268: igb0:link                      2          0
irq274: ahci0                  

248723541    5181740
cpu2:timer                      75824308    1579673
cpu1:timer                      83592416    

1741508
cpu3:timer                      75485377    1572612
Total                          800906224   16685546

------------------------------------------------------------------------
pstat -T

 61/12328 files
0M/4095M swap space

------------------------------------------------------------------------
pstat -s

Device          512-blocks     Used 

   Avail Capacity
/dev/ada8p3        8388352        0  8388352     0%

------------------------------------------------------------------------
iostat

iostat: kvm_read(_tk_nin): invalid 

address (0x0)
iostat: disabling TTY statistics
            ada0             ada1             ada2             cpu
  

KB/t tps  MB/s   KB/t tps  MB/s   KB/t tps  MB/s  us ni sy in id
 128.00 1256961 157119.90  128.00 1256961 157119.90 

 128.00 1256961 157119.90   0  0  1  1 98

------------------------------------------------------------------------
ipcs -a

Message Queues:
T           ID          KEY MODE        OWNER    GROUP    CREATOR  CGROUP                 

CBYTES                 QNUM               QBYTES        LSPID        LRPID STIME    RTIME    CTIME   

Shared 

Memory:
T           ID          KEY MODE        OWNER    GROUP    CREATOR  CGROUP         NATTCH        SEGSZ        

 CPID         LPID ATIME    DTIME    CTIME   

Semaphores:
T           ID          KEY MODE        OWNER    GROUP    

CREATOR  CGROUP          NSEMS OTIME    CTIME   


------------------------------------------------------------------------
ipcs -T

msginfo:
	msgmax:        16384	

(max characters in a message)
	msgmni:           40	(# of message queues)
	msgmnb:         2048	(max 

characters in a message queue)
	msgtql:           40	(max # of messages in system)
	msgssz:            8	

(size of a message segment)
	msgseg:         2048	(# of message segments in system)

shminfo:
	shmmax:    

536870912	(max shared memory segment size)
	shmmin:            1	(min shared memory segment size)
	

shmmni:          192	(max number of shared memory identifiers)
	shmseg:          128	(max shared memory 

segments per process)
	shmall:       131072	(max amount of shared memory in pages)

seminfo:
	semmni:           

50	(# of semaphore identifiers)
	semmns:          340	(# of semaphores in system)
	semmnu:          

150	(# of undo structures in system)
	semmsl:          340	(max # of semaphores per id)
	semopm:     

     100	(max # of operations per semop call)
	semume:           50	(max # of undo entries per process)
	

semusz:          632	(size in bytes of undo structure)
	semvmx:        32767	(semaphore maximum value)
	

semaem:        16384	(adjust on exit max value)


------------------------------------------------------------------------
nfsstat

Client Info:
Rpc Counts:
  Getattr   

Setattr    Lookup  Readlink      Read     Write    Create    Remove
        0         0         0         0         

0         0         0         0
   Rename      Link   Symlink     Mkdir     Rmdir   Readdir  RdirPlus    Access
      

  0         0         0         0         0         0         0         0
    Mknod    Fsstat    Fsinfo  PathConf    

Commit
        0         0         0         0         0
Rpc Info:
 TimedOut   Invalid X Replies   Retries  Requests
   

     0         0         0         0         0
Cache Info:
Attr Hits    Misses Lkup Hits    Misses BioR Hits    

Misses BioW Hits    Misses
        0         0         0         0         0         0         0         0
BioRLHits  

  Misses BioD Hits    Misses DirE Hits    Misses Accs Hits    Misses
        0         0         0         0         

0         0         0         0

Server Info:
  Getattr   Setattr    Lookup  Readlink      Read     Write    Create    

Remove
        0         0         0         0         0         0         0         0
   Rename      Link   Symlink  

   Mkdir     Rmdir   Readdir  RdirPlus    Access
        0         0         0         0         0         0         

0         0
    Mknod    Fsstat    Fsinfo  PathConf    Commit
        0         0         0         0         0
Server 

Ret-Failed
                0
Server Faults
            0
Server Cache Stats:
   Inprog      Idem  Non-idem    Misses
     

   0         0         0         0
Server Write Gathering:
 WriteOps  WriteRPC   Opsaved
        0         0         0

------------------------------------------------------------------------
netstat -s

tcp:
	84 packets sent
		48 

data packets (8468 bytes)
		0 data packets (0 bytes) retransmitted
		0 data packets 

unnecessarily retransmitted
		0 resends initiated by MTU discovery
		20 ack-only packets (4 

delayed)
		0 URG only packets
		0 window probe packets
		0 window update packets
		

16 control packets
	88 packets received
		62 acks (for 8480 bytes)
		6 duplicate acks
	

	0 acks for unsent data
		56 packets (8468 bytes) received in-sequence
		0 completely 

duplicate packets (0 bytes)
		0 old duplicate packets
		0 packets with some dup. data (0 bytes 

duped)
		0 out-of-order packets (0 bytes)
		0 packets (0 bytes) of data after window
		

0 window probes
		0 window update packets
		0 packets received after close
		0 discarded for bad 

checksums
		0 discarded for bad header offset fields
		0 discarded because packet too 

short
		0 discarded due to memory problems
	8 connection requests
	4 connection accepts
	0 bad 

connection attempts
	0 listen queue overflows
	0 ignored RSTs in the windows
	8 connections established 

(including accepts)
	34 connections closed (including 0 drops)
		8 connections updated cached RTT on 

close
		8 connections updated cached RTT variance on close
		0 connections updated cached 

ssthresh on close
	4 embryonic connections dropped
	62 segments updated rtt (of 62 attempts)
	0 

retransmit timeouts
		0 connections dropped by rexmit timeout
	0 persist timeouts
		0 

connections dropped by persist timeout
	0 Connections (fin_wait_2) dropped because of timeout
	0 keepalive 

timeouts
		0 keepalive probes sent
		0 connections dropped by keepalive
	4 correct ACK 

header predictions
	4 correct data packet header predictions
	4 syncache entries added
		0 

retransmitted
		0 dupsyn
		0 dropped
		4 completed
		0 bucket overflow
	

	0 cache overflow
		0 reset
		0 stale
		0 aborted
		0 badack
		

0 unreach
		0 zone failures
	4 cookies sent
	0 cookies received
	2 hostcache entries added
		

0 bucket overflow
	0 SACK recovery episodes
	0 segment rexmits in SACK recovery episodes
	0 byte 

rexmits in SACK recovery episodes
	0 SACK options (SACK blocks) received
	0 SACK options (SACK blocks) sent
	

0 SACK scoreboard overflow
	0 packets with ECN CE bit set
	0 packets with ECN ECT(0) bit set
	0 packets 

with ECN ECT(1) bit set
	0 successful ECN handshakes
	0 times ECN reduced the congestion window
udp:
	792296 

datagrams received
	0 with incomplete header
	0 with bad data length field
	0 with bad checksum
	0 

with no checksum
	142 dropped due to no socket
	791896 broadcast/multicast datagrams undelivered
	0 

dropped due to full socket buffers
	0 not for hashed pcb
	258 delivered
	65 datagrams output
	0 times 

multicast source filter matched
ip:
	793130 total packets received
	0 bad header checksums
	0 with size smaller 

than minimum
	0 with data size < data length
	0 with ip length > max ip packet size
	0 with header length < data 

size
	0 with data length < header length
	0 with bad options
	0 with incorrect version number
	0 fragments 

received
	0 fragments dropped (dup or out of space)
	0 fragments dropped after timeout
	0 packets 

reassembled ok
	792383 packets for this host
	4 packets for unknown/unsupported protocol
	0 packets forwarded 

(0 packets fast forwarded)
	879 packets not forwardable
	0 packets received for unknown multicast group
	0 

redirects sent
	295 packets sent from this host
	82 packets sent with fabricated ip header
	0 output packets 

dropped due to no bufs, etc.
	0 output packets discarded due to no route
	0 output datagrams fragmented
	0 

fragments created
	0 datagrams that can't be fragmented
	0 tunneling packets that can't find gif
	0 datagrams 

with bad address in header
icmp:
	142 calls to icmp_error
	0 errors not generated in response to an icmp message
	

Output histogram:
		destination unreachable: 142
	0 messages with bad code fields
	0 messages less 

than the minimum length
	0 messages with bad checksum
	0 messages with bad length
	0 multicast echo requests 

ignored
	0 multicast timestamp requests ignored
	Input histogram:
		destination unreachable: 4
	0 

message responses generated
	0 invalid return addresses
	0 no return routes
igmp:
	0 messages received
	0 

messages received with too few bytes
	0 messages received with wrong TTL
	0 messages received with bad 

checksum
	0 V1/V2 membership queries received
	0 V3 membership queries received
	0 membership 

queries received with invalid field(s)
	0 general queries received
	0 group queries received
	0 group-

source queries received
	0 group-source queries dropped
	0 membership reports received
	0 membership reports 

received with invalid field(s)
	0 membership reports received for groups to which we belong
	0 V3 reports 

received without Router Alert
	0 membership reports sent
arp:
	28 ARP requests sent
	227 ARP replies sent
	

351150 ARP requests received
	235 ARP replies received
	351385 ARP packets received
	0 total packets 

dropped due to no ARP entry
	51 ARP entrys timed out
	0 Duplicate IPs seen
ip6:
	0 total packets received
	

0 with size smaller than minimum
	0 with data size < data length
	0 with bad options
	0 with incorrect 

version number
	0 fragments received
	0 fragments dropped (dup or out of space)
	0 fragments dropped after 

timeout
	0 fragments that exceeded limit
	0 packets reassembled ok
	0 packets for this host
	0 packets forwarded
	

0 packets not forwardable
	0 redirects sent
	0 packets sent from this host
	0 packets sent with 

fabricated ip header
	0 output packets dropped due to no bufs, etc.
	0 output packets discarded due to no route
	

0 output datagrams fragmented
	0 fragments created
	0 datagrams that can't be fragmented
	0 packets that 

violated scope rules
	0 multicast packets which we don't join
	Mbuf statistics:
		0 one mbuf
		

1418 one ext mbuf
		0 two or more ext mbuf
	0 packets whose headers are not contiguous
	0 tunneling 

packets that can't find gif
	0 packets discarded because of too many headers
	0 failures of source address 

selection
	Source addresses selection rule applied:
icmp6:
	0 calls to icmp6_error
	0 errors not generated in 

response to an icmp6 message
	0 errors not generated because of rate limitation
	0 messages with bad code 

fields
	0 messages < minimum length
	0 bad checksums
	0 messages with bad length
	Histogram of error messages 

to be generated:
		0 no route
		0 administratively prohibited
		0 beyond scope
		

0 address unreachable
		0 port unreachable
		0 packet too big
		0 time exceed 

transit
		0 time exceed reassembly
		0 erroneous header field
		0 unrecognized next 

header
		0 unrecognized option
		0 redirect
		0 unknown
	0 message responses 

generated
	0 messages with too many ND options
	0 messages with bad ND options
	0 bad neighbor solicitation 

messages
	0 bad neighbor advertisement messages
	0 bad router solicitation messages
	0 bad router 

advertisement messages
	0 bad redirect messages
	0 path MTU changes
rip6:
	0 messages received
	0 checksum 

calculations on inbound
	0 messages with bad checksum
	0 messages dropped due to no socket
	0 multicast 

messages dropped due to no socket
	0 messages dropped due to full socket buffers
	0 delivered
	0 datagrams 

output

------------------------------------------------------------------------
netstat -m

4093/1159/5252 mbufs in use 

(current/cache/total)
4090/524/4614/25600 mbuf clusters in use (current/cache/total/max)
4092/518 mbuf+clusters out 

of packet secondary zone in use (current/cache)
0/5/5/12800 4k (page size) jumbo clusters in use 

(current/cache/total/max)
0/0/0/19200 9k jumbo clusters in use (current/cache/total/max)
0/0/0/12800 16k jumbo 

clusters in use (current/cache/total/max)
9203K/1357K/10561K bytes allocated to network (current/cache/total)
0/0/0 

requests for mbufs denied (mbufs/clusters/mbuf+clusters)
0/0/0 requests for mbufs delayed (mbufs/clusters/mbuf

+clusters)
0/0/0 requests for jumbo clusters delayed (4k/9k/16k)
0/0/0 requests for jumbo clusters denied 

(4k/9k/16k)
0 requests for sfbufs denied
0 requests for sfbufs delayed
0 requests for I/O initiated by sendfile
0 calls 

to protocol drain routines

------------------------------------------------------------------------
netstat -id

Name   

 Mtu Network       Address              Ipkts Ierrs Idrop    Opkts Oerrs  Coll Drop
usbus     0 <Link#1>             

                  0     0     0        0     0     0    0 
igb0   1500 <Link#2>      00:25:90:d2:92:70  1150393     

0     0      537     0     0    0 
igb0   1500 10.41.128.0   10.41.128.233       491189     -     -      281     -   

  -    - 
igb1*  1500 <Link#3>      00:25:90:d2:92:71        0     0     0        0     0     0    0 
usbus     0 

<Link#4>                               0     0     0        0     0     0    0 
lo0   16384 <Link#5>                 

             96     0     0       96     0     0    0 
lo0   16384 localhost     ::1                      0     -    

 -        0     -     -    - 
lo0   16384 fe80::1%lo0   fe80::1                  0     -     -        0     -     -  

  - 
lo0   16384 your-net      localhost               96     -     -       96     -     -    - 

------------------------------------------------------------------------
netstat -anr

Routing tables

Internet:
Destination        Gateway            Flags    Refs      Use  Netif Expire
default            10.41.128.2        UGS 

        0       61   igb0
10.41.128.0/24     link#2             U           0      220   igb0
10.41.128.233      

link#2             UHS         0        0    lo0
127.0.0.1          link#5             UH          0       96    lo0

Internet6:
Destination                       Gateway                       Flags      Netif Expire
::/96              

               ::1                           UGRS        lo0
::1                               link#5                

        UH          lo0
::ffff:0.0.0.0/96                 ::1                           UGRS        lo0
fe80::/10     

                    ::1                           UGRS        lo0
fe80::%lo0/64                     link#5           

             U           lo0
fe80::1%lo0                       link#5                        UHS         lo0
ff01::

%lo0/32                     ::1                           U           lo0
ff02::/16                         ::1      

                     UGRS        lo0
ff02::%lo0/32                     ::1                           U           lo0

------------------------------------------------------------------------
netstat -anA

Active Internet connections 

(including servers)
Tcpcb            Proto Recv-Q Send-Q Local Address      Foreign Address    (state)
fffffe00739723d0 tcp4       0      0 127.0.0.1.25       *.*                LISTEN
fffffe00739a8000 tcp4       0      

0 *.22               *.*                LISTEN
fffffe00739a83d0 tcp6       0      0 *.22               *.*           

     LISTEN
fffffe0006ce4000 udp4       0      0 *.514              *.*                
fffffe0006ce3dc8 udp6       0 

     0 *.514              *.*                
Active UNIX domain sockets
Address  Type   Recv-Q Send-Q    Inode     

Conn     Refs  Nextref Addr
fffffe0073766e10 stream      0      0 fffffe0006c72000        0        0        0 

/var/run/devd.pipe
fffffe0073766960 dgram       0      0        0 fffffe007376a690        0 fffffe0073767870
fffffe0073767780 dgram       0      0        0 fffffe007376a780        0        0
fffffe0073767870 dgram       0     

 0        0 fffffe007376a690        0        0
fffffe007376a690 dgram       0      0 fffffe00739197e0        0 

fffffe0073766960        0 /var/run/logpriv
fffffe007376a780 dgram       0      0 fffffe00739199d8        0 

fffffe0073767780        0 /var/run/log

------------------------------------------------------------------------
netstat -aL

Current listen queue sizes (qlen/incqlen/maxqlen)
Proto Listen         Local Address         
tcp4  0/0/10 

        localhost.smtp         
tcp4  0/0/128        *.ssh                  
tcp6  0/0/128        *.ssh               

   
unix  0/0/4          /var/run/devd.pipe

------------------------------------------------------------------------
fstat

USER     CMD          PID   FD MOUNT      INUM MODE         SZ|DV R/W
root     dd          5198 root /          

   2 drwxr-xr-x    1024  r
root     dd          5198   wd /        10914816 drwxr-xr-x     512  r
root     dd         

 5198 text /        14125081 -r-xr-xr-x   22664  r
root     dd          5198 ctty /dev         66 crw-------   ttyv0 

rw
root     dd          5198    0 /dev         66 crw-------   ttyv0 rw
root     dd          5198    1 /dev         

66 crw-------   ttyv0 rw
root     dd          5198    2 /dev         66 crw-------   ttyv0 rw
root     dd          

5198    3 /dev         31 crw-rw-rw-    zero  r
root     dd          5198    4 /dev        132 crw-r-----    ada6 

rw
root     dd          5195 root /             2 drwxr-xr-x    1024  r
root     dd          5195   wd /        

10914816 drwxr-xr-x     512  r
root     dd          5195 text /        14125081 -r-xr-xr-x   22664  r
root     dd     

     5195 ctty /dev         66 crw-------   ttyv0 rw
root     dd          5195    0 /dev         66 crw-------   

ttyv0 rw
root     dd          5195    1 /dev         66 crw-------   ttyv0 rw
root     dd          5195    2 /dev     

    66 crw-------   ttyv0 rw
root     dd          5195    3 /dev         31 crw-rw-rw-    zero  r
root     dd         

 5195    4 /dev        118 crw-r-----    ada3 rw
root     csh         1117 root /             2 drwxr-xr-x    1024  

r
root     csh         1117   wd /        10914816 drwxr-xr-x     512  r
root     csh         1117 text /        

14125066 -r-xr-xr-x  382448  r
root     csh         1117 ctty /dev         66 crw-------   ttyv0 rw
root     csh      

   1117   15 /dev         66 crw-------   ttyv0 rw
root     csh         1117   16 /dev         66 crw-------   ttyv0 

rw
root     csh         1117   17 /dev         66 crw-------   ttyv0 rw
root     csh         1117   18 /dev         

66 crw-------   ttyv0 rw
root     csh         1117   19 /dev         66 crw-------   ttyv0 rw
root     getty       

1116 root /             2 drwxr-xr-x    1024  r
root     getty       1116   wd /             2 drwxr-xr-x    1024  

r
root     getty       1116 text /        5296913 -r-xr-xr-x   28216  r
root     getty       1116 ctty /dev         

73 crw-------   ttyv7 rw
root     getty       1116    0 /dev         73 crw-------   ttyv7 rw
root     getty       

1116    1 /dev         73 crw-------   ttyv7 rw
root     getty       1116    2 /dev         73 crw-------   ttyv7 

rw
root     getty       1115 root /             2 drwxr-xr-x    1024  r
root     getty       1115   wd /             

2 drwxr-xr-x    1024  r
root     getty       1115 text /        5296913 -r-xr-xr-x   28216  r
root     getty       

1115 ctty /dev         72 crw-------   ttyv6 rw
root     getty       1115    0 /dev         72 crw-------   ttyv6 

rw
root     getty       1115    1 /dev         72 crw-------   ttyv6 rw
root     getty       1115    2 /dev         

72 crw-------   ttyv6 rw
root     getty       1114 root /             2 drwxr-xr-x    1024  r
root     getty       

1114   wd /             2 drwxr-xr-x    1024  r
root     getty       1114 text /        5296913 -r-xr-xr-x   28216  

r
root     getty       1114 ctty /dev         71 crw-------   ttyv5 rw
root     getty       1114    0 /dev         71 

crw-------   ttyv5 rw
root     getty       1114    1 /dev         71 crw-------   ttyv5 rw
root     getty       1114  

  2 /dev         71 crw-------   ttyv5 rw
root     getty       1113 root /             2 drwxr-xr-x    1024  r
root   

  getty       1113   wd /             2 drwxr-xr-x    1024  r
root     getty       1113 text /        5296913 -r-

xr-xr-x   28216  r
root     getty       1113 ctty /dev         70 crw-------   ttyv4 rw
root     getty       1113    

0 /dev         70 crw-------   ttyv4 rw
root     getty       1113    1 /dev         70 crw-------   ttyv4 rw
root     

getty       1113    2 /dev         70 crw-------   ttyv4 rw
root     getty       1112 root /             2 drwxr-

xr-x    1024  r
root     getty       1112   wd /             2 drwxr-xr-x    1024  r
root     getty       1112 text / 

       5296913 -r-xr-xr-x   28216  r
root     getty       1112 ctty /dev         69 crw-------   ttyv3 rw
root     

getty       1112    0 /dev         69 crw-------   ttyv3 rw
root     getty       1112    1 /dev         69 

crw-------   ttyv3 rw
root     getty       1112    2 /dev         69 crw-------   ttyv3 rw
root     getty       1111 

root /             2 drwxr-xr-x    1024  r
root     getty       1111   wd /             2 drwxr-xr-x    1024  r
root  

   getty       1111 text /        5296913 -r-xr-xr-x   28216  r
root     getty       1111 ctty /dev         68 

crw-------   ttyv2 rw
root     getty       1111    0 /dev         68 crw-------   ttyv2 rw
root     getty       1111  

  1 /dev         68 crw-------   ttyv2 rw
root     getty       1111    2 /dev         68 crw-------   ttyv2 rw
root   

  getty       1110 root /             2 drwxr-xr-x    1024  r
root     getty       1110   wd /             2 drwxr-

xr-x    1024  r
root     getty       1110 text /        5296913 -r-xr-xr-x   28216  r
root     getty       1110 ctty 

/dev         67 crw-------   ttyv1 rw
root     getty       1110    0 /dev         67 crw-------   ttyv1 rw
root     

getty       1110    1 /dev         67 crw-------   ttyv1 rw
root     getty       1110    2 /dev         67 

crw-------   ttyv1 rw
root     login       1109 root /             2 drwxr-xr-x    1024  r
root     login       1109  

 wd /        10914816 drwxr-xr-x     512  r
root     login       1109 text /        5304400 -r-sr-xr-x   25320  r
root     login       1109 ctty /dev         66 crw-------   ttyv0 rw
root     login       1109    0 /dev         66 

crw-------   ttyv0 rw
root     login       1109    1 /dev         66 crw-------   ttyv0 rw
root     login       1109  

  2 /dev         66 crw-------   ttyv0 rw
root     login       1109    3* local dgram fffffe0073766960 <-> 

fffffe007376a690
root     cron        1077 root /             2 drwxr-xr-x    1024  r
root     cron        1077   wd 

/        5056142 drwxr-x---     512  r
root     cron        1077 text /        5304528 -r-xr-xr-x   41512  r
root     

cron        1077    0 /dev         30 crw-rw-rw-    null rw
root     cron        1077    1 /dev         30 crw-rw-

rw-    null rw
root     cron        1077    2 /dev         30 crw-rw-rw-    null rw
root     cron        1077    3 /  

      5056241 -rw-------       4  w
smmsp    sendmail    1073 root /             2 drwxr-xr-x    1024  r
smmsp    

sendmail    1073   wd /        5056189 drwxrwx---     512  r
smmsp    sendmail    1073 text /        5297114 -r-xr-

sr-x  719584  r
smmsp    sendmail    1073    0 /dev         30 crw-rw-rw-    null  r
smmsp    sendmail    1073    1 

/dev         30 crw-rw-rw-    null  w
smmsp    sendmail    1073    2 /dev         30 crw-rw-rw-    null  w
smmsp    

sendmail    1073    3* local dgram fffffe0073767780 <-> fffffe007376a780
smmsp    sendmail    1073    4 /        

5056240 -rw-------      50  w
root     sendmail    1070 root /             2 drwxr-xr-x    1024  r
root     sendmail  

  1070   wd /        5056192 drwxr-xr-x     512  r
root     sendmail    1070 text /        5297114 -r-xr-sr-x  

719584  r
root     sendmail    1070    0 /dev         30 crw-rw-rw-    null  r
root     sendmail    1070    1 /dev    

     30 crw-rw-rw-    null  w
root     sendmail    1070    2 /dev         30 crw-rw-rw-    null  w
root     sendmail  

  1070    3* internet stream tcp fffffe00739723d0
root     sendmail    1070    4* local dgram fffffe0073767870 <-> 

fffffe007376a690
root     sendmail    1070    5 /        5056239 -rw-------      79  w
root     sshd        1067 root 

/             2 drwxr-xr-x    1024  r
root     sshd        1067   wd /             2 drwxr-xr-x    1024  r
root     

sshd        1067 text /        5304580 -r-xr-xr-x  286184  r
root     sshd        1067    0 /dev         30 crw-rw-

rw-    null rw
root     sshd        1067    1 /dev         30 crw-rw-rw-    null rw
root     sshd        1067    2 

/dev         30 crw-rw-rw-    null rw
root     sshd        1067    3* internet6 stream tcp fffffe00739a83d0
root     

sshd        1067    4* internet stream tcp fffffe00739a8000
root     syslogd      966 root /             2 drwxr-

xr-x    1024  r
root     syslogd      966   wd /             2 drwxr-xr-x    1024  r
root     syslogd      966 text / 

       5304736 -r-xr-xr-x   40968  r
root     syslogd      966    0 /dev         30 crw-rw-rw-    null rw
root     

syslogd      966    1 /dev         30 crw-rw-rw-    null rw
root     syslogd      966    2 /dev         30 crw-rw-

rw-    null rw
root     syslogd      966    3 /        5056234 -rw-------       3  w
root     syslogd      966    4* 

local dgram fffffe007376a780
root     syslogd      966    5* local dgram fffffe007376a690
root     syslogd      966   

 6* internet6 dgram udp fffffe0006ce3dc8
root     syslogd      966    7* internet dgram udp fffffe0006ce4000
root     

syslogd      966    8 /dev         27 crw-------    klog  r
root     syslogd      966   10 /dev          6 

crw-------  console  w
root     syslogd      966   11 /        5056216 -rw-r--r--   39256  w
root     syslogd      

966   12 /        5056218 -rw-------      64  w
root     syslogd      966   13 /        5056207 -rw-------     541  

w
root     syslogd      966   14 /        5056201 -rw-r-----    1954  w
root     syslogd      966   15 /        

5056214 -rw-r--r--      64  w
root     syslogd      966   16 /        5056219 -rw-------      64  w
root     syslogd  

    966   17 /        5056212 -rw-------   67077  w
root     syslogd      966   18 /        5056213 -rw-------      

64  w
root     syslogd      966   19 /        5056217 -rw-r-----      64  w
_dhcp    dhclient     939 root /        

5056137 dr-xr-xr-x     512  r
_dhcp    dhclient     939   wd /        5056137 dr-xr-xr-x     512  r
_dhcp    dhclient 

    939 jail /        5056137 dr-xr-xr-x     512  r
_dhcp    dhclient     939 text /        15248684 -r-xr-xr-x   

96624  r
_dhcp    dhclient     939    0 /dev         30 crw-rw-rw-    null rw
_dhcp    dhclient     939    1 /dev     

    30 crw-rw-rw-    null rw
_dhcp    dhclient     939    2 /dev         30 crw-rw-rw-    null rw
_dhcp    dhclient   

  939    3 /        5056229 -rw-------       3  w
_dhcp    dhclient     939    5* route raw 0 fffffe0006d227f8
_dhcp  

  dhclient     939    6* pipe fffffe0006c9d708 <-> fffffe0006c9d5b0      0 rw
_dhcp    dhclient     939    7 /       

 5056206 ----------    7296  w
_dhcp    dhclient     939    8 /dev          8 crw-------     bpf rw
_dhcp    dhclient 

    939    9* internet raw ip fffffe007392c000
root     dhclient     901 root /             2 drwxr-xr-x    1024  r
root     dhclient     901   wd /             2 drwxr-xr-x    1024  r
root     dhclient     901 text /        

15248684 -r-xr-xr-x   96624  r
root     dhclient     901    0 /dev         30 crw-rw-rw-    null rw
root     dhclient 

    901    1 /dev         30 crw-rw-rw-    null rw
root     dhclient     901    2 /dev         30 crw-rw-rw-    null 

rw
root     dhclient     901    3 /        5056229 -rw-------       3  w
root     dhclient     901    5* pipe 

fffffe0006c9d5b0 <-> fffffe0006c9d708      0 rw
root     devd         783 root /             2 drwxr-xr-x    1024  

r
root     devd         783   wd /             2 drwxr-xr-x    1024  r
root     devd         783 text /        

15248657 -r-xr-xr-x  466520  r
root     devd         783    0 /dev         30 crw-rw-rw-    null rw
root     devd     

    783    1 /dev         30 crw-rw-rw-    null rw
root     devd         783    2 /dev         30 crw-rw-rw-    null 

rw
root     devd         783    3 /dev          4 crw-------  devctl  r
root     devd         783    4* local stream 

fffffe0073766e10
root     devd         783    5 /        5056228 -rw-------       3  w
root     moused       766 root 

/             2 drwxr-xr-x    1024  r
root     moused       766   wd /             2 drwxr-xr-x    1024  r
root     

moused       766 text /        5304615 -r-xr-xr-x   40456  r
root     moused       766    0 /dev         30 crw-rw-

rw-    null rw
root     moused       766    1 /dev         30 crw-rw-rw-    null rw
root     moused       766    2 

/dev         30 crw-rw-rw-    null rw
root     moused       766    3 /dev        140 crw-r--r--    ums0 rw
root     

moused       766    4 /dev         82 crw-------  consolectl rw
root     moused       766    5 /        5056227 -

rw-------       3  w
root     adjkerntz    105 root /             2 drwxr-xr-x    1024  r
root     adjkerntz    105   

wd /             2 drwxr-xr-x    1024  r
root     adjkerntz    105 text /        15248691 -r-xr-xr-x    9432  r
root  

   adjkerntz    105    0 /dev         30 crw-rw-rw-    null rw
root     adjkerntz    105    1 /dev         30 crw-

rw-rw-    null rw
root     adjkerntz    105    2 /dev         30 crw-rw-rw-    null rw
root     init           1 root 

/             2 drwxr-xr-x    1024  r
root     init           1   wd /             2 drwxr-xr-x    1024  r
root     

init           1 text /        15248716 -r-xr-xr-x  800904  r
root     kernel         0 root /             2 drwxr-

xr-x    1024  r
root     kernel         0   wd /             2 drwxr-xr-x    1024  r

------------------------------------------------------------------------
dmesg

Copyright (c) 1992-2013 The FreeBSD 

Project.
Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994
	The Regents of the 

University of California. All rights reserved.
FreeBSD is a registered trademark of The FreeBSD Foundation.
FreeBSD 

9.2-RELEASE #0 r255898: Thu Sep 26 22:50:31 UTC 2013
    root@bake.isc.freebsd.org:/usr/obj/usr/src/sys/GENERIC 

amd64
gcc version 4.2.1 20070831 patched [FreeBSD]
CPU: Intel(R) Xeon(R) CPU E3-1220 v3 @ 3.10GHz (3092.91-MHz K8-

class CPU)
  Origin = "GenuineIntel"  Id = 0x306c3  Family = 0x6  Model = 0x3c  Stepping = 3
  

Features=0xbfebfbff<FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CLFLUSH,DTS,ACPI,MMX,FX

SR,SSE,SSE2,SS,HTT,TM,PBE>
  

Features2=0x7ffafbff<SSE3,PCLMULQDQ,DTES64,MON,DS_CPL,VMX,SMX,EST,TM2,SSSE3,<b11>,FMA,CX16,xTPR,PDCM,PCID,SSE4.1,SS

E4.2,x2APIC,MOVBE,POPCNT,TSCDLT,AESNI,XSAVE,OSXSAVE,AVX,F16C,RDRAND>
  AMD 

Features=0x2c100800<SYSCALL,NX,Page1GB,RDTSCP,LM>
  AMD Features2=0x21<LAHF,ABM>
  Standard Extended 

Features=0x2fbb<GSFSBASE,TSCADJ,SMEP,ENHMOVSB,INVPCID>
  TSC: P-state invariant, performance statistics
real memory  

= 8606711808 (8208 MB)
avail memory = 8168800256 (7790 MB)
Event timer "LAPIC" quality 600
ACPI APIC Table: <ALASKA A 

M I>
FreeBSD/SMP: Multiprocessor System Detected: 4 CPUs
FreeBSD/SMP: 1 package(s) x 4 core(s)
 cpu0 (BSP): APIC ID:  

0
 cpu1 (AP): APIC ID:  2
 cpu2 (AP): APIC ID:  4
 cpu3 (AP): APIC ID:  6
ACPI Warning: FADT (revision 5) is longer 

than ACPI 2.0 version, truncating length 268 to 244 (20110527/tbfadt-320)
ioapic0 <Version 2.0> irqs 0-23 on 

motherboard
kbd1 at kbdmux0
module_register_init: MOD_LOAD (vesa, 0xffffffff80d11010, 0) error 19
acpi0: <ALASKA A M 

I> on motherboard
acpi0: Power Button (fixed)
acpi0: reservation of 67, 1 (4) failed
cpu0: <ACPI CPU> on acpi0
cpu1: 

<ACPI CPU> on acpi0
cpu2: <ACPI CPU> on acpi0
cpu3: <ACPI CPU> on acpi0
hpet0: <High Precision Event Timer> iomem 

0xfed00000-0xfed003ff on acpi0
Timecounter "HPET" frequency 14318180 Hz quality 950
Event timer "HPET" frequency 

14318180 Hz quality 550
Event timer "HPET1" frequency 14318180 Hz quality 440
Event timer "HPET2" frequency 14318180 

Hz quality 440
Event timer "HPET3" frequency 14318180 Hz quality 440
Event timer "HPET4" frequency 14318180 Hz 

quality 440
atrtc0: <AT realtime clock> port 0x70-0x77 irq 8 on acpi0
atrtc0: Warning: Couldn't map I/O.
Event timer 

"RTC" frequency 32768 Hz quality 0
attimer0: <AT timer> port 0x40-0x43,0x50-0x53 irq 0 on acpi0
Timecounter "i8254" 

frequency 1193182 Hz quality 0
Event timer "i8254" frequency 1193182 Hz quality 100
Timecounter "ACPI-fast" frequency 

3579545 Hz quality 900
acpi_timer0: <24-bit timer at 3.579545MHz> port 0x1808-0x180b on acpi0
pcib0: <ACPI Host-PCI 

bridge> port 0xcf8-0xcff on acpi0
pci0: <ACPI PCI bus> on pcib0
pci0: <simple comms> at device 22.0 (no driver 

attached)
pci0: <simple comms> at device 22.1 (no driver attached)
ehci0: <EHCI (generic) USB 2.0 controller> mem 

0xf7604000-0xf76043ff irq 16 at device 26.0 on pci0
usbus0: EHCI version 1.0
usbus0 on ehci0
pcib1: <ACPI PCI-PCI 

bridge> irq 16 at device 28.0 on pci0
pci1: <ACPI PCI bus> on pcib1
pcib2: <ACPI PCI-PCI bridge> at device 0.0 on 

pci1
pci2: <ACPI PCI bus> on pcib2
vgapci0: <VGA-compatible display> port 0xe000-0xe07f mem 0xf6000000-

0xf6ffffff,0xf7000000-0xf701ffff irq 16 at device 0.0 on pci2
pcib3: <ACPI PCI-PCI bridge> irq 18 at device 28.2 on 

pci0
pci3: <ACPI PCI bus> on pcib3
igb0: <Intel(R) PRO/1000 Network Connection version - 2.3.10> port 0xd000-0xd01f 

mem 0xf7500000-0xf757ffff,0xf7580000-0xf7583fff irq 18 at device 0.0 on pci3
igb0: Using MSIX interrupts with 5 

vectors
igb0: Ethernet address: 00:25:90:d2:92:70
igb0: Bound queue 0 to cpu 0
igb0: Bound queue 1 to cpu 1
igb0: Bound 

queue 2 to cpu 2
igb0: Bound queue 3 to cpu 3
pcib4: <ACPI PCI-PCI bridge> irq 19 at device 28.3 on pci0
pci4: <ACPI 

PCI bus> on pcib4
igb1: <Intel(R) PRO/1000 Network Connection version - 2.3.10> port 0xc000-0xc01f mem 0xf7400000-

0xf747ffff,0xf7480000-0xf7483fff irq 19 at device 0.0 on pci4
igb1: Using MSIX interrupts with 5 vectors
igb1: 

Ethernet address: 00:25:90:d2:92:71
igb1: Bound queue 0 to cpu 0
igb1: Bound queue 1 to cpu 1
igb1: Bound queue 2 to 

cpu 2
igb1: Bound queue 3 to cpu 3
pcib5: <ACPI PCI-PCI bridge> irq 16 at device 28.4 on pci0
pci5: <ACPI PCI bus> on 

pcib5
mvs0: <Adaptec 1430SA SATA controller> port 0xb000-0xb0ff mem 0xf7200000-0xf72fffff,0xf7100000-0xf71fffff irq 

16 at device 0.0 on pci5
mvs0: Gen-IIe, 4 3Gbps ports, Port Multiplier supported with FBS
mvsch0: <Marvell SATA 

channel> at channel 0 on mvs0
mvsch1: <Marvell SATA channel> at channel 1 on mvs0
mvsch2: <Marvell SATA channel> at 

channel 2 on mvs0
mvsch3: <Marvell SATA channel> at channel 3 on mvs0
ehci1: <EHCI (generic) USB 2.0 controller> mem 

0xf7603000-0xf76033ff irq 23 at device 29.0 on pci0
usbus1: EHCI version 1.0
usbus1 on ehci1
isab0: <PCI-ISA bridge> 

at device 31.0 on pci0
isa0: <ISA bus> on isab0
ahci0: <Intel Lynx Point AHCI SATA controller> port 0xf070-

0xf077,0xf060-0xf063,0xf050-0xf057,0xf040-0xf043,0xf020-0xf03f mem 0xf7602000-0xf76027ff irq 19 at device 31.2 on 

pci0
ahci0: AHCI v1.30 with 6 6Gbps ports, Port Multiplier not supported
ahcich0: <AHCI channel> at channel 0 on 

ahci0
ahcich1: <AHCI channel> at channel 1 on ahci0
ahcich2: <AHCI channel> at channel 2 on ahci0
ahcich3: <AHCI 

channel> at channel 3 on ahci0
ahcich4: <AHCI channel> at channel 4 on ahci0
ahcich5: <AHCI channel> at channel 5 on 

ahci0
pci0: <serial bus, SMBus> at device 31.3 (no driver attached)
pci0: <dasp> at device 31.6 (no driver attached)
acpi_button0: <Power Button> on acpi0
acpi_tz0: <Thermal Zone> on acpi0
acpi_tz1: <Thermal Zone> on acpi0
uart0: 

<16550 or compatible> port 0x3f8-0x3ff irq 4 flags 0x10 on acpi0
uart1: <16550 or compatible> port 0x2f8-0x2ff irq 3 

on acpi0
uart2: <16550 or compatible> port 0x3e8-0x3ef irq 7 on acpi0
orm0: <ISA Option ROMs> at iomem 0xc0000-

0xc7fff,0xc8000-0xccfff,0xcd000-0xcdfff on isa0
sc0: <System console> at flags 0x100 on isa0
sc0: CGA <16 virtual 

consoles, flags=0x300>
vga0: <Generic ISA VGA> at port 0x3d0-0x3db iomem 0xb8000-0xbffff on isa0
ppc0: cannot reserve 

I/O port range
est0: <Enhanced SpeedStep Frequency Control> on cpu0
p4tcc0: <CPU Frequency Thermal Control> on cpu0
est1: <Enhanced SpeedStep Frequency Control> on cpu1
p4tcc1: <CPU Frequency Thermal Control> on cpu1
est2: <Enhanced 

SpeedStep Frequency Control> on cpu2
p4tcc2: <CPU Frequency Thermal Control> on cpu2
est3: <Enhanced SpeedStep 

Frequency Control> on cpu3
p4tcc3: <CPU Frequency Thermal Control> on cpu3
Timecounters tick every 1.000 msec
usbus0: 

480Mbps High Speed USB v2.0
usbus1: 480Mbps High Speed USB v2.0
ugen0.1: <Intel> at usbus0
uhub0: <Intel EHCI root 

HUB, class 9/0, rev 2.00/1.00, addr 1> on usbus0
ugen1.1: <Intel> at usbus1
uhub1: <Intel EHCI root HUB, class 9/0, 

rev 2.00/1.00, addr 1> on usbus1
ada0 at mvsch0 bus 0 scbus0 target 0 lun 0
ada0: <ST4000VN000-1H4168 SC43> ATA-9 

SATA 3.x device
cd0 at ahcich5 bus 0 scbus9 target 0 lun 0
cd0: <HL-DT-ST DVD-ROM DH30N A101> Removable CD-ROM SCSI-0 

device 
cd0: 150.000MB/s transfers (SATA 1.x, UDMA5, ATAPI 12bytes, PIO 8192bytes)
cd0: Attempt to query device size 

failed: NOT READY, Medium not present - tray closed
ada0: 300.000MB/s transfers (SATA 2.x, UDMA6, PIO 8192bytes)
ada0: Command Queueing enabled
ada0: 3815447MB (7814037168 512 byte sectors: 16H 63S/T 16383C)
ada0: Previously was 

known as ad4
ada1 at mvsch1 bus 0 scbus1 target 0 lun 0
ada1: <ST4000VN000-1H4168 SC43> ATA-9 SATA 3.x device
ada1: 

300.000MB/s transfers (SATA 2.x, UDMA6, PIO 8192bytes)
ada1: Command Queueing enabled
ada1: 3815447MB (7814037168 512 

byte sectors: 16H 63S/T 16383C)
ada1: Previously was known as ad6
ada2 at mvsch2 bus 0 scbus2 target 0 lun 0
ada2: 

<WDC WD40EFRX-68WT0N0 80.00A80> ATA-9 SATA 3.x device
ada2: 300.000MB/s transfers (SATA 2.x, UDMA6, PIO 8192bytes)
ada2: Command Queueing enabled
ada2: 3815447MB (7814037168 512 byte sectors: 16H 63S/T 16383C)
ada2: quirks=0x1<4K>
ada2: Previously was known as ad8
ada3 at mvsch3 bus 0 scbus3 target 0 lun 0
ada3: <WDC WD40EFRX-68WT0N0 80.00A80> 

ATA-9 SATA 3.x device
ada3: 300.000MB/s transfers (SATA 2.x, UDMA6, PIO 8192bytes)
ada3: Command Queueing enabled
ada3: 3815447MB (7814037168 512 byte sectors: 16H 63S/T 16383C)
ada3: quirks=0x1<4K>
ada3: Previously was known as 

ad10
ada4 at ahcich0 bus 0 scbus4 target 0 lun 0
ada4


Create a new paste based on this one


Comments: