-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathBE0EB33CD5
1216 lines (1157 loc) · 46.9 KB
/
BE0EB33CD5
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
16: PCI 300.0: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: svHJ.dG5VA6HL489
Parent ID: qTvu.HBfGzowqBM9
SysFS ID: /devices/pci0000:00/0000:00:1c.1/0000:03:00.0
SysFS BusID: 0000:03:00.0
Hardware Class: bridge
Model: "Texas Instruments XIO2001 PCI Express-to-PCI Bridge"
Vendor: pci 0x104c "Texas Instruments"
Device: pci 0x8240 "XIO2001 PCI Express-to-PCI Bridge"
SubVendor: pci 0x1028 "Dell"
SubDevice: pci 0x05a6
Module Alias: "pci:v0000104Cd00008240sv00001028sd000005A6bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #28 (PCI bridge)
17: PCI 1f.2: 0106 SATA controller (AHCI 1.0)
[Created at pci.386]
Unique ID: w7Y8.l3cETRyn+S8
SysFS ID: /devices/pci0000:00/0000:00:1f.2
SysFS BusID: 0000:00:1f.2
Hardware Class: storage
Model: "Intel 8 Series/C220 Series Chipset Family 6-port SATA Controller 1 [AHCI mode]"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x8c02 "8 Series/C220 Series Chipset Family 6-port SATA Controller 1 [AHCI mode]"
SubVendor: pci 0x1028 "Dell"
SubDevice: pci 0x05a6
Revision: 0x04
Driver: "ahci"
Driver Modules: "ahci"
I/O Ports: 0xf090-0xf097 (rw)
I/O Ports: 0xf080-0xf083 (rw)
I/O Ports: 0xf070-0xf077 (rw)
I/O Ports: 0xf060-0xf063 (rw)
I/O Ports: 0xf020-0xf03f (rw)
Memory Range: 0xf7636000-0xf76367ff (rw,non-prefetchable)
IRQ: 40 (5066351 events)
Module Alias: "pci:v00008086d00008C02sv00001028sd000005A6bc01sc06i01"
Driver Info #0:
Driver Status: ahci is active
Driver Activation Cmd: "modprobe ahci"
Config Status: cfg=new, avail=yes, need=no, active=unknown
18: PCI 1c.0: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: z8Q3.FMmm+fhQ8b8
SysFS ID: /devices/pci0000:00/0000:00:1c.0
SysFS BusID: 0000:00:1c.0
Hardware Class: bridge
Model: "Intel 8 Series/C220 Series Chipset Family PCI Express Root Port #1"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x8c10 "8 Series/C220 Series Chipset Family PCI Express Root Port #1"
SubVendor: pci 0x1028 "Dell"
SubDevice: pci 0x05a6
Revision: 0xd4
Driver: "pcieport"
IRQ: 26 (no events)
Module Alias: "pci:v00008086d00008C10sv00001028sd000005A6bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
19: PCI 1f.0: 0601 ISA bridge
[Created at pci.386]
Unique ID: BUZT.Y26dKi6qBGB
SysFS ID: /devices/pci0000:00/0000:00:1f.0
SysFS BusID: 0000:00:1f.0
Hardware Class: bridge
Model: "Intel C226 Series Chipset Family Server Advanced SKU LPC Controller"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x8c56 "C226 Series Chipset Family Server Advanced SKU LPC Controller"
SubVendor: pci 0x1028 "Dell"
SubDevice: pci 0x05a6
Revision: 0x04
Driver: "lpc_ich"
Driver Modules: "lpc_ich"
Module Alias: "pci:v00008086d00008C56sv00001028sd000005A6bc06sc01i00"
Driver Info #0:
Driver Status: lpc_ich is active
Driver Activation Cmd: "modprobe lpc_ich"
Config Status: cfg=new, avail=yes, need=no, active=unknown
20: PCI 500.1: 0403 Audio device
[Created at pci.386]
Unique ID: 5yAR.T2Le1ME3slC
Parent ID: hoOk.J0Ymwx9FF7A
SysFS ID: /devices/pci0000:00/0000:00:1c.2/0000:05:00.1
SysFS BusID: 0000:05:00.1
Hardware Class: sound
Model: "nVidia GK107 HDMI Audio Controller"
Vendor: pci 0x10de "nVidia Corporation"
Device: pci 0x0e1b "GK107 HDMI Audio Controller"
SubVendor: pci 0x10de "nVidia Corporation"
SubDevice: pci 0x094b
Revision: 0xa1
Driver: "snd_hda_intel"
Driver Modules: "snd_hda_intel"
Memory Range: 0xf7080000-0xf7083fff (rw,non-prefetchable)
IRQ: 19 (102 events)
Module Alias: "pci:v000010DEd00000E1Bsv000010DEsd0000094Bbc04sc03i00"
Driver Info #0:
Driver Status: snd_hda_intel is active
Driver Activation Cmd: "modprobe snd_hda_intel"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #36 (PCI bridge)
21: PCI 01.0: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: vSkL.Iq9AMXP7sfB
SysFS ID: /devices/pci0000:00/0000:00:01.0
SysFS BusID: 0000:00:01.0
Hardware Class: bridge
Model: "Intel Xeon E3-1200 v3/4th Gen Core Processor PCI Express x16 Controller"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x0c01 "Xeon E3-1200 v3/4th Gen Core Processor PCI Express x16 Controller"
SubVendor: pci 0x1028 "Dell"
SubDevice: pci 0x05a6
Revision: 0x06
Driver: "pcieport"
IRQ: 25 (no events)
Module Alias: "pci:v00008086d00000C01sv00001028sd000005A6bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
22: PCI 16.0: 0780 Communication controller
[Created at pci.386]
Unique ID: WnlC.clCk20NExqA
SysFS ID: /devices/pci0000:00/0000:00:16.0
SysFS BusID: 0000:00:16.0
Hardware Class: unknown
Model: "Intel 8 Series/C220 Series Chipset Family MEI Controller #1"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x8c3a "8 Series/C220 Series Chipset Family MEI Controller #1"
SubVendor: pci 0x1028 "Dell"
SubDevice: pci 0x05a6
Revision: 0x04
Driver: "mei_me"
Driver Modules: "mei_me"
Memory Range: 0xf763c000-0xf763c00f (rw,non-prefetchable)
IRQ: 60 (736 events)
Module Alias: "pci:v00008086d00008C3Asv00001028sd000005A6bc07sc80i00"
Driver Info #0:
Driver Status: mei_me is active
Driver Activation Cmd: "modprobe mei_me"
Config Status: cfg=new, avail=yes, need=no, active=unknown
23: PCI 100.0: 0107 Serial Attached SCSI controller
[Created at pci.386]
Unique ID: VCu0.bNu5OCGUyv7
Parent ID: vSkL.Iq9AMXP7sfB
SysFS ID: /devices/pci0000:00/0000:00:01.0/0000:01:00.0
SysFS BusID: 0000:01:00.0
Hardware Class: storage
Model: "Hewlett-Packard Company Smart Array P408i-p SR Gen10"
Vendor: pci 0x9005 "Adaptec"
Device: pci 0x028f "Smart Storage PQI 12G SAS/PCIe 3"
SubVendor: pci 0x103c "Hewlett-Packard Company"
SubDevice: pci 0x0600 "Smart Array P408i-p SR Gen10"
Revision: 0x01
Driver: "smartpqi"
Driver Modules: "smartpqi"
Memory Range: 0xf7400000-0xf7407fff (rw,non-prefetchable)
I/O Ports: 0xe000-0xefff (rw)
Memory Range: 0xf7200000-0xf73fffff (ro,non-prefetchable,disabled)
IRQ: 16 (36 events)
Module Alias: "pci:v00009005d0000028Fsv0000103Csd00000600bc01sc07i00"
Driver Info #0:
Driver Status: smartpqi is active
Driver Activation Cmd: "modprobe smartpqi"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #21 (PCI bridge)
24: PCI 1b.0: 0403 Audio device
[Created at pci.386]
Unique ID: u1Nb.i7vlt_b8HrD
SysFS ID: /devices/pci0000:00/0000:00:1b.0
SysFS BusID: 0000:00:1b.0
Hardware Class: sound
Model: "Intel 8 Series/C220 Series Chipset High Definition Audio Controller"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x8c20 "8 Series/C220 Series Chipset High Definition Audio Controller"
SubVendor: pci 0x1028 "Dell"
SubDevice: pci 0x05a6
Revision: 0x04
Driver: "snd_hda_intel"
Driver Modules: "snd_hda_intel"
Memory Range: 0xf7630000-0xf7633fff (rw,non-prefetchable)
IRQ: 61 (276 events)
Module Alias: "pci:v00008086d00008C20sv00001028sd000005A6bc04sc03i00"
Driver Info #0:
Driver Status: snd_hda_intel is active
Driver Activation Cmd: "modprobe snd_hda_intel"
Config Status: cfg=new, avail=yes, need=no, active=unknown
25: PCI 19.0: 0200 Ethernet controller
[Created at pci.386]
Unique ID: wcdH.IU4Xy9hCL24
SysFS ID: /devices/pci0000:00/0000:00:19.0
SysFS BusID: 0000:00:19.0
Hardware Class: network
Device Name: "Onboard LAN"
Model: "Intel Ethernet Connection I217-LM"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x153a "Ethernet Connection I217-LM"
SubVendor: pci 0x1028 "Dell"
SubDevice: pci 0x05a6
Revision: 0x04
Driver: "e1000e"
Driver Modules: "e1000e"
Device File: eno1
Memory Range: 0xf7600000-0xf761ffff (rw,non-prefetchable)
Memory Range: 0xf7639000-0xf7639fff (rw,non-prefetchable)
I/O Ports: 0xf040-0xf05f (rw)
IRQ: 31 (1109377 events)
HW Address: ...
Permanent HW Address: ...
Link detected: no
Module Alias: "pci:v00008086d0000153Asv00001028sd000005A6bc02sc00i00"
Driver Info #0:
Driver Status: e1000e is active
Driver Activation Cmd: "modprobe e1000e"
Config Status: cfg=new, avail=yes, need=no, active=unknown
26: PCI 1f.3: 0c05 SMBus
[Created at pci.386]
Unique ID: nS1_.uF6+Tt+eGPE
SysFS ID: /devices/pci0000:00/0000:00:1f.3
SysFS BusID: 0000:00:1f.3
Hardware Class: unknown
Model: "Intel 8 Series/C220 Series Chipset Family SMBus Controller"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x8c22 "8 Series/C220 Series Chipset Family SMBus Controller"
SubVendor: pci 0x1028 "Dell"
SubDevice: pci 0x05a6
Revision: 0x04
Driver: "i801_smbus"
Driver Modules: "i2c_i801"
Memory Range: 0xf7635000-0xf76350ff (rw,non-prefetchable)
I/O Ports: 0xf000-0xf01f (rw)
IRQ: 18 (8 events)
Module Alias: "pci:v00008086d00008C22sv00001028sd000005A6bc0Csc05i00"
Driver Info #0:
Driver Status: i2c_i801 is active
Driver Activation Cmd: "modprobe i2c_i801"
Config Status: cfg=new, avail=yes, need=no, active=unknown
27: PCI 00.0: 0600 Host bridge
[Created at pci.386]
Unique ID: qLht.rt+ZgPDrjs1
SysFS ID: /devices/pci0000:00/0000:00:00.0
SysFS BusID: 0000:00:00.0
Hardware Class: bridge
Model: "Intel Xeon E3-1200 v3 Processor DRAM Controller"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x0c08 "Xeon E3-1200 v3 Processor DRAM Controller"
SubVendor: pci 0x1028 "Dell"
SubDevice: pci 0x05a6
Revision: 0x06
Driver: "ie31200_edac"
Driver Modules: "ie31200_edac"
Module Alias: "pci:v00008086d00000C08sv00001028sd000005A6bc06sc00i00"
Driver Info #0:
Driver Status: ie31200_edac is active
Driver Activation Cmd: "modprobe ie31200_edac"
Config Status: cfg=new, avail=yes, need=no, active=unknown
28: PCI 1c.1: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: qTvu.HBfGzowqBM9
SysFS ID: /devices/pci0000:00/0000:00:1c.1
SysFS BusID: 0000:00:1c.1
Hardware Class: bridge
Model: "Intel 8 Series/C220 Series Chipset Family PCI Express Root Port #2"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x8c12 "8 Series/C220 Series Chipset Family PCI Express Root Port #2"
SubVendor: pci 0x1028 "Dell"
SubDevice: pci 0x05a6
Revision: 0xd4
Driver: "pcieport"
IRQ: 27 (no events)
Module Alias: "pci:v00008086d00008C12sv00001028sd000005A6bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
29: PCI 600.0: 0200 Ethernet controller
[Created at pci.386]
Unique ID: S7yx.LQz7H0ltwX6
Parent ID: QSNP.NgJmr9_HMEA
SysFS ID: /devices/pci0000:00/0000:00:1c.4/0000:06:00.0
SysFS BusID: 0000:06:00.0
Hardware Class: network
Model: "Super Micro AOC-STGN-I2S [REV 1.01]"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x10fb "82599ES 10-Gigabit SFI/SFP+ Network Connection"
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x0611 "AOC-STGN-I2S [REV 1.01]"
Revision: 0x01
Driver: "ixgbe"
Driver Modules: "ixgbe"
Device File: enp6s0f0
Memory Range: 0xf2000000-0xf207ffff (ro,non-prefetchable)
I/O Ports: 0xc020-0xc03f (rw)
Memory Range: 0xf2100000-0xf2103fff (ro,non-prefetchable)
Memory Range: 0xf7580000-0xf75fffff (ro,non-prefetchable,disabled)
IRQ: 16 (36 events)
HW Address: ...
Permanent HW Address: ...
Link detected: yes
Module Alias: "pci:v00008086d000010FBsv000015D9sd00000611bc02sc00i00"
Driver Info #0:
Driver Status: ixgbe is active
Driver Activation Cmd: "modprobe ixgbe"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #34 (PCI bridge)
30: PCI 1a.0: 0c03 USB Controller (EHCI)
[Created at pci.386]
Unique ID: pwJ7.1PC+Wfn2BD9
SysFS ID: /devices/pci0000:00/0000:00:1a.0
SysFS BusID: 0000:00:1a.0
Hardware Class: usb controller
Model: "Intel 8 Series/C220 Series Chipset Family USB EHCI #2"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x8c2d "8 Series/C220 Series Chipset Family USB EHCI #2"
SubVendor: pci 0x1028 "Dell"
SubDevice: pci 0x05a6
Revision: 0x04
Driver: "ehci-pci"
Memory Range: 0xf7638000-0xf76383ff (rw,non-prefetchable)
IRQ: 16 (36 events)
Module Alias: "pci:v00008086d00008C2Dsv00001028sd000005A6bc0Csc03i20"
Driver Info #0:
Driver Status: ehci-hcd is not active
Driver Activation Cmd: "modprobe ehci-hcd"
Config Status: cfg=new, avail=yes, need=no, active=unknown
31: PCI 16.3: 0700 Serial controller (16550)
[Created at pci.386]
Unique ID: 6mDj.BLLEbONbFbE
SysFS ID: /devices/pci0000:00/0000:00:16.3
SysFS BusID: 0000:00:16.3
Hardware Class: unknown
Model: "Intel 8 Series/C220 Series Chipset Family KT Controller"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x8c3d "8 Series/C220 Series Chipset Family KT Controller"
SubVendor: pci 0x1028 "Dell"
SubDevice: pci 0x05a6
Revision: 0x04
Driver: "serial"
I/O Ports: 0xf0a0-0xf0a7 (rw)
Memory Range: 0xf763a000-0xf763afff (rw,non-prefetchable)
IRQ: 19 (102 events)
Module Alias: "pci:v00008086d00008C3Dsv00001028sd000005A6bc07sc00i02"
Config Status: cfg=new, avail=yes, need=no, active=unknown
32: PCI 500.0: 0300 VGA compatible controller (VGA)
[Created at pci.386]
Unique ID: Ddhb.XiVvlAexSED
Parent ID: hoOk.J0Ymwx9FF7A
SysFS ID: /devices/pci0000:00/0000:00:1c.2/0000:05:00.0
SysFS BusID: 0000:05:00.0
Hardware Class: graphics card
Model: "nVidia GK107GL [Quadro K600]"
Vendor: pci 0x10de "nVidia Corporation"
Device: pci 0x0ffa "GK107GL [Quadro K600]"
SubVendor: pci 0x10de "nVidia Corporation"
SubDevice: pci 0x094b
Revision: 0xa1
Driver: "nouveau"
Driver Modules: "nouveau"
Memory Range: 0xf6000000-0xf6ffffff (rw,non-prefetchable)
Memory Range: 0xe0000000-0xefffffff (ro,non-prefetchable)
Memory Range: 0xf0000000-0xf1ffffff (ro,non-prefetchable)
I/O Ports: 0xd000-0xdfff (rw)
Memory Range: 0x000c0000-0x000dffff (rw,non-prefetchable,disabled)
IRQ: 50 (4436314 events)
Module Alias: "pci:v000010DEd00000FFAsv000010DEsd0000094Bbc03sc00i00"
Driver Info #0:
Driver Status: nvidiafb is not active
Driver Activation Cmd: "modprobe nvidiafb"
Driver Info #1:
Driver Status: nouveau is active
Driver Activation Cmd: "modprobe nouveau"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #36 (PCI bridge)
33: PCI 1d.0: 0c03 USB Controller (EHCI)
[Created at pci.386]
Unique ID: 1GTX.QVbl9gy6VX6
SysFS ID: /devices/pci0000:00/0000:00:1d.0
SysFS BusID: 0000:00:1d.0
Hardware Class: usb controller
Model: "Intel 8 Series/C220 Series Chipset Family USB EHCI #1"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x8c26 "8 Series/C220 Series Chipset Family USB EHCI #1"
SubVendor: pci 0x1028 "Dell"
SubDevice: pci 0x05a6
Revision: 0x04
Driver: "ehci-pci"
Memory Range: 0xf7637000-0xf76373ff (rw,non-prefetchable)
IRQ: 23 (41 events)
Module Alias: "pci:v00008086d00008C26sv00001028sd000005A6bc0Csc03i20"
Driver Info #0:
Driver Status: ehci-hcd is not active
Driver Activation Cmd: "modprobe ehci-hcd"
Config Status: cfg=new, avail=yes, need=no, active=unknown
34: PCI 1c.4: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: QSNP.NgJmr9_HMEA
SysFS ID: /devices/pci0000:00/0000:00:1c.4
SysFS BusID: 0000:00:1c.4
Hardware Class: bridge
Model: "Intel 8 Series/C220 Series Chipset Family PCI Express Root Port #5"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x8c18 "8 Series/C220 Series Chipset Family PCI Express Root Port #5"
SubVendor: pci 0x1028 "Dell"
SubDevice: pci 0x05a6
Revision: 0xd4
Driver: "pcieport"
IRQ: 29 (no events)
Module Alias: "pci:v00008086d00008C18sv00001028sd000005A6bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
35: PCI 14.0: 0c03 USB Controller (XHCI)
[Created at pci.386]
Unique ID: MZfG.L3n4bVtTBR9
SysFS ID: /devices/pci0000:00/0000:00:14.0
SysFS BusID: 0000:00:14.0
Hardware Class: usb controller
Model: "Intel 8 Series/C220 Series Chipset Family USB xHCI"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x8c31 "8 Series/C220 Series Chipset Family USB xHCI"
SubVendor: pci 0x1028 "Dell"
SubDevice: pci 0x05a6
Revision: 0x04
Driver: "xhci_hcd"
Driver Modules: "xhci_pci"
Memory Range: 0xf7620000-0xf762ffff (rw,non-prefetchable)
IRQ: 30 (no events)
Module Alias: "pci:v00008086d00008C31sv00001028sd000005A6bc0Csc03i30"
Driver Info #0:
Driver Status: xhci_pci is active
Driver Activation Cmd: "modprobe xhci_pci"
Config Status: cfg=new, avail=yes, need=no, active=unknown
36: PCI 1c.2: 0604 PCI bridge (Normal decode)
[Created at pci.386]
Unique ID: hoOk.J0Ymwx9FF7A
SysFS ID: /devices/pci0000:00/0000:00:1c.2
SysFS BusID: 0000:00:1c.2
Hardware Class: bridge
Model: "Intel 8 Series/C220 Series Chipset Family PCI Express Root Port #3"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x8c14 "8 Series/C220 Series Chipset Family PCI Express Root Port #3"
SubVendor: pci 0x1028 "Dell"
SubDevice: pci 0x05a6
Revision: 0xd4
Driver: "pcieport"
IRQ: 28 (no events)
Module Alias: "pci:v00008086d00008C14sv00001028sd000005A6bc06sc04i00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
37: PCI 600.1: 0200 Ethernet controller
[Created at pci.386]
Unique ID: wIC0.LQz7H0ltwX6
Parent ID: QSNP.NgJmr9_HMEA
SysFS ID: /devices/pci0000:00/0000:00:1c.4/0000:06:00.1
SysFS BusID: 0000:06:00.1
Hardware Class: network
Model: "Super Micro AOC-STGN-I2S [REV 1.01]"
Vendor: pci 0x8086 "Intel Corporation"
Device: pci 0x10fb "82599ES 10-Gigabit SFI/SFP+ Network Connection"
SubVendor: pci 0x15d9 "Super Micro Computer Inc"
SubDevice: pci 0x0611 "AOC-STGN-I2S [REV 1.01]"
Revision: 0x01
Driver: "ixgbe"
Driver Modules: "ixgbe"
Device File: enp6s0f1
Memory Range: 0xf2080000-0xf20fffff (ro,non-prefetchable)
I/O Ports: 0xc000-0xcfff (rw)
Memory Range: 0xf2304000-0xf2307fff (ro,non-prefetchable)
Memory Range: 0xf7500000-0xf757ffff (ro,non-prefetchable,disabled)
IRQ: 17 (no events)
HW Address: ...
Permanent HW Address: ...
Link detected: no
Module Alias: "pci:v00008086d000010FBsv000015D9sd00000611bc02sc00i00"
Driver Info #0:
Driver Status: ixgbe is active
Driver Activation Cmd: "modprobe ixgbe"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #34 (PCI bridge)
39: IDE 05.0: 10600 Disk
[Created at block.245]
Unique ID: LHfg.V9q0_IHMzb4
Parent ID: VCu0.bNu5OCGUyv7
SysFS ID: /class/block/sdf
SysFS BusID: 0:0:5:0
SysFS Device Link: /devices/pci0000:00/0000:00:01.0/0000:01:00.0/host0/scsi_host/host0/port-0:6/end_device-0:6/target0:0:5/0:0:5:0
Hardware Class: disk
Model: "Hitachi HDS72303"
Vendor: "Hitachi"
Device: "HDS72303"
Revision: "AAB0"
Serial ID: --
Driver: "smartpqi", "sd"
Driver Modules: "smartpqi"
Device File: /dev/sdf
Device Files: /dev/sdf, /dev/disk/by-id/scsi-354c0dee0019a7012, /dev/disk/by-id/wwn-0x..., /dev/disk/by-id/scsi-SATA_Hitachi_HDS72303_...
Device Number: block 8:80-8:95
Geometry (Logical): CHS 2861588/64/32
Size: 5860533168 sectors a 512 bytes
Capacity: 2794 GB (3000592982016 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #23 (Serial Attached SCSI controller)
40: IDE 0d.0: 10600 Disk
[Created at block.245]
Unique ID: RuwG.q6KwZRFlDR0
Parent ID: VCu0.bNu5OCGUyv7
SysFS ID: /class/block/sdo
SysFS BusID: 0:0:13:0
SysFS Device Link: /devices/pci0000:00/0000:00:01.0/0000:01:00.0/host0/scsi_host/host0/port-0:14/end_device-0:14/target0:0:13/0:0:13:0
Hardware Class: disk
Model: "TOSHIBA DT01ACA3"
Vendor: "TOSHIBA"
Device: "DT01ACA3"
Revision: "ABB0"
Serial ID: --
Driver: "smartpqi", "sd"
Driver Modules: "smartpqi"
Device File: /dev/sdo
Device Files: /dev/sdo, /dev/disk/by-id/scsi-SATA_TOSHIBA_DT01ACA3_..., /dev/disk/by-id/wwn-0x..., /dev/disk/by-id/scsi-354c0dee0019a701a
Device Number: block 8:224-8:239
Geometry (Logical): CHS 2861588/64/32
Size: 5860533168 sectors a 512 bytes
Capacity: 2794 GB (3000592982016 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #23 (Serial Attached SCSI controller)
41: IDE 03.0: 10600 Disk
[Created at block.245]
Unique ID: Rw8Y.lRud0_Tzba8
Parent ID: VCu0.bNu5OCGUyv7
SysFS ID: /class/block/sdd
SysFS BusID: 0:0:3:0
SysFS Device Link: /devices/pci0000:00/0000:00:01.0/0000:01:00.0/host0/scsi_host/host0/port-0:4/end_device-0:4/target0:0:3/0:0:3:0
Hardware Class: disk
Model: "TOSHIBA DT01ACA3"
Vendor: "TOSHIBA"
Device: "DT01ACA3"
Revision: "ABB0"
Serial ID: --
Driver: "smartpqi", "sd"
Driver Modules: "smartpqi"
Device File: /dev/sdd
Device Files: /dev/sdd, /dev/disk/by-id/scsi-354c0dee0019a7010, /dev/disk/by-id/scsi-SATA_TOSHIBA_DT01ACA3_..., /dev/disk/by-id/wwn-0x...
Device Number: block 8:48-8:63
Geometry (Logical): CHS 2861588/64/32
Size: 5860533168 sectors a 512 bytes
Capacity: 2794 GB (3000592982016 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #23 (Serial Attached SCSI controller)
42: IDE 0b.0: 10600 Disk
[Created at block.245]
Unique ID: WXQ8.nWmG4i88rE2
Parent ID: VCu0.bNu5OCGUyv7
SysFS ID: /class/block/sdm
SysFS BusID: 0:0:11:0
SysFS Device Link: /devices/pci0000:00/0000:00:01.0/0000:01:00.0/host0/scsi_host/host0/port-0:12/end_device-0:12/target0:0:11/0:0:11:0
Hardware Class: disk
Model: "TOSHIBA DT01ACA3"
Vendor: "TOSHIBA"
Device: "DT01ACA3"
Revision: "ABB0"
Serial ID: --
Driver: "smartpqi", "sd"
Driver Modules: "smartpqi"
Device File: /dev/sdm
Device Files: /dev/sdm, /dev/disk/by-id/wwn-0x..., /dev/disk/by-id/scsi-SATA_TOSHIBA_DT01ACA3_..., /dev/disk/by-id/scsi-354c0dee0019a7018
Device Number: block 8:192-8:207
Geometry (Logical): CHS 2861588/64/32
Size: 5860533168 sectors a 512 bytes
Capacity: 2794 GB (3000592982016 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #23 (Serial Attached SCSI controller)
43: SCSI 01.0: 10600 Disk
[Created at block.245]
Unique ID: uI_Q.qlnc2_AW4PD
Parent ID: VCu0.bNu5OCGUyv7
SysFS ID: /class/block/sdb
SysFS BusID: 0:0:1:0
SysFS Device Link: /devices/pci0000:00/0000:00:01.0/0000:01:00.0/host0/scsi_host/host0/port-0:2/end_device-0:2/target0:0:1/0:0:1:0
Hardware Class: disk
Model: "TOSHIBA PX05SMB040"
Vendor: "TOSHIBA"
Device: "PX05SMB040"
Revision: "0101"
Serial ID: --
Driver: "smartpqi", "sd"
Driver Modules: "smartpqi"
Device File: /dev/sdb (/dev/sg1)
Device Files: /dev/sdb, /dev/disk/by-id/wwn-0x..., /dev/disk/by-id/scsi-STOSHIBA_PX05SMB040_..., /dev/disk/by-id/scsi-3500003971c8a6bd1, /dev/disk/by-path/pci-0000:01:00.0-sas-0x500003971c8a6bd2-lun-0
Device Number: block 8:16-8:31 (char 21:1)
Geometry (Logical): CHS 48641/255/63
Size: 781422768 sectors a 512 bytes
Capacity: 372 GB (400088457216 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #23 (Serial Attached SCSI controller)
44: IDE 0a.0: 10600 Disk
[Created at block.245]
Unique ID: cAw+.Jwnk1OVH662
Parent ID: VCu0.bNu5OCGUyv7
SysFS ID: /class/block/sdk
SysFS BusID: 0:0:10:0
SysFS Device Link: /devices/pci0000:00/0000:00:01.0/0000:01:00.0/host0/scsi_host/host0/port-0:11/end_device-0:11/target0:0:10/0:0:10:0
Hardware Class: disk
Model: "TOSHIBA DT01ACA3"
Vendor: "TOSHIBA"
Device: "DT01ACA3"
Revision: "ABB0"
Serial ID: --
Driver: "smartpqi", "sd"
Driver Modules: "smartpqi"
Device File: /dev/sdk
Device Files: /dev/sdk, /dev/disk/by-id/scsi-SATA_TOSHIBA_DT01ACA3_..., /dev/disk/by-id/scsi-354c0dee0019a7017, /dev/disk/by-id/wwn-0x...
Device Number: block 8:160-8:175
Geometry (Logical): CHS 2861588/64/32
Size: 5860533168 sectors a 512 bytes
Capacity: 2794 GB (3000592982016 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #23 (Serial Attached SCSI controller)
45: IDE 08.0: 10600 Disk
[Created at block.245]
Unique ID: ipPt.Od2p+oEple5
Parent ID: VCu0.bNu5OCGUyv7
SysFS ID: /class/block/sdi
SysFS BusID: 0:0:8:0
SysFS Device Link: /devices/pci0000:00/0000:00:01.0/0000:01:00.0/host0/scsi_host/host0/port-0:9/end_device-0:9/target0:0:8/0:0:8:0
Hardware Class: disk
Model: "TOSHIBA DT01ACA3"
Vendor: "TOSHIBA"
Device: "DT01ACA3"
Revision: "ABB0"
Serial ID: --
Driver: "smartpqi", "sd"
Driver Modules: "smartpqi"
Device File: /dev/sdi
Device Files: /dev/sdi, /dev/disk/by-id/scsi-SATA_TOSHIBA_DT01ACA3_..., /dev/disk/by-id/scsi-354c0dee0019a7015, /dev/disk/by-id/wwn-0x..., /dev/disk/by-path/pci-0000:01:00.0-sas-0x0000000000000000-lun-0
Device Number: block 8:128-8:143
Geometry (Logical): CHS 2861588/64/32
Size: 5860533168 sectors a 512 bytes
Capacity: 2794 GB (3000592982016 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #23 (Serial Attached SCSI controller)
46: IDE 06.0: 10600 Disk
[Created at block.245]
Unique ID: oSvk.Arh1jaewzV0
Parent ID: VCu0.bNu5OCGUyv7
SysFS ID: /class/block/sdg
SysFS BusID: 0:0:6:0
SysFS Device Link: /devices/pci0000:00/0000:00:01.0/0000:01:00.0/host0/scsi_host/host0/port-0:7/end_device-0:7/target0:0:6/0:0:6:0
Hardware Class: disk
Model: "TOSHIBA DT01ACA3"
Vendor: "TOSHIBA"
Device: "DT01ACA3"
Revision: "ABB0"
Serial ID: --
Driver: "smartpqi", "sd"
Driver Modules: "smartpqi"
Device File: /dev/sdg
Device Files: /dev/sdg, /dev/disk/by-id/wwn-0x..., /dev/disk/by-id/scsi-SATA_TOSHIBA_DT01ACA3_..., /dev/disk/by-id/scsi-354c0dee0019a7013
Device Number: block 8:96-8:111
Geometry (Logical): CHS 2861588/64/32
Size: 5860533168 sectors a 512 bytes
Capacity: 2794 GB (3000592982016 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #23 (Serial Attached SCSI controller)
47: IDE 04.0: 10600 Disk
[Created at block.245]
Unique ID: u5Pc.hb4KZygQ6y7
Parent ID: VCu0.bNu5OCGUyv7
SysFS ID: /class/block/sde
SysFS BusID: 0:0:4:0
SysFS Device Link: /devices/pci0000:00/0000:00:01.0/0000:01:00.0/host0/scsi_host/host0/port-0:5/end_device-0:5/target0:0:4/0:0:4:0
Hardware Class: disk
Model: "TOSHIBA DT01ACA3"
Vendor: "TOSHIBA"
Device: "DT01ACA3"
Revision: "ABB0"
Serial ID: --
Driver: "smartpqi", "sd"
Driver Modules: "smartpqi"
Device File: /dev/sde
Device Files: /dev/sde, /dev/disk/by-id/scsi-SATA_TOSHIBA_DT01ACA3_..., /dev/disk/by-id/wwn-0x..., /dev/disk/by-id/scsi-354c0dee0019a7011
Device Number: block 8:64-8:79
Geometry (Logical): CHS 2861588/64/32
Size: 5860533168 sectors a 512 bytes
Capacity: 2794 GB (3000592982016 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #23 (Serial Attached SCSI controller)
48: IDE 0c.0: 10600 Disk
[Created at block.245]
Unique ID: _igC.crN1bPHyFZ8
Parent ID: VCu0.bNu5OCGUyv7
SysFS ID: /class/block/sdn
SysFS BusID: 0:0:12:0
SysFS Device Link: /devices/pci0000:00/0000:00:01.0/0000:01:00.0/host0/scsi_host/host0/port-0:13/end_device-0:13/target0:0:12/0:0:12:0
Hardware Class: disk
Model: "TOSHIBA DT01ACA3"
Vendor: "TOSHIBA"
Device: "DT01ACA3"
Revision: "ABB0"
Serial ID: --
Driver: "smartpqi", "sd"
Driver Modules: "smartpqi"
Device File: /dev/sdn
Device Files: /dev/sdn, /dev/disk/by-id/scsi-SATA_TOSHIBA_DT01ACA3_..., /dev/disk/by-id/scsi-354c0dee0019a7019, /dev/disk/by-id/wwn-0x...
Device Number: block 8:208-8:223
Geometry (Logical): CHS 2861588/64/32
Size: 5860533168 sectors a 512 bytes
Capacity: 2794 GB (3000592982016 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #23 (Serial Attached SCSI controller)
49: SCSI 02.0: 10600 Disk
[Created at block.245]
Unique ID: LUEV.wk9Iq_iKUY0
Parent ID: VCu0.bNu5OCGUyv7
SysFS ID: /class/block/sdc
SysFS BusID: 0:0:2:0
SysFS Device Link: /devices/pci0000:00/0000:00:01.0/0000:01:00.0/host0/scsi_host/host0/port-0:3/end_device-0:3/target0:0:2/0:0:2:0
Hardware Class: disk
Model: "TOSHIBA PX05SMB040Y"
Vendor: "TOSHIBA"
Device: "PX05SMB040Y"
Revision: "AS03"
Serial ID: --
Driver: "smartpqi", "sd"
Driver Modules: "smartpqi"
Device File: /dev/sdc (/dev/sg2)
Device Files: /dev/sdc, /dev/disk/by-path/pci-0000:01:00.0-sas-0x58ce38e06c8b3aee-lun-0, /dev/disk/by-id/scsi-STOSHIBA_PX05SMB040Y_..., /dev/disk/by-id/scsi-358ce38e06c8b3aed, /dev/disk/by-id/wwn-0x...
Device Number: block 8:32-8:47 (char 21:2)
Geometry (Logical): CHS 48641/255/63
Size: 781422768 sectors a 512 bytes
Capacity: 372 GB (400088457216 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #23 (Serial Attached SCSI controller)
50: IDE 100.0: 10600 Disk
[Created at block.245]
Unique ID: 3MA4.zCdJl1ajop7
Parent ID: w7Y8.l3cETRyn+S8
SysFS ID: /class/block/sdl
SysFS BusID: 1:0:0:0
SysFS Device Link: /devices/pci0000:00/0000:00:1f.2/ata1/host1/target1:0:0/1:0:0:0
Hardware Class: disk
Model: "OCZ-AGILITY4"
Device: "OCZ-AGILITY4"
Revision: "2"
Serial ID: --
Driver: "ahci", "sd"
Driver Modules: "ahci"
Device File: /dev/sdl
Device Files: /dev/sdl, /dev/disk/by-id/scsi-1ATA_OCZ-AGILITY4_..., /dev/disk/by-id/ata-OCZ-AGILITY4_..., /dev/disk/by-path/pci-0000:00:1f.2-ata-1, /dev/disk/by-id/scsi-SATA_OCZ-AGILITY4_..., /dev/disk/by-id/scsi-35e83a97062cdb9e4, /dev/disk/by-id/wwn-0x..., /dev/disk/by-id/scsi-0ATA_OCZ-AGILITY4_...
Device Number: block 8:176-8:191
Geometry (Logical): CHS 15566/255/63
Size: 250069680 sectors a 512 bytes
Capacity: 119 GB (128035676160 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #17 (SATA controller)
51: SCSI 00.0: 10600 Disk
[Created at block.245]
Unique ID: R7kM.SAh2Tj47ly3
Parent ID: VCu0.bNu5OCGUyv7
SysFS ID: /class/block/sda
SysFS BusID: 0:0:0:0
SysFS Device Link: /devices/pci0000:00/0000:00:01.0/0000:01:00.0/host0/scsi_host/host0/port-0:1/end_device-0:1/target0:0:0/0:0:0:0
Hardware Class: disk
Model: "SAMSUNG MZILT7T6HMLA0D3"
Vendor: "SAMSUNG"
Device: "MZILT7T6HMLA0D3"
Revision: "DSF8"
Serial ID: --
Driver: "smartpqi", "sd"
Driver Modules: "smartpqi"
Device File: /dev/sda (/dev/sg0)
Device Files: /dev/sda, /dev/disk/by-id/wwn-0x..., /dev/disk/by-id/scsi-SSAMSUNG_MZILT7T6HMLA0D3_..., /dev/disk/by-path/pci-0000:01:00.0-sas-0x5002538b2057fe32-lun-0, /dev/disk/by-id/scsi-35002538b2057fe30
Device Number: block 8:0-8:15 (char 21:0)
Geometry (Logical): CHS 7325650/64/32
Size: 15002931888 sectors a 512 bytes
Capacity: 7153 GB (7681501126656 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #23 (Serial Attached SCSI controller)
52: IDE 09.0: 10600 Disk
[Created at block.245]
Unique ID: 9+fx.EVzizsYEenA
Parent ID: VCu0.bNu5OCGUyv7
SysFS ID: /class/block/sdj
SysFS BusID: 0:0:9:0
SysFS Device Link: /devices/pci0000:00/0000:00:01.0/0000:01:00.0/host0/scsi_host/host0/port-0:10/end_device-0:10/target0:0:9/0:0:9:0
Hardware Class: disk
Model: "TOSHIBA DT01ACA3"
Vendor: "TOSHIBA"
Device: "DT01ACA3"
Revision: "ABB0"
Serial ID: --
Driver: "smartpqi", "sd"
Driver Modules: "smartpqi"
Device File: /dev/sdj
Device Files: /dev/sdj, /dev/disk/by-id/scsi-SATA_TOSHIBA_DT01ACA3_..., /dev/disk/by-id/wwn-0x..., /dev/disk/by-id/scsi-354c0dee0019a7016
Device Number: block 8:144-8:159
Geometry (Logical): CHS 2861588/64/32
Size: 5860533168 sectors a 512 bytes
Capacity: 2794 GB (3000592982016 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #23 (Serial Attached SCSI controller)
53: IDE 07.0: 10600 Disk
[Created at block.245]
Unique ID: Fe9p.Fm_7QI4omhB
Parent ID: VCu0.bNu5OCGUyv7
SysFS ID: /class/block/sdh
SysFS BusID: 0:0:7:0
SysFS Device Link: /devices/pci0000:00/0000:00:01.0/0000:01:00.0/host0/scsi_host/host0/port-0:8/end_device-0:8/target0:0:7/0:0:7:0
Hardware Class: disk
Model: "TOSHIBA DT01ACA3"
Vendor: "TOSHIBA"
Device: "DT01ACA3"
Revision: "ABB0"
Serial ID: --
Driver: "smartpqi", "sd"
Driver Modules: "smartpqi"
Device File: /dev/sdh
Device Files: /dev/sdh, /dev/disk/by-id/scsi-354c0dee0019a7014, /dev/disk/by-id/wwn-0x..., /dev/disk/by-id/scsi-SATA_TOSHIBA_DT01ACA3_...
Device Number: block 8:112-8:127
Geometry (Logical): CHS 2861588/64/32
Size: 5860533168 sectors a 512 bytes
Capacity: 2794 GB (3000592982016 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #23 (Serial Attached SCSI controller)
54: IDE 0e.0: 10600 Disk
[Created at block.245]
Unique ID: u3BL.LNTZfwURk95
Parent ID: VCu0.bNu5OCGUyv7
SysFS ID: /class/block/sdp
SysFS BusID: 0:0:14:0
SysFS Device Link: /devices/pci0000:00/0000:00:01.0/0000:01:00.0/host0/scsi_host/host0/port-0:15/end_device-0:15/target0:0:14/0:0:14:0
Hardware Class: disk
Model: "TOSHIBA DT01ACA3"
Vendor: "TOSHIBA"
Device: "DT01ACA3"
Revision: "ABB0"
Serial ID: --
Driver: "smartpqi", "sd"
Driver Modules: "smartpqi"
Device File: /dev/sdp
Device Files: /dev/sdp, /dev/disk/by-id/wwn-0x..., /dev/disk/by-id/scsi-354c0dee0019a701b, /dev/disk/by-id/scsi-SATA_TOSHIBA_DT01ACA3_...
Device Number: block 8:240-8:255
Geometry (Logical): CHS 2861588/64/32
Size: 5860533168 sectors a 512 bytes
Capacity: 2794 GB (3000592982016 bytes)
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #23 (Serial Attached SCSI controller)
55: SCSI 20.0: 10680 Storage Device
[Created at scsi.1785]
Unique ID: bNwi.61OU2awAxY1
Parent ID: VCu0.bNu5OCGUyv7
SysFS ID: /class/scsi_generic/sg18
SysFS BusID: 0:2:0:0
Hardware Class: unknown
Model: "HPE P408i-p SR Gen10"
Vendor: "HPE"
Device: "P408i-p SR Gen10"
Revision: "2.65"
Driver: "smartpqi"
Driver Modules: "smartpqi"
Device File: /dev/sg18
Device Number: char 21:18
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #23 (Serial Attached SCSI controller)
56: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: FKGF.Wkj53szWOaA
Parent ID: pBe4.oLWCeziExdF
SysFS ID: /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1:1.0
SysFS BusID: 2-1:1.0
Hardware Class: hub
Model: "Intel Hub"
Hotplug: USB
Vendor: usb 0x8087 "Intel Corp."
Device: usb 0x8000
Revision: "0.04"
Driver: "hub"
Driver Modules: "usbcore"
Speed: 480 Mbps
Module Alias: "usb:v8087p8000d0004dc09dsc00dp01ic09isc00ip00in00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #61 (Hub)
57: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: uIhY.2DFUsyrieMD
Parent ID: MZfG.L3n4bVtTBR9
SysFS ID: /devices/pci0000:00/0000:00:14.0/usb3/3-0:1.0
SysFS BusID: 3-0:1.0
Hardware Class: hub
Model: "Linux Foundation 2.0 root hub"
Hotplug: USB
Vendor: usb 0x1d6b "Linux Foundation"
Device: usb 0x0002 "2.0 root hub"
Revision: "5.11"
Serial ID: --
Driver: "hub"
Driver Modules: "usbcore"
Speed: 480 Mbps
Module Alias: "usb:v1D6Bp0002d0511dc09dsc00dp01ic09isc00ip00in00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #35 (USB Controller)
58: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: zPk0.xYNhIwdOaa6
Parent ID: MZfG.L3n4bVtTBR9
SysFS ID: /devices/pci0000:00/0000:00:14.0/usb4/4-0:1.0
SysFS BusID: 4-0:1.0
Hardware Class: hub
Model: "Linux Foundation 3.0 root hub"
Hotplug: USB
Vendor: usb 0x1d6b "Linux Foundation"
Device: usb 0x0003 "3.0 root hub"
Revision: "5.11"
Serial ID: --
Driver: "hub"
Driver Modules: "usbcore"
Module Alias: "usb:v1D6Bp0003d0511dc09dsc00dp03ic09isc00ip00in00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #35 (USB Controller)
59: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: k4bc.FHd55n4xKo7
Parent ID: pwJ7.1PC+Wfn2BD9
SysFS ID: /devices/pci0000:00/0000:00:1a.0/usb1/1-0:1.0
SysFS BusID: 1-0:1.0
Hardware Class: hub
Model: "Linux Foundation 2.0 root hub"
Hotplug: USB
Vendor: usb 0x1d6b "Linux Foundation"
Device: usb 0x0002 "2.0 root hub"
Revision: "5.11"
Serial ID: --
Driver: "hub"
Driver Modules: "usbcore"
Speed: 480 Mbps
Module Alias: "usb:v1D6Bp0002d0511dc09dsc00dp00ic09isc00ip00in00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #30 (USB Controller)
60: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: ADDn.e2H5vPw9ceD
Parent ID: k4bc.FHd55n4xKo7
SysFS ID: /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1:1.0
SysFS BusID: 1-1:1.0
Hardware Class: hub
Model: "Intel Hub"
Hotplug: USB
Vendor: usb 0x8087 "Intel Corp."
Device: usb 0x8008
Revision: "0.04"
Driver: "hub"
Driver Modules: "usbcore"
Speed: 480 Mbps
Module Alias: "usb:v8087p8008d0004dc09dsc00dp01ic09isc00ip00in00"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #59 (Hub)
61: USB 00.0: 10a00 Hub
[Created at usb.122]
Unique ID: pBe4.oLWCeziExdF
Parent ID: 1GTX.QVbl9gy6VX6
SysFS ID: /devices/pci0000:00/0000:00:1d.0/usb2/2-0:1.0
SysFS BusID: 2-0:1.0
Hardware Class: hub
Model: "Linux Foundation 2.0 root hub"
Hotplug: USB
Vendor: usb 0x1d6b "Linux Foundation"
Device: usb 0x0002 "2.0 root hub"
Revision: "5.11"