ubuntuusers.de

dmesg

Datum:
20. März 2012 15:23
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
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Linux version 3.0.0-16-generic (buildd@roseapple) (gcc version 4.6.1 (Ubuntu/Linaro 4.6.1-9ubuntu3) ) #29-Ubuntu SMP Tue Feb 14 12:48:51 UTC 2012 (Ubuntu 3.0.0-16.29-generic 3.0.20)
[    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-3.0.0-16-generic root=UUID=83181ca4-e07c-4cd3-941b-5ffe0676da05 ro quiet splash vt.handoff=7
[    0.000000] KERNEL supported cpus:
[    0.000000]   Intel GenuineIntel
[    0.000000]   AMD AuthenticAMD
[    0.000000]   Centaur CentaurHauls
[    0.000000] BIOS-provided physical RAM map:
[    0.000000]  BIOS-e820: 0000000000000000 - 000000000009dc00 (usable)
[    0.000000]  BIOS-e820: 000000000009dc00 - 00000000000a0000 (reserved)
[    0.000000]  BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved)
[    0.000000]  BIOS-e820: 0000000000100000 - 00000000bf780000 (usable)
[    0.000000]  BIOS-e820: 00000000bf780000 - 00000000bf78e000 (ACPI data)
[    0.000000]  BIOS-e820: 00000000bf78e000 - 00000000bf7d0000 (ACPI NVS)
[    0.000000]  BIOS-e820: 00000000bf7d0000 - 00000000bf7e0000 (reserved)
[    0.000000]  BIOS-e820: 00000000bf7ed000 - 00000000c0000000 (reserved)
[    0.000000]  BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved)
[    0.000000]  BIOS-e820: 00000000ffb00000 - 0000000100000000 (reserved)
[    0.000000]  BIOS-e820: 0000000100000000 - 00000001c0000000 (usable)
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] DMI present.
[    0.000000] DMI: Packard Bell ipower G3710/FMP55, BIOS P01-B1 12/15/2009
[    0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
[    0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
[    0.000000] No AGP bridge found
[    0.000000] last_pfn = 0x1c0000 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-BFFFF uncachable
[    0.000000]   C0000-D3FFF write-protect
[    0.000000]   D4000-DFFFF uncachable
[    0.000000]   E0000-E3FFF write-protect
[    0.000000]   E4000-E7FFF write-through
[    0.000000]   E8000-EBFFF write-protect
[    0.000000]   EC000-EFFFF write-through
[    0.000000]   F0000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 1C0000000 mask FC0000000 uncachable
[    0.000000]   1 base 000000000 mask E00000000 write-back
[    0.000000]   2 base 0C0000000 mask FC0000000 uncachable
[    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: 7GB, range: 1GB, type UC
[    0.000000] reg 1, base: 0GB, range: 8GB, type WB
[    0.000000] reg 2, base: 3GB, range: 1GB, type UC
[    0.000000] total RAM covered: 6144M
[    0.000000] Found optimal setting for mtrr clean up
[    0.000000]  gran_size: 64K 	chunk_size: 64K 	num_reg: 4  	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: 2GB, type WB
[    0.000000] reg 3, base: 6GB, range: 1GB, type WB
[    0.000000] e820 update range: 00000000c0000000 - 0000000100000000 (usable) ==> (reserved)
[    0.000000] last_pfn = 0xbf780 max_arch_pfn = 0x400000000
[    0.000000] found SMP MP-table at [ffff8800000ff780] ff780
[    0.000000] initial memory mapped : 0 - 20000000
[    0.000000] Base memory trampoline at [ffff880000098000] 98000 size 20480
[    0.000000] init_memory_mapping: 0000000000000000-00000000bf780000
[    0.000000]  0000000000 - 00bf600000 page 2M
[    0.000000]  00bf600000 - 00bf780000 page 4k
[    0.000000] kernel direct mapping tables up to bf780000 @ 1fffb000-20000000
[    0.000000] init_memory_mapping: 0000000100000000-00000001c0000000
[    0.000000]  0100000000 - 01c0000000 page 2M
[    0.000000] kernel direct mapping tables up to 1c0000000 @ bf778000-bf780000
[    0.000000] RAMDISK: 35a14000 - 36d02000
[    0.000000] ACPI: RSDP 00000000000f9cf0 00024 (v02 ACPIAM)
[    0.000000] ACPI: XSDT 00000000bf780100 0006C (v01 ACRSYS ACRPRDCT 20091215 MSFT 00000097)
[    0.000000] ACPI: FACP 00000000bf780290 000F4 (v04 ACRSYS FACP1350 20091215 MSFT 00000097)
[    0.000000] ACPI: DSDT 00000000bf7805e0 07E42 (v02  926A1 926A1P13 00000000 INTL 20051117)
[    0.000000] ACPI: FACS 00000000bf78e000 00040
[    0.000000] ACPI: APIC 00000000bf780390 0008C (v02 ACRSYS APIC1350 20091215 MSFT 00000097)
[    0.000000] ACPI: MCFG 00000000bf780420 0003C (v01 ACRSYS OEMMCFG  20091215 MSFT 00000097)
[    0.000000] ACPI: SLIC 00000000bf780460 00176 (v01 ACRSYS ACRPRDCT 20091215 MSFT 00000097)
[    0.000000] ACPI: OEMB 00000000bf78e040 00072 (v01 ACRSYS OEMB1350 20091215 MSFT 00000097)
[    0.000000] ACPI: HPET 00000000bf78a5e0 00038 (v01 ACRSYS OEMHPET  20091215 MSFT 00000097)
[    0.000000] ACPI: GSCI 00000000bf78e0c0 02024 (v01 ACRSYS GMCHSCI  20091215 MSFT 00000097)
[    0.000000] ACPI: AWMI 00000000bf7900f0 0004E (v01 ACRSYS OEMB1350 20091215 MSFT 00000097)
[    0.000000] ACPI: SSDT 00000000bf792590 00363 (v01 DpgPmm    CpuPm 00000012 INTL 20051117)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] No NUMA configuration found
[    0.000000] Faking a node at 0000000000000000-00000001c0000000
[    0.000000] Initmem setup node 0 0000000000000000-00000001c0000000
[    0.000000]   NODE_DATA [00000001bfffb000 - 00000001bfffffff]
[    0.000000]  [ffffea0000000000-ffffea00061fffff] PMD -> [ffff8801b9600000-ffff8801be9fffff] on node 0
[    0.000000] Zone PFN ranges:
[    0.000000]   DMA      0x00000010 -> 0x00001000
[    0.000000]   DMA32    0x00001000 -> 0x00100000
[    0.000000]   Normal   0x00100000 -> 0x001c0000
[    0.000000] Movable zone start PFN for each node
[    0.000000] early_node_map[3] active PFN ranges
[    0.000000]     0: 0x00000010 -> 0x0000009d
[    0.000000]     0: 0x00000100 -> 0x000bf780
[    0.000000]     0: 0x00100000 -> 0x001c0000
[    0.000000] On node 0 totalpages: 1570573
[    0.000000]   DMA zone: 56 pages used for memmap
[    0.000000]   DMA zone: 5 pages reserved
[    0.000000]   DMA zone: 3920 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 14280 pages used for memmap
[    0.000000]   DMA32 zone: 765880 pages, LIFO batch:31
[    0.000000]   Normal zone: 10752 pages used for memmap
[    0.000000]   Normal zone: 775680 pages, LIFO batch:31
[    0.000000] ACPI: PM-Timer IO Port: 0x808
[    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[0x02] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x04] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x06] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x01] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x03] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x05] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x07] enabled)
[    0.000000] ACPI: IOAPIC (id[0x08] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 8, version 32, 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: IRQ0 used by override.
[    0.000000] ACPI: IRQ2 used by override.
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0xffffffff base: 0xfed00000
[    0.000000] SMP: Allowing 8 CPUs, 0 hotplug CPUs
[    0.000000] nr_irqs_gsi: 40
[    0.000000] PM: Registered nosave memory: 000000000009d000 - 000000000009e000
[    0.000000] PM: Registered nosave memory: 000000000009e000 - 00000000000a0000
[    0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000
[    0.000000] PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
[    0.000000] PM: Registered nosave memory: 00000000bf780000 - 00000000bf78e000
[    0.000000] PM: Registered nosave memory: 00000000bf78e000 - 00000000bf7d0000
[    0.000000] PM: Registered nosave memory: 00000000bf7d0000 - 00000000bf7e0000
[    0.000000] PM: Registered nosave memory: 00000000bf7e0000 - 00000000bf7ed000
[    0.000000] PM: Registered nosave memory: 00000000bf7ed000 - 00000000c0000000
[    0.000000] PM: Registered nosave memory: 00000000c0000000 - 00000000fee00000
[    0.000000] PM: Registered nosave memory: 00000000fee00000 - 00000000fee01000
[    0.000000] PM: Registered nosave memory: 00000000fee01000 - 00000000ffb00000
[    0.000000] PM: Registered nosave memory: 00000000ffb00000 - 0000000100000000
[    0.000000] Allocating PCI resources starting at c0000000 (gap: c0000000:3ee00000)
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] setup_percpu: NR_CPUS:256 nr_cpumask_bits:256 nr_cpu_ids:8 nr_node_ids:1
[    0.000000] PERCPU: Embedded 27 pages/cpu @ffff8801bfc00000 s79616 r8192 d22784 u262144
[    0.000000] pcpu-alloc: s79616 r8192 d22784 u262144 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 6 7 
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 1545480
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-3.0.0-16-generic root=UUID=83181ca4-e07c-4cd3-941b-5ffe0676da05 ro quiet splash vt.handoff=7
[    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: 6094348k/7340032k available (6140k kernel code, 1057740k absent, 187944k reserved, 6894k data, 988k init)
[    0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
[    0.000000] Hierarchical RCU implementation.
[    0.000000] 	RCU dyntick-idle grace-period acceleration is enabled.
[    0.000000] NR_IRQS:16640 nr_irqs:744 16
[    0.000000] Extended CMOS year: 2000
[    0.000000] vt handoff: transparent VT on vt#7
[    0.000000] Console: colour dummy device 80x25
[    0.000000] console [tty0] enabled
[    0.000000] allocated 50331648 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] Fast TSC calibration using PIT
[    0.004000] Detected 2793.197 MHz processor.
[    0.000002] Calibrating delay loop (skipped), value calculated using timer frequency.. 5586.39 BogoMIPS (lpj=11172788)
[    0.000006] pid_max: default: 32768 minimum: 301
[    0.000029] Security Framework initialized
[    0.000041] AppArmor: AppArmor initialized
[    0.000042] Yama: becoming mindful.
[    0.000815] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
[    0.002561] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
[    0.003200] Mount-cache hash table entries: 256
[    0.003307] Initializing cgroup subsys cpuacct
[    0.003312] Initializing cgroup subsys memory
[    0.003318] Initializing cgroup subsys devices
[    0.003320] Initializing cgroup subsys freezer
[    0.003321] Initializing cgroup subsys net_cls
[    0.003323] Initializing cgroup subsys blkio
[    0.003329] Initializing cgroup subsys perf_event
[    0.003354] CPU: Physical Processor ID: 0
[    0.003355] CPU: Processor Core ID: 0
[    0.003360] mce: CPU supports 9 MCE banks
[    0.003371] CPU0: Thermal monitoring enabled (TM1)
[    0.003379] using mwait in idle threads.
[    0.005313] ACPI: Core revision 20110413
[    0.031357] ftrace: allocating 25748 entries in 101 pages
[    0.038613] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.078232] CPU0: Intel(R) Core(TM) i7 CPU         860  @ 2.80GHz stepping 05
[    0.184278] Performance Events: PEBS fmt1+, erratum AAJ80 worked around, Nehalem events, Intel PMU driver.
[    0.184284] ... version:                3
[    0.184286] ... bit width:              48
[    0.184287] ... generic registers:      4
[    0.184288] ... value mask:             0000ffffffffffff
[    0.184289] ... max period:             000000007fffffff
[    0.184291] ... fixed-purpose events:   3
[    0.184292] ... event mask:             000000070000000f
[    0.184660] Booting Node   0, Processors  #1
[    0.184662] smpboot cpu 1: start_ip = 98000
[    0.292237]  #2
[    0.292239] smpboot cpu 2: start_ip = 98000
[    0.400116]  #3
[    0.400118] smpboot cpu 3: start_ip = 98000
[    0.507888]  #4
[    0.507890] smpboot cpu 4: start_ip = 98000
[    0.615704]  #5
[    0.615705] smpboot cpu 5: start_ip = 98000
[    0.723445]  #6
[    0.723447] smpboot cpu 6: start_ip = 98000
[    0.831290]  #7 Ok.
[    0.831292] smpboot cpu 7: start_ip = 98000
[    0.939070] Brought up 8 CPUs
[    0.939073] Total of 8 processors activated (44686.34 BogoMIPS).
[    0.943153] devtmpfs: initialized
[    0.943257] PM: Registering ACPI NVS region at bf78e000 (270336 bytes)
[    0.944473] print_constraints: dummy: 
[    0.944497] Time: 15:15:49  Date: 03/20/12
[    0.944521] NET: Registered protocol family 16
[    0.944597] Trying to unpack rootfs image as initramfs...
[    0.944605] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[    0.944607] ACPI: bus type pci registered
[    0.944650] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    0.944652] PCI: not using MMCONFIG
[    0.944653] PCI: Using configuration type 1 for base access
[    0.945208] bio: create slab <bio-0> at 0
[    0.946276] ACPI: EC: Look up EC in DSDT
[    0.947820] ACPI: Executed 1 blocks of module-level executable AML code
[    0.982902] ACPI: SSDT 00000000bf790140 0244C (v01 DpgPmm  P001Ist 00000011 INTL 20051117)
[    0.983240] ACPI: Dynamic OEM Table Load:
[    0.983242] ACPI: SSDT           (null) 0244C (v01 DpgPmm  P001Ist 00000011 INTL 20051117)
[    0.983891] ACPI: Interpreter enabled
[    0.983893] ACPI: (supports S0 S3 S4 S5)
[    0.983907] ACPI: Using IOAPIC for interrupt routing
[    0.983926] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    0.985731] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in ACPI motherboard resources
[    1.017694] ACPI: No dock devices found.
[    1.017696] HEST: Table not found.
[    1.017698] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    1.017834] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    1.017963] pci_root PNP0A08:00: host bridge window [io  0x0000-0x0cf7]
[    1.017965] pci_root PNP0A08:00: host bridge window [io  0x0d00-0xffff]
[    1.017967] pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff]
[    1.017968] pci_root PNP0A08:00: host bridge window [mem 0x000d0000-0x000dffff]
[    1.017970] pci_root PNP0A08:00: host bridge window [mem 0xc0000000-0xdfffffff]
[    1.017972] pci_root PNP0A08:00: host bridge window [mem 0xf0000000-0xfed8ffff]
[    1.017982] pci 0000:00:00.0: [8086:d131] type 0 class 0x000600
[    1.018028] pci 0000:00:03.0: [8086:d138] type 1 class 0x000604
[    1.018071] pci 0000:00:03.0: PME# supported from D0 D3hot D3cold
[    1.018073] pci 0000:00:03.0: PME# disabled
[    1.018090] pci 0000:00:08.0: [8086:d155] type 0 class 0x000880
[    1.018139] pci 0000:00:08.1: [8086:d156] type 0 class 0x000880
[    1.018188] pci 0000:00:08.2: [8086:d157] type 0 class 0x000880
[    1.018235] pci 0000:00:08.3: [8086:d158] type 0 class 0x000880
[    1.018293] pci 0000:00:19.0: [8086:10f0] type 0 class 0x000200
[    1.018308] pci 0000:00:19.0: reg 10: [mem 0xfbcc0000-0xfbcdffff]
[    1.018316] pci 0000:00:19.0: reg 14: [mem 0xfbcfc000-0xfbcfcfff]
[    1.018323] pci 0000:00:19.0: reg 18: [io  0xbc00-0xbc1f]
[    1.018378] pci 0000:00:19.0: PME# supported from D0 D3hot D3cold
[    1.018381] pci 0000:00:19.0: PME# disabled
[    1.018402] pci 0000:00:1a.0: [8086:3b3c] type 0 class 0x000c03
[    1.018421] pci 0000:00:1a.0: reg 10: [mem 0xfbcfa000-0xfbcfa3ff]
[    1.018501] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[    1.018504] pci 0000:00:1a.0: PME# disabled
[    1.018524] pci 0000:00:1b.0: [8086:3b56] type 0 class 0x000403
[    1.018537] pci 0000:00:1b.0: reg 10: [mem 0xfbcf4000-0xfbcf7fff 64bit]
[    1.018596] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    1.018599] pci 0000:00:1b.0: PME# disabled
[    1.018615] pci 0000:00:1c.0: [8086:3b42] type 1 class 0x000604
[    1.018675] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    1.018678] pci 0000:00:1c.0: PME# disabled
[    1.018695] pci 0000:00:1c.1: [8086:3b44] type 1 class 0x000604
[    1.018756] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[    1.018759] pci 0000:00:1c.1: PME# disabled
[    1.018775] pci 0000:00:1c.2: [8086:3b46] type 1 class 0x000604
[    1.018839] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
[    1.018842] pci 0000:00:1c.2: PME# disabled
[    1.018859] pci 0000:00:1c.3: [8086:3b48] type 1 class 0x000604
[    1.018920] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
[    1.018924] pci 0000:00:1c.3: PME# disabled
[    1.018941] pci 0000:00:1c.4: [8086:3b4a] type 1 class 0x000604
[    1.019001] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
[    1.019004] pci 0000:00:1c.4: PME# disabled
[    1.019029] pci 0000:00:1d.0: [8086:3b34] type 0 class 0x000c03
[    1.019047] pci 0000:00:1d.0: reg 10: [mem 0xfbcf8000-0xfbcf83ff]
[    1.019127] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[    1.019131] pci 0000:00:1d.0: PME# disabled
[    1.019148] pci 0000:00:1e.0: [8086:244e] type 1 class 0x000604
[    1.019203] pci 0000:00:1f.0: [8086:3b02] type 0 class 0x000601
[    1.019315] pci 0000:00:1f.2: [8086:3b22] type 0 class 0x000106
[    1.019331] pci 0000:00:1f.2: reg 10: [io  0xb880-0xb887]
[    1.019338] pci 0000:00:1f.2: reg 14: [io  0xb800-0xb803]
[    1.019345] pci 0000:00:1f.2: reg 18: [io  0xb480-0xb487]
[    1.019352] pci 0000:00:1f.2: reg 1c: [io  0xb400-0xb403]
[    1.019358] pci 0000:00:1f.2: reg 20: [io  0xb080-0xb09f]
[    1.019365] pci 0000:00:1f.2: reg 24: [mem 0xfbcf2000-0xfbcf27ff]
[    1.019405] pci 0000:00:1f.2: PME# supported from D3hot
[    1.019408] pci 0000:00:1f.2: PME# disabled
[    1.019421] pci 0000:00:1f.3: [8086:3b30] type 0 class 0x000c05
[    1.019434] pci 0000:00:1f.3: reg 10: [mem 0xfbcff800-0xfbcff8ff 64bit]
[    1.019452] pci 0000:00:1f.3: reg 20: [io  0x0400-0x041f]
[    1.019510] pci 0000:01:00.0: [1002:6899] type 0 class 0x000300
[    1.019522] pci 0000:01:00.0: reg 10: [mem 0xd0000000-0xdfffffff 64bit pref]
[    1.019532] pci 0000:01:00.0: reg 18: [mem 0xfbde0000-0xfbdfffff 64bit]
[    1.019538] pci 0000:01:00.0: reg 20: [io  0xc000-0xc0ff]
[    1.019550] pci 0000:01:00.0: reg 30: [mem 0xfbdc0000-0xfbddffff pref]
[    1.019579] pci 0000:01:00.0: supports D1 D2
[    1.019596] pci 0000:01:00.1: [1002:aa50] type 0 class 0x000403
[    1.019608] pci 0000:01:00.1: reg 10: [mem 0xfbdbc000-0xfbdbffff 64bit]
[    1.019661] pci 0000:01:00.1: supports D1 D2
[    1.026787] pci 0000:00:03.0: PCI bridge to [bus 01-01]
[    1.026790] pci 0000:00:03.0:   bridge window [io  0xc000-0xcfff]
[    1.026793] pci 0000:00:03.0:   bridge window [mem 0xfbd00000-0xfbdfffff]
[    1.026796] pci 0000:00:03.0:   bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
[    1.026831] pci 0000:00:1c.0: PCI bridge to [bus 02-02]
[    1.026834] pci 0000:00:1c.0:   bridge window [io  0xf000-0x0000] (disabled)
[    1.026837] pci 0000:00:1c.0:   bridge window [mem 0xfff00000-0x000fffff] (disabled)
[    1.026842] pci 0000:00:1c.0:   bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
[    1.026891] pci 0000:03:00.0: [197b:2363] type 0 class 0x000106
[    1.026974] pci 0000:03:00.0: reg 24: [mem 0xfbefe000-0xfbefffff]
[    1.027034] pci 0000:03:00.0: PME# supported from D3hot
[    1.027038] pci 0000:03:00.0: PME# disabled
[    1.027065] pci 0000:03:00.1: [197b:2363] type 0 class 0x000101
[    1.027087] pci 0000:03:00.1: reg 10: [io  0xdc00-0xdc07]
[    1.027100] pci 0000:03:00.1: reg 14: [io  0xd880-0xd883]
[    1.027112] pci 0000:03:00.1: reg 18: [io  0xd800-0xd807]
[    1.027125] pci 0000:03:00.1: reg 1c: [io  0xd480-0xd483]
[    1.027137] pci 0000:03:00.1: reg 20: [io  0xd400-0xd40f]
[    1.027215] pci 0000:03:00.0: disabling ASPM on pre-1.1 PCIe device.  You can enable it with 'pcie_aspm=force'
[    1.027227] pci 0000:00:1c.1: PCI bridge to [bus 03-03]
[    1.027230] pci 0000:00:1c.1:   bridge window [io  0xd000-0xdfff]
[    1.027233] pci 0000:00:1c.1:   bridge window [mem 0xfbe00000-0xfbefffff]
[    1.027238] pci 0000:00:1c.1:   bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
[    1.027272] pci 0000:00:1c.2: PCI bridge to [bus 04-04]
[    1.027276] pci 0000:00:1c.2:   bridge window [io  0xf000-0x0000] (disabled)
[    1.027279] pci 0000:00:1c.2:   bridge window [mem 0xfff00000-0x000fffff] (disabled)
[    1.027284] pci 0000:00:1c.2:   bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
[    1.027318] pci 0000:00:1c.3: PCI bridge to [bus 05-05]
[    1.027321] pci 0000:00:1c.3:   bridge window [io  0xf000-0x0000] (disabled)
[    1.027324] pci 0000:00:1c.3:   bridge window [mem 0xfff00000-0x000fffff] (disabled)
[    1.027329] pci 0000:00:1c.3:   bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
[    1.027363] pci 0000:00:1c.4: PCI bridge to [bus 06-06]
[    1.027366] pci 0000:00:1c.4:   bridge window [io  0xf000-0x0000] (disabled)
[    1.027369] pci 0000:00:1c.4:   bridge window [mem 0xfff00000-0x000fffff] (disabled)
[    1.027374] pci 0000:00:1c.4:   bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
[    1.027409] pci 0000:07:06.0: [1106:3044] type 0 class 0x000c00
[    1.027424] pci 0000:07:06.0: reg 10: [mem 0xfbfff800-0xfbffffff]
[    1.027433] pci 0000:07:06.0: reg 14: [io  0xec00-0xec7f]
[    1.027496] pci 0000:07:06.0: supports D2
[    1.027498] pci 0000:07:06.0: PME# supported from D2 D3hot D3cold
[    1.027501] pci 0000:07:06.0: PME# disabled
[    1.027534] pci 0000:00:1e.0: PCI bridge to [bus 07-07] (subtractive decode)
[    1.027538] pci 0000:00:1e.0:   bridge window [io  0xe000-0xefff]
[    1.027541] pci 0000:00:1e.0:   bridge window [mem 0xfbf00000-0xfbffffff]
[    1.027545] pci 0000:00:1e.0:   bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
[    1.027547] pci 0000:00:1e.0:   bridge window [io  0x0000-0x0cf7] (subtractive decode)
[    1.027549] pci 0000:00:1e.0:   bridge window [io  0x0d00-0xffff] (subtractive decode)
[    1.027551] pci 0000:00:1e.0:   bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
[    1.027553] pci 0000:00:1e.0:   bridge window [mem 0x000d0000-0x000dffff] (subtractive decode)
[    1.027555] pci 0000:00:1e.0:   bridge window [mem 0xc0000000-0xdfffffff] (subtractive decode)
[    1.027556] pci 0000:00:1e.0:   bridge window [mem 0xf0000000-0xfed8ffff] (subtractive decode)
[    1.027581] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[    1.027696] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.BR1E._PRT]
[    1.027728] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.BR20._PRT]
[    1.027748] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.BR21._PRT]
[    1.027775] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.BR22._PRT]
[    1.027795] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.BR23._PRT]
[    1.027815] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.BR24._PRT]
[    1.027927]  pci0000:00: Requesting ACPI _OSC control (0x1d)
[    1.028061]  pci0000:00: ACPI _OSC request failed (AE_SUPPORT), returned control mask: 0x0d
[    1.028062] ACPI _OSC control for PCIe not granted, disabling ASPM
[    1.034582] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 6 7 *10 11 12 14 15)
[    1.034615] ACPI: PCI Interrupt Link [LNKB] (IRQs *5)
[    1.034645] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 6 7 10 *11 12 14 15)
[    1.034677] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 6 7 10 11 12 14 *15)
[    1.034709] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 6 7 10 11 12 *14 15)
[    1.034741] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 6 7 10 11 12 14 15) *0, disabled.
[    1.034778] ACPI: PCI Interrupt Link [LNKG] (IRQs *3 4 6 7 10 11 12 14 15)
[    1.034810] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 6 *7 10 11 12 14 15)
[    1.034885] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
[    1.034888] vgaarb: loaded
[    1.034889] vgaarb: bridge control possible 0000:01:00.0
[    1.035016] SCSI subsystem initialized
[    1.035058] libata version 3.00 loaded.
[    1.035089] usbcore: registered new interface driver usbfs
[    1.035096] usbcore: registered new interface driver hub
[    1.035115] usbcore: registered new device driver usb
[    1.035174] PCI: Using ACPI for IRQ routing
[    1.040667] PCI: Discovered peer bus ff
[    1.040693] pci 0000:ff:00.0: [8086:2c51] type 0 class 0x000600
[    1.040709] pci 0000:ff:00.1: [8086:2c81] type 0 class 0x000600
[    1.040726] pci 0000:ff:02.0: [8086:2c90] type 0 class 0x000600
[    1.040740] pci 0000:ff:02.1: [8086:2c91] type 0 class 0x000600
[    1.040756] pci 0000:ff:03.0: [8086:2c98] type 0 class 0x000600
[    1.040771] pci 0000:ff:03.1: [8086:2c99] type 0 class 0x000600
[    1.040786] pci 0000:ff:03.4: [8086:2c9c] type 0 class 0x000600
[    1.040800] pci 0000:ff:04.0: [8086:2ca0] type 0 class 0x000600
[    1.040814] pci 0000:ff:04.1: [8086:2ca1] type 0 class 0x000600
[    1.040828] pci 0000:ff:04.2: [8086:2ca2] type 0 class 0x000600
[    1.040842] pci 0000:ff:04.3: [8086:2ca3] type 0 class 0x000600
[    1.040858] pci 0000:ff:05.0: [8086:2ca8] type 0 class 0x000600
[    1.040871] pci 0000:ff:05.1: [8086:2ca9] type 0 class 0x000600
[    1.040886] pci 0000:ff:05.2: [8086:2caa] type 0 class 0x000600
[    1.040901] pci 0000:ff:05.3: [8086:2cab] type 0 class 0x000600
[    1.041146] PCI: pci_cache_line_size set to 64 bytes
[    1.041223] reserve RAM buffer: 000000000009dc00 - 000000000009ffff 
[    1.041225] reserve RAM buffer: 00000000bf780000 - 00000000bfffffff 
[    1.041294] NetLabel: Initializing
[    1.041295] NetLabel:  domain hash size = 128
[    1.041296] NetLabel:  protocols = UNLABELED CIPSOv4
[    1.041304] NetLabel:  unlabeled traffic allowed by default
[    1.041352] HPET: 8 timers in total, 5 timers will be used for per-cpu timer
[    1.041359] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 40, 41, 42, 43, 44, 0
[    1.041363] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[    1.046754] hpet: hpet2 irq 40 for MSI
[    1.046905] hpet: hpet3 irq 41 for MSI
[    1.050912] hpet: hpet4 irq 42 for MSI
[    1.054878] hpet: hpet5 irq 43 for MSI
[    1.058881] hpet: hpet6 irq 44 for MSI
[    1.062882] Switching to clocksource hpet
[    1.066497] Switched to NOHz mode on CPU #0
[    1.066642] Switched to NOHz mode on CPU #1
[    1.066699] Switched to NOHz mode on CPU #2
[    1.066721] Switched to NOHz mode on CPU #3
[    1.066774] Switched to NOHz mode on CPU #5
[    1.066783] Switched to NOHz mode on CPU #4
[    1.066808] Switched to NOHz mode on CPU #6
[    1.066843] Switched to NOHz mode on CPU #7
[    1.067161] AppArmor: AppArmor Filesystem Enabled
[    1.067178] pnp: PnP ACPI init
[    1.067188] ACPI: bus type pnp registered
[    1.067274] pnp 00:00: [bus 00-ff]
[    1.067276] pnp 00:00: [io  0x0cf8-0x0cff]
[    1.067277] pnp 00:00: [io  0x0000-0x0cf7 window]
[    1.067279] pnp 00:00: [io  0x0d00-0xffff window]
[    1.067281] pnp 00:00: [mem 0x000a0000-0x000bffff window]
[    1.067282] pnp 00:00: [mem 0x000d0000-0x000dffff window]
[    1.067284] pnp 00:00: [mem 0xc0000000-0xdfffffff window]
[    1.067285] pnp 00:00: [mem 0xf0000000-0xfed8ffff window]
[    1.067345] pnp 00:00: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active)
[    1.067353] pnp 00:01: [mem 0xfc000000-0xfcffffff]
[    1.067354] pnp 00:01: [mem 0xfd000000-0xfdffffff]
[    1.067356] pnp 00:01: [mem 0xfe000000-0xfebfffff]
[    1.067357] pnp 00:01: [mem 0xfed14000-0xfed19fff]
[    1.067393] system 00:01: [mem 0xfc000000-0xfcffffff] has been reserved
[    1.067395] system 00:01: [mem 0xfd000000-0xfdffffff] has been reserved
[    1.067397] system 00:01: [mem 0xfe000000-0xfebfffff] has been reserved
[    1.067399] system 00:01: [mem 0xfed14000-0xfed19fff] has been reserved
[    1.067401] system 00:01: Plug and Play ACPI device, IDs PNP0c01 (active)
[    1.067429] pnp 00:02: [dma 4]
[    1.067431] pnp 00:02: [io  0x0000-0x000f]
[    1.067432] pnp 00:02: [io  0x0081-0x0083]
[    1.067433] pnp 00:02: [io  0x0087]
[    1.067434] pnp 00:02: [io  0x0089-0x008b]
[    1.067436] pnp 00:02: [io  0x008f]
[    1.067437] pnp 00:02: [io  0x00c0-0x00df]
[    1.067453] pnp 00:02: Plug and Play ACPI device, IDs PNP0200 (active)
[    1.067460] pnp 00:03: [io  0x0070-0x0071]
[    1.067467] pnp 00:03: [irq 8]
[    1.067484] pnp 00:03: Plug and Play ACPI device, IDs PNP0b00 (active)
[    1.067491] pnp 00:04: [io  0x0061]
[    1.067506] pnp 00:04: Plug and Play ACPI device, IDs PNP0800 (active)
[    1.067512] pnp 00:05: [io  0x00f0-0x00ff]
[    1.067516] pnp 00:05: [irq 13]
[    1.067533] pnp 00:05: Plug and Play ACPI device, IDs PNP0c04 (active)
[    1.068227] pnp 00:06: [io  0x0060]
[    1.068228] pnp 00:06: [io  0x0064]
[    1.068233] pnp 00:06: [irq 1]
[    1.068254] pnp 00:06: Plug and Play ACPI device, IDs PNP0303 PNP030b (active)
[    1.068283] pnp 00:07: [io  0x0060]
[    1.068284] pnp 00:07: [io  0x0064]
[    1.068289] pnp 00:07: [irq 12]
[    1.068311] pnp 00:07: Plug and Play ACPI device, IDs PNP0f03 PNP0f13 (active)
[    1.068411] pnp 00:08: [io  0x0000-0xffffffffffffffff disabled]
[    1.068412] pnp 00:08: [io  0x0a00-0x0a0f]
[    1.068414] pnp 00:08: [io  0x0a10-0x0a1f]
[    1.068415] pnp 00:08: [io  0x0a20-0x0a2f]
[    1.068416] pnp 00:08: [io  0x0a30-0x0a3f]
[    1.068450] system 00:08: [io  0x0a00-0x0a0f] has been reserved
[    1.068452] system 00:08: [io  0x0a10-0x0a1f] has been reserved
[    1.068454] system 00:08: [io  0x0a20-0x0a2f] has been reserved
[    1.068456] system 00:08: [io  0x0a30-0x0a3f] has been reserved
[    1.068458] system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
[    1.068538] pnp 00:09: [io  0x0010-0x001f]
[    1.068539] pnp 00:09: [io  0x0022-0x003f]
[    1.068541] pnp 00:09: [io  0x0044-0x005f]
[    1.068542] pnp 00:09: [io  0x0062-0x0063]
[    1.068543] pnp 00:09: [io  0x0065-0x006f]
[    1.068544] pnp 00:09: [io  0x0072-0x007f]
[    1.068546] pnp 00:09: [io  0x0080]
[    1.068547] pnp 00:09: [io  0x0084-0x0086]
[    1.068548] pnp 00:09: [io  0x0088]
[    1.068549] pnp 00:09: [io  0x008c-0x008e]
[    1.068551] pnp 00:09: [io  0x0090-0x009f]
[    1.068552] pnp 00:09: [io  0x00a2-0x00bf]
[    1.068553] pnp 00:09: [io  0x00e0-0x00ef]
[    1.068555] pnp 00:09: [io  0x04d0-0x04d1]
[    1.068556] pnp 00:09: [io  0x0800-0x087f]
[    1.068557] pnp 00:09: [io  0x0000-0xffffffffffffffff disabled]
[    1.068559] pnp 00:09: [io  0x0500-0x057f]
[    1.068560] pnp 00:09: [mem 0xfed1c000-0xfed1ffff]
[    1.068562] pnp 00:09: [mem 0xfed20000-0xfed3ffff]
[    1.068563] pnp 00:09: [mem 0xfed40000-0xfed8ffff]
[    1.068608] system 00:09: [io  0x04d0-0x04d1] has been reserved
[    1.068610] system 00:09: [io  0x0800-0x087f] has been reserved
[    1.068612] system 00:09: [io  0x0500-0x057f] has been reserved
[    1.068614] system 00:09: [mem 0xfed1c000-0xfed1ffff] has been reserved
[    1.068616] system 00:09: [mem 0xfed20000-0xfed3ffff] has been reserved
[    1.068618] system 00:09: [mem 0xfed40000-0xfed8ffff] has been reserved
[    1.068620] system 00:09: Plug and Play ACPI device, IDs PNP0c02 (active)
[    1.068661] pnp 00:0a: [mem 0xfed00000-0xfed003ff]
[    1.068680] pnp 00:0a: Plug and Play ACPI device, IDs PNP0103 (active)
[    1.068712] pnp 00:0b: [mem 0xffb00000-0xffbfffff]
[    1.068714] pnp 00:0b: [mem 0xfff00000-0xffffffff]
[    1.068731] pnp 00:0b: Plug and Play ACPI device, IDs INT0800 (active)
[    1.068758] pnp 00:0c: [mem 0xffc00000-0xffefffff]
[    1.068795] system 00:0c: [mem 0xffc00000-0xffefffff] has been reserved
[    1.068798] system 00:0c: Plug and Play ACPI device, IDs PNP0c02 (active)
[    1.068852] pnp 00:0d: [io  0x0060]
[    1.068854] pnp 00:0d: [io  0x0064]
[    1.068855] pnp 00:0d: [mem 0xfec00000-0xfec00fff]
[    1.068857] pnp 00:0d: [mem 0xfee00000-0xfee00fff]
[    1.068891] system 00:0d: [mem 0xfec00000-0xfec00fff] could not be reserved
[    1.068893] system 00:0d: [mem 0xfee00000-0xfee00fff] has been reserved
[    1.068896] system 00:0d: Plug and Play ACPI device, IDs PNP0c02 (active)
[    1.068928] pnp 00:0e: [mem 0xe0000000-0xefffffff]
[    1.068961] system 00:0e: [mem 0xe0000000-0xefffffff] has been reserved
[    1.068963] system 00:0e: Plug and Play ACPI device, IDs PNP0c02 (active)
[    1.069120] pnp 00:0f: [mem 0x00000000-0x0009ffff]
[    1.069121] pnp 00:0f: [mem 0x000c0000-0x000cffff]
[    1.069123] pnp 00:0f: [mem 0x000e0000-0x000fffff]
[    1.069124] pnp 00:0f: [mem 0x00100000-0xbfffffff]
[    1.069125] pnp 00:0f: [mem 0xfed90000-0xffffffff]
[    1.069172] system 00:0f: [mem 0x00000000-0x0009ffff] could not be reserved
[    1.069174] system 00:0f: [mem 0x000c0000-0x000cffff] could not be reserved
[    1.069176] system 00:0f: [mem 0x000e0000-0x000fffff] could not be reserved
[    1.069178] system 00:0f: [mem 0x00100000-0xbfffffff] could not be reserved
[    1.069180] system 00:0f: [mem 0xfed90000-0xffffffff] could not be reserved
[    1.069182] system 00:0f: Plug and Play ACPI device, IDs PNP0c01 (active)
[    1.069275] pnp: PnP ACPI: found 16 devices
[    1.069276] ACPI: ACPI bus type pnp unregistered
[    1.074761] PCI: max bus depth: 1 pci_try_num: 2
[    1.074805] pci 0000:00:1c.4: BAR 14: assigned [mem 0xc0000000-0xc01fffff]
[    1.074808] pci 0000:00:1c.4: BAR 15: assigned [mem 0xc0200000-0xc03fffff 64bit pref]
[    1.074810] pci 0000:00:1c.4: BAR 13: assigned [io  0x1000-0x1fff]
[    1.074812] pci 0000:00:1c.3: BAR 14: assigned [mem 0xc0400000-0xc05fffff]
[    1.074815] pci 0000:00:1c.3: BAR 15: assigned [mem 0xc0600000-0xc07fffff 64bit pref]
[    1.074817] pci 0000:00:1c.3: BAR 13: assigned [io  0x2000-0x2fff]
[    1.074819] pci 0000:00:1c.2: BAR 14: assigned [mem 0xc0800000-0xc09fffff]
[    1.074822] pci 0000:00:1c.2: BAR 15: assigned [mem 0xc0a00000-0xc0bfffff 64bit pref]
[    1.074824] pci 0000:00:1c.2: BAR 13: assigned [io  0x3000-0x3fff]
[    1.074826] pci 0000:00:1c.1: BAR 15: assigned [mem 0xc0c00000-0xc0dfffff 64bit pref]
[    1.074829] pci 0000:00:1c.0: BAR 14: assigned [mem 0xc0e00000-0xc0ffffff]
[    1.074831] pci 0000:00:1c.0: BAR 15: assigned [mem 0xc1000000-0xc11fffff 64bit pref]
[    1.074833] pci 0000:00:1c.0: BAR 13: assigned [io  0x4000-0x4fff]
[    1.074836] pci 0000:00:03.0: PCI bridge to [bus 01-01]
[    1.074838] pci 0000:00:03.0:   bridge window [io  0xc000-0xcfff]
[    1.074841] pci 0000:00:03.0:   bridge window [mem 0xfbd00000-0xfbdfffff]
[    1.074844] pci 0000:00:03.0:   bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
[    1.074848] pci 0000:00:1c.0: PCI bridge to [bus 02-02]
[    1.074850] pci 0000:00:1c.0:   bridge window [io  0x4000-0x4fff]
[    1.074854] pci 0000:00:1c.0:   bridge window [mem 0xc0e00000-0xc0ffffff]
[    1.074857] pci 0000:00:1c.0:   bridge window [mem 0xc1000000-0xc11fffff 64bit pref]
[    1.074862] pci 0000:00:1c.1: PCI bridge to [bus 03-03]
[    1.074864] pci 0000:00:1c.1:   bridge window [io  0xd000-0xdfff]
[    1.074868] pci 0000:00:1c.1:   bridge window [mem 0xfbe00000-0xfbefffff]
[    1.074871] pci 0000:00:1c.1:   bridge window [mem 0xc0c00000-0xc0dfffff 64bit pref]
[    1.074876] pci 0000:00:1c.2: PCI bridge to [bus 04-04]
[    1.074878] pci 0000:00:1c.2:   bridge window [io  0x3000-0x3fff]
[    1.074882] pci 0000:00:1c.2:   bridge window [mem 0xc0800000-0xc09fffff]
[    1.074885] pci 0000:00:1c.2:   bridge window [mem 0xc0a00000-0xc0bfffff 64bit pref]
[    1.074890] pci 0000:00:1c.3: PCI bridge to [bus 05-05]
[    1.074892] pci 0000:00:1c.3:   bridge window [io  0x2000-0x2fff]
[    1.074896] pci 0000:00:1c.3:   bridge window [mem 0xc0400000-0xc05fffff]
[    1.074906] pci 0000:00:1c.3:   bridge window [mem 0xc0600000-0xc07fffff 64bit pref]
[    1.074911] pci 0000:00:1c.4: PCI bridge to [bus 06-06]
[    1.074913] pci 0000:00:1c.4:   bridge window [io  0x1000-0x1fff]
[    1.074917] pci 0000:00:1c.4:   bridge window [mem 0xc0000000-0xc01fffff]
[    1.074920] pci 0000:00:1c.4:   bridge window [mem 0xc0200000-0xc03fffff 64bit pref]
[    1.074925] pci 0000:00:1e.0: PCI bridge to [bus 07-07]
[    1.074928] pci 0000:00:1e.0:   bridge window [io  0xe000-0xefff]
[    1.074931] pci 0000:00:1e.0:   bridge window [mem 0xfbf00000-0xfbffffff]
[    1.074934] pci 0000:00:1e.0:   bridge window [mem pref disabled]
[    1.074948] pci 0000:00:03.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    1.074952] pci 0000:00:03.0: setting latency timer to 64
[    1.074956] pci 0000:00:1c.0: enabling device (0104 -> 0107)
[    1.074962] pci 0000:00:1c.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
[    1.074965] pci 0000:00:1c.0: setting latency timer to 64
[    1.074970] pci 0000:00:1c.1: PCI INT B -> GSI 16 (level, low) -> IRQ 16
[    1.074973] pci 0000:00:1c.1: setting latency timer to 64
[    1.074977] pci 0000:00:1c.2: enabling device (0104 -> 0107)
[    1.074983] pci 0000:00:1c.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
[    1.074986] pci 0000:00:1c.2: setting latency timer to 64
[    1.074990] pci 0000:00:1c.3: enabling device (0104 -> 0107)
[    1.074995] pci 0000:00:1c.3: PCI INT D -> GSI 19 (level, low) -> IRQ 19
[    1.074998] pci 0000:00:1c.3: setting latency timer to 64
[    1.075003] pci 0000:00:1c.4: enabling device (0104 -> 0107)
[    1.075005] pci 0000:00:1c.4: PCI INT A -> GSI 17 (level, low) -> IRQ 17
[    1.075008] pci 0000:00:1c.4: setting latency timer to 64
[    1.075013] pci 0000:00:1e.0: setting latency timer to 64
[    1.075016] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7]
[    1.075018] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff]
[    1.075019] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
[    1.075021] pci_bus 0000:00: resource 7 [mem 0x000d0000-0x000dffff]
[    1.075023] pci_bus 0000:00: resource 8 [mem 0xc0000000-0xdfffffff]
[    1.075024] pci_bus 0000:00: resource 9 [mem 0xf0000000-0xfed8ffff]
[    1.075026] pci_bus 0000:01: resource 0 [io  0xc000-0xcfff]
[    1.075027] pci_bus 0000:01: resource 1 [mem 0xfbd00000-0xfbdfffff]
[    1.075029] pci_bus 0000:01: resource 2 [mem 0xd0000000-0xdfffffff 64bit pref]
[    1.075031] pci_bus 0000:02: resource 0 [io  0x4000-0x4fff]
[    1.075033] pci_bus 0000:02: resource 1 [mem 0xc0e00000-0xc0ffffff]
[    1.075034] pci_bus 0000:02: resource 2 [mem 0xc1000000-0xc11fffff 64bit pref]
[    1.075036] pci_bus 0000:03: resource 0 [io  0xd000-0xdfff]
[    1.075038] pci_bus 0000:03: resource 1 [mem 0xfbe00000-0xfbefffff]
[    1.075039] pci_bus 0000:03: resource 2 [mem 0xc0c00000-0xc0dfffff 64bit pref]
[    1.075041] pci_bus 0000:04: resource 0 [io  0x3000-0x3fff]
[    1.075043] pci_bus 0000:04: resource 1 [mem 0xc0800000-0xc09fffff]
[    1.075044] pci_bus 0000:04: resource 2 [mem 0xc0a00000-0xc0bfffff 64bit pref]
[    1.075046] pci_bus 0000:05: resource 0 [io  0x2000-0x2fff]
[    1.075048] pci_bus 0000:05: resource 1 [mem 0xc0400000-0xc05fffff]
[    1.075049] pci_bus 0000:05: resource 2 [mem 0xc0600000-0xc07fffff 64bit pref]
[    1.075051] pci_bus 0000:06: resource 0 [io  0x1000-0x1fff]
[    1.075052] pci_bus 0000:06: resource 1 [mem 0xc0000000-0xc01fffff]
[    1.075054] pci_bus 0000:06: resource 2 [mem 0xc0200000-0xc03fffff 64bit pref]
[    1.075056] pci_bus 0000:07: resource 0 [io  0xe000-0xefff]
[    1.075057] pci_bus 0000:07: resource 1 [mem 0xfbf00000-0xfbffffff]
[    1.075059] pci_bus 0000:07: resource 4 [io  0x0000-0x0cf7]
[    1.075061] pci_bus 0000:07: resource 5 [io  0x0d00-0xffff]
[    1.075062] pci_bus 0000:07: resource 6 [mem 0x000a0000-0x000bffff]
[    1.075064] pci_bus 0000:07: resource 7 [mem 0x000d0000-0x000dffff]
[    1.075065] pci_bus 0000:07: resource 8 [mem 0xc0000000-0xdfffffff]
[    1.075067] pci_bus 0000:07: resource 9 [mem 0xf0000000-0xfed8ffff]
[    1.075069] pci_bus 0000:ff: resource 0 [io  0x0000-0xffff]
[    1.075070] pci_bus 0000:ff: resource 1 [mem 0x00000000-0xfffffffff]
[    1.075099] NET: Registered protocol family 2
[    1.075291] IP route cache hash table entries: 262144 (order: 9, 2097152 bytes)
[    1.076167] TCP established hash table entries: 524288 (order: 11, 8388608 bytes)
[    1.078374] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[    1.078640] TCP: Hash tables configured (established 524288 bind 65536)
[    1.078642] TCP reno registered
[    1.078655] UDP hash table entries: 4096 (order: 5, 131072 bytes)
[    1.078715] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
[    1.078837] NET: Registered protocol family 1
[    1.078930] pci 0000:01:00.0: Boot video device
[    1.078956] PCI: CLS 32 bytes, default 64
[    1.078957] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    1.078959] Placing 64MB software IO TLB between ffff8800bb778000 - ffff8800bf778000
[    1.078960] software IO TLB at phys 0xbb778000 - 0xbf778000
[    1.079420] audit: initializing netlink socket (disabled)
[    1.079426] type=2000 audit(1332256548.844:1): initialized
[    1.104761] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    1.119848] VFS: Disk quotas dquot_6.5.2
[    1.119895] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    1.120361] fuse init (API version 7.16)
[    1.120428] msgmni has been set to 11903
[    1.120706] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
[    1.120732] io scheduler noop registered
[    1.120733] io scheduler deadline registered
[    1.120763] io scheduler cfq registered (default)
[    1.121052] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    1.121069] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    1.121098] intel_idle: MWAIT substates: 0x1120
[    1.121107] intel_idle: v0.4 model 0x1E
[    1.121108] intel_idle: lapic_timer_reliable_states 0x2
[    1.121204] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input0
[    1.121207] ACPI: Power Button [PWRB]
[    1.121235] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[    1.121237] ACPI: Power Button [PWRF]
[    1.121255] ACPI: acpi_idle yielding to intel_idle
[    1.123507] ERST: Table is not found!
[    1.123541] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    1.251227] Freeing initrd memory: 19384k freed
[    1.338908] Linux agpgart interface v0.103
[    1.339644] brd: module loaded
[    1.339984] loop: module loaded
[    1.340099] pata_acpi 0000:03:00.1: enabling device (0000 -> 0001)
[    1.340106] pata_acpi 0000:03:00.1: PCI INT B -> GSI 18 (level, low) -> IRQ 18
[    1.340127] pata_acpi 0000:03:00.1: setting latency timer to 64
[    1.340138] pata_acpi 0000:03:00.1: PCI INT B disabled
[    1.340320] Fixed MDIO Bus: probed
[    1.340334] PPP generic driver version 2.4.2
[    1.340358] tun: Universal TUN/TAP device driver, 1.6
[    1.340360] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[    1.340407] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    1.340420] ehci_hcd 0000:00:1a.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    1.340438] ehci_hcd 0000:00:1a.0: setting latency timer to 64
[    1.340441] ehci_hcd 0000:00:1a.0: EHCI Host Controller
[    1.340465] ehci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 1
[    1.340490] ehci_hcd 0000:00:1a.0: debug port 2
[    1.344383] ehci_hcd 0000:00:1a.0: cache line size of 32 is not supported
[    1.344396] ehci_hcd 0000:00:1a.0: irq 16, io mem 0xfbcfa000
[    1.358429] ehci_hcd 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[    1.358550] hub 1-0:1.0: USB hub found
[    1.358553] hub 1-0:1.0: 2 ports detected
[    1.358606] ehci_hcd 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23
[    1.358615] ehci_hcd 0000:00:1d.0: setting latency timer to 64
[    1.358618] ehci_hcd 0000:00:1d.0: EHCI Host Controller
[    1.358647] ehci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
[    1.358666] ehci_hcd 0000:00:1d.0: debug port 2
[    1.362539] ehci_hcd 0000:00:1d.0: cache line size of 32 is not supported
[    1.362551] ehci_hcd 0000:00:1d.0: irq 23, io mem 0xfbcf8000
[    1.378397] ehci_hcd 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[    1.378513] hub 2-0:1.0: USB hub found
[    1.378516] hub 2-0:1.0: 2 ports detected
[    1.378558] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    1.378567] uhci_hcd: USB Universal Host Controller Interface driver
[    1.378609] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f03:PS2M] at 0x60,0x64 irq 1,12
[    1.378964] serio: i8042 KBD port at 0x60,0x64 irq 1
[    1.378974] serio: i8042 AUX port at 0x60,0x64 irq 12
[    1.379034] mousedev: PS/2 mouse device common for all mice
[    1.379103] rtc_cmos 00:03: RTC can wake from S4
[    1.379182] rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0
[    1.379206] rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[    1.379280] device-mapper: uevent: version 1.0.3
[    1.379329] device-mapper: ioctl: 4.20.0-ioctl (2011-02-02) initialised: dm-devel@redhat.com
[    1.379455] cpuidle: using governor ladder
[    1.379658] cpuidle: using governor menu
[    1.379659] EFI Variables Facility v0.08 2004-May-17
[    1.379836] TCP cubic registered
[    1.379921] NET: Registered protocol family 10
[    1.380267] NET: Registered protocol family 17
[    1.380277] Registering the dns_resolver key type
[    1.380340] PM: Hibernation image not present or could not be loaded.
[    1.380348] registered taskstats version 1
[    1.393065]   Magic number: 4:793:285
[    1.393110] acpi PNP0C04:00: hash matches
[    1.393195] rtc_cmos 00:03: setting system clock to 2012-03-20 15:15:50 UTC (1332256550)
[    1.395541] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[    1.395542] EDD information not available.
[    1.396831] Freeing unused kernel memory: 988k freed
[    1.396934] Write protecting the kernel read-only data: 12288k
[    1.401392] Freeing unused kernel memory: 2032k freed
[    1.404697] Freeing unused kernel memory: 1388k freed
[    1.423117] udevd[107]: starting version 173
[    1.441367] wmi: Mapper loaded
[    1.443290] [drm] Initialized drm 1.1.0 20060810
[    1.443523] e1000e: Intel(R) PRO/1000 Network Driver - 1.3.10-k2
[    1.443525] e1000e: Copyright(c) 1999 - 2011 Intel Corporation.
[    1.443543] pata_jmicron 0000:03:00.1: PCI INT B -> GSI 18 (level, low) -> IRQ 18
[    1.443551] e1000e 0000:00:19.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20
[    1.443561] e1000e 0000:00:19.0: setting latency timer to 64
[    1.443573] pata_jmicron 0000:03:00.1: setting latency timer to 64
[    1.443672] e1000e 0000:00:19.0: irq 45 for MSI/MSI-X
[    1.444744] scsi0 : pata_jmicron
[    1.444851] scsi1 : pata_jmicron
[    1.445262] ata1: PATA max UDMA/100 cmd 0xdc00 ctl 0xd880 bmdma 0xd400 irq 18
[    1.445266] ata2: PATA max UDMA/100 cmd 0xd800 ctl 0xd480 bmdma 0xd408 irq 18
[    1.449228] [drm] radeon defaulting to kernel modesetting.
[    1.449231] [drm] radeon kernel modesetting enabled.
[    1.449274] radeon 0000:01:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    1.449278] radeon 0000:01:00.0: setting latency timer to 64
[    1.449417] [drm] initializing kernel modesetting (CYPRESS 0x1002:0x6899 0x1002:0x0B00).
[    1.449445] [drm] register mmio base: 0xFBDE0000
[    1.449447] [drm] register mmio size: 131072
[    1.449541] ATOM BIOS: CYPRESS
[    1.449560] radeon 0000:01:00.0: VRAM: 1024M 0x0000000000000000 - 0x000000003FFFFFFF (1024M used)
[    1.449562] radeon 0000:01:00.0: GTT: 512M 0x0000000040000000 - 0x000000005FFFFFFF
[    1.451990] [drm] Detected VRAM RAM=1024M, BAR=256M
[    1.451992] [drm] RAM width 256bits DDR
[    1.452042] [TTM] Zone  kernel: Available graphics memory: 3059070 kiB.
[    1.452044] [TTM] Zone   dma32: Available graphics memory: 2097152 kiB.
[    1.452045] [TTM] Initializing pool allocator.
[    1.452065] [drm] radeon: 1024M of VRAM memory ready
[    1.452067] [drm] radeon: 512M of GTT memory ready.
[    1.452084] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
[    1.452086] [drm] Driver supports precise vblank timestamp query.
[    1.452125] radeon 0000:01:00.0: irq 46 for MSI/MSI-X
[    1.452131] radeon 0000:01:00.0: radeon: using MSI.
[    1.452167] [drm] radeon: irq initialized.
[    1.452171] [drm] GART: num cpu pages 131072, num gpu pages 131072
[    1.452779] [drm] Loading CYPRESS Microcode
[    1.464543] radeon 0000:01:00.0: WB enabled
[    1.481006] [drm] ring test succeeded in 1 usecs
[    1.481075] [drm] radeon: ib pool ready.
[    1.481206] [drm] ib test succeeded in 0 usecs
[    1.481216] failed to evaluate ATIF got AE_BAD_PARAMETER
[    1.481841] [drm] Radeon Display Connectors
[    1.481843] [drm] Connector 0:
[    1.481844] [drm]   DisplayPort
[    1.481845] [drm]   HPD4
[    1.481847] [drm]   DDC: 0x6430 0x6430 0x6434 0x6434 0x6438 0x6438 0x643c 0x643c
[    1.481848] [drm]   Encoders:
[    1.481850] [drm]     DFP1: INTERNAL_UNIPHY2
[    1.481851] [drm] Connector 1:
[    1.481852] [drm]   HDMI-A
[    1.481853] [drm]   HPD5
[    1.481855] [drm]   DDC: 0x6460 0x6460 0x6464 0x6464 0x6468 0x6468 0x646c 0x646c
[    1.481857] [drm]   Encoders:
[    1.481858] [drm]     DFP2: INTERNAL_UNIPHY2
[    1.481859] [drm] Connector 2:
[    1.481860] [drm]   DVI-I
[    1.481861] [drm]   HPD1
[    1.481863] [drm]   DDC: 0x6450 0x6450 0x6454 0x6454 0x6458 0x6458 0x645c 0x645c
[    1.481865] [drm]   Encoders:
[    1.481866] [drm]     DFP3: INTERNAL_UNIPHY1
[    1.481867] [drm]     CRT2: INTERNAL_KLDSCP_DAC2
[    1.481869] [drm] Connector 3:
[    1.481870] [drm]   DVI-I
[    1.481871] [drm]   HPD6
[    1.481872] [drm]   DDC: 0x6470 0x6470 0x6474 0x6474 0x6478 0x6478 0x647c 0x647c
[    1.481874] [drm]   Encoders:
[    1.481875] [drm]     DFP4: INTERNAL_UNIPHY
[    1.481876] [drm]     CRT1: INTERNAL_KLDSCP_DAC1
[    1.670040] usb 1-1: new high speed USB device number 2 using ehci_hcd
[    1.723064] e1000e 0000:00:19.0: eth0: (PCI Express:2.5GT/s:Width x1) 90:fb:a6:46:35:0f
[    1.723067] e1000e 0000:00:19.0: eth0: Intel(R) PRO/1000 Network Connection
[    1.723103] e1000e 0000:00:19.0: eth0: MAC: 9, PHY: 9, PBA No: FFFFFF-0FF
[    1.723122] ahci 0000:00:1f.2: version 3.0
[    1.723132] ahci 0000:00:1f.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[    1.723226] ahci 0000:00:1f.2: irq 47 for MSI/MSI-X
[    1.723254] ahci: SSS flag set, parallel bus scan disabled
[    1.737909] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 3 Gbps 0x3f impl SATA mode
[    1.737912] ahci 0000:00:1f.2: flags: 64bit ncq sntf stag pm led clo pio slum part ems sxs apst 
[    1.737916] ahci 0000:00:1f.2: setting latency timer to 64
[    1.766470] firewire_ohci 0000:07:06.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19
[    1.778349] scsi2 : ahci
[    1.778536] scsi3 : ahci
[    1.778676] scsi4 : ahci
[    1.778842] scsi5 : ahci
[    1.778957] scsi6 : ahci
[    1.779049] scsi7 : ahci
[    1.779152] ata3: SATA max UDMA/133 abar m2048@0xfbcf2000 port 0xfbcf2100 irq 47
[    1.779154] ata4: SATA max UDMA/133 abar m2048@0xfbcf2000 port 0xfbcf2180 irq 47
[    1.779156] ata5: SATA max UDMA/133 abar m2048@0xfbcf2000 port 0xfbcf2200 irq 47
[    1.779158] ata6: SATA max UDMA/133 abar m2048@0xfbcf2000 port 0xfbcf2280 irq 47
[    1.779160] ata7: SATA max UDMA/133 abar m2048@0xfbcf2000 port 0xfbcf2300 irq 47
[    1.779162] ata8: SATA max UDMA/133 abar m2048@0xfbcf2000 port 0xfbcf2380 irq 47
[    1.779178] ahci 0000:03:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
[    1.793901] ahci 0000:03:00.0: AHCI 0001.0000 32 slots 2 ports 3 Gbps 0x3 impl SATA mode
[    1.793904] ahci 0000:03:00.0: flags: 64bit ncq led clo pmp pio 
[    1.793909] ahci 0000:03:00.0: setting latency timer to 64
[    1.794302] scsi8 : ahci
[    1.794519] scsi9 : ahci
[    1.794603] ata9: SATA max UDMA/133 abar m8192@0xfbefe000 port 0xfbefe100 irq 17
[    1.794606] ata10: SATA max UDMA/133 abar m8192@0xfbefe000 port 0xfbefe180 irq 17
[    1.802630] hub 1-1:1.0: USB hub found
[    1.802785] hub 1-1:1.0: 6 ports detected
[    1.829786] firewire_ohci: Added fw-ohci device 0000:07:06.0, OHCI v1.10, 4 IR + 8 IT contexts, quirks 0x11
[    1.913695] usb 2-1: new high speed USB device number 2 using ehci_hcd
[    1.957479] [drm] Radeon display connector DP-1: No monitor connected or invalid EDID
[    2.045792] hub 2-1:1.0: USB hub found
[    2.045886] hub 2-1:1.0: 8 ports detected
[    2.063128] [drm] Radeon display connector HDMI-A-1: Found valid EDID
[    2.072896] [drm] Radeon display connector DVI-I-1: No monitor connected or invalid EDID
[    2.077304] Refined TSC clocksource calibration: 2792.999 MHz.
[    2.077308] Switching to clocksource tsc
[    2.082826] [drm] Radeon display connector DVI-I-2: No monitor connected or invalid EDID
[    2.082857] [drm] Internal thermal controller with fan control
[    2.082882] [drm] radeon: power management initialized
[    2.097299] ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    2.111358] ata3.00: ATA-8: WDC WD5000AAKS-22V1A0, 05.01D05, max UDMA/133
[    2.111360] ata3.00: 976773168 sectors, multi 0: LBA48 NCQ (depth 31/32), AA
[    2.112654] ata3.00: configured for UDMA/133
[    2.112783] scsi 2:0:0:0: Direct-Access     ATA      WDC WD5000AAKS-2 05.0 PQ: 0 ANSI: 5
[    2.112938] sd 2:0:0:0: Attached scsi generic sg0 type 0
[    2.113004] sd 2:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/465 GiB)
[    2.113064] sd 2:0:0:0: [sda] Write Protect is off
[    2.113067] sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    2.113092] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    2.113166] ata10: SATA link down (SStatus 0 SControl 300)
[    2.113198] ata9: SATA link down (SStatus 0 SControl 300)
[    2.117434] usb 1-1.5: new high speed USB device number 3 using ehci_hcd
[    2.150700]  sda: sda1 sda2 sda3 sda4 < sda5 sda6 sda7 >
[    2.151011] sd 2:0:0:0: [sda] Attached SCSI disk
[    2.210745] hub 1-1.5:1.0: USB hub found
[    2.211086] hub 1-1.5:1.0: 4 ports detected
[    2.241744] [drm] fb mappable at 0xD0141000
[    2.241745] [drm] vram apper at 0xD0000000
[    2.241746] [drm] size 9216000
[    2.241747] [drm] fb depth is 24
[    2.241748] [drm]    pitch is 7680
[    2.241779] fbcon: radeondrmfb (fb0) is primary device
[    2.241913] Console: switching to colour frame buffer device 240x75
[    2.241944] fb0: radeondrmfb frame buffer device
[    2.241945] drm: registered panic notifier
[    2.241949] [drm] Initialized radeon 2.10.0 20080528 for 0000:01:00.0 on minor 0
[    2.317142] usb 2-1.7: new high speed USB device number 3 using ehci_hcd
[    2.329050] firewire_core: created device fw0: GUID 00016c2001372ef5, S400
[    2.428699] ata4: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    2.431725] ata4.00: ATAPI: HL-DT-ST DVDRAM GH41N, MN01, max UDMA/100
[    2.434025] usbcore: registered new interface driver uas
[    2.435515] ata4.00: configured for UDMA/100
[    2.446131] scsi 3:0:0:0: CD-ROM            HL-DT-ST DVDRAM GH41N     MN01 PQ: 0 ANSI: 5
[    2.455214] sr0: scsi3-mmc drive: 40x/40x writer dvd-ram cd/rw xa/form2 cdda tray
[    2.455219] cdrom: Uniform CD-ROM driver Revision: 3.20
[    2.455357] sr 3:0:0:0: Attached scsi CD-ROM sr0
[    2.455415] sr 3:0:0:0: Attached scsi generic sg1 type 5
[    2.504949] usb 1-1.5.1: new low speed USB device number 4 using ehci_hcd
[    2.772279] ata5: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    2.799068] ata5.00: ATA-8: WDC WD10EADS-22M2B0, 01.00A01, max UDMA/133
[    2.799074] ata5.00: 1953525168 sectors, multi 0: LBA48 NCQ (depth 31/32), AA
[    2.801499] ata5.00: configured for UDMA/133
[    2.801710] scsi 4:0:0:0: Direct-Access     ATA      WDC WD10EADS-22M 01.0 PQ: 0 ANSI: 5
[    2.801997] sd 4:0:0:0: [sdb] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
[    2.801999] sd 4:0:0:0: Attached scsi generic sg2 type 0
[    2.802134] sd 4:0:0:0: [sdb] Write Protect is off
[    2.802136] sd 4:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[    2.802163] sd 4:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    2.809667]  sdb: sdb1
[    2.810002] sd 4:0:0:0: [sdb] Attached SCSI disk
[    2.836412] usb 1-1.5.2: new low speed USB device number 5 using ehci_hcd
[    3.008306] usb 1-1.5.3: new high speed USB device number 6 using ehci_hcd
[    3.101856] hub 1-1.5.3:1.0: USB hub found
[    3.102177] hub 1-1.5.3:1.0: 4 ports detected
[    3.119736] ata6: SATA link down (SStatus 0 SControl 300)
[    3.438896] ata7: SATA link down (SStatus 0 SControl 300)
[    3.758476] ata8: SATA link down (SStatus 0 SControl 300)
[    3.759845] Initializing USB Mass Storage driver...
[    3.761044] xor: automatically using best checksumming function: generic_sse
[    3.778334]    generic_sse: 12707.000 MB/sec
[    3.778341] xor: using function: generic_sse (12707.000 MB/sec)
[    3.778904] device-mapper: dm-raid45: initialized v0.2594b
[    4.058737] EXT4-fs (sda6): mounted filesystem with ordered data mode. Opts: (null)
[   12.591412] generic-usb 0003:0BDA:0182.0001: timeout initializing reports
[   12.591556] generic-usb 0003:0BDA:0182.0001: hiddev0,hidraw0: USB HID v1.11 Device [Generic USB2.0-CRW] on usb-0000:00:1d.0-1.7/input1
[   12.592103] scsi10 : usb-storage 2-1.7:1.0
[   12.592468] usbcore: registered new interface driver usb-storage
[   12.592473] USB Mass Storage support registered.
[   12.594894] input: Logitech USB-PS/2 Optical Mouse as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.5/1-1.5.1/1-1.5.1:1.0/input/input2
[   12.595018] generic-usb 0003:046D:C051.0002: input,hidraw1: USB HID v1.10 Mouse [Logitech USB-PS/2 Optical Mouse] on usb-0000:00:1a.0-1.5.1/input0
[   12.598324] input: Logitech Logitech USB Keyboard as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.5/1-1.5.2/1-1.5.2:1.0/input/input3
[   12.598470] generic-usb 0003:046D:C316.0003: input,hidraw2: USB HID v1.10 Keyboard [Logitech Logitech USB Keyboard] on usb-0000:00:1a.0-1.5.2/input0
[   12.605348] input: Logitech Logitech USB Keyboard as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.5/1-1.5.2/1-1.5.2:1.1/input/input4
[   12.605436] generic-usb 0003:046D:C316.0004: input,hidraw3: USB HID v1.10 Device [Logitech Logitech USB Keyboard] on usb-0000:00:1a.0-1.5.2/input1
[   12.605444] usbcore: registered new interface driver usbhid
[   12.605446] usbhid: USB HID core driver
[   13.593569] scsi 10:0:0:0: Direct-Access     Generic- Compact Flash    1.00 PQ: 0 ANSI: 0 CCS
[   13.596953] scsi 10:0:0:1: Direct-Access     Generic- xD-Picture       1.00 PQ: 0 ANSI: 0 CCS
[   13.600044] scsi 10:0:0:2: Direct-Access     Generic- SD/MMC           1.00 PQ: 0 ANSI: 0 CCS
[   13.603102] scsi 10:0:0:3: Direct-Access     Generic- MS/MS-Pro/HG     1.00 PQ: 0 ANSI: 0 CCS
[   13.606490] scsi 10:0:0:4: Direct-Access     Generic- MicroSD          1.00 PQ: 0 ANSI: 0 CCS
[   13.909108] sd 10:0:0:0: Attached scsi generic sg3 type 0
[   13.909191] sd 10:0:0:1: Attached scsi generic sg4 type 0
[   13.909280] sd 10:0:0:2: Attached scsi generic sg5 type 0
[   13.909360] sd 10:0:0:3: Attached scsi generic sg6 type 0
[   13.909455] sd 10:0:0:4: Attached scsi generic sg7 type 0
[   13.929891] sd 10:0:0:0: [sdc] Attached SCSI removable disk
[   13.940224] sd 10:0:0:2: [sde] Attached SCSI removable disk
[   13.942719] sd 10:0:0:1: [sdd] Attached SCSI removable disk
[   13.945213] sd 10:0:0:3: [sdf] Attached SCSI removable disk
[   13.947971] sd 10:0:0:4: [sdg] Attached SCSI removable disk
[   20.292412] udevd[412]: starting version 173
[   20.315686] lp: driver loaded but no devices found
[   20.411917] EDAC MC: Ver: 2.1.0
[   20.412642] EDAC MC0: Giving out device to 'i7core_edac.c' 'i7 core #0': DEV 0000:ff:03.0
[   20.412660] EDAC PCI0: Giving out device to module 'i7core_edac' controller 'EDAC PCI controller': DEV '0000:ff:03.0' (POLLED)
[   20.412662] EDAC i7core: Driver loaded.
[   20.417726] type=1400 audit(1332252969.555:2): apparmor="STATUS" operation="profile_load" name="/sbin/dhclient" pid=612 comm="apparmor_parser"
[   20.418021] type=1400 audit(1332252969.555:3): apparmor="STATUS" operation="profile_load" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=612 comm="apparmor_parser"
[   20.418238] type=1400 audit(1332252969.555:4): apparmor="STATUS" operation="profile_load" name="/usr/lib/connman/scripts/dhclient-script" pid=612 comm="apparmor_parser"
[   20.426452] HDA Intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
[   20.426503] HDA Intel 0000:00:1b.0: irq 48 for MSI/MSI-X
[   20.426527] HDA Intel 0000:00:1b.0: setting latency timer to 64
[   20.473917] hda_codec: ALC888: BIOS auto-probing.
[   20.481676] input: HDA Intel Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input5
[   20.481891] HDA Intel 0000:01:00.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17
[   20.481963] HDA Intel 0000:01:00.1: irq 49 for MSI/MSI-X
[   20.481986] HDA Intel 0000:01:00.1: setting latency timer to 64
[   20.499514] HDMI status: Pin=3 Presence_Detect=0 ELD_Valid=0
[   20.499599] input: HD-Audio Generic HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:03.0/0000:01:00.1/sound/card1/input6
[   20.559657] device-mapper: multipath: version 1.3.0 loaded
[   21.347602] EXT4-fs (sda6): re-mounted. Opts: errors=remount-ro
[   21.503536] EXT4-fs (sda7): mounted filesystem with ordered data mode. Opts: (null)
[   21.653661] ppdev: user-space parallel port driver
[   21.658832] type=1400 audit(1332252970.795:5): apparmor="STATUS" operation="profile_load" name="/usr/lib/cups/backend/cups-pdf" pid=1186 comm="apparmor_parser"
[   21.659188] type=1400 audit(1332252970.795:6): apparmor="STATUS" operation="profile_load" name="/usr/sbin/cupsd" pid=1186 comm="apparmor_parser"
[   21.672850] type=1400 audit(1332252970.811:7): apparmor="STATUS" operation="profile_load" name="/usr/sbin/tcpdump" pid=1205 comm="apparmor_parser"
[   21.672868] type=1400 audit(1332252970.811:8): apparmor="STATUS" operation="profile_replace" name="/sbin/dhclient" pid=1199 comm="apparmor_parser"
[   21.673162] type=1400 audit(1332252970.811:9): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=1199 comm="apparmor_parser"
[   21.673348] type=1400 audit(1332252970.811:10): apparmor="STATUS" operation="profile_replace" name="/usr/lib/connman/scripts/dhclient-script" pid=1199 comm="apparmor_parser"
[   21.673379] type=1400 audit(1332252970.811:11): apparmor="STATUS" operation="profile_load" name="/usr/lib/telepathy/mission-control-5" pid=1202 comm="apparmor_parser"
[   21.827474] e1000e 0000:00:19.0: irq 45 for MSI/MSI-X
[   21.870238] Adding 2928636k swap on /dev/mapper/cryptswap1.  Priority:-1 extents:1 across:2928636k 
[   21.883299] e1000e 0000:00:19.0: irq 45 for MSI/MSI-X
[   21.883879] ADDRCONF(NETDEV_UP): eth0: link is not ready
[   21.907274] init: failsafe main process (1123) killed by TERM signal
[   21.907653] init: apport pre-start process (1259) terminated with status 1
[   21.915599] init: apport post-stop process (1294) terminated with status 1
[   22.014369] Bluetooth: Core ver 2.16
[   22.014386] NET: Registered protocol family 31
[   22.014387] Bluetooth: HCI device and connection manager initialized
[   22.014389] Bluetooth: HCI socket layer initialized
[   22.014391] Bluetooth: L2CAP socket layer initialized
[   22.014428] Bluetooth: SCO socket layer initialized
[   22.015823] Bluetooth: RFCOMM TTY layer initialized
[   22.015828] Bluetooth: RFCOMM socket layer initialized
[   22.015829] Bluetooth: RFCOMM ver 1.11
[   22.016179] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[   22.016181] Bluetooth: BNEP filters: protocol multicast