ubuntuusers.de

dmesg

Datum:
14. September 2014 15:27
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
[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Initializing cgroup subsys cpuacct
[    0.000000] Linux version 3.13.0-32-generic (buildd@kissel) (gcc version 4.8.2 (Ubuntu 4.8.2-19ubuntu1) ) #57-Ubuntu SMP Tue Jul 15 03:51:08 UTC 2014 (Ubuntu 3.13.0-32.57-generic 3.13.11.4)
[    0.000000] Command line: file=/cdrom/preseed/ubuntu.seed boot=casper cdrom-detect/try-usb=true persistent noprompt floppy.allowed_drive_mask=0 ignore_uuid initrd=/casper/initrd.lz quiet splash -- maybe-ubiquity
[    0.000000] KERNEL supported cpus:
[    0.000000]   Intel GenuineIntel
[    0.000000]   AMD AuthenticAMD
[    0.000000]   Centaur CentaurHauls
[    0.000000] e820: BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009afff] usable
[    0.000000] BIOS-e820: [mem 0x000000000009b000-0x000000000009ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000bffbffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000bffc0000-0x00000000bffcdfff] ACPI data
[    0.000000] BIOS-e820: [mem 0x00000000bffce000-0x00000000bfffffff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fff80000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000013fffffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] SMBIOS 2.5 present.
[    0.000000] DMI: FUJITSU SIEMENS MS-7350VP/MS-7350VP, BIOS V1.0B 05/29/2007
[    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] No AGP bridge found
[    0.000000] e820: last_pfn = 0x140000 max_arch_pfn = 0x400000000
[    0.000000] MTRR default type: uncachable
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-DFFFF uncachable
[    0.000000]   E0000-EFFFF write-through
[    0.000000]   F0000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 0C0000000 mask FC0000000 uncachable
[    0.000000]   1 base 000000000 mask F00000000 write-back
[    0.000000]   2 base 100000000 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 enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[    0.000000] original variable MTRRs
[    0.000000] reg 0, base: 3GB, range: 1GB, type UC
[    0.000000] reg 1, base: 0GB, range: 4GB, type WB
[    0.000000] reg 2, base: 4GB, range: 1GB, type WB
[    0.000000] total RAM covered: 4096M
[    0.000000] Found optimal setting for mtrr clean up
[    0.000000]  gran_size: 64K 	chunk_size: 64K 	num_reg: 3  	lose cover RAM: 0G
[    0.000000] New variable MTRRs
[    0.000000] reg 0, base: 0GB, range: 2GB, type WB
[    0.000000] reg 1, base: 2GB, range: 1GB, type WB
[    0.000000] reg 2, base: 4GB, range: 1GB, type WB
[    0.000000] e820: update [mem 0xc0000000-0xffffffff] usable ==> reserved
[    0.000000] e820: last_pfn = 0xbffc0 max_arch_pfn = 0x400000000
[    0.000000] found SMP MP-table at [mem 0x000ff780-0x000ff78f] mapped at [ffff8800000ff780]
[    0.000000] Scanning 1 areas for low memory corruption
[    0.000000] Base memory trampoline at [ffff880000095000] 95000 size 24576
[    0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
[    0.000000]  [mem 0x00000000-0x000fffff] page 4k
[    0.000000] BRK [0x01fdf000, 0x01fdffff] PGTABLE
[    0.000000] BRK [0x01fe0000, 0x01fe0fff] PGTABLE
[    0.000000] BRK [0x01fe1000, 0x01fe1fff] PGTABLE
[    0.000000] init_memory_mapping: [mem 0x13fe00000-0x13fffffff]
[    0.000000]  [mem 0x13fe00000-0x13fffffff] page 2M
[    0.000000] BRK [0x01fe2000, 0x01fe2fff] PGTABLE
[    0.000000] init_memory_mapping: [mem 0x13c000000-0x13fdfffff]
[    0.000000]  [mem 0x13c000000-0x13fdfffff] page 2M
[    0.000000] init_memory_mapping: [mem 0x100000000-0x13bffffff]
[    0.000000]  [mem 0x100000000-0x13bffffff] page 2M
[    0.000000] init_memory_mapping: [mem 0x00100000-0xbffbffff]
[    0.000000]  [mem 0x00100000-0x001fffff] page 4k
[    0.000000]  [mem 0x00200000-0xbfdfffff] page 2M
[    0.000000]  [mem 0xbfe00000-0xbffbffff] page 4k
[    0.000000] RAMDISK: [mem 0x7ec36000-0x7fffffff]
[    0.000000] ACPI: RSDP 00000000000f8960 000014 (v00 ACPIAM)
[    0.000000] ACPI: RSDT 00000000bffc0000 00003C (v01 FSC    PC       20070529 MSFT 00000097)
[    0.000000] ACPI: FACP 00000000bffc0200 000084 (v02 052907 FACP1724 20070529 MSFT 00000097)
[    0.000000] ACPI: DSDT 00000000bffc05d0 0050CD (v01  1ADKV 1ADKV000 00000000 INTL 20051117)
[    0.000000] ACPI: FACS 00000000bffce000 000040
[    0.000000] ACPI: APIC 00000000bffc0390 000080 (v01 052907 APIC1724 20070529 MSFT 00000097)
[    0.000000] ACPI: MCFG 00000000bffc0410 00003C (v01 052907 OEMMCFG  20070529 MSFT 00000097)
[    0.000000] ACPI: SLIC 00000000bffc0450 000176 (v01 FSC    PC       20070529 MSFT 00000097)
[    0.000000] ACPI: OEMB 00000000bffce040 000071 (v01 052907 OEMB1724 20070529 MSFT 00000097)
[    0.000000] ACPI: HPET 00000000bffc56a0 000038 (v01 052907 OEMHPET0 20070529 MSFT 00000097)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] No NUMA configuration found
[    0.000000] Faking a node at [mem 0x0000000000000000-0x000000013fffffff]
[    0.000000] Initmem setup node 0 [mem 0x00000000-0x13fffffff]
[    0.000000]   NODE_DATA [mem 0x13fff8000-0x13fffcfff]
[    0.000000]  [ffffea0000000000-ffffea0004ffffff] PMD -> [ffff88013b600000-ffff88013f5fffff] on node 0
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x00001000-0x00ffffff]
[    0.000000]   DMA32    [mem 0x01000000-0xffffffff]
[    0.000000]   Normal   [mem 0x100000000-0x13fffffff]
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x00001000-0x0009afff]
[    0.000000]   node   0: [mem 0x00100000-0xbffbffff]
[    0.000000]   node   0: [mem 0x100000000-0x13fffffff]
[    0.000000] On node 0 totalpages: 1048410
[    0.000000]   DMA zone: 64 pages used for memmap
[    0.000000]   DMA zone: 21 pages reserved
[    0.000000]   DMA zone: 3994 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 12223 pages used for memmap
[    0.000000]   DMA32 zone: 782272 pages, LIFO batch:31
[    0.000000]   Normal zone: 4096 pages used for memmap
[    0.000000]   Normal zone: 262144 pages, LIFO batch:31
[    0.000000] ACPI: PM-Timer IO Port: 0x4008
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x02] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x03] enabled)
[    0.000000] ACPI: IOAPIC (id[0x04] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 4, version 17, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 14 global_irq 14 high edge)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 15 global_irq 15 high edge)
[    0.000000] ACPI: IRQ0 used by override.
[    0.000000] ACPI: IRQ2 used by override.
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] ACPI: IRQ14 used by override.
[    0.000000] ACPI: IRQ15 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x10de8201 base: 0xfed00000
[    0.000000] smpboot: Allowing 4 CPUs, 0 hotplug CPUs
[    0.000000] nr_irqs_gsi: 40
[    0.000000] PM: Registered nosave memory: [mem 0x0009b000-0x0009ffff]
[    0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000dffff]
[    0.000000] PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
[    0.000000] PM: Registered nosave memory: [mem 0xbffc0000-0xbffcdfff]
[    0.000000] PM: Registered nosave memory: [mem 0xbffce000-0xbfffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xc0000000-0xfebfffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfec01000-0xfedfffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfee01000-0xfff7ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfff80000-0xffffffff]
[    0.000000] e820: [mem 0xc0000000-0xfebfffff] available for PCI devices
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] setup_percpu: NR_CPUS:256 nr_cpumask_bits:256 nr_cpu_ids:4 nr_node_ids:1
[    0.000000] PERCPU: Embedded 29 pages/cpu @ffff88013fc00000 s86336 r8192 d24256 u524288
[    0.000000] pcpu-alloc: s86336 r8192 d24256 u524288 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 0 1 2 3 
[    0.000000] Built 1 zonelists in Node order, mobility grouping on.  Total pages: 1032006
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: file=/cdrom/preseed/ubuntu.seed boot=casper cdrom-detect/try-usb=true persistent noprompt floppy.allowed_drive_mask=0 ignore_uuid initrd=/casper/initrd.lz quiet splash -- maybe-ubiquity
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] Checking aperture...
[    0.000000] No AGP bridge found
[    0.000000] Calgary: detecting Calgary via BIOS EBDA area
[    0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
[    0.000000] Memory: 4024684K/4193640K available (7363K kernel code, 1142K rwdata, 3400K rodata, 1336K init, 1440K bss, 168956K reserved)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[    0.000000] Hierarchical RCU implementation.
[    0.000000] 	RCU dyntick-idle grace-period acceleration is enabled.
[    0.000000] 	RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=4.
[    0.000000] 	Offload RCU callbacks from all CPUs
[    0.000000] 	Offload RCU callbacks from CPUs: 0-3.
[    0.000000] NR_IRQS:16640 nr_irqs:712 16
[    0.000000] spurious 8259A interrupt: IRQ7.
[    0.000000] Console: colour VGA+ 80x25
[    0.000000] console [tty0] enabled
[    0.000000] allocated 16777216 bytes of page_cgroup
[    0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
[    0.000000] hpet clockevent registered
[    0.000000] tsc: Fast TSC calibration failed
[    0.000000] tsc: PIT calibration matches HPET. 1 loops
[    0.000000] tsc: Detected 2399.986 MHz processor
[    0.004006] Calibrating delay loop (skipped), value calculated using timer frequency.. 4799.97 BogoMIPS (lpj=9599944)
[    0.004010] pid_max: default: 32768 minimum: 301
[    0.004049] Security Framework initialized
[    0.004094] AppArmor: AppArmor initialized
[    0.004095] Yama: becoming mindful.
[    0.008345] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
[    0.012101] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
[    0.013908] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)
[    0.013920] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)
[    0.014400] Initializing cgroup subsys memory
[    0.014419] Initializing cgroup subsys devices
[    0.014422] Initializing cgroup subsys freezer
[    0.014425] Initializing cgroup subsys blkio
[    0.014427] Initializing cgroup subsys perf_event
[    0.014430] Initializing cgroup subsys hugetlb
[    0.014463] CPU: Physical Processor ID: 0
[    0.014464] CPU: Processor Core ID: 0
[    0.014467] mce: CPU supports 6 MCE banks
[    0.014477] CPU0: Thermal monitoring enabled (TM1)
[    0.014489] Last level iTLB entries: 4KB 128, 2MB 4, 4MB 4
[    0.014489] Last level dTLB entries: 4KB 256, 2MB 0, 4MB 32
[    0.014489] tlb_flushall_shift: -1
[    0.014618] Freeing SMP alternatives memory: 32K (ffffffff81e6d000 - ffffffff81e75000)
[    0.016175] ACPI: Core revision 20131115
[    0.018196] ACPI: All ACPI Tables successfully acquired
[    0.019103] ftrace: allocating 28495 entries in 112 pages
[    0.028826] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.069616] smpboot: CPU0: Intel(R) Core(TM)2 Quad CPU    Q6600  @ 2.40GHz (fam: 06, model: 0f, stepping: 0b)
[    0.072000] Performance Events: PEBS fmt0+, 4-deep LBR, Core2 events, Intel PMU driver.
[    0.072000] perf_event_intel: PEBS disabled due to CPU errata
[    0.072000] ... version:                2
[    0.072000] ... bit width:              40
[    0.072000] ... generic registers:      2
[    0.072000] ... value mask:             000000ffffffffff
[    0.072000] ... max period:             000000007fffffff
[    0.072000] ... fixed-purpose events:   3
[    0.072000] ... event mask:             0000000700000003
[    0.072000] x86: Booting SMP configuration:
[    0.084140] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.072000] .... node  #0, CPUs:      #1 #2 #3
[    0.110591] x86: Booted up 1 node, 4 CPUs
[    0.110595] smpboot: Total of 4 processors activated (19199.88 BogoMIPS)
[    0.112240] devtmpfs: initialized
[    0.121893] EVM: security.selinux
[    0.121894] EVM: security.SMACK64
[    0.121896] EVM: security.ima
[    0.121897] EVM: security.capability
[    0.121914] PM: Registering ACPI NVS region [mem 0xbffce000-0xbfffffff] (204800 bytes)
[    0.121914] pinctrl core: initialized pinctrl subsystem
[    0.121914] regulator-dummy: no parameters
[    0.121914] RTC time: 14:59:15, date: 09/14/14
[    0.121914] NET: Registered protocol family 16
[    0.121914] cpuidle: using governor ladder
[    0.121914] cpuidle: using governor menu
[    0.121914] ACPI: bus type PCI registered
[    0.121914] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.121914] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    0.121914] PCI: not using MMCONFIG
[    0.121914] PCI: Using configuration type 1 for base access
[    0.124670] bio: create slab <bio-0> at 0
[    0.124670] ACPI: Added _OSI(Module Device)
[    0.124670] ACPI: Added _OSI(Processor Device)
[    0.124670] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.124670] ACPI: Added _OSI(Processor Aggregator Device)
[    0.126151] ACPI: Executed 1 blocks of module-level executable AML code
[    0.128693] ACPI: SSDT 00000000bffce0c0 0001D2 (v01    AMI   CPU1PM 00000001 INTL 20051117)
[    0.128901] ACPI: Dynamic OEM Table Load:
[    0.128904] ACPI: SSDT           (null) 0001D2 (v01    AMI   CPU1PM 00000001 INTL 20051117)
[    0.129053] ACPI: SSDT 00000000bffce2a0 000143 (v01    AMI   CPU2PM 00000001 INTL 20051117)
[    0.129255] ACPI: Dynamic OEM Table Load:
[    0.129258] ACPI: SSDT           (null) 000143 (v01    AMI   CPU2PM 00000001 INTL 20051117)
[    0.129407] ACPI: SSDT 00000000bffce3f0 000143 (v01    AMI   CPU3PM 00000001 INTL 20051117)
[    0.129611] ACPI: Dynamic OEM Table Load:
[    0.129613] ACPI: SSDT           (null) 000143 (v01    AMI   CPU3PM 00000001 INTL 20051117)
[    0.129760] ACPI: SSDT 00000000bffce540 000143 (v01    AMI   CPU4PM 00000001 INTL 20051117)
[    0.129967] ACPI: Dynamic OEM Table Load:
[    0.129969] ACPI: SSDT           (null) 000143 (v01    AMI   CPU4PM 00000001 INTL 20051117)
[    0.130243] ACPI: Interpreter enabled
[    0.130249] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20131115/hwxface-580)
[    0.130253] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20131115/hwxface-580)
[    0.130266] ACPI: (supports S0 S3 S4 S5)
[    0.130268] ACPI: Using IOAPIC for interrupt routing
[    0.130288] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    0.131139] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in ACPI motherboard resources
[    0.152065] PCI: Ignoring host bridge windows from ACPI; if necessary, use "pci=use_crs" and report a bug
[    0.152167] ACPI: No dock devices found.
[    0.157872] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.157879] acpi PNP0A03:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    0.157884] acpi PNP0A03:00: _OSC failed (AE_NOT_FOUND); disabling ASPM
[    0.158008] acpi PNP0A03:00: host bridge window [io  0x0000-0x0cf7] (ignored)
[    0.158011] acpi PNP0A03:00: host bridge window [io  0x0d00-0xffff] (ignored)
[    0.158013] acpi PNP0A03:00: host bridge window [mem 0x000a0000-0x000bffff] (ignored)
[    0.158015] acpi PNP0A03:00: host bridge window [mem 0x000d0000-0x000dffff] (ignored)
[    0.158017] acpi PNP0A03:00: host bridge window [mem 0xc0000000-0xdfffffff] (ignored)
[    0.158020] acpi PNP0A03:00: host bridge window [mem 0xf0000000-0xfebfffff] (ignored)
[    0.158022] PCI: root bus 00: using default resources
[    0.158175] PCI host bridge to bus 0000:00
[    0.158178] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.158181] pci_bus 0000:00: root bus resource [io  0x0000-0xffff]
[    0.158183] pci_bus 0000:00: root bus resource [mem 0x00000000-0xfffffffff]
[    0.158195] pci 0000:00:00.0: [10de:03a2] type 00 class 0x060000
[    0.158303] pci 0000:00:00.1: [10de:03ac] type 00 class 0x050000
[    0.158400] pci 0000:00:00.2: [10de:03aa] type 00 class 0x050000
[    0.158497] pci 0000:00:00.3: [10de:03a9] type 00 class 0x050000
[    0.158604] pci 0000:00:00.4: [10de:03ab] type 00 class 0x050000
[    0.158715] pci 0000:00:00.5: [10de:03a8] type 00 class 0x050000
[    0.158803] pci 0000:00:00.6: [10de:03b5] type 00 class 0x050000
[    0.158913] pci 0000:00:00.7: [10de:03b4] type 00 class 0x050000
[    0.159009] pci 0000:00:01.0: [10de:03ad] type 00 class 0x050000
[    0.159096] pci 0000:00:01.1: [10de:03ae] type 00 class 0x050000
[    0.159183] pci 0000:00:01.2: [10de:03af] type 00 class 0x050000
[    0.159290] pci 0000:00:01.3: [10de:03b0] type 00 class 0x050000
[    0.159377] pci 0000:00:01.4: [10de:03b1] type 00 class 0x050000
[    0.159467] pci 0000:00:01.5: [10de:03b2] type 00 class 0x050000
[    0.159554] pci 0000:00:01.6: [10de:03b3] type 00 class 0x050000
[    0.159653] pci 0000:00:02.0: [10de:03b6] type 00 class 0x050000
[    0.159738] pci 0000:00:02.1: [10de:03bc] type 00 class 0x050000
[    0.159848] pci 0000:00:02.2: [10de:03ba] type 00 class 0x050000
[    0.159995] pci 0000:00:03.0: [10de:03b7] type 01 class 0x060400
[    0.160040] pci 0000:00:03.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.160115] pci 0000:00:06.0: [10de:03b9] type 01 class 0x060400
[    0.160155] pci 0000:00:06.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.160223] pci 0000:00:07.0: [10de:03bb] type 01 class 0x060400
[    0.160262] pci 0000:00:07.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.160350] pci 0000:00:09.0: [10de:0270] type 00 class 0x050000
[    0.160668] pci 0000:00:0a.0: [10de:0260] type 00 class 0x060100
[    0.160683] pci 0000:00:0a.0: reg 0x10: [io  0x4f00-0x4f7f]
[    0.160812] pci 0000:00:0a.1: [10de:0264] type 00 class 0x0c0500
[    0.160876] pci 0000:00:0a.1: reg 0x20: [io  0x5000-0x503f]
[    0.160889] pci 0000:00:0a.1: reg 0x24: [io  0x6000-0x603f]
[    0.160945] pci 0000:00:0a.1: PME# supported from D3hot D3cold
[    0.160988] pci 0000:00:0a.1: System wakeup disabled by ACPI
[    0.161022] pci 0000:00:0a.2: [10de:0272] type 00 class 0x050000
[    0.161155] pci 0000:00:0b.0: [10de:026d] type 00 class 0x0c0310
[    0.161175] pci 0000:00:0b.0: reg 0x10: [mem 0xf7eff000-0xf7efffff]
[    0.161266] pci 0000:00:0b.0: supports D1 D2
[    0.161268] pci 0000:00:0b.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.161308] pci 0000:00:0b.0: System wakeup disabled by ACPI
[    0.161350] pci 0000:00:0b.1: [10de:026e] type 00 class 0x0c0320
[    0.161373] pci 0000:00:0b.1: reg 0x10: [mem 0xf7efec00-0xf7efecff]
[    0.161472] pci 0000:00:0b.1: supports D1 D2
[    0.161474] pci 0000:00:0b.1: PME# supported from D0 D1 D2 D3hot D3cold
[    0.161514] pci 0000:00:0b.1: System wakeup disabled by ACPI
[    0.161563] pci 0000:00:0d.0: [10de:0265] type 00 class 0x01018a
[    0.161617] pci 0000:00:0d.0: reg 0x20: [io  0xffa0-0xffaf]
[    0.161732] pci 0000:00:0e.0: [10de:0266] type 00 class 0x010185
[    0.161757] pci 0000:00:0e.0: reg 0x10: [io  0xc800-0xc807]
[    0.161768] pci 0000:00:0e.0: reg 0x14: [io  0xc480-0xc483]
[    0.161779] pci 0000:00:0e.0: reg 0x18: [io  0xc400-0xc407]
[    0.161790] pci 0000:00:0e.0: reg 0x1c: [io  0xc080-0xc083]
[    0.161801] pci 0000:00:0e.0: reg 0x20: [io  0xc000-0xc00f]
[    0.161813] pci 0000:00:0e.0: reg 0x24: [mem 0xf7efd000-0xf7efdfff]
[    0.161947] pci 0000:00:0f.0: [10de:0267] type 00 class 0x010185
[    0.161971] pci 0000:00:0f.0: reg 0x10: [io  0xbc00-0xbc07]
[    0.161982] pci 0000:00:0f.0: reg 0x14: [io  0xb880-0xb883]
[    0.161993] pci 0000:00:0f.0: reg 0x18: [io  0xb800-0xb807]
[    0.162004] pci 0000:00:0f.0: reg 0x1c: [io  0xb480-0xb483]
[    0.162016] pci 0000:00:0f.0: reg 0x20: [io  0xb400-0xb40f]
[    0.162027] pci 0000:00:0f.0: reg 0x24: [mem 0xf7efc000-0xf7efcfff]
[    0.162174] pci 0000:00:10.0: [10de:026f] type 01 class 0x060401
[    0.162285] pci 0000:00:10.0: System wakeup disabled by ACPI
[    0.162330] pci 0000:00:10.1: [10de:026c] type 00 class 0x040300
[    0.162356] pci 0000:00:10.1: reg 0x10: [mem 0xf7ef8000-0xf7efbfff]
[    0.162466] pci 0000:00:10.1: PME# supported from D3hot D3cold
[    0.162509] pci 0000:00:10.1: System wakeup disabled by ACPI
[    0.162562] pci 0000:00:14.0: [10de:0269] type 00 class 0x068000
[    0.162582] pci 0000:00:14.0: reg 0x10: [mem 0xf7ef7000-0xf7ef7fff]
[    0.162593] pci 0000:00:14.0: reg 0x14: [io  0xb080-0xb087]
[    0.162669] pci 0000:00:14.0: supports D1 D2
[    0.162671] pci 0000:00:14.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.162708] pci 0000:00:14.0: System wakeup disabled by ACPI
[    0.162805] pci 0000:01:00.0: [1002:6738] type 00 class 0x030000
[    0.162821] pci 0000:01:00.0: reg 0x10: [mem 0xd0000000-0xdfffffff 64bit pref]
[    0.162833] pci 0000:01:00.0: reg 0x18: [mem 0xf7fe0000-0xf7ffffff 64bit]
[    0.162842] pci 0000:01:00.0: reg 0x20: [io  0xd000-0xd0ff]
[    0.162857] pci 0000:01:00.0: reg 0x30: [mem 0xf7fc0000-0xf7fdffff pref]
[    0.162894] pci 0000:01:00.0: supports D1 D2
[    0.162938] pci 0000:01:00.1: [1002:aa88] type 00 class 0x040300
[    0.162953] pci 0000:01:00.1: reg 0x10: [mem 0xf7fbc000-0xf7fbffff 64bit]
[    0.163022] pci 0000:01:00.1: supports D1 D2
[    0.168019] pci 0000:00:03.0: PCI bridge to [bus 01]
[    0.168026] pci 0000:00:03.0:   bridge window [io  0xd000-0xdfff]
[    0.168030] pci 0000:00:03.0:   bridge window [mem 0xf7f00000-0xf7ffffff]
[    0.168036] pci 0000:00:03.0:   bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
[    0.168096] pci 0000:00:06.0: PCI bridge to [bus 02]
[    0.168157] pci 0000:00:07.0: PCI bridge to [bus 03]
[    0.168256] pci 0000:04:08.0: [1102:0005] type 00 class 0x040100
[    0.168282] pci 0000:04:08.0: reg 0x10: [io  0xec00-0xec1f]
[    0.168302] pci 0000:04:08.0: reg 0x14: [mem 0xfea00000-0xfebfffff 64bit]
[    0.168321] pci 0000:04:08.0: reg 0x1c: [mem 0xf8000000-0xfbffffff 64bit]
[    0.168395] pci 0000:04:08.0: supports D1 D2
[    0.168441] pci 0000:04:09.0: [1106:3044] type 00 class 0x0c0010
[    0.168465] pci 0000:04:09.0: reg 0x10: [mem 0xfe9ff800-0xfe9fffff]
[    0.168479] pci 0000:04:09.0: reg 0x14: [io  0xe880-0xe8ff]
[    0.168574] pci 0000:04:09.0: supports D2
[    0.168577] pci 0000:04:09.0: PME# supported from D2 D3hot D3cold
[    0.168653] pci 0000:00:10.0: PCI bridge to [bus 04] (subtractive decode)
[    0.168657] pci 0000:00:10.0:   bridge window [io  0xe000-0xefff]
[    0.168662] pci 0000:00:10.0:   bridge window [mem 0xf8000000-0xfebfffff]
[    0.168667] pci 0000:00:10.0:   bridge window [io  0x0000-0xffff] (subtractive decode)
[    0.168669] pci 0000:00:10.0:   bridge window [mem 0x00000000-0xfffffffff] (subtractive decode)
[    0.169349] ACPI: PCI Interrupt Link [LNKA] (IRQs 16 17 18 19) *0, disabled.
[    0.169441] ACPI: PCI Interrupt Link [LNKB] (IRQs 16 17 18 19) *0, disabled.
[    0.169529] ACPI: PCI Interrupt Link [LNKC] (IRQs 16 17 18 19) *11
[    0.169615] ACPI: PCI Interrupt Link [LNKD] (IRQs 16 17 18 19) *5
[    0.169701] ACPI: PCI Interrupt Link [LNEA] (IRQs 16 17 18 19) *10
[    0.169788] ACPI: PCI Interrupt Link [LNEB] (IRQs 16 17 18 19) *10
[    0.169874] ACPI: PCI Interrupt Link [LNEC] (IRQs 16 17 18 19) *0, disabled.
[    0.169961] ACPI: PCI Interrupt Link [LNED] (IRQs 16 17 18 19) *0, disabled.
[    0.170048] ACPI: PCI Interrupt Link [LUB0] (IRQs 20 21 22 23) *5
[    0.170134] ACPI: PCI Interrupt Link [LUB2] (IRQs 20 21 22 23) *7
[    0.170231] ACPI: PCI Interrupt Link [LMAC] (IRQs 20 21 22 23) *10
[    0.170318] ACPI: PCI Interrupt Link [LAZA] (IRQs 20 21 22 23) *5
[    0.170412] ACPI: PCI Interrupt Link [LACI] (IRQs 20 21 22 23) *0, disabled.
[    0.170499] ACPI: PCI Interrupt Link [LMC9] (IRQs 20 21 22 23) *0, disabled.
[    0.170586] ACPI: PCI Interrupt Link [LSMB] (IRQs 20 21 22 23) *11
[    0.170672] ACPI: PCI Interrupt Link [LPMU] (IRQs 20 21 22 23) *0, disabled.
[    0.170758] ACPI: PCI Interrupt Link [LSA0] (IRQs 20 21 22 23) *10
[    0.170852] ACPI: PCI Interrupt Link [LSA1] (IRQs 20 21 22 23) *11
[    0.170957] ACPI: PCI Interrupt Link [LATA] (IRQs 20 21 22 23) *0, disabled.
[    0.171044] ACPI: \_SB_.PCI0: notify handler is installed
[    0.171078] Found 1 acpi root devices
[    0.171174] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
[    0.171174] vgaarb: loaded
[    0.171174] vgaarb: bridge control possible 0000:01:00.0
[    0.171174] SCSI subsystem initialized
[    0.171174] libata version 3.00 loaded.
[    0.171174] ACPI: bus type USB registered
[    0.171174] usbcore: registered new interface driver usbfs
[    0.171174] usbcore: registered new interface driver hub
[    0.171174] usbcore: registered new device driver usb
[    0.171174] PCI: Using ACPI for IRQ routing
[    0.184211] PCI: pci_cache_line_size set to 64 bytes
[    0.184305] e820: reserve RAM buffer [mem 0x0009b000-0x0009ffff]
[    0.184307] e820: reserve RAM buffer [mem 0xbffc0000-0xbfffffff]
[    0.184411] NetLabel: Initializing
[    0.184412] NetLabel:  domain hash size = 128
[    0.184413] NetLabel:  protocols = UNLABELED CIPSOv4
[    0.184430] NetLabel:  unlabeled traffic allowed by default
[    0.184452] HPET: 3 timers in total, 0 timers will be used for per-cpu timer
[    0.184452] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 31
[    0.184452] hpet0: 3 comparators, 32-bit 25.000000 MHz counter
[    0.186143] Switched to clocksource hpet
[    0.191508] AppArmor: AppArmor Filesystem Enabled
[    0.191567] pnp: PnP ACPI init
[    0.191588] ACPI: bus type PNP registered
[    0.191647] pnp 00:00: [dma 4]
[    0.191682] pnp 00:00: Plug and Play ACPI device, IDs PNP0200 (active)
[    0.191727] pnp 00:01: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.191754] pnp 00:02: Plug and Play ACPI device, IDs PNP0800 (active)
[    0.191791] pnp 00:03: Plug and Play ACPI device, IDs PNP0c04 (active)
[    0.192547] system 00:04: [io  0x04d0-0x04d1] has been reserved
[    0.192550] system 00:04: [io  0x0800-0x080f] has been reserved
[    0.192553] system 00:04: [io  0x4000-0x407f] could not be reserved
[    0.192555] system 00:04: [io  0x4080-0x40ff] has been reserved
[    0.192558] system 00:04: [io  0x4400-0x447f] has been reserved
[    0.192560] system 00:04: [io  0x4480-0x44ff] has been reserved
[    0.192563] system 00:04: [io  0x4800-0x487f] has been reserved
[    0.192565] system 00:04: [io  0x4880-0x48ff] has been reserved
[    0.192567] system 00:04: [io  0x2000-0x207f] has been reserved
[    0.192570] system 00:04: [io  0x2080-0x20ff] has been reserved
[    0.192573] system 00:04: [mem 0x000d0000-0x000d3fff window] could not be reserved
[    0.192575] system 00:04: [mem 0x000d4000-0x000d7fff window] has been reserved
[    0.192578] system 00:04: [mem 0x000de000-0x000dffff window] has been reserved
[    0.192580] system 00:04: [mem 0xfee01000-0xfeefffff] has been reserved
[    0.192584] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.192656] pnp 00:05: Plug and Play ACPI device, IDs PNP0103 (active)
[    0.192732] system 00:06: [mem 0xfec00000-0xfec00fff] could not be reserved
[    0.192735] system 00:06: [mem 0xfee00000-0xfee00fff] has been reserved
[    0.192738] system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.192871] system 00:07: [io  0x0a00-0x0adf] has been reserved
[    0.192874] system 00:07: [io  0x0ae0-0x0aef] has been reserved
[    0.192878] system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.192952] system 00:08: [mem 0xe0000000-0xefffffff] has been reserved
[    0.192956] system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.193130] system 00:09: [mem 0x00000000-0x0009ffff] could not be reserved
[    0.193133] system 00:09: [mem 0x000c0000-0x000cffff] could not be reserved
[    0.193135] system 00:09: [mem 0x000e0000-0x000fffff] could not be reserved
[    0.193138] system 00:09: [mem 0x00100000-0xbfffffff] could not be reserved
[    0.193140] system 00:09: [mem 0xfec00000-0xffffffff] could not be reserved
[    0.193144] system 00:09: Plug and Play ACPI device, IDs PNP0c01 (active)
[    0.193423] pnp: PnP ACPI: found 10 devices
[    0.193425] ACPI: bus type PNP unregistered
[    0.203326] pci 0000:00:03.0: PCI bridge to [bus 01]
[    0.203331] pci 0000:00:03.0:   bridge window [io  0xd000-0xdfff]
[    0.203335] pci 0000:00:03.0:   bridge window [mem 0xf7f00000-0xf7ffffff]
[    0.203338] pci 0000:00:03.0:   bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
[    0.203343] pci 0000:00:06.0: PCI bridge to [bus 02]
[    0.203349] pci 0000:00:07.0: PCI bridge to [bus 03]
[    0.203357] pci 0000:00:10.0: PCI bridge to [bus 04]
[    0.203360] pci 0000:00:10.0:   bridge window [io  0xe000-0xefff]
[    0.203366] pci 0000:00:10.0:   bridge window [mem 0xf8000000-0xfebfffff]
[    0.203376] pci_bus 0000:00: resource 4 [io  0x0000-0xffff]
[    0.203378] pci_bus 0000:00: resource 5 [mem 0x00000000-0xfffffffff]
[    0.203381] pci_bus 0000:01: resource 0 [io  0xd000-0xdfff]
[    0.203383] pci_bus 0000:01: resource 1 [mem 0xf7f00000-0xf7ffffff]
[    0.203385] pci_bus 0000:01: resource 2 [mem 0xd0000000-0xdfffffff 64bit pref]
[    0.203388] pci_bus 0000:04: resource 0 [io  0xe000-0xefff]
[    0.203390] pci_bus 0000:04: resource 1 [mem 0xf8000000-0xfebfffff]
[    0.203392] pci_bus 0000:04: resource 4 [io  0x0000-0xffff]
[    0.203394] pci_bus 0000:04: resource 5 [mem 0x00000000-0xfffffffff]
[    0.203438] NET: Registered protocol family 2
[    0.203641] TCP established hash table entries: 32768 (order: 6, 262144 bytes)
[    0.203900] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)
[    0.204306] TCP: Hash tables configured (established 32768 bind 32768)
[    0.204407] TCP: reno registered
[    0.204417] UDP hash table entries: 2048 (order: 4, 65536 bytes)
[    0.204468] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
[    0.204585] NET: Registered protocol family 1
[    0.204957] ACPI: PCI Interrupt Link [LUB0] enabled at IRQ 23
[    0.280349] ACPI: PCI Interrupt Link [LUB2] enabled at IRQ 22
[    0.280534] pci 0000:01:00.0: Boot video device
[    0.280545] PCI: CLS 64 bytes, default 64
[    0.280651] Trying to unpack rootfs image as initramfs...
[    4.751680] Freeing initrd memory: 20264K (ffff88007ec36000 - ffff880080000000)
[    4.751699] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    4.751702] software IO TLB [mem 0xbbfc0000-0xbffc0000] (64MB) mapped at [ffff8800bbfc0000-ffff8800bffbffff]
[    4.752357] microcode: CPU0 sig=0x6fb, pf=0x10, revision=0x0
[    4.752366] microcode: CPU1 sig=0x6fb, pf=0x10, revision=0x0
[    4.752391] microcode: CPU2 sig=0x6fb, pf=0x10, revision=0x0
[    4.752419] microcode: CPU3 sig=0x6fb, pf=0x10, revision=0x0
[    4.752599] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[    4.752613] Scanning for low memory corruption every 60 seconds
[    4.752997] Initialise system trusted keyring
[    4.753070] audit: initializing netlink socket (disabled)
[    4.753124] type=2000 audit(1410706758.752:1): initialized
[    4.782249] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    4.783827] zbud: loaded
[    4.784051] VFS: Disk quotas dquot_6.5.2
[    4.784105] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    4.784717] fuse init (API version 7.22)
[    4.784871] msgmni has been set to 7900
[    4.784933] Key type big_key registered
[    4.786250] Key type asymmetric registered
[    4.786252] Asymmetric key parser 'x509' registered
[    4.786285] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
[    4.786365] io scheduler noop registered
[    4.786368] io scheduler deadline registered (default)
[    4.786410] io scheduler cfq registered
[    4.786578] pcieport 0000:00:03.0: irq 40 for MSI/MSI-X
[    4.786633] pcieport 0000:00:06.0: irq 41 for MSI/MSI-X
[    4.786686] pcieport 0000:00:07.0: irq 42 for MSI/MSI-X
[    4.786747] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    4.786763] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    4.786816] intel_idle: does not run on family 6 model 15
[    4.786823] ipmi message handler version 39.2
[    4.786912] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input0
[    4.786918] ACPI: Power Button [PWRB]
[    4.786961] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[    4.786964] ACPI: Power Button [PWRF]
[    4.787187] GHES: HEST is not enabled!
[    4.787348] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    4.790474] Linux agpgart interface v0.103
[    4.792896] brd: module loaded
[    4.794228] loop: module loaded
[    4.794675] libphy: Fixed MDIO Bus: probed
[    4.794772] tun: Universal TUN/TAP device driver, 1.6
[    4.794773] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[    4.794881] PPP generic driver version 2.4.2
[    4.794947] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    4.794962] ehci-pci: EHCI PCI platform driver
[    4.795105] ehci-pci 0000:00:0b.1: EHCI Host Controller
[    4.795113] ehci-pci 0000:00:0b.1: new USB bus registered, assigned bus number 1
[    4.795127] ehci-pci 0000:00:0b.1: debug port 1
[    4.795175] ehci-pci 0000:00:0b.1: cache line size of 64 is not supported
[    4.795197] ehci-pci 0000:00:0b.1: irq 22, io mem 0xf7efec00
[    4.804045] ehci-pci 0000:00:0b.1: USB 2.0 started, EHCI 1.00
[    4.804127] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    4.804131] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    4.804134] usb usb1: Product: EHCI Host Controller
[    4.804137] usb usb1: Manufacturer: Linux 3.13.0-32-generic ehci_hcd
[    4.804140] usb usb1: SerialNumber: 0000:00:0b.1
[    4.804305] hub 1-0:1.0: USB hub found
[    4.804317] hub 1-0:1.0: 8 ports detected
[    4.804496] ehci-platform: EHCI generic platform driver
[    4.804504] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    4.804506] ohci-pci: OHCI PCI platform driver
[    4.804604] ohci-pci 0000:00:0b.0: OHCI PCI host controller
[    4.804610] ohci-pci 0000:00:0b.0: new USB bus registered, assigned bus number 2
[    4.804639] ohci-pci 0000:00:0b.0: irq 23, io mem 0xf7eff000
[    4.862073] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001
[    4.862076] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    4.862078] usb usb2: Product: OHCI PCI host controller
[    4.862081] usb usb2: Manufacturer: Linux 3.13.0-32-generic ohci_hcd
[    4.862083] usb usb2: SerialNumber: 0000:00:0b.0
[    4.862237] hub 2-0:1.0: USB hub found
[    4.862248] hub 2-0:1.0: 8 ports detected
[    4.862426] ohci-platform: OHCI generic platform driver
[    4.862433] uhci_hcd: USB Universal Host Controller Interface driver
[    4.862496] i8042: PNP: No PS/2 controller found. Probing ports directly.
[    4.864930] serio: i8042 KBD port at 0x60,0x64 irq 1
[    4.864936] serio: i8042 AUX port at 0x60,0x64 irq 12
[    4.865105] mousedev: PS/2 mouse device common for all mice
[    4.865383] rtc_cmos 00:01: RTC can wake from S4
[    4.865603] rtc_cmos 00:01: rtc core: registered rtc_cmos as rtc0
[    4.865643] rtc_cmos 00:01: alarms up to one year, y3k, 114 bytes nvram, hpet irqs
[    4.865711] device-mapper: uevent: version 1.0.3
[    4.865821] device-mapper: ioctl: 4.27.0-ioctl (2013-10-30) initialised: dm-devel@redhat.com
[    4.865841] ledtrig-cpu: registered to indicate activity on CPUs
[    4.865964] TCP: cubic registered
[    4.866063] NET: Registered protocol family 10
[    4.866269] NET: Registered protocol family 17
[    4.866285] Key type dns_resolver registered
[    4.866746] Loading compiled-in X.509 certificates
[    4.867869] Loaded X.509 cert 'Magrathea: Glacier signing key: 5e3c0f9ca6e36543535fa2bb5b709e84f16da7c7'
[    4.867894] registered taskstats version 1
[    4.871248] Key type trusted registered
[    4.873966] Key type encrypted registered
[    4.876705] AppArmor: AppArmor sha1 policy hashing enabled
[    4.876708] IMA: No TPM chip found, activating TPM-bypass!
[    4.877070] regulator-dummy: disabling
[    4.877197]   Magic number: 14:995:990
[    4.877201] machinecheck machinecheck3: hash matches
[    4.877289] memory memory33: hash matches
[    4.877372] rtc_cmos 00:01: setting system clock to 2014-09-14 14:59:19 UTC (1410706759)
[    4.877901] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[    4.877903] EDD information not available.
[    4.877932] PM: Hibernation image not present or could not be loaded.
[    4.879907] Freeing unused kernel memory: 1336K (ffffffff81d1f000 - ffffffff81e6d000)
[    4.879909] Write protecting the kernel read-only data: 12288k
[    4.882780] Freeing unused kernel memory: 816K (ffff880001734000 - ffff880001800000)
[    4.885190] Freeing unused kernel memory: 696K (ffff880001b52000 - ffff880001c00000)
[    4.906334] systemd-udevd[115]: starting version 204
[    4.939251] pata_amd 0000:00:0d.0: version 0.4.1
[    4.940202] scsi0 : pata_amd
[    4.940326] scsi1 : pata_amd
[    4.940380] ata1: PATA max UDMA/133 cmd 0x1f0 ctl 0x3f6 bmdma 0xffa0 irq 14
[    4.940382] ata2: PATA max UDMA/133 cmd 0x170 ctl 0x376 bmdma 0xffa8 irq 15
[    4.942574] [drm] Initialized drm 1.1.0 20060810
[    4.943012] sata_nv 0000:00:0e.0: version 3.5
[    4.943254] ACPI: PCI Interrupt Link [LSA0] enabled at IRQ 21
[    4.943274] sata_nv 0000:00:0e.0: Using SWNCQ mode
[    4.943732] scsi2 : sata_nv
[    4.943970] scsi3 : sata_nv
[    4.944049] ata3: SATA max UDMA/133 cmd 0xc800 ctl 0xc480 bmdma 0xc000 irq 21
[    4.944053] ata4: SATA max UDMA/133 cmd 0xc400 ctl 0xc080 bmdma 0xc008 irq 21
[    4.944379] ACPI: PCI Interrupt Link [LSA1] enabled at IRQ 20
[    4.944465] sata_nv 0000:00:0f.0: Using SWNCQ mode
[    4.945011] scsi4 : sata_nv
[    4.945099] scsi5 : sata_nv
[    4.945137] ata5: SATA max UDMA/133 cmd 0xbc00 ctl 0xb880 bmdma 0xb400 irq 20
[    4.945140] ata6: SATA max UDMA/133 cmd 0xb800 ctl 0xb480 bmdma 0xb408 irq 20
[    4.946744] forcedeth: Reverse Engineered nForce ethernet driver. Version 0.64.
[    4.946934] ACPI: PCI Interrupt Link [LMAC] enabled at IRQ 23
[    4.959930] ACPI: PCI Interrupt Link [LNKD] enabled at IRQ 19
[    4.982865] [drm] radeon kernel modesetting enabled.
[    4.983537] ACPI: PCI Interrupt Link [LNEA] enabled at IRQ 18
[    4.984703] [drm] initializing kernel modesetting (BARTS 0x1002:0x6738 0x1682:0x3100).
[    4.984765] [drm] register mmio base: 0xF7FE0000
[    4.984767] [drm] register mmio size: 131072
[    4.985898] ATOM BIOS: BARTS
[    4.986046] radeon 0000:01:00.0: VRAM: 1024M 0x0000000000000000 - 0x000000003FFFFFFF (1024M used)
[    4.986049] radeon 0000:01:00.0: GTT: 1024M 0x0000000040000000 - 0x000000007FFFFFFF
[    4.986051] [drm] Detected VRAM RAM=1024M, BAR=256M
[    4.986053] [drm] RAM width 256bits DDR
[    4.986259] [TTM] Zone  kernel: Available graphics memory: 2023914 kiB
[    4.986262] [TTM] Initializing pool allocator
[    4.986269] [TTM] Initializing DMA pool allocator
[    4.986344] [drm] radeon: 1024M of VRAM memory ready
[    4.986346] [drm] radeon: 1024M of GTT memory ready.
[    4.986364] [drm] Loading BARTS Microcode
[    4.987227] [drm] GART: num cpu pages 262144, num gpu pages 262144
[    5.006446] [drm] PCIE GART of 1024M enabled (table at 0x0000000000273000).
[    5.006590] radeon 0000:01:00.0: WB enabled
[    5.006594] radeon 0000:01:00.0: fence driver on ring 0 use gpu addr 0x0000000040000c00 and cpu addr 0xffff88007f1b0c00
[    5.006597] radeon 0000:01:00.0: fence driver on ring 3 use gpu addr 0x0000000040000c0c and cpu addr 0xffff88007f1b0c0c
[    5.008099] radeon 0000:01:00.0: fence driver on ring 5 use gpu addr 0x0000000000072118 and cpu addr 0xffffc90010832118
[    5.009175] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[    5.009178] [drm] Driver supports precise vblank timestamp query.
[    5.009211] radeon 0000:01:00.0: irq 43 for MSI/MSI-X
[    5.009236] radeon 0000:01:00.0: radeon: using MSI.
[    5.009291] [drm] radeon: irq initialized.
[    5.016086] firewire_ohci 0000:04:09.0: added OHCI v1.10 device as card 0, 4 IR + 8 IT contexts, quirks 0x11
[    5.026444] [drm] ring test on 0 succeeded in 2 usecs
[    5.026508] [drm] ring test on 3 succeeded in 1 usecs
[    5.180033] usb 1-2: new high-speed USB device number 3 using ehci-pci
[    5.212258] [drm] ring test on 5 succeeded in 2 usecs
[    5.212268] [drm] UVD initialized successfully.
[    5.212753] [drm] Enabling audio 0 support
[    5.212809] [drm] ib test on ring 0 succeeded in 0 usecs
[    5.212860] [drm] ib test on ring 3 succeeded in 0 usecs
[    5.364031] [drm] ib test on ring 5 succeeded
[    5.365281] [drm] Radeon Display Connectors
[    5.365283] [drm] Connector 0:
[    5.365285] [drm]   DP-1
[    5.365286] [drm]   HPD4
[    5.365288] [drm]   DDC: 0x6430 0x6430 0x6434 0x6434 0x6438 0x6438 0x643c 0x643c
[    5.365289] [drm]   Encoders:
[    5.365291] [drm]     DFP1: INTERNAL_UNIPHY2
[    5.365292] [drm] Connector 1:
[    5.365293] [drm]   DP-2
[    5.365294] [drm]   HPD5
[    5.365296] [drm]   DDC: 0x6440 0x6440 0x6444 0x6444 0x6448 0x6448 0x644c 0x644c
[    5.365297] [drm]   Encoders:
[    5.365298] [drm]     DFP2: INTERNAL_UNIPHY2
[    5.365300] [drm] Connector 2:
[    5.365301] [drm]   HDMI-A-1
[    5.365302] [drm]   HPD3
[    5.365304] [drm]   DDC: 0x6460 0x6460 0x6464 0x6464 0x6468 0x6468 0x646c 0x646c
[    5.365305] [drm]   Encoders:
[    5.365306] [drm]     DFP3: INTERNAL_UNIPHY1
[    5.365307] [drm] Connector 3:
[    5.365309] [drm]   DVI-D-1
[    5.365310] [drm]   HPD1
[    5.365312] [drm]   DDC: 0x6480 0x6480 0x6484 0x6484 0x6488 0x6488 0x648c 0x648c
[    5.365313] [drm]   Encoders:
[    5.365314] [drm]     DFP4: INTERNAL_UNIPHY1
[    5.365315] [drm] Connector 4:
[    5.365317] [drm]   DVI-I-1
[    5.365318] [drm]   HPD6
[    5.365319] [drm]   DDC: 0x6470 0x6470 0x6474 0x6474 0x6478 0x6478 0x647c 0x647c
[    5.365321] [drm]   Encoders:
[    5.365322] [drm]     DFP5: INTERNAL_UNIPHY
[    5.365323] [drm]     CRT1: INTERNAL_KLDSCP_DAC1
[    5.365445] [drm] Internal thermal controller with fan control
[    5.366612] [drm] radeon: power management initialized
[    5.381850] usb 1-2: New USB device found, idVendor=0c45, idProduct=6300
[    5.381853] usb 1-2: New USB device strings: Mfr=2, Product=1, SerialNumber=0
[    5.381856] usb 1-2: Product: ASUS USB2.0 Webcam
[    5.381858] usb 1-2: Manufacturer: ASUSTeK Computer Inc.
[    5.416241] ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    5.416336] [drm] fb mappable at 0xD0474000
[    5.416339] [drm] vram apper at 0xD0000000
[    5.416340] [drm] size 8294400
[    5.416341] [drm] fb depth is 24
[    5.416343] [drm]    pitch is 7680
[    5.416447] fbcon: radeondrmfb (fb0) is primary device
[    5.420081] ata5: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    5.440614] ata3.00: ATA-8: Hitachi HDP725050GLA360, GM4OA5CA, max UDMA/133
[    5.440615] ata3.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 31/32)
[    5.441634] ata5.00: ATAPI: Optiarc DVD RW AD-7170S, 1.82, max UDMA/33
[    5.448220] Console: switching to colour frame buffer device 240x67
[    5.453409] radeon 0000:01:00.0: fb0: radeondrmfb frame buffer device
[    5.453412] radeon 0000:01:00.0: registered panic notifier
[    5.453417] [drm] Initialized radeon 2.36.0 20080528 for 0000:01:00.0 on minor 0
[    5.456421] ata5.00: configured for UDMA/33
[    5.456910] ata3.00: configured for UDMA/133
[    5.457094] scsi 2:0:0:0: Direct-Access     ATA      Hitachi HDP72505 GM4O PQ: 0 ANSI: 5
[    5.457368] sd 2:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/465 GiB)
[    5.457378] sd 2:0:0:0: Attached scsi generic sg0 type 0
[    5.457471] sd 2:0:0:0: [sda] Write Protect is off
[    5.457474] sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    5.457518] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    5.469220] forcedeth 0000:00:14.0: ifname eth0, PHY OUI 0x732 @ 1, addr 00:19:db:67:1e:86
[    5.469223] forcedeth 0000:00:14.0: highdma pwrctl gbit lnktim desc-v3
[    5.490198]  sda: sda1 sda2
[    5.490598] sd 2:0:0:0: [sda] Attached SCSI disk
[    5.516138] firewire_core 0000:04:09.0: created device fw0: GUID 0010dc00012f2af9, S400
[    5.548148] usb 1-6: new high-speed USB device number 5 using ehci-pci
[    5.682484] usb 1-6: New USB device found, idVendor=090c, idProduct=1000
[    5.682489] usb 1-6: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    5.682492] usb 1-6: Product: Flash Disk
[    5.682496] usb 1-6: Manufacturer: USB
[    5.682498] usb 1-6: SerialNumber: FBH1111180810965
[    5.686197] usb-storage 1-6:1.0: USB Mass Storage device detected
[    5.686366] scsi6 : usb-storage 1-6:1.0
[    5.686462] usbcore: registered new interface driver usb-storage
[    5.752055] tsc: Refined TSC clocksource calibration: 2399.977 MHz
[    5.924080] ata4: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    5.932552] ata4.00: ATAPI: HL-DT-STDVD-ROM GDRH20N, 0F04, max UDMA/100
[    5.948337] ata4.00: configured for UDMA/100
[    5.950238] scsi 3:0:0:0: CD-ROM            HL-DT-ST DVD-ROM GDRH20N  0F04 PQ: 0 ANSI: 5
[    5.951971] sr0: scsi3-mmc drive: 32x/32x cd/rw xa/form2 cdda tray
[    5.951975] cdrom: Uniform CD-ROM driver Revision: 3.20
[    5.952218] sr 3:0:0:0: Attached scsi CD-ROM sr0
[    5.952359] sr 3:0:0:0: Attached scsi generic sg1 type 5
[    5.953433] scsi 4:0:0:0: CD-ROM            Optiarc  DVD RW AD-7170S  1.82 PQ: 0 ANSI: 5
[    5.956107] sr1: scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 cdda tray
[    5.956337] sr 4:0:0:0: Attached scsi CD-ROM sr1
[    5.956495] sr 4:0:0:0: Attached scsi generic sg2 type 5
[    6.112174] usb 2-1: new low-speed USB device number 2 using ohci-pci
[    6.326092] usb 2-1: New USB device found, idVendor=046d, idProduct=c050
[    6.326097] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    6.326101] usb 2-1: Product: USB-PS/2 Optical Mouse
[    6.326104] usb 2-1: Manufacturer: Logitech
[    6.332723] hidraw: raw HID events driver (C) Jiri Kosina
[    6.341392] usbcore: registered new interface driver usbhid
[    6.341394] usbhid: USB HID core driver
[    6.343308] input: Logitech USB-PS/2 Optical Mouse as /devices/pci0000:00/0000:00:0b.0/usb2/2-1/2-1:1.0/input/input5
[    6.343822] hid-generic 0003:046D:C050.0001: input,hidraw0: USB HID v1.10 Mouse [Logitech USB-PS/2 Optical Mouse] on usb-0000:00:0b.0-1/input0
[    6.424082] ata6: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    6.446016] ata6.00: ATA-7: WDC WD5000AAKS-07TMA0, 12.01C01, max UDMA/133
[    6.446021] ata6.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 31/32)
[    6.460611] ata6.00: configured for UDMA/133
[    6.460776] scsi 5:0:0:0: Direct-Access     ATA      WDC WD5000AAKS-0 12.0 PQ: 0 ANSI: 5
[    6.461002] sd 5:0:0:0: Attached scsi generic sg3 type 0
[    6.461023] sd 5:0:0:0: [sdb] 976773168 512-byte logical blocks: (500 GB/465 GiB)
[    6.461126] sd 5:0:0:0: [sdb] Write Protect is off
[    6.461129] sd 5:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[    6.461180] sd 5:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    6.467419]  sdb: sdb1
[    6.467811] sd 5:0:0:0: [sdb] Attached SCSI disk
[    6.620065] usb 2-3: new low-speed USB device number 3 using ohci-pci
[    6.686508] scsi 6:0:0:0: Direct-Access     USB      Flash Disk       1100 PQ: 0 ANSI: 4
[    6.686824] sd 6:0:0:0: Attached scsi generic sg4 type 0
[    6.687367] sd 6:0:0:0: [sdc] 15667200 512-byte logical blocks: (8.02 GB/7.47 GiB)
[    6.688371] sd 6:0:0:0: [sdc] Write Protect is off
[    6.688376] sd 6:0:0:0: [sdc] Mode Sense: 43 00 00 00
[    6.689366] sd 6:0:0:0: [sdc] No Caching mode page found
[    6.689369] sd 6:0:0:0: [sdc] Assuming drive cache: write through
[    6.693365] sd 6:0:0:0: [sdc] No Caching mode page found
[    6.693369] sd 6:0:0:0: [sdc] Assuming drive cache: write through
[    6.694010]  sdc: sdc1
[    6.698367] sd 6:0:0:0: [sdc] No Caching mode page found
[    6.698371] sd 6:0:0:0: [sdc] Assuming drive cache: write through
[    6.698375] sd 6:0:0:0: [sdc] Attached SCSI removable disk
[    6.752533] Switched to clocksource tsc
[    6.828117] usb 2-3: New USB device found, idVendor=04f3, idProduct=0103
[    6.828123] usb 2-3: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    6.839545] input: HID 04f3:0103 as /devices/pci0000:00/0000:00:0b.0/usb2/2-3/2-3:1.0/input/input6
[    6.839717] hid-generic 0003:04F3:0103.0002: input,hidraw1: USB HID v1.10 Keyboard [HID 04f3:0103] on usb-0000:00:0b.0-3/input0
[    6.849210] input: HID 04f3:0103 as /devices/pci0000:00/0000:00:0b.0/usb2/2-3/2-3:1.1/input/input7
[    6.849337] hid-generic 0003:04F3:0103.0003: input,hidraw2: USB HID v1.10 Device [HID 04f3:0103] on usb-0000:00:0b.0-3/input1
[    7.111636] random: nonblocking pool is initialized
[    7.242453] EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null)
[    9.666612] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[   19.398239] EXT4-fs (loop1): mounting ext2 file system using the ext4 subsystem
[   19.410705] EXT4-fs (loop1): mounted filesystem without journal. Opts: (null)
[   39.513454] Adding 2103292k swap on /dev/sda1.  Priority:-1 extents:1 across:2103292k FS
[   39.539500] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[   39.655789] systemd-udevd[2356]: starting version 204
[   39.797287] lp: driver loaded but no devices found
[   39.824351] ppdev: user-space parallel port driver
[   40.046232] i2c i2c-10: nForce2 SMBus adapter at 0x5000
[   40.046266] i2c i2c-11: nForce2 SMBus adapter at 0x6000
[   40.103423] Bluetooth: Core ver 2.17
[   40.103485] NET: Registered protocol family 31
[   40.103487] Bluetooth: HCI device and connection manager initialized
[   40.103516] Bluetooth: HCI socket layer initialized
[   40.103520] Bluetooth: L2CAP socket layer initialized
[   40.103526] Bluetooth: SCO socket layer initialized
[   40.175831] Bluetooth: RFCOMM TTY layer initialized
[   40.175854] Bluetooth: RFCOMM socket layer initialized
[   40.175871] Bluetooth: RFCOMM ver 1.11
[   40.186233] init: cups main process (2443) killed by HUP signal
[   40.186251] init: cups main process ended, respawning
[   40.194509] nv_tco: NV TCO WatchDog Timer Driver v0.01
[   40.198183] nv_tco: Watchdog reboot not detected
[   40.198386] nv_tco: initialized (0x4440). heartbeat=30 sec (nowayout=0)
[   40.243648] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[   40.243655] Bluetooth: BNEP filters: protocol multicast
[   40.243683] Bluetooth: BNEP socket layer initialized
[   40.286838] device-mapper: multipath: version 1.6.0 loaded
[   40.331631] Linux video capture interface: v2.00
[   40.338837] coretemp coretemp.0: Using relative temperature scale!
[   40.338877] coretemp coretemp.0: Using relative temperature scale!
[   40.338896] coretemp coretemp.0: Using relative temperature scale!
[   40.338915] coretemp coretemp.0: Using relative temperature scale!
[   40.366227] uvcvideo: Found UVC 1.00 device ASUS USB2.0 Webcam (0c45:6300)
[   40.376184] input: ASUS USB2.0 Webcam as /devices/pci0000:00/0000:00:0b.1/usb1/1-2/1-2:1.0/input/input8
[   40.376415] usbcore: registered new interface driver uvcvideo
[   40.376417] USB Video Class driver (1.1.1)
[   40.613695] ACPI: PCI Interrupt Link [LAZA] enabled at IRQ 22
[   40.613744] hda_intel: Disabling MSI
[   40.613787] hda-intel 0000:00:10.1: Disabling 64bit DMA
[   40.626069] ctxfi: chip 20K1 model Unknown (1102:0028) is found
[   40.626296] ACPI: PCI Interrupt Link [LNKC] enabled at IRQ 17
[   40.628117] hda-intel 0000:00:10.1: Enable delay in RIRB handling
[   40.693941] init: failsafe main process (2616) killed by TERM signal
[   40.946113] ctxfi: Use xfi-native timer
[   41.284114] SKU: Nid=0x1d sku_cfg=0x4007f603
[   41.284128] SKU: port_connectivity=0x1
[   41.284129] SKU: enable_pcbeep=0x0
[   41.284132] SKU: check_sum=0x00000007
[   41.284133] SKU: customization=0x000000f6
[   41.284134] SKU: external_amp=0x0
[   41.284136] SKU: platform_type=0x0
[   41.284137] SKU: swap=0x1
[   41.284138] SKU: override=0x1
[   41.308542] init: alsa-restore main process (2980) terminated with status 99
[   41.356084] autoconfig: line_outs=3 (0x14/0x15/0x16/0x0/0x0) type:line
[   41.356094]    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[   41.356096]    hp_outs=1 (0x1b/0x0/0x0/0x0/0x0)
[   41.356098]    mono: mono_out=0x0
[   41.356100]    dig-out=0x1e/0x0
[   41.356101]    inputs:
[   41.356104]      Rear Mic=0x18
[   41.356106]      Front Mic=0x19
[   41.356108]      Line=0x1a
[   41.356109]      CD=0x1c
[   41.356112] realtek: No valid SSID, checking pincfg 0x4007f603 for NID 0x1d
[   41.356114] realtek: Enabling init ASM_ID=0xf603 CODEC_ID=10ec0888
[   43.068188] input: HDA NVidia Front Headphone as /devices/pci0000:00/0000:00:10.1/sound/card0/input15
[   43.068560] input: HDA NVidia Line Out CLFE as /devices/pci0000:00/0000:00:10.1/sound/card0/input14
[   43.068767] input: HDA NVidia Line Out Surround as /devices/pci0000:00/0000:00:10.1/sound/card0/input13
[   43.068920] input: HDA NVidia Line Out Front as /devices/pci0000:00/0000:00:10.1/sound/card0/input12
[   43.069044] input: HDA NVidia Line as /devices/pci0000:00/0000:00:10.1/sound/card0/input11
[   43.069169] input: HDA NVidia Front Mic as /devices/pci0000:00/0000:00:10.1/sound/card0/input10
[   43.069300] input: HDA NVidia Rear Mic as /devices/pci0000:00/0000:00:10.1/sound/card0/input9
[   43.070039] ACPI: PCI Interrupt Link [LNEB] enabled at IRQ 16
[   43.070080] hda-intel 0000:01:00.1: Handle VGA-switcheroo audio client
[   43.070082] hda-intel 0000:01:00.1: Using LPIB position fix
[   43.070133] snd_hda_intel 0000:01:00.1: irq 44 for MSI/MSI-X
[   43.076707] hda-intel 0000:01:00.1: Enable sync_write for stable communication
[   49.376275] HDMI ATI/AMD: no speaker allocation for ELD
[   49.376440] input: HDA ATI HDMI HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:03.0/0000:01:00.1/sound/card2/input16
[   57.562793] init: plymouth-upstart-bridge main process ended, respawning
[   57.572398] init: plymouth-upstart-bridge main process (3428) terminated with status 1
[   57.572417] init: plymouth-upstart-bridge main process ended, respawning
[  232.696679] perf samples too long (2522 > 2500), lowering kernel.perf_event_max_sample_rate to 50000
[  460.538168] systemd-hostnamed[16944]: Warning: nss-myhostname is not installed. Changing the local hostname might make it unresolveable. Please install nss-myhostname!
[  622.812037] ata4.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x6 frozen
[  622.812049] sr 3:0:0:0: CDB: 
[  622.812052] Get event status notification: 4a 01 00 00 10 00 00 00 08 00
[  622.812067] ata4.00: cmd a0/00:00:00:08:00/00:00:00:00:00/a0 tag 26 pio 16392 in
[  622.812067]          res 58/00:02:00:08:00/00:00:00:00:00/a0 Emask 0x6 (timeout)
[  622.812072] ata4.00: status: { DRDY DRQ }
[  622.812078] ata4: hard resetting link
[  622.812081] ata4: nv: skipping hardreset on occupied port
[  623.280040] ata4: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[  623.304293] ata4.00: configured for UDMA/100
[  628.304035] ata4.00: qc timeout (cmd 0xa0)
[  628.304043] ata4.00: TEST_UNIT_READY failed (err_mask=0x5)
[  628.304050] ata4: hard resetting link
[  628.304053] ata4: nv: skipping hardreset on occupied port
[  628.772045] ata4: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[  628.796295] ata4.00: configured for UDMA/100
[  633.796035] ata4.00: qc timeout (cmd 0xa0)
[  633.796043] ata4.00: TEST_UNIT_READY failed (err_mask=0x5)
[  633.796048] ata4: limiting SATA link speed to 1.5 Gbps
[  633.796052] ata4.00: limiting speed to UDMA/100:PIO3
[  633.796059] ata4: hard resetting link
[  633.796061] ata4: nv: skipping hardreset on occupied port
[  634.264051] ata4: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[  634.288296] ata4.00: configured for UDMA/100
[  639.288040] ata4.00: qc timeout (cmd 0xa0)
[  639.288047] ata4.00: TEST_UNIT_READY failed (err_mask=0x5)
[  639.288051] ata4.00: disabled
[  639.288070] ata4: hard resetting link
[  640.168046] ata4: SATA link up 1.5 Gbps (SStatus 113 SControl 310)
[  640.168085] ata4: EH complete
[  841.788544] ata3: drained 512 bytes to clear DRQ
[  841.788555] ata3.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x6 frozen
[  841.788562] ata3.00: failed command: IDENTIFY DEVICE
[  841.788569] ata3.00: cmd ec/00:01:00:00:00/00:00:00:00:00/00 tag 25 pio 512 in
[  841.788569]          res 40/00:00:00:00:00/00:00:00:00:00/00 Emask 0x4 (timeout)
[  841.788573] ata3.00: status: { DRDY }
[  841.788579] ata3: hard resetting link
[  841.788581] ata3: nv: skipping hardreset on occupied port
[  842.256042] ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[  847.264039] ata3.00: qc timeout (cmd 0x27)
[  847.264046] ata3.00: failed to read native max address (err_mask=0x4)
[  847.264049] ata3.00: HPA support seems broken, skipping HPA handling
[  847.264052] ata3.00: revalidation failed (errno=-5)
[  847.264061] ata3: hard resetting link
[  847.264063] ata3: nv: skipping hardreset on occupied port
[  847.732048] ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[  847.748300] ata3.00: configured for UDMA/133
[  847.748334] ata3: EH complete
[  854.780044] ata3.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x6 frozen
[  854.780052] ata3.00: failed command: CHECK POWER MODE
[  854.780060] ata3.00: cmd e5/00:00:00:00:00/00:00:00:00:00/00 tag 26
[  854.780060]          res 40/00:00:00:00:00/00:00:00:00:00/00 Emask 0x4 (timeout)
[  854.780064] ata3.00: status: { DRDY }
[  854.780070] ata3: hard resetting link
[  854.780073] ata3: nv: skipping hardreset on occupied port
[  855.248049] ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[  855.272297] ata3.00: configured for UDMA/133
[  855.272320] ata3: EH complete
[ 1441.788556] ata3: drained 512 bytes to clear DRQ
[ 1441.788565] ata3.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x6 frozen
[ 1441.788570] ata3.00: failed command: IDENTIFY DEVICE
[ 1441.788575] ata3.00: cmd ec/00:01:00:00:00/00:00:00:00:00/00 tag 27 pio 512 in
[ 1441.788575]          res 40/00:00:00:00:00/00:00:00:00:00/00 Emask 0x4 (timeout)
[ 1441.788577] ata3.00: status: { DRDY }
[ 1441.788582] ata3: hard resetting link
[ 1441.788584] ata3: nv: skipping hardreset on occupied port
[ 1442.256061] ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[ 1442.280321] ata3.00: configured for UDMA/133
[ 1442.280333] ata3: EH complete
[ 1449.788034] ata3.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x6 frozen
[ 1449.788042] ata3.00: failed command: CHECK POWER MODE
[ 1449.788050] ata3.00: cmd e5/00:00:00:00:00/00:00:00:00:00/00 tag 28
[ 1449.788050]          res 40/00:00:00:00:00/00:00:00:00:00/00 Emask 0x4 (timeout)
[ 1449.788054] ata3.00: status: { DRDY }
[ 1449.788060] ata3: hard resetting link
[ 1449.788062] ata3: nv: skipping hardreset on occupied port
[ 1450.256043] ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[ 1450.280297] ata3.00: configured for UDMA/133
[ 1450.280315] ata3: EH complete