ubuntuusers.de

Alsa erkennt dmx 6fire usb nicht

Autor:
woofy
Datum:
4. März 2016 10:50
Code:
  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
[    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] e820: last_pfn = 0x3ff40 max_arch_pfn = 0x1000000
[    0.000000] MTRR default type: uncachable
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-BFFFF uncachable
[    0.000000]   C0000-CFFFF write-protect
[    0.000000]   D0000-DFFFF uncachable
[    0.000000]   E0000-E7FFF write-protect
[    0.000000]   E8000-EFFFF write-back
[    0.000000]   F0000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 0FEDA0000 mask FFFFE0000 write-back
[    0.000000]   1 base 0FFF80000 mask FFFF80000 write-protect
[    0.000000]   2 base 000000000 mask FC0000000 write-back
[    0.000000]   3 disabled
[    0.000000]   4 disabled
[    0.000000]   5 disabled
[    0.000000]   6 disabled
[    0.000000]   7 disabled
[    0.000000] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WC  UC- UC  
[    0.000000] Scanning 1 areas for low memory corruption
[    0.000000] initial memory mapped: [mem 0x00000000-0x021fffff]
[    0.000000] Base memory trampoline at [c009b000] 9b000 size 16384
[    0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
[    0.000000]  [mem 0x00000000-0x000fffff] page 4k
[    0.000000] init_memory_mapping: [mem 0x37800000-0x379fffff]
[    0.000000]  [mem 0x37800000-0x379fffff] page 2M
[    0.000000] init_memory_mapping: [mem 0x20000000-0x377fffff]
[    0.000000]  [mem 0x20000000-0x377fffff] page 2M
[    0.000000] init_memory_mapping: [mem 0x00100000-0x1fffffff]
[    0.000000]  [mem 0x00100000-0x001fffff] page 4k
[    0.000000]  [mem 0x00200000-0x1fffffff] page 2M
[    0.000000] init_memory_mapping: [mem 0x37a00000-0x37bfdfff]
[    0.000000]  [mem 0x37a00000-0x37bfdfff] page 4k
[    0.000000] BRK [0x01c9f000, 0x01c9ffff] PGTABLE
[    0.000000] BRK [0x01ca0000, 0x01ca0fff] PGTABLE
[    0.000000] RAMDISK: [mem 0x35aca000-0x36d5cfff]
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x00000000000F0180 000014 (v00 TOSHIB)
[    0.000000] ACPI: RSDT 0x000000003FF40000 00002C (v01 TOSHIB 750      00970814 TASM 04010000)
[    0.000000] ACPI: FACP 0x000000003FF40054 000084 (v02 TOSHIB 750      00970814 TASM 04010000)
[    0.000000] ACPI: DSDT 0x000000003FF400D8 006D2D (v01 TOSHIB 9100     20041220 MSFT 0100000A)
[    0.000000] ACPI: FACS 0x00000000000EEE00 000040
[    0.000000] ACPI: BOOT 0x000000003FF4002C 000028 (v01 TOSHIB 750      00970814 TASM 04010000)
[    0.000000] 131MB HIGHMEM available.
[    0.000000] 891MB LOWMEM available.
[    0.000000]   mapped low ram: 0 - 37bfe000
[    0.000000]   low ram: 0 - 37bfe000
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.000000]   Normal   [mem 0x0000000001000000-0x0000000037bfdfff]
[    0.000000]   HighMem  [mem 0x0000000037bfe000-0x000000003ff3ffff]
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000000001000-0x000000000009efff]
[    0.000000]   node   0: [mem 0x0000000000100000-0x000000003ff3ffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000003ff3ffff]
[    0.000000] On node 0 totalpages: 261854
[    0.000000]   DMA zone: 40 pages used for memmap
[    0.000000]   DMA zone: 0 pages reserved
[    0.000000]   DMA zone: 3998 pages, LIFO batch:0
[    0.000000]   Normal zone: 2190 pages used for memmap
[    0.000000]   Normal zone: 224254 pages, LIFO batch:31
[    0.000000]   HighMem zone: 33602 pages, LIFO batch:7
[    0.000000] Using APIC driver default
[    0.000000] ACPI: PM-Timer IO Port: 0xee08
[    0.000000] smpboot: Allowing 1 CPUs, 0 hotplug CPUs
[    0.000000] Local APIC disabled by BIOS -- you can enable it with "lapic"
[    0.000000] APIC: disable apic facility
[    0.000000] APIC: switched to apic NOOP
[    0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.000000] PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
[    0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000dffff]
[    0.000000] PM: Registered nosave memory: [mem 0x000e0000-0x000edfff]
[    0.000000] PM: Registered nosave memory: [mem 0x000ee000-0x000eefff]
[    0.000000] PM: Registered nosave memory: [mem 0x000ef000-0x000fffff]
[    0.000000] e820: [mem 0x40000000-0xfed9ffff] available for PCI devices
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[    0.000000] setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:1 nr_node_ids:1
[    0.000000] PERCPU: Embedded 19 pages/cpu @f71c4000 s47180 r0 d30644 u77824
[    0.000000] pcpu-alloc: s47180 r0 d30644 u77824 alloc=19*4096
[    0.000000] pcpu-alloc: [0] 0 
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 259624
[    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-4.2.0-30-generic root=UUID=c481813b-a149-49f9-980f-067b6c2822cb ro quiet splash vt.handoff=7
[    0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes)
[    0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
[    0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
[    0.000000] Initializing CPU#0
[    0.000000] Initializing HighMem for node 0 (00037bfe:0003ff40)
[    0.000000] Initializing Movable for node 0 (00000000:00000000)
[    0.000000] Memory: 1004120K/1047416K available (7247K kernel code, 752K rwdata, 3036K rodata, 976K init, 796K bss, 43296K reserved, 0K cma-reserved, 134408K highmem)
[    0.000000] virtual kernel memory layout:
[    0.000000]     fixmap  : 0xfff15000 - 0xfffff000   ( 936 kB)
[    0.000000]     pkmap   : 0xffc00000 - 0xffe00000   (2048 kB)
[    0.000000]     vmalloc : 0xf83fe000 - 0xffbfe000   ( 120 MB)
[    0.000000]     lowmem  : 0xc0000000 - 0xf7bfe000   ( 891 MB)
[    0.000000]       .init : 0xc1acb000 - 0xc1bbf000   ( 976 kB)
[    0.000000]       .data : 0xc17140a1 - 0xc1ac9040   (3795 kB)
[    0.000000]       .text : 0xc1000000 - 0xc17140a1   (7248 kB)
[    0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok.
[    0.000000] SLUB: HWalign=128, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
[    0.000000] Hierarchical RCU implementation.
[    0.000000] 	Build-time adjustment of leaf fanout to 32.
[    0.000000] 	RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=1.
[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=32, nr_cpu_ids=1
[    0.000000] NR_IRQS:2304 nr_irqs:32 16
[    0.000000] CPU 0 irqstacks, hard=f5432000 soft=f5434000
[    0.000000] vt handoff: transparent VT on vt#7
[    0.000000] Console: colour dummy device 80x25
[    0.000000] console [tty0] enabled
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] tsc: Detected 1993.482 MHz processor
[    0.004027] Calibrating delay loop (skipped), value calculated using timer frequency.. 3986.96 BogoMIPS (lpj=7973928)
[    0.004038] pid_max: default: 32768 minimum: 301
[    0.004055] ACPI: Core revision 20150619
[    0.015468] ACPI: All ACPI Tables successfully acquired
[    0.015481] ACPI: setting ELCR to 0200 (from 0a00)
[    0.015524] Security Framework initialized
[    0.015553] AppArmor: AppArmor initialized
[    0.015557] Yama: becoming mindful.
[    0.015655] Mount-cache hash table entries: 2048 (order: 1, 8192 bytes)
[    0.015661] Mountpoint-cache hash table entries: 2048 (order: 1, 8192 bytes)
[    0.016183] Initializing cgroup subsys blkio
[    0.016196] Initializing cgroup subsys memory
[    0.016219] Initializing cgroup subsys devices
[    0.016228] Initializing cgroup subsys freezer
[    0.016236] Initializing cgroup subsys net_cls
[    0.016243] Initializing cgroup subsys perf_event
[    0.016250] Initializing cgroup subsys net_prio
[    0.016258] Initializing cgroup subsys hugetlb
[    0.016305] CPU0: Hyper-Threading is disabled
[    0.016316] mce: CPU supports 4 MCE banks
[    0.016348] Last level iTLB entries: 4KB 128, 2MB 128, 4MB 128
[    0.016354] Last level dTLB entries: 4KB 64, 2MB 0, 4MB 64, 1GB 0
[    0.041664] Freeing SMP alternatives memory: 28K (c1bbf000 - c1bc6000)
[    0.045496] ftrace: allocating 30290 entries in 60 pages
[    0.064287] smpboot: weird, boot CPU (#0) not listed by the BIOS
[    0.064297] smpboot: SMP motherboard not detected
[    0.064300] smpboot: SMP disabled
[    0.064304] smpboot: Local APIC not detected. Using dummy APIC emulation.
[    0.064361] Performance Events: Netburst events, 
[    0.064379] no APIC, boot with the "lapic" boot parameter to force-enable it.
[    0.064383] no hardware sampling interrupt available.
[    0.064389] Netburst P4/Xeon PMU driver.
[    0.064394] ... version:                0
[    0.064397] ... bit width:              40
[    0.064399] ... generic registers:      18
[    0.064401] ... value mask:             000000ffffffffff
[    0.064404] ... max period:             0000007fffffffff
[    0.064406] ... fixed-purpose events:   0
[    0.064409] ... event mask:             000000000003ffff
[    0.068608] x86: Booted up 1 node, 1 CPUs
[    0.068616] smpboot: Total of 1 processors activated (3986.96 BogoMIPS)
[    0.068745] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.068952] devtmpfs: initialized
[    0.069550] evm: security.selinux
[    0.069554] evm: security.SMACK64
[    0.069557] evm: security.SMACK64EXEC
[    0.069559] evm: security.SMACK64TRANSMUTE
[    0.069561] evm: security.SMACK64MMAP
[    0.069564] evm: security.ima
[    0.069566] evm: security.capability
[    0.069760] PM: Registering ACPI NVS region [mem 0x000eee00-0x000eefff] (512 bytes)
[    0.069944] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.070089] pinctrl core: initialized pinctrl subsystem
[    0.070355] RTC time:  9:22:12, date: 03/04/16
[    0.070657] NET: Registered protocol family 16
[    0.071130] EISA bus registered
[    0.071138] cpuidle: using governor ladder
[    0.071143] cpuidle: using governor menu
[    0.071266] Simple Boot Flag at 0x7c set to 0x1
[    0.071286] clocksource: pit: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1601818034827 ns
[    0.071363] ACPI: bus type PCI registered
[    0.071369] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.071636] PCI: PCI BIOS revision 2.10 entry at 0xfd4c3, last bus=5
[    0.071640] PCI: Using configuration type 1 for base access
[    0.076165] ACPI: Added _OSI(Module Device)
[    0.076173] ACPI: Added _OSI(Processor Device)
[    0.076177] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.076180] ACPI: Added _OSI(Processor Aggregator Device)
[    0.082489] ACPI: Interpreter enabled
[    0.082510] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20150619/hwxface-580)
[    0.082518] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20150619/hwxface-580)
[    0.082546] ACPI: (supports S0 S3 S4 S5)
[    0.082551] ACPI: Using PIC for interrupt routing
[    0.082602] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.087107] ACPI: Power Resource [PDOC] (off)
[    0.087333] acpi PNP0A05:00: ACPI dock station (docks/bays count: 1)
[    0.092016] acpi LNXIOBAY:00: ACPI dock station (docks/bays count: 2)
[    0.093700] [Firmware Bug]: ACPI: No _BQC method, cannot determine initial brightness
[    0.095681] ACPI: Power Resource [PFAN] (off)
[    0.096336] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 *11 12)
[    0.096486] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 10 *11 12)
[    0.096631] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 10 *11 12)
[    0.096775] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 10 *11 12)
[    0.096919] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 10 *11 12)
[    0.097062] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 *11 12)
[    0.097275] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 10 *11 12)
[    0.097418] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 10 *11 12)
[    0.097485] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.097496] acpi PNP0A03:00: _OSC: OS supports [ASPM ClockPM Segments MSI]
[    0.097508] acpi PNP0A03:00: _OSC failed (AE_NOT_FOUND); disabling ASPM
[    0.097545] acpi PNP0A03:00: fail to add MMCONFIG information, can't access extended PCI configuration space under this bridge.
[    0.097757] PCI host bridge to bus 0000:00
[    0.097765] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.097772] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    0.097776] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.097781] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.097785] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dffff window]
[    0.097790] pci_bus 0000:00: root bus resource [mem 0x40100000-0xfed9ffff window]
[    0.097794] pci_bus 0000:00: root bus resource [mem 0xfedc0000-0xffb7ffff window]
[    0.097799] pci_bus 0000:00: root bus resource [mem 0xffc00000-0xffefffff window]
[    0.097819] pci 0000:00:00.0: [8086:1a30] type 00 class 0x060000
[    0.097835] pci 0000:00:00.0: reg 0x10: [mem 0xe0000000-0xefffffff pref]
[    0.098017] pci 0000:00:01.0: [8086:1a31] type 01 class 0x060400
[    0.098293] pci 0000:00:1d.0: [8086:2482] type 00 class 0x0c0300
[    0.098353] pci 0000:00:1d.0: reg 0x20: [io  0xefe0-0xefff]
[    0.098475] pci 0000:00:1d.0: System wakeup disabled by ACPI
[    0.098577] pci 0000:00:1d.1: [8086:2484] type 00 class 0x0c0300
[    0.098637] pci 0000:00:1d.1: reg 0x20: [io  0xef80-0xef9f]
[    0.098758] pci 0000:00:1d.1: System wakeup disabled by ACPI
[    0.098859] pci 0000:00:1d.2: [8086:2487] type 00 class 0x0c0300
[    0.098905] pci 0000:00:1d.2: reg 0x20: [io  0x0000-0x001f]
[    0.099009] pci 0000:00:1d.2: System wakeup disabled by ACPI
[    0.099189] pci 0000:00:1e.0: [8086:2448] type 01 class 0x060400
[    0.099366] pci 0000:00:1f.0: [8086:248c] type 00 class 0x060100
[    0.099459] pci 0000:00:1f.0: can't claim BAR 13 [io  0xee00-0xee7f]: address conflict with ACPI CPU throttle [io  0xee10-0xee15]
[    0.099468] pci 0000:00:1f.0: quirk: [io  0xeec0-0xeeff] claimed by ICH4 GPIO
[    0.099598] pci 0000:00:1f.1: [8086:248a] type 00 class 0x01018a
[    0.099621] pci 0000:00:1f.1: reg 0x10: [io  0xcff8-0xcfff]
[    0.099635] pci 0000:00:1f.1: reg 0x14: [io  0xcff4-0xcff7]
[    0.099649] pci 0000:00:1f.1: reg 0x18: [io  0xcfe8-0xcfef]
[    0.099663] pci 0000:00:1f.1: reg 0x1c: [io  0xcfe4-0xcfe7]
[    0.099677] pci 0000:00:1f.1: reg 0x20: [io  0xcfa0-0xcfaf]
[    0.099692] pci 0000:00:1f.1: reg 0x24: [mem 0x00000000-0x000003ff]
[    0.099710] pci 0000:00:1f.1: legacy IDE quirk: reg 0x10: [io  0x01f0-0x01f7]
[    0.099714] pci 0000:00:1f.1: legacy IDE quirk: reg 0x14: [io  0x03f6]
[    0.099718] pci 0000:00:1f.1: legacy IDE quirk: reg 0x18: [io  0x0170-0x0177]
[    0.099722] pci 0000:00:1f.1: legacy IDE quirk: reg 0x1c: [io  0x0376]
[    0.099956] pci 0000:01:00.0: [5333:8c2e] type 00 class 0x030000
[    0.099977] pci 0000:01:00.0: reg 0x10: [mem 0xffe80000-0xffefffff]
[    0.099990] pci 0000:01:00.0: reg 0x14: [mem 0xdc000000-0xdfffffff pref]
[    0.100025] pci 0000:01:00.0: reg 0x18: [mem 0xd8000000-0xdbffffff pref]
[    0.100038] pci 0000:01:00.0: reg 0x1c: [mem 0xd6000000-0xd7ffffff pref]
[    0.100065] pci 0000:01:00.0: reg 0x30: [mem 0x000c0000-0x000cffff pref]
[    0.100103] pci 0000:01:00.0: supports D1 D2
[    0.100316] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.100325] pci 0000:00:01.0:   bridge window [mem 0xffe00000-0xffefffff]
[    0.100331] pci 0000:00:01.0:   bridge window [mem 0xd6000000-0xdfffffff pref]
[    0.100540] pci 0000:02:07.0: [104c:8023] type 00 class 0x0c0010
[    0.100563] pci 0000:02:07.0: reg 0x10: [mem 0x00000000-0x000007ff]
[    0.100575] pci 0000:02:07.0: reg 0x14: [mem 0x00000000-0x00003fff]
[    0.100649] pci 0000:02:07.0: supports D1 D2
[    0.100654] pci 0000:02:07.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.100804] pci 0000:02:08.0: [8086:1031] type 00 class 0x020000
[    0.100828] pci 0000:02:08.0: reg 0x10: [mem 0xff9ff000-0xff9fffff]
[    0.100841] pci 0000:02:08.0: reg 0x14: [io  0xdf40-0xdf7f]
[    0.100922] pci 0000:02:08.0: supports D1 D2
[    0.100928] pci 0000:02:08.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.101023] pci 0000:02:08.0: System wakeup disabled by ACPI
[    0.101203] pci 0000:02:0a.0: [104c:ac50] type 02 class 0x060700
[    0.101225] pci 0000:02:0a.0: reg 0x10: [mem 0x00000000-0x00000fff]
[    0.101264] pci 0000:02:0a.0: supports D1 D2
[    0.101270] pci 0000:02:0a.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.101350] pci 0000:02:0a.0: System wakeup disabled by ACPI
[    0.101458] pci 0000:02:0b.0: [1179:0617] type 02 class 0x060700
[    0.101481] pci 0000:02:0b.0: reg 0x10: [mem 0x00000000-0x00000fff]
[    0.101592] pci 0000:02:0b.0: System wakeup disabled by ACPI
[    0.101700] pci 0000:02:0b.1: [1179:0617] type 02 class 0x060700
[    0.101722] pci 0000:02:0b.1: reg 0x10: [mem 0x00000000-0x00000fff]
[    0.101839] pci 0000:02:0b.1: System wakeup disabled by ACPI
[    0.101955] pci 0000:02:0d.0: [1179:0805] type 00 class 0x088000
[    0.101977] pci 0000:02:0d.0: reg 0x10: [mem 0x00000000-0x000001ff]
[    0.102058] pci 0000:02:0d.0: supports D1 D2
[    0.102064] pci 0000:02:0d.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.102304] pci 0000:00:1e.0: PCI bridge to [bus 02-05] (subtractive decode)
[    0.102312] pci 0000:00:1e.0:   bridge window [io  0xd000-0xdfff]
[    0.102319] pci 0000:00:1e.0:   bridge window [mem 0xff900000-0xff9fffff]
[    0.102327] pci 0000:00:1e.0:   bridge window [io  0x0000-0x0cf7 window] (subtractive decode)
[    0.102332] pci 0000:00:1e.0:   bridge window [io  0x0d00-0xffff window] (subtractive decode)
[    0.102336] pci 0000:00:1e.0:   bridge window [mem 0x000a0000-0x000bffff window] (subtractive decode)
[    0.102341] pci 0000:00:1e.0:   bridge window [mem 0x000d8000-0x000dffff window] (subtractive decode)
[    0.102345] pci 0000:00:1e.0:   bridge window [mem 0x40100000-0xfed9ffff window] (subtractive decode)
[    0.102350] pci 0000:00:1e.0:   bridge window [mem 0xfedc0000-0xffb7ffff window] (subtractive decode)
[    0.102354] pci 0000:00:1e.0:   bridge window [mem 0xffc00000-0xffefffff window] (subtractive decode)
[    0.102454] pci_bus 0000:03: busn_res: can not insert [bus 03-ff] under [bus 02-05] (conflicts with (null) [bus 02-05])
[    0.102463] pci_bus 0000:03: busn_res: [bus 03-ff] end is updated to 04
[    0.102545] pci_bus 0000:05: busn_res: can not insert [bus 05-ff] under [bus 02-05] (conflicts with (null) [bus 02-05])
[    0.102553] pci_bus 0000:05: busn_res: [bus 05-ff] end is updated to 08
[    0.102558] pci_bus 0000:05: busn_res: can not insert [bus 05-08] under [bus 02-05] (conflicts with (null) [bus 02-05])
[    0.102565] pci_bus 0000:05: [bus 05-08] partially hidden behind transparent bridge 0000:02 [bus 02-05]
[    0.102639] pci_bus 0000:09: busn_res: can not insert [bus 09-ff] under [bus 02-05] (conflicts with (null) [bus 02-05])
[    0.102647] pci_bus 0000:09: busn_res: [bus 09-ff] end is updated to 0c
[    0.102652] pci_bus 0000:09: busn_res: can not insert [bus 09-0c] under [bus 02-05] (conflicts with (null) [bus 02-05])
[    0.102659] pci_bus 0000:09: [bus 09-0c] partially hidden behind transparent bridge 0000:02 [bus 02-05]
[    0.102665] pci 0000:00:1e.0: bridge has subordinate 05 but max busn 0c
[    0.102681] pci_bus 0000:00: on NUMA node 0
[    0.105284] ACPI: Enabled 1 GPEs in block 00 to 0F
[    0.105731] vgaarb: setting as boot device: PCI:0000:01:00.0
[    0.105738] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
[    0.105743] vgaarb: loaded
[    0.105748] vgaarb: bridge control possible 0000:01:00.0
[    0.106566] SCSI subsystem initialized
[    0.107268] libata version 3.00 loaded.
[    0.107358] ACPI: bus type USB registered
[    0.107420] usbcore: registered new interface driver usbfs
[    0.107447] usbcore: registered new interface driver hub
[    0.107470] usbcore: registered new device driver usb
[    0.107885] PCI: Using ACPI for IRQ routing
[    0.107940] PCI: pci_cache_line_size set to 64 bytes
[    0.108038] e820: reserve RAM buffer [mem 0x0009fc00-0x0009ffff]
[    0.108044] e820: reserve RAM buffer [mem 0x3ff40000-0x3fffffff]
[    0.108436] NetLabel: Initializing
[    0.108441] NetLabel:  domain hash size = 128
[    0.108443] NetLabel:  protocols = UNLABELED CIPSOv4
[    0.108471] NetLabel:  unlabeled traffic allowed by default
[    0.108803] clocksource: Switched to clocksource pit
[    0.128208] AppArmor: AppArmor Filesystem Enabled
[    0.128438] pnp: PnP ACPI init
[    0.129825] system 00:00: [mem 0x00000000-0x0009ffff] could not be reserved
[    0.129833] system 00:00: [mem 0x000e0000-0x000effff] could not be reserved
[    0.129839] system 00:00: [mem 0x000f0000-0x000fffff] could not be reserved
[    0.129844] system 00:00: [mem 0x00100000-0x3ff3ffff] could not be reserved
[    0.129849] system 00:00: [mem 0x3ff40000-0x3ff4ffff] could not be reserved
[    0.129854] system 00:00: [mem 0x3ff50000-0x3ffdffff] has been reserved
[    0.129859] system 00:00: [mem 0x3ffe0000-0x3fffffff] has been reserved
[    0.129866] system 00:00: [mem 0xfeda0000-0xfedbffff] has been reserved
[    0.129872] system 00:00: [mem 0xffb80000-0xffbfffff] has been reserved
[    0.129877] system 00:00: [mem 0xfff00000-0xffffffff] could not be reserved
[    0.129886] system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
[    0.130320] pnp 00:01: Plug and Play ACPI device, IDs PNP0303 (active)
[    0.130416] pnp 00:02: Plug and Play ACPI device, IDs PNP0f13 (active)
[    0.130494] pnp 00:03: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.130635] system 00:04: [io  0x0480-0x048f] has been reserved
[    0.130642] system 00:04: [io  0x04d0-0x04d1] has been reserved
[    0.130648] system 00:04: [io  0x0680-0x06ff] has been reserved
[    0.130653] system 00:04: [io  0xe000-0xe07f] has been reserved
[    0.130658] system 00:04: [io  0xe080-0xe0ff] has been reserved
[    0.130663] system 00:04: [io  0xe400-0xe47f] has been reserved
[    0.130668] system 00:04: [io  0xe480-0xe4ff] has been reserved
[    0.130672] system 00:04: [io  0xe800-0xe87f] has been reserved
[    0.130677] system 00:04: [io  0xe880-0xe8ff] has been reserved
[    0.130682] system 00:04: [io  0xec00-0xec7f] has been reserved
[    0.130687] system 00:04: [io  0xec80-0xecff] has been reserved
[    0.130692] system 00:04: [io  0xee00-0xee87] could not be reserved
[    0.130697] system 00:04: [io  0xeeac] has been reserved
[    0.130702] system 00:04: [io  0xeeb0-0xeebf] has been reserved
[    0.130706] system 00:04: [io  0xeec0-0xeeff] has been reserved
[    0.130711] system 00:04: [io  0xef00-0xef1f] has been reserved
[    0.130716] system 00:04: [io  0xef20-0xef3f] has been reserved
[    0.130723] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.132612] pnp 00:05: Plug and Play ACPI device, IDs PNP0501 (active)
[    0.133610] pnp 00:06: Plug and Play ACPI device, IDs SMCf010 (disabled)
[    0.134609] pnp 00:07: Plug and Play ACPI device, IDs PNP0401 (disabled)
[    0.135284] pnp: PnP ACPI: found 8 devices
[    0.135299] PnPBIOS: Disabled by ACPI PNP
[    0.174420] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.174462] clocksource: Switched to clocksource acpi_pm
[    0.174481] pci 0000:01:00.0: can't claim BAR 6 [mem 0x000c0000-0x000cffff pref]: no compatible bridge window
[    0.174548] pci 0000:02:0a.0: res[15]=[mem 0x04000000-0x03ffffff pref] res_to_dev_res add_size 4000000 min_align 4000000
[    0.174555] pci 0000:02:0a.0: res[15]=[mem 0x04000000-0x03ffffff pref] res_to_dev_res add_size 4000000 min_align 4000000
[    0.174561] pci 0000:02:0b.0: res[15]=[mem 0x04000000-0x03ffffff pref] res_to_dev_res add_size 4000000 min_align 4000000
[    0.174566] pci 0000:02:0b.0: res[15]=[mem 0x04000000-0x03ffffff pref] res_to_dev_res add_size 4000000 min_align 4000000
[    0.174572] pci 0000:02:0b.1: res[15]=[mem 0x04000000-0x03ffffff pref] res_to_dev_res add_size 4000000 min_align 4000000
[    0.174577] pci 0000:02:0b.1: res[15]=[mem 0x04000000-0x03ffffff pref] res_to_dev_res add_size 4000000 min_align 4000000
[    0.174584] pci 0000:00:1e.0: bridge window [mem 0x04000000-0x03ffffff pref] to [bus 02-05] add_size c000000 add_align 4000000
[    0.174595] pci 0000:00:1f.0: BAR 13: [io  size 0x0080] has bogus alignment
[    0.174602] pci 0000:00:1e.0: res[15]=[mem 0x04000000-0x03ffffff pref] res_to_dev_res add_size c000000 min_align 4000000
[    0.174607] pci 0000:00:1e.0: res[15]=[mem 0x04000000-0x0fffffff pref] res_to_dev_res add_size c000000 min_align 4000000
[    0.174623] pci 0000:00:1e.0: BAR 15: assigned [mem 0x44000000-0x4fffffff pref]
[    0.174630] pci 0000:00:1f.1: BAR 5: assigned [mem 0x40100000-0x401003ff]
[    0.174642] pci 0000:00:1d.2: BAR 4: assigned [io  0x1000-0x101f]
[    0.174655] pci 0000:01:00.0: BAR 6: no space for [mem size 0x00010000 pref]
[    0.174660] pci 0000:01:00.0: BAR 6: failed to assign [mem size 0x00010000 pref]
[    0.174665] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.174673] pci 0000:00:01.0:   bridge window [mem 0xffe00000-0xffefffff]
[    0.174679] pci 0000:00:01.0:   bridge window [mem 0xd6000000-0xdfffffff pref]
[    0.174700] pci 0000:02:0a.0: res[15]=[mem 0x04000000-0x03ffffff pref] res_to_dev_res add_size 4000000 min_align 4000000
[    0.174706] pci 0000:02:0a.0: res[15]=[mem 0x04000000-0x07ffffff pref] res_to_dev_res add_size 4000000 min_align 4000000
[    0.174711] pci 0000:02:0a.0: res[16]=[mem 0x04000000-0x03ffffff] res_to_dev_res add_size 4000000 min_align 4000000
[    0.174716] pci 0000:02:0a.0: res[16]=[mem 0x04000000-0x07ffffff] res_to_dev_res add_size 4000000 min_align 4000000
[    0.174721] pci 0000:02:0b.0: res[15]=[mem 0x04000000-0x03ffffff pref] res_to_dev_res add_size 4000000 min_align 4000000
[    0.174726] pci 0000:02:0b.0: res[15]=[mem 0x04000000-0x07ffffff pref] res_to_dev_res add_size 4000000 min_align 4000000
[    0.174731] pci 0000:02:0b.0: res[16]=[mem 0x04000000-0x03ffffff] res_to_dev_res add_size 4000000 min_align 4000000
[    0.174736] pci 0000:02:0b.0: res[16]=[mem 0x04000000-0x07ffffff] res_to_dev_res add_size 4000000 min_align 4000000
[    0.174741] pci 0000:02:0b.1: res[15]=[mem 0x04000000-0x03ffffff pref] res_to_dev_res add_size 4000000 min_align 4000000
[    0.174746] pci 0000:02:0b.1: res[15]=[mem 0x04000000-0x07ffffff pref] res_to_dev_res add_size 4000000 min_align 4000000
[    0.174751] pci 0000:02:0b.1: res[16]=[mem 0x04000000-0x03ffffff] res_to_dev_res add_size 4000000 min_align 4000000
[    0.174756] pci 0000:02:0b.1: res[16]=[mem 0x04000000-0x07ffffff] res_to_dev_res add_size 4000000 min_align 4000000
[    0.174761] pci 0000:02:0a.0: res[13]=[io  0x0100-0x00ff] res_to_dev_res add_size 100 min_align 100
[    0.174766] pci 0000:02:0a.0: res[13]=[io  0x0100-0x01ff] res_to_dev_res add_size 100 min_align 100
[    0.174771] pci 0000:02:0a.0: res[14]=[io  0x0100-0x00ff] res_to_dev_res add_size 100 min_align 100
[    0.174776] pci 0000:02:0a.0: res[14]=[io  0x0100-0x01ff] res_to_dev_res add_size 100 min_align 100
[    0.174780] pci 0000:02:0b.0: res[13]=[io  0x0100-0x00ff] res_to_dev_res add_size 100 min_align 100
[    0.174785] pci 0000:02:0b.0: res[13]=[io  0x0100-0x01ff] res_to_dev_res add_size 100 min_align 100
[    0.174790] pci 0000:02:0b.0: res[14]=[io  0x0100-0x00ff] res_to_dev_res add_size 100 min_align 100
[    0.174794] pci 0000:02:0b.0: res[14]=[io  0x0100-0x01ff] res_to_dev_res add_size 100 min_align 100
[    0.174799] pci 0000:02:0b.1: res[13]=[io  0x0100-0x00ff] res_to_dev_res add_size 100 min_align 100
[    0.174804] pci 0000:02:0b.1: res[13]=[io  0x0100-0x01ff] res_to_dev_res add_size 100 min_align 100
[    0.174809] pci 0000:02:0b.1: res[14]=[io  0x0100-0x00ff] res_to_dev_res add_size 100 min_align 100
[    0.174813] pci 0000:02:0b.1: res[14]=[io  0x0100-0x01ff] res_to_dev_res add_size 100 min_align 100
[    0.174822] pci 0000:02:0a.0: BAR 0: assigned [mem 0x50000000-0x50000fff]
[    0.174830] pci 0000:02:0a.0: BAR 15: assigned [mem 0x44000000-0x47ffffff pref]
[    0.174838] pci 0000:02:0a.0: BAR 16: assigned [mem 0x54000000-0x57ffffff]
[    0.174845] pci 0000:02:0b.0: BAR 0: assigned [mem 0x58000000-0x58000fff]
[    0.174853] pci 0000:02:0b.0: BAR 15: assigned [mem 0x48000000-0x4bffffff pref]
[    0.174861] pci 0000:02:0b.0: BAR 16: assigned [mem 0x5c000000-0x5fffffff]
[    0.174868] pci 0000:02:0b.1: BAR 0: assigned [mem 0x60000000-0x60000fff]
[    0.174877] pci 0000:02:0b.1: BAR 15: assigned [mem 0x4c000000-0x4fffffff pref]
[    0.174885] pci 0000:02:0b.1: BAR 16: assigned [mem 0x64000000-0x67ffffff]
[    0.174890] pci 0000:02:07.0: BAR 1: assigned [mem 0xff900000-0xff903fff]
[    0.174898] pci 0000:02:07.0: BAR 0: assigned [mem 0xff904000-0xff9047ff]
[    0.174907] pci 0000:02:0d.0: BAR 0: assigned [mem 0xff904800-0xff9049ff]
[    0.174915] pci 0000:02:0a.0: BAR 13: assigned [io  0xd000-0xd0ff]
[    0.174919] pci 0000:02:0a.0: BAR 14: assigned [io  0xd400-0xd4ff]
[    0.174924] pci 0000:02:0b.0: BAR 13: assigned [io  0xd800-0xd8ff]
[    0.174929] pci 0000:02:0b.0: BAR 14: assigned [io  0xdc00-0xdcff]
[    0.174936] pci 0000:02:0b.1: BAR 13: assigned [io  0x1400-0x14ff]
[    0.174943] pci 0000:02:0b.1: BAR 14: assigned [io  0x1800-0x18ff]
[    0.174952] pci 0000:02:0a.0: CardBus bridge to [bus 03-04]
[    0.174956] pci 0000:02:0a.0:   bridge window [io  0xd000-0xd0ff]
[    0.174963] pci 0000:02:0a.0:   bridge window [io  0xd400-0xd4ff]
[    0.174970] pci 0000:02:0a.0:   bridge window [mem 0x44000000-0x47ffffff pref]
[    0.174977] pci 0000:02:0a.0:   bridge window [mem 0x54000000-0x57ffffff]
[    0.174983] pci 0000:02:0b.0: CardBus bridge to [bus 05-08]
[    0.174987] pci 0000:02:0b.0:   bridge window [io  0xd800-0xd8ff]
[    0.174994] pci 0000:02:0b.0:   bridge window [io  0xdc00-0xdcff]
[    0.175002] pci 0000:02:0b.0:   bridge window [mem 0x48000000-0x4bffffff pref]
[    0.175009] pci 0000:02:0b.0:   bridge window [mem 0x5c000000-0x5fffffff]
[    0.175016] pci 0000:02:0b.1: CardBus bridge to [bus 09-0c]
[    0.175020] pci 0000:02:0b.1:   bridge window [io  0x1400-0x14ff]
[    0.175026] pci 0000:02:0b.1:   bridge window [io  0x1800-0x18ff]
[    0.175034] pci 0000:02:0b.1:   bridge window [mem 0x4c000000-0x4fffffff pref]
[    0.175041] pci 0000:02:0b.1:   bridge window [mem 0x64000000-0x67ffffff]
[    0.175048] pci 0000:00:1e.0: PCI bridge to [bus 02-05]
[    0.175053] pci 0000:00:1e.0:   bridge window [io  0xd000-0xdfff]
[    0.175062] pci 0000:00:1e.0:   bridge window [mem 0xff900000-0xff9fffff]
[    0.175069] pci 0000:00:1e.0:   bridge window [mem 0x44000000-0x4fffffff pref]
[    0.175080] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
[    0.175084] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
[    0.175089] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[    0.175093] pci_bus 0000:00: resource 7 [mem 0x000d8000-0x000dffff window]
[    0.175098] pci_bus 0000:00: resource 8 [mem 0x40100000-0xfed9ffff window]
[    0.175102] pci_bus 0000:00: resource 9 [mem 0xfedc0000-0xffb7ffff window]
[    0.175106] pci_bus 0000:00: resource 10 [mem 0xffc00000-0xffefffff window]
[    0.175111] pci_bus 0000:01: resource 1 [mem 0xffe00000-0xffefffff]
[    0.175116] pci_bus 0000:01: resource 2 [mem 0xd6000000-0xdfffffff pref]
[    0.175120] pci_bus 0000:02: resource 0 [io  0xd000-0xdfff]
[    0.175125] pci_bus 0000:02: resource 1 [mem 0xff900000-0xff9fffff]
[    0.175129] pci_bus 0000:02: resource 2 [mem 0x44000000-0x4fffffff pref]
[    0.175133] pci_bus 0000:02: resource 4 [io  0x0000-0x0cf7 window]
[    0.175137] pci_bus 0000:02: resource 5 [io  0x0d00-0xffff window]
[    0.175142] pci_bus 0000:02: resource 6 [mem 0x000a0000-0x000bffff window]
[    0.175146] pci_bus 0000:02: resource 7 [mem 0x000d8000-0x000dffff window]
[    0.175150] pci_bus 0000:02: resource 8 [mem 0x40100000-0xfed9ffff window]
[    0.175155] pci_bus 0000:02: resource 9 [mem 0xfedc0000-0xffb7ffff window]
[    0.175159] pci_bus 0000:02: resource 10 [mem 0xffc00000-0xffefffff window]
[    0.175164] pci_bus 0000:03: resource 0 [io  0xd000-0xd0ff]
[    0.175168] pci_bus 0000:03: resource 1 [io  0xd400-0xd4ff]
[    0.175172] pci_bus 0000:03: resource 2 [mem 0x44000000-0x47ffffff pref]
[    0.175177] pci_bus 0000:03: resource 3 [mem 0x54000000-0x57ffffff]
[    0.175181] pci_bus 0000:05: resource 0 [io  0xd800-0xd8ff]
[    0.175185] pci_bus 0000:05: resource 1 [io  0xdc00-0xdcff]
[    0.175189] pci_bus 0000:05: resource 2 [mem 0x48000000-0x4bffffff pref]
[    0.175230] pci_bus 0000:05: resource 3 [mem 0x5c000000-0x5fffffff]
[    0.175234] pci_bus 0000:09: resource 0 [io  0x1400-0x14ff]
[    0.175239] pci_bus 0000:09: resource 1 [io  0x1800-0x18ff]
[    0.175243] pci_bus 0000:09: resource 2 [mem 0x4c000000-0x4fffffff pref]
[    0.175247] pci_bus 0000:09: resource 3 [mem 0x64000000-0x67ffffff]
[    0.175332] NET: Registered protocol family 2
[    0.175776] TCP established hash table entries: 8192 (order: 3, 32768 bytes)
[    0.175813] TCP bind hash table entries: 8192 (order: 4, 65536 bytes)
[    0.175875] TCP: Hash tables configured (established 8192 bind 8192)
[    0.175983] UDP hash table entries: 512 (order: 2, 16384 bytes)
[    0.176001] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
[    0.176168] NET: Registered protocol family 1
[    0.176494] ACPI: PCI Interrupt Link [LNKA] enabled at IRQ 11
[    0.176499] PCI: setting IRQ 11 as level-triggered
[    0.176738] ACPI: PCI Interrupt Link [LNKD] enabled at IRQ 11
[    0.176798] pci 0000:00:1d.2: enabling device (0000 -> 0001)
[    0.176979] ACPI: PCI Interrupt Link [LNKC] enabled at IRQ 11
[    0.177044] pci 0000:01:00.0: Video device with shadowed ROM
[    0.177082] pci 0000:02:08.0: Firmware left e100 interrupts enabled; disabling
[    0.177112] PCI: CLS 32 bytes, default 64
[    0.177274] Trying to unpack rootfs image as initramfs...
[    0.931595] Freeing initrd memory: 19020K (f5aca000 - f6d5d000)
[    0.932227] microcode: CPU0 sig=0xf27, pf=0x8, revision=0x39
[    0.932377] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[    0.932628] Scanning for low memory corruption every 60 seconds
[    0.933334] futex hash table entries: 256 (order: 2, 16384 bytes)
[    0.933371] Initialise system trusted keyring
[    0.933429] audit: initializing netlink subsys (disabled)
[    0.933483] audit: type=2000 audit(1457083332.930:1): initialized
[    0.934143] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    0.938569] zpool: loaded
[    0.938576] zbud: loaded
[    0.938758] VFS: Disk quotas dquot_6.6.0
[    0.938865] VFS: Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[    0.940216] fuse init (API version 7.23)
[    0.940624] Key type big_key registered
[    0.941228] Key type asymmetric registered
[    0.941236] Asymmetric key parser 'x509' registered
[    0.941278] bounce: pool size: 64 pages
[    0.941391] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 249)
[    0.941479] io scheduler noop registered
[    0.941486] io scheduler deadline registered (default)
[    0.941573] io scheduler cfq registered
[    0.941901] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    0.941919] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    0.941996] vesafb: mode is 1024x768x32, linelength=4096, pages=0
[    0.941999] vesafb: scrolling: redraw
[    0.942004] vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    0.942046] vesafb: framebuffer at 0xdc000000, mapped to 0xf8600000, using 3072k, total 3072k
[    0.942333] Console: switching to colour frame buffer device 128x48
[    0.942366] fb0: VESA VGA frame buffer device
[    0.942627] ACPI: AC Adapter [ADP1] (on-line)
[    0.942793] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input0
[    0.942834] ACPI: Lid Switch [LID]
[    0.942941] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[    0.942949] ACPI: Power Button [PWRF]
[    0.943367] tsc: Marking TSC unstable due to TSC halts in idle
[    0.943383] ACPI: acpi_idle registered with cpuidle
[    0.944605] thermal LNXTHERM:00: registered as thermal_zone0
[    0.944613] ACPI: Thermal Zone [THRM] (59 C)
[    0.944724] ACPI: Battery Slot [BAT1] (battery absent)
[    0.944790] ACPI: Battery Slot [BAT2] (battery absent)
[    0.944893] GHES: HEST is not enabled!
[    0.944948] isapnp: Scanning for PnP cards...
[    0.950706] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    0.971248] 00:05: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    1.015150] serial 00:06: [io  0x02f8-0x02ff]
[    1.015209] serial 00:06: [irq 5]
[    1.015219] serial 00:06: [io  0x0100-0x0107]
[    1.015225] serial 00:06: [dma 1]
[    1.019266] serial 00:06: activated
[    1.019292] 00:06: ttyS1 at I/O 0x2f8 (irq = 5, base_baud = 115200) is a CIR port
[    1.019745] serial 00:06: disabled
[    1.023403] Linux agpgart interface v0.103
[    1.023545] agpgart-intel 0000:00:00.0: Intel i845 Chipset
[    1.038236] agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0xe0000000
[    1.089065] brd: module loaded
[    1.092203] loop: module loaded
[    1.092639] ata_piix 0000:00:1f.1: version 2.13
[    1.094224] scsi host0: ata_piix
[    1.094442] scsi host1: ata_piix
[    1.094558] ata1: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0xcfa0 irq 14
[    1.094563] ata2: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0xcfa8 irq 15
[    1.094812] libphy: Fixed MDIO Bus: probed
[    1.094820] tun: Universal TUN/TAP device driver, 1.6
[    1.094822] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[    1.095160] PPP generic driver version 2.4.2
[    1.095379] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    1.095396] ehci-pci: EHCI PCI platform driver
[    1.095426] ehci-platform: EHCI generic platform driver
[    1.095452] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    1.095462] ohci-pci: OHCI PCI platform driver
[    1.095491] ohci-platform: OHCI generic platform driver
[    1.095520] uhci_hcd: USB Universal Host Controller Interface driver
[    1.095643] uhci_hcd 0000:00:1d.0: UHCI Host Controller
[    1.095659] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 1
[    1.095671] uhci_hcd 0000:00:1d.0: detected 2 ports
[    1.095706] uhci_hcd 0000:00:1d.0: irq 11, io base 0x0000efe0
[    1.095843] usb usb1: New USB device found, idVendor=1d6b, idProduct=0001
[    1.095849] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.095853] usb usb1: Product: UHCI Host Controller
[    1.095857] usb usb1: Manufacturer: Linux 4.2.0-30-generic uhci_hcd
[    1.095860] usb usb1: SerialNumber: 0000:00:1d.0
[    1.096260] hub 1-0:1.0: USB hub found
[    1.096278] hub 1-0:1.0: 2 ports detected
[    1.096612] uhci_hcd 0000:00:1d.1: UHCI Host Controller
[    1.096626] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 2
[    1.096640] uhci_hcd 0000:00:1d.1: detected 2 ports
[    1.096669] uhci_hcd 0000:00:1d.1: irq 11, io base 0x0000ef80
[    1.096793] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001
[    1.096799] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.096803] usb usb2: Product: UHCI Host Controller
[    1.096806] usb usb2: Manufacturer: Linux 4.2.0-30-generic uhci_hcd
[    1.096810] usb usb2: SerialNumber: 0000:00:1d.1
[    1.097100] hub 2-0:1.0: USB hub found
[    1.097117] hub 2-0:1.0: 2 ports detected
[    1.097429] uhci_hcd 0000:00:1d.2: UHCI Host Controller
[    1.097442] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 3
[    1.097451] uhci_hcd 0000:00:1d.2: detected 2 ports
[    1.097480] uhci_hcd 0000:00:1d.2: irq 11, io base 0x00001000
[    1.097593] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
[    1.097598] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.097602] usb usb3: Product: UHCI Host Controller
[    1.097606] usb usb3: Manufacturer: Linux 4.2.0-30-generic uhci_hcd
[    1.097610] usb usb3: SerialNumber: 0000:00:1d.2
[    1.097906] hub 3-0:1.0: USB hub found
[    1.097923] hub 3-0:1.0: 2 ports detected
[    1.098326] i8042: PNP: PS/2 Controller [PNP0303:KBC,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
[    1.103956] serio: i8042 KBD port at 0x60,0x64 irq 1
[    1.103971] serio: i8042 AUX port at 0x60,0x64 irq 12
[    1.104389] mousedev: PS/2 mouse device common for all mice
[    1.104821] rtc_cmos 00:03: RTC can wake from S4
[    1.105013] rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0
[    1.105042] rtc_cmos 00:03: alarms up to one year, 114 bytes nvram
[    1.105068] i2c /dev entries driver
[    1.105319] device-mapper: uevent: version 1.0.3
[    1.105571] device-mapper: ioctl: 4.33.0-ioctl (2015-8-18) initialised: dm-devel@redhat.com
[    1.105702] platform eisa.0: Probing EISA bus 0
[    1.105709] platform eisa.0: EISA: Cannot allocate resource for mainboard
[    1.105714] platform eisa.0: Cannot allocate resource for EISA slot 1
[    1.105718] platform eisa.0: Cannot allocate resource for EISA slot 2
[    1.105722] platform eisa.0: Cannot allocate resource for EISA slot 3
[    1.105726] platform eisa.0: Cannot allocate resource for EISA slot 4
[    1.105730] platform eisa.0: Cannot allocate resource for EISA slot 5
[    1.105734] platform eisa.0: Cannot allocate resource for EISA slot 6
[    1.105738] platform eisa.0: Cannot allocate resource for EISA slot 7
[    1.105742] platform eisa.0: Cannot allocate resource for EISA slot 8
[    1.105746] platform eisa.0: EISA: Detected 0 cards
[    1.105955] cpufreq-nforce2: No nForce2 chipset.
[    1.105969] ledtrig-cpu: registered to indicate activity on CPUs
[    1.105992] PCCT header not found.
[    1.106550] NET: Registered protocol family 10
[    1.107120] NET: Registered protocol family 17
[    1.107155] Key type dns_resolver registered
[    1.107560] Using IPI No-Shortcut mode
[    1.108325] Loading compiled-in X.509 certificates
[    1.116903] Loaded X.509 cert 'Build time autogenerated kernel key: 01d12f209e25b3d9093cec070f6984a3259c2917'
[    1.116944] registered taskstats version 1
[    1.116986] zswap: loading zswap
[    1.116991] zswap: using zbud pool
[    1.117007] zswap: using lzo compressor
[    1.166047] Key type trusted registered
[    1.176905] Key type encrypted registered
[    1.176930] AppArmor: AppArmor sha1 policy hashing enabled
[    1.176939] ima: No TPM chip found, activating TPM-bypass!
[    1.177030] evm: HMAC attrs: 0x1
[    1.177623] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input2
[    1.222331]   Magic number: 8:57:373
[    1.222419] vc vcsa1: hash matches
[    1.222593] rtc_cmos 00:03: setting system clock to 2016-03-04 09:22:13 UTC (1457083333)
[    1.222746] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[    1.222750] EDD information not available.
[    1.223030] PM: Hibernation image not present or could not be loaded.
[    1.267273] ata2.01: NODEV after polling detection
[    1.311493] ata2.00: ATAPI: HL-DT-STDVD-ROM GDR8081N, 0010, max UDMA/33
[    1.355261] isapnp: No Plug & Play device found
[    1.355278] ata1.00: ATA-5: IC25N040ATCS04-0, CA4OA71A, max UDMA/100
[    1.355283] ata1.00: 78140160 sectors, multi 0: LBA 
[    1.360249] ata2.00: configured for UDMA/33
[    1.368497] ata1.00: configured for UDMA/100
[    1.368701] scsi 0:0:0:0: Direct-Access     ATA      IC25N040ATCS04-0 A71A PQ: 0 ANSI: 5
[    1.369204] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    1.369517] sd 0:0:0:0: [sda] 78140160 512-byte logical blocks: (40.0 GB/37.2 GiB)
[    1.369633] sd 0:0:0:0: [sda] Write Protect is off
[    1.369639] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    1.369688] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    1.375967] scsi 1:0:0:0: CD-ROM            HL-DT-ST DVD-ROM GDR8081N 0010 PQ: 0 ANSI: 5
[    1.396932] sr 1:0:0:0: [sr0] scsi3-mmc drive: 10x/24x cd/rw xa/form2 cdda tray
[    1.396940] cdrom: Uniform CD-ROM driver Revision: 3.20
[    1.397285] sr 1:0:0:0: Attached scsi CD-ROM sr0
[    1.397420] sr 1:0:0:0: Attached scsi generic sg1 type 5
[    1.416289]  sda: sda1 sda2 < sda5 >
[    1.416971] sd 0:0:0:0: [sda] Attached SCSI disk
[    1.418592] Freeing unused kernel memory: 976K (c1acb000 - c1bbf000)
[    1.418698] Write protecting the kernel text: 7252k
[    1.418750] Write protecting the kernel read-only data: 3040k
[    1.456562] systemd-udevd[98]: starting version 204
[    1.464154] usb 1-1: new full-speed USB device number 2 using uhci_hcd
[    1.644762] toshsd 0000:02:0d.0: enabling device (0000 -> 0002)
[    1.660887] usb 1-1: New USB device found, idVendor=046d, idProduct=c52e
[    1.660896] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    1.660901] usb 1-1: Product: USB Receiver
[    1.660905] usb 1-1: Manufacturer: Logitech
[    1.742883] e100: Intel(R) PRO/100 Network Driver, 3.5.24-k2-NAPI
[    1.742892] e100: Copyright(c) 1999-2006 Intel Corporation
[    1.879117] ACPI: PCI Interrupt Link [LNKE] enabled at IRQ 11
[    1.928124] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x3978425a3e4, max_idle_ns: 881590819907 ns
[    1.977271] e100 0000:02:08.0 eth0: addr 0xff9ff000, irq 11, MAC addr 00:08:0d:29:06:50
[    1.978123] firewire_ohci 0000:02:07.0: enabling device (0000 -> 0002)
[    1.978481] ACPI: PCI Interrupt Link [LNKF] enabled at IRQ 11
[    2.024767] hidraw: raw HID events driver (C) Jiri Kosina
[    2.034519] firewire_ohci 0000:02:07.0: added OHCI v1.10 device as card 0, 4 IR + 8 IT contexts, quirks 0x2
[    2.065859] usbcore: registered new interface driver usbhid
[    2.065868] usbhid: USB HID core driver
[    2.086980] input: Logitech USB Receiver as /devices/pci0000:00/0000:00:1d.0/usb1/1-1/1-1:1.0/0003:046D:C52E.0001/input/input5
[    2.140567] hid-generic 0003:046D:C52E.0001: input,hidraw0: USB HID v1.11 Keyboard [Logitech USB Receiver] on usb-0000:00:1d.0-1/input0
[    2.143847] input: Logitech USB Receiver as /devices/pci0000:00/0000:00:1d.0/usb1/1-1/1-1:1.1/0003:046D:C52E.0002/input/input6
[    2.197954] hid-generic 0003:046D:C52E.0002: input,hiddev0,hidraw1: USB HID v1.11 Mouse [Logitech USB Receiver] on usb-0000:00:1d.0-1/input1
[    2.532280] firewire_core 0000:02:07.0: created device fw0: GUID 00003900003279cb, S400
[    3.036314] input: ImPS/2 Generic Wheel Mouse as /devices/platform/i8042/serio1/input/input4
[    3.056849] random: nonblocking pool is initialized
[    3.078782] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
[   20.452275] Adding 1046524k swap on /dev/sda5.  Priority:-1 extents:1 across:1046524k FS
[   21.188099] systemd-udevd[263]: starting version 204
[   22.582868] lp: driver loaded but no devices found
[   22.592538] parport_pc 00:07: [io  0x0378-0x037a]
[   22.592553] parport_pc 00:07: [io  0x0778-0x077a]
[   22.592608] parport_pc 00:07: [irq 7]
[   22.592616] parport_pc 00:07: [dma 1]
[   22.610781] parport_pc 00:07: activated
[   22.610795] parport_pc 00:07: reported by Plug and Play ACPI
[   22.611032] parport0: PC-style at 0x378 (0x778), irq 7, dma 1 [PCSPP,TRISTATE,COMPAT,EPP,ECP,DMA]
[   22.682552] ppdev: user-space parallel port driver
[   22.708402] lp0: using parport0 (interrupt-driven).
[   22.715400] ACPI: Video Device [VGA] (multi-head: yes  rom: yes  post: no)
[   22.715550] [Firmware Bug]: ACPI: No _BQC method, cannot determine initial brightness
[   22.720384] acpi device:1e: registered as cooling_device2
[   22.720702] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A03:00/device:1d/LNXVIDEO:00/input/input7
[   22.737133] intel_rng: FWH not detected
[   22.816184] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[   23.085957] wmi: Mapper loaded
[   23.102238] toshiba_bluetooth: Toshiba ACPI Bluetooth device driver
[   23.276996] NET: Registered protocol family 23
[   23.411388] toshiba_acpi: Toshiba Laptop ACPI Extras version 0.22
[   23.412451] toshiba_acpi: KBD function keys not supported
[   23.416066] input: Toshiba input device as /devices/virtual/input/input8
[   23.418301] toshiba_acpi: Illumination device not available
[   23.419559] toshiba_acpi: Keyboard illumination not available
[   23.423317] toshiba_acpi: Accelerometer not supported
[   23.423905] toshiba_acpi: USB Sleep and Charge not supported
[   23.425109] toshiba_acpi: USB Rapid Charge not supported
[   23.425982] toshiba_acpi: Sleep and Music not supported
[   23.427725] toshiba_acpi: USB 3 not supported
[   23.568004] audit: type=1400 audit(1457083355.840:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/sbin/dhclient" pid=317 comm="apparmor_parser"
[   23.568086] audit: type=1400 audit(1457083355.844:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=317 comm="apparmor_parser"
[   23.568097] audit: type=1400 audit(1457083355.844:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=317 comm="apparmor_parser"
[   23.572763] audit: type=1400 audit(1457083355.848:5): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=317 comm="apparmor_parser"
[   23.572785] audit: type=1400 audit(1457083355.848:6): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=317 comm="apparmor_parser"
[   23.573470] audit: type=1400 audit(1457083355.848:7): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=317 comm="apparmor_parser"
[   23.578392] yenta_cardbus 0000:02:0a.0: enabling device (0000 -> 0003)
[   23.578672] ACPI: PCI Interrupt Link [LNKH] enabled at IRQ 11
[   23.578710] yenta_cardbus 0000:02:0a.0: CardBus bridge found [12a3:ab01]
[   23.578734] yenta_cardbus 0000:02:0a.0: Enabling burst memory read transactions
[   23.578741] yenta_cardbus 0000:02:0a.0: Using CSCINT to route CSC interrupts to PCI
[   23.578744] yenta_cardbus 0000:02:0a.0: Routing CardBus interrupts to PCI
[   23.578752] yenta_cardbus 0000:02:0a.0: TI: mfunc 0x01000002, devctl 0x60
[   23.718389] Detected unconfigured Toshiba laptop with Intel 82801CAM ISA bridge SMSC IrDA chip, pre-configuring device
[   23.718397] Setting up Intel 82801 controller and SMSC device
[   23.718526] found SMC SuperIO Chip (devid=0x5a rev=00 base=0x002e): LPC47N227
[   23.718545] smsc_superio_flat(): fir: 0x130, sir: 0x3f8, dma: 03, irq: 3, mode: 0x0e
[   23.718553] smsc_ircc_present: can't get sir_base of 0x3f8
[   23.816657] yenta_cardbus 0000:02:0a.0: ISA IRQ mask 0x0000, PCI irq 11
[   23.816667] yenta_cardbus 0000:02:0a.0: Socket status: 30000010
[   23.816679] yenta_cardbus 0000:02:0a.0: pcmcia: parent PCI bridge window: [io  0xd000-0xdfff]
[   23.816685] pcmcia_socket pcmcia_socket0: cs: IO port probe 0xd000-0xdfff:
[   23.817647]  excluding 0xd000-0xd0ff 0xd400-0xd4ff 0xd800-0xd8ff 0xdc00-0xdcff 0xdf40-0xdf7f
[   23.824818] yenta_cardbus 0000:02:0a.0: pcmcia: parent PCI bridge window: [mem 0xff900000-0xff9fffff]
[   23.824827] pcmcia_socket pcmcia_socket0: cs: memory probe 0xff900000-0xff9fffff:
[   23.824833]  excluding 0xff900000-0xff90ffff 0xff9f0000-0xff9fffff
[   23.824854] yenta_cardbus 0000:02:0a.0: pcmcia: parent PCI bridge window: [mem 0x44000000-0x4fffffff pref]
[   23.824859] pcmcia_socket pcmcia_socket0: cs: memory probe 0x44000000-0x4fffffff:
[   23.824878]  excluding 0x44000000-0x4fffffff
[   23.850463] yenta_cardbus 0000:02:0b.0: enabling device (0000 -> 0003)
[   23.850565] yenta_cardbus 0000:02:0b.0: CardBus bridge found [1179:0001]
[   23.977215] yenta_cardbus 0000:02:0b.0: ISA IRQ mask 0x0438, PCI irq 11
[   23.977225] yenta_cardbus 0000:02:0b.0: Socket status: 30000020
[   23.977233] pci_bus 0000:02: Raising subordinate bus# of parent bus (#02) from #05 to #08
[   23.977249] yenta_cardbus 0000:02:0b.0: pcmcia: parent PCI bridge window: [io  0xd000-0xdfff]
[   23.977255] pcmcia_socket pcmcia_socket1: cs: IO port probe 0xd000-0xdfff:
[   23.978188]  excluding 0xd000-0xd0ff 0xd400-0xd4ff 0xd800-0xd8ff 0xdc00-0xdcff 0xdf40-0xdf7f
[   24.005967] yenta_cardbus 0000:02:0b.0: pcmcia: parent PCI bridge window: [mem 0xff900000-0xff9fffff]
[   24.005977] pcmcia_socket pcmcia_socket1: cs: memory probe 0xff900000-0xff9fffff:
[   24.005983]  excluding 0xff900000-0xff90ffff 0xff9f0000-0xff9fffff
[   24.006005] yenta_cardbus 0000:02:0b.0: pcmcia: parent PCI bridge window: [mem 0x44000000-0x4fffffff pref]
[   24.006010] pcmcia_socket pcmcia_socket1: cs: memory probe 0x44000000-0x4fffffff:
[   24.006029]  excluding 0x44000000-0x4fffffff
[   24.019077] yenta_cardbus 0000:02:0b.1: enabling device (0000 -> 0003)
[   24.019359] ACPI: PCI Interrupt Link [LNKB] enabled at IRQ 11
[   24.019401] yenta_cardbus 0000:02:0b.1: CardBus bridge found [1179:0001]
[   24.146118] yenta_cardbus 0000:02:0b.1: ISA IRQ mask 0x0438, PCI irq 11
[   24.146129] yenta_cardbus 0000:02:0b.1: Socket status: 30000020
[   24.146137] pci_bus 0000:02: Raising subordinate bus# of parent bus (#02) from #08 to #0c
[   24.146155] yenta_cardbus 0000:02:0b.1: pcmcia: parent PCI bridge window: [io  0xd000-0xdfff]
[   24.146161] pcmcia_socket pcmcia_socket2: cs: IO port probe 0xd000-0xdfff:
[   24.147094]  excluding 0xd000-0xd0ff 0xd400-0xd4ff 0xd800-0xd8ff 0xdc00-0xdcff 0xdf40-0xdf7f
[   24.150315] yenta_cardbus 0000:02:0b.1: pcmcia: parent PCI bridge window: [mem 0xff900000-0xff9fffff]
[   24.150322] pcmcia_socket pcmcia_socket2: cs: memory probe 0xff900000-0xff9fffff:
[   24.150328]  excluding 0xff900000-0xff90ffff 0xff9f0000-0xff9fffff
[   24.150349] yenta_cardbus 0000:02:0b.1: pcmcia: parent PCI bridge window: [mem 0x44000000-0x4fffffff pref]
[   24.150354] pcmcia_socket pcmcia_socket2: cs: memory probe 0x44000000-0x4fffffff:
[   24.150372]  excluding 0x44000000-0x4fffffff
[   24.720120] pcmcia_socket pcmcia_socket0: pccard: PCMCIA card inserted into slot 0
[   24.720135] pcmcia_socket pcmcia_socket0: cs: memory probe 0xff910000-0xff9effff:
[   24.765838]  clean
[   24.766192] pcmcia 0.0: pcmcia: registering new device pcmcia0.0 (IRQ: 11)
[   24.904139] pcmcia_socket pcmcia_socket1: pccard: CardBus card inserted into slot 1
[   24.904176] pci 0000:05:00.0: [168c:0013] type 00 class 0x020000
[   24.904207] pci 0000:05:00.0: reg 0x10: [mem 0x00000000-0x0000ffff]
[   24.904508] pci 0000:05:00.0: BAR 0: assigned [mem 0x5c000000-0x5c00ffff]
[   25.048131] pcmcia_socket pcmcia_socket2: pccard: CardBus card inserted into slot 2
[   25.048166] pci 0000:09:00.0: [1033:0035] type 00 class 0x0c0310
[   25.048195] pci 0000:09:00.0: reg 0x10: [mem 0x00000000-0x00000fff]
[   25.048310] pci 0000:09:00.0: supports D1 D2
[   25.048317] pci 0000:09:00.0: PME# supported from D0 D1 D2 D3hot
[   25.048521] pci 0000:09:00.1: [1033:00e0] type 00 class 0x0c0320
[   25.048545] pci 0000:09:00.1: reg 0x10: [mem 0x00000000-0x000000ff]
[   25.048638] pci 0000:09:00.1: supports D1 D2
[   25.048642] pci 0000:09:00.1: PME# supported from D0 D1 D2 D3hot
[   25.048790] pci 0000:09:00.0: BAR 0: assigned [mem 0x64000000-0x64000fff]
[   25.048803] pci 0000:09:00.1: BAR 0: assigned [mem 0x64001000-0x640010ff]
[   25.048841] pci 0000:09:00.0: enabling device (0000 -> 0002)
[   25.049099] ohci-pci 0000:09:00.0: OHCI PCI host controller
[   25.049115] ohci-pci 0000:09:00.0: new USB bus registered, assigned bus number 4
[   25.049172] ohci-pci 0000:09:00.0: irq 11, io mem 0x64000000
[   25.106185] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001
[   25.106194] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   25.106199] usb usb4: Product: OHCI PCI host controller
[   25.106203] usb usb4: Manufacturer: Linux 4.2.0-30-generic ohci_hcd
[   25.106207] usb usb4: SerialNumber: 0000:09:00.0
[   25.106813] hub 4-0:1.0: USB hub found
[   25.106838] hub 4-0:1.0: 3 ports detected
[   25.107164] pci 0000:09:00.1: enabling device (0000 -> 0002)
[   25.112669] ehci-pci 0000:09:00.1: EHCI Host Controller
[   25.112701] ehci-pci 0000:09:00.1: new USB bus registered, assigned bus number 5
[   25.112794] ehci-pci 0000:09:00.1: irq 11, io mem 0x64001000
[   25.124179] ehci-pci 0000:09:00.1: USB 2.0 started, EHCI 1.00
[   25.124316] usb usb5: New USB device found, idVendor=1d6b, idProduct=0002
[   25.124321] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   25.124326] usb usb5: Product: EHCI Host Controller
[   25.124329] usb usb5: Manufacturer: Linux 4.2.0-30-generic ehci_hcd
[   25.124333] usb usb5: SerialNumber: 0000:09:00.1
[   25.124846] hub 5-0:1.0: USB hub found
[   25.124924] hub 5-0:1.0: 3 ports detected
[   25.188513] hub 4-0:1.0: USB hub found
[   25.188673] hub 4-0:1.0: 3 ports detected
[   25.365564] EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro
[   25.916404] pcmcia_socket pcmcia_socket0: cs: IO port probe 0x100-0x3af:
[   25.917073]  excluding 0x130-0x137 0x170-0x177 0x1f0-0x1f7 0x370-0x37f
[   25.917678] pcmcia_socket pcmcia_socket0: cs: IO port probe 0x3e0-0x4ff:
[   25.917933]  excluding 0x3f0-0x3ff 0x480-0x48f 0x4d0-0x4d7
[   25.918189] pcmcia_socket pcmcia_socket0: cs: IO port probe 0x820-0x8ff:
[   25.918616]  clean
[   25.918648] pcmcia_socket pcmcia_socket0: cs: IO port probe 0xc00-0xcf7:
[   25.919121]  clean
[   25.919157] pcmcia_socket pcmcia_socket0: cs: memory probe 0x0c0000-0x0fffff:
[   25.919172]  excluding 0xc0000-0xd7fff 0xe0000-0xfffff
[   25.919219] pcmcia_socket pcmcia_socket0: cs: memory probe 0xa0000000-0xa0ffffff:
[   25.919250]  clean
[   25.919282] pcmcia_socket pcmcia_socket0: cs: memory probe 0x60000000-0x60ffffff:
[   25.919289]  excluding 0x60000000-0x600fffff
[   25.919344] pcmcia_socket pcmcia_socket0: cs: IO port probe 0xa00-0xaff:
[   25.919833]  clean
[   25.974161] pcmcia_socket pcmcia_socket2: cs: IO port probe 0x100-0x3af:
[   25.974829]  excluding 0x130-0x137 0x170-0x177 0x1f0-0x1f7 0x370-0x37f
[   25.975433] pcmcia_socket pcmcia_socket2: cs: IO port probe 0x3e0-0x4ff:
[   25.975687]  excluding 0x3f0-0x3ff 0x480-0x48f 0x4d0-0x4d7
[   25.975941] pcmcia_socket pcmcia_socket2: cs: IO port probe 0x820-0x8ff:
[   26.058614] pcmcia_socket pcmcia_socket1: cs: IO port probe 0x100-0x3af:
[   26.059290]  excluding 0x130-0x137 0x170-0x177 0x1f0-0x1f7 0x370-0x37f
[   26.059900] pcmcia_socket pcmcia_socket1: cs: IO port probe 0x3e0-0x4ff:
[   26.122724]  clean
[   26.122822] pcmcia_socket pcmcia_socket2: cs: IO port probe 0xc00-0xcf7:
[   26.123291]  clean
[   26.123334] pcmcia_socket pcmcia_socket2: cs: memory probe 0x0c0000-0x0fffff:
[   26.123349]  excluding 0xc0000-0xd7fff 0xe0000-0xfffff
[   26.123398] pcmcia_socket pcmcia_socket2: cs: memory probe 0xa0000000-0xa0ffffff:
[   26.123429]  clean
[   26.123461] pcmcia_socket pcmcia_socket2: cs: memory probe 0x60000000-0x60ffffff:
[   26.123468]  excluding 0x60000000-0x600fffff
[   26.123521] pcmcia_socket pcmcia_socket2: cs: IO port probe 0xa00-0xaff:
[   26.124008]  clean
[   26.139627]  excluding 0x3f0-0x3ff 0x480-0x48f 0x4d0-0x4d7
[   26.139952] pcmcia_socket pcmcia_socket1: cs: IO port probe 0x820-0x8ff:
[   26.144522]  clean
[   26.144607] pcmcia_socket pcmcia_socket1: cs: IO port probe 0xc00-0xcf7:
[   26.145079]  clean
[   26.145120] pcmcia_socket pcmcia_socket1: cs: memory probe 0x0c0000-0x0fffff:
[   26.145135]  excluding 0xc0000-0xd7fff 0xe0000-0xfffff
[   26.145185] pcmcia_socket pcmcia_socket1: cs: memory probe 0xa0000000-0xa0ffffff:
[   26.145216]  clean
[   26.145247] pcmcia_socket pcmcia_socket1: cs: memory probe 0x60000000-0x60ffffff:
[   26.145254]  excluding 0x60000000-0x600fffff
[   26.145309] pcmcia_socket pcmcia_socket1: cs: IO port probe 0xa00-0xaff:
[   26.145796]  clean
[   26.830462] orinoco 0.15 (David Gibson <hermes@gibson.dropbear.id.au>, Pavel Roskin <proski@gnu.org>, et al)
[   27.026344] orinoco_cs 0.0: Hardware identity 0005:0004:0005:0000
[   27.026470] orinoco_cs 0.0: Station identity  001f:0001:0008:000a
[   27.026476] orinoco_cs 0.0: Firmware determined as Lucent/Agere 8.10
[   27.088561] init: failsafe main process (529) killed by TERM signal
[   27.715067] cfg80211: World regulatory domain updated:
[   27.715079] cfg80211:  DFS Master region: unset
[   27.715082] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)
[   27.715088] cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
[   27.715092] cfg80211:   (2457000 KHz - 2482000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
[   27.715096] cfg80211:   (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm), (N/A)
[   27.715100] cfg80211:   (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
[   27.715103] cfg80211:   (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
[   27.866145] audit: type=1400 audit(1457083360.140:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/cups/backend/cups-pdf" pid=591 comm="apparmor_parser"
[   27.866165] audit: type=1400 audit(1457083360.140:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/cupsd" pid=591 comm="apparmor_parser"
[   27.867554] audit: type=1400 audit(1457083360.140:10): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/sbin/cupsd" pid=591 comm="apparmor_parser"
[   28.192633] ath5k 0000:05:00.0: enabling device (0000 -> 0002)
[   28.192817] ath5k 0000:05:00.0: registered as 'phy1'
[   28.378226] orinoco_cs 0.0: Hardware identity 0005:0004:0005:0000
[   28.378365] orinoco_cs 0.0: Station identity  001f:0002:0009:0030
[   28.378371] orinoco_cs 0.0: Firmware determined as Lucent/Agere 9.48
[   28.378376] orinoco_cs 0.0: Ad-hoc demo mode supported
[   28.378379] orinoco_cs 0.0: IEEE standard IBSS ad-hoc mode supported
[   28.378383] orinoco_cs 0.0: WEP supported, 104-bit key
[   28.378386] orinoco_cs 0.0: WPA-PSK supported
[   28.482859] audit: type=1400 audit(1457083360.756:11): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/lightdm/lightdm-guest-session" pid=650 comm="apparmor_parser"
[   28.727033] audit_printk_skb: 24 callbacks suppressed
[   28.727042] audit: type=1400 audit(1457083361.000:20): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/evince" pid=661 comm="apparmor_parser"
[   28.727058] audit: type=1400 audit(1457083361.000:21): apparmor="STATUS" operation="profile_load" profile="unconfined" name="sanitized_helper" pid=661 comm="apparmor_parser"
[   28.727070] audit: type=1400 audit(1457083361.000:22): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/evince-previewer" pid=661 comm="apparmor_parser"
[   28.727082] audit: type=1400 audit(1457083361.000:23): apparmor="STATUS" operation="profile_load" profile="unconfined" name="sanitized_helper" pid=661 comm="apparmor_parser"
[   28.727093] audit: type=1400 audit(1457083361.000:24): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/evince-thumbnailer" pid=661 comm="apparmor_parser"
[   28.727103] audit: type=1400 audit(1457083361.000:25): apparmor="STATUS" operation="profile_load" profile="unconfined" name="sanitized_helper" pid=661 comm="apparmor_parser"
[   28.789435] audit: type=1400 audit(1457083361.064:26): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="sanitized_helper" pid=661 comm="apparmor_parser"
[   28.789460] audit: type=1400 audit(1457083361.064:27): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/bin/evince-previewer" pid=661 comm="apparmor_parser"
[   28.789475] audit: type=1400 audit(1457083361.064:28): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="sanitized_helper" pid=661 comm="apparmor_parser"
[   28.789489] audit: type=1400 audit(1457083361.064:29): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/bin/evince-thumbnailer" pid=661 comm="apparmor_parser"
[   29.244681] init: cups main process (598) killed by HUP signal
[   29.244719] init: cups main process ended, respawning
[   29.267979] Bluetooth: Core ver 2.20
[   29.271953] NET: Registered protocol family 31
[   29.271963] Bluetooth: HCI device and connection manager initialized
[   29.271978] Bluetooth: HCI socket layer initialized
[   29.271985] Bluetooth: L2CAP socket layer initialized
[   29.273254] Bluetooth: SCO socket layer initialized
[   29.418932] ath: EEPROM regdomain: 0x0
[   29.418942] ath: EEPROM indicates default country code should be used
[   29.418945] ath: doing EEPROM country->regdmn map search
[   29.418949] ath: country maps to regdmn code: 0x3a
[   29.418952] ath: Country alpha2 being used: US
[   29.418954] ath: Regpair used: 0x3a
[   29.469696] Bluetooth: RFCOMM TTY layer initialized
[   29.469720] Bluetooth: RFCOMM socket layer initialized
[   29.469738] Bluetooth: RFCOMM ver 1.11
[   29.520290] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[   29.520300] Bluetooth: BNEP filters: protocol multicast
[   29.520316] Bluetooth: BNEP socket layer initialized
[   29.580645] ieee80211 phy1: Selected rate control algorithm 'minstrel_ht'
[   29.583618] ath5k: phy1: Atheros AR2414 chip found (MAC: 0x79, PHY: 0x45)
[   29.687816] cfg80211: Regulatory domain changed to country: US
[   29.687827] cfg80211:  DFS Master region: unset
[   29.687831] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)
[   29.687836] cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm), (N/A)
[   29.687841] cfg80211:   (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 1700 mBm), (N/A)
[   29.687845] cfg80211:   (5250000 KHz - 5330000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (0 s)
[   29.687849] cfg80211:   (5490000 KHz - 5600000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (0 s)
[   29.687853] cfg80211:   (5650000 KHz - 5710000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (0 s)
[   29.687857] cfg80211:   (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 3000 mBm), (N/A)
[   29.687861] cfg80211:   (57240000 KHz - 63720000 KHz @ 2160000 KHz), (N/A, 4000 mBm), (N/A)
[   31.325963] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[   31.409421] IPv6: ADDRCONF(NETDEV_UP): eth1: link is not ready
[   31.485796] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[   32.881227] wlan0: authenticate with 88:e3:ab:2c:60:8f
[   32.889988] wlan0: send auth to 88:e3:ab:2c:60:8f (try 1/3)
[   32.891653] wlan0: authenticated
[   32.904099] wlan0: associate with 88:e3:ab:2c:60:8f (try 1/3)
[   32.906930] wlan0: RX AssocResp from 88:e3:ab:2c:60:8f (capab=0x411 status=0 aid=3)
[   32.907080] wlan0: associated
[   32.907151] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[   33.618688] init: alsa-restore main process (912) terminated with status 19
[   34.376652] audit_printk_skb: 48 callbacks suppressed
[   34.376662] audit: type=1400 audit(1457083366.652:46): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/sbin/cups-browsed" pid=1022 comm="apparmor_parser"
[   40.442429] [drm] Initialized drm 1.1.0 20060810
[   40.479652] ACPI: PCI Interrupt Link [LNKG] enabled at IRQ 11
[   40.485905] [drm] Initialized savage 2.4.1 20050313 for 0000:01:00.0 on minor 0
[   41.449641] init: plymouth-upstart-bridge main process ended, respawning
[   41.516504] init: plymouth-upstart-bridge main process (1173) terminated with status 1
[   41.516546] init: plymouth-upstart-bridge main process ended, respawning
[   58.129553] audit: type=1400 audit(1457083390.403:47): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/cups/backend/cups-pdf" pid=1793 comm="apparmor_parser"
[   58.129578] audit: type=1400 audit(1457083390.403:48): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/sbin/cupsd" pid=1793 comm="apparmor_parser"
[   58.139021] audit: type=1400 audit(1457083390.411:49): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/sbin/cupsd" pid=1793 comm="apparmor_parser"
[ 1075.184082] usb 5-2: new high-speed USB device number 2 using ehci-pci
[ 1075.880132] usb 5-2: new high-speed USB device number 3 using ehci-pci
[ 1076.014014] usb 5-2: New USB device found, idVendor=0ccd, idProduct=0080
[ 1076.014028] usb 5-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 1076.014035] usb 5-2: Product: DMX 6Fire USB
[ 1076.014042] usb 5-2: Manufacturer: TerraTec
[ 1076.014048] usb 5-2: SerialNumber: 000000000000069D
[ 1076.581611] usb 5-2: Direct firmware load for 6fire/dmx6firel2.ihx failed with error -2
[ 1076.581625] snd-usb-6fire 5-2:1.0: error requesting ezusb firmware 6fire/dmx6firel2.ihx.
[ 1076.581640] snd-usb-6fire: probe of 5-2:1.0 failed with error -2
[ 1076.587244] usbcore: registered new interface driver snd-usb-6fire
elvira@elvira-TECRA-9100:~$