ubuntuusers.de

dmesg

Datum:
13. August 2012 13:50
Code:
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Linux version 3.2.0-29-generic-pae (buildd@roseapple) (gcc version 4.6.3 (Ubuntu/Linaro 4.6.3-1ubuntu5) ) #46-Ubuntu SMP Fri Jul 27 17:25:43 UTC 2012 (Ubuntu 3.2.0-29.46-generic-pae 3.2.24)
[    0.000000] KERNEL supported cpus:
[    0.000000]   Intel GenuineIntel
[    0.000000]   AMD AuthenticAMD
[    0.000000]   NSC Geode by NSC
[    0.000000]   Cyrix CyrixInstead
[    0.000000]   Centaur CentaurHauls
[    0.000000]   Transmeta GenuineTMx86
[    0.000000]   Transmeta TransmetaCPU
[    0.000000]   UMC UMC UMC UMC
[    0.000000] BIOS-provided physical RAM map:
[    0.000000]  BIOS-e820: 0000000000000000 - 000000000009f800 (usable)
[    0.000000]  BIOS-e820: 000000000009f800 - 00000000000a0000 (reserved)
[    0.000000]  BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved)
[    0.000000]  BIOS-e820: 0000000000100000 - 000000006d63a000 (usable)
[    0.000000]  BIOS-e820: 000000006d63a000 - 000000006d83a000 (ACPI NVS)
[    0.000000]  BIOS-e820: 000000006d83a000 - 000000006ed3f000 (usable)
[    0.000000]  BIOS-e820: 000000006ed3f000 - 000000006edbf000 (reserved)
[    0.000000]  BIOS-e820: 000000006edbf000 - 000000006eebf000 (ACPI NVS)
[    0.000000]  BIOS-e820: 000000006eebf000 - 000000006eef6000 (ACPI data)
[    0.000000]  BIOS-e820: 000000006eef6000 - 000000006ef00000 (usable)
[    0.000000]  BIOS-e820: 000000006ef00000 - 000000007f000000 (reserved)
[    0.000000]  BIOS-e820: 00000000f8000000 - 00000000fc000000 (reserved)
[    0.000000]  BIOS-e820: 00000000fec00000 - 00000000fec01000 (reserved)
[    0.000000]  BIOS-e820: 00000000fec10000 - 00000000fec11000 (reserved)
[    0.000000]  BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved)
[    0.000000]  BIOS-e820: 00000000ffe00000 - 0000000100000000 (reserved)
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] DMI 2.7 present.
[    0.000000] DMI: Acer AO722/JE10-BZ, BIOS V1.08 12/06/2011
[    0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
[    0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
[    0.000000] last_pfn = 0x6ef00 max_arch_pfn = 0x1000000
[    0.000000] MTRR default type: uncachable
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-BFFFF uncachable
[    0.000000]   C0000-FFFFF write-through
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 000000000 mask FC0000000 write-back
[    0.000000]   1 base 040000000 mask FE0000000 write-back
[    0.000000]   2 base 060000000 mask FF0000000 write-back
[    0.000000]   3 base 06EEBD000 mask FFFFFF000 uncachable
[    0.000000]   4 base 0FFE00000 mask FFFE00000 write-protect
[    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] found SMP MP-table at [c00fe1b0] fe1b0
[    0.000000] initial memory mapped : 0 - 02000000
[    0.000000] Base memory trampoline at [c009b000] 9b000 size 16384
[    0.000000] init_memory_mapping: 0000000000000000-0000000037bfe000
[    0.000000]  0000000000 - 0000200000 page 4k
[    0.000000]  0000200000 - 0037a00000 page 2M
[    0.000000]  0037a00000 - 0037bfe000 page 4k
[    0.000000] kernel direct mapping tables up to 37bfe000 @ 1ffb000-2000000
[    0.000000] RAMDISK: 364f8000 - 37274000
[    0.000000] ACPI: RSDP 000fe020 00024 (v02 ACRSYS)
[    0.000000] ACPI: XSDT 6eef5120 00064 (v01 ACRSYS ACRPRDCT 00000003      01000013)
[    0.000000] ACPI: FACP 6eef4000 000F4 (v04 ACRSYS ACRPRDCT 00000003 1025 00040000)
[    0.000000] ACPI: DSDT 6eee8000 089F9 (v01 ACRSYS ACRPRDCT F0000000 1025 00040000)
[    0.000000] ACPI: FACS 6ee97000 00040
[    0.000000] ACPI: HPET 6eef3000 00038 (v01 ACRSYS ACRPRDCT 00000001 1025 00040000)
[    0.000000] ACPI: APIC 6eef2000 00084 (v02 ACRSYS ACRPRDCT 00000001 1025 00040000)
[    0.000000] ACPI: MCFG 6eef1000 0003C (v01 ACRSYS ACRPRDCT 00000001 1025 00040000)
[    0.000000] ACPI: BOOT 6eee7000 00028 (v01 ACRSYS ACRPRDCT 00000001 1025 00040000)
[    0.000000] ACPI: SLIC 6eee6000 00176 (v01 ACRSYS ACRPRDCT 00000001 1025 00040000)
[    0.000000] ACPI: SSDT 6eee5000 0030C (v01 AMD    POWERNOW 00000001 AMD  00000001)
[    0.000000] ACPI: SSDT 6eee3000 0168E (v02    AMD     ALIB 00000001 MSFT 04000000)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] 883MB HIGHMEM available.
[    0.000000] 891MB LOWMEM available.
[    0.000000]   mapped low ram: 0 - 37bfe000
[    0.000000]   low ram: 0 - 37bfe000
[    0.000000] Zone PFN ranges:
[    0.000000]   DMA      0x00000010 -> 0x00001000
[    0.000000]   Normal   0x00001000 -> 0x00037bfe
[    0.000000]   HighMem  0x00037bfe -> 0x0006ef00
[    0.000000] Movable zone start PFN for each node
[    0.000000] early_node_map[4] active PFN ranges
[    0.000000]     0: 0x00000010 -> 0x0000009f
[    0.000000]     0: 0x00000100 -> 0x0006d63a
[    0.000000]     0: 0x0006d83a -> 0x0006ed3f
[    0.000000]     0: 0x0006eef6 -> 0x0006ef00
[    0.000000] On node 0 totalpages: 453336
[    0.000000] free_area_init_node: node 0, pgdat c1866a40, node_mem_map f5718200
[    0.000000]   DMA zone: 32 pages used for memmap
[    0.000000]   DMA zone: 0 pages reserved
[    0.000000]   DMA zone: 3951 pages, LIFO batch:0
[    0.000000]   Normal zone: 1752 pages used for memmap
[    0.000000]   Normal zone: 222502 pages, LIFO batch:31
[    0.000000]   HighMem zone: 1767 pages used for memmap
[    0.000000]   HighMem zone: 223332 pages, LIFO batch:31
[    0.000000] Using APIC driver default
[    0.000000] ACPI: PM-Timer IO Port: 0x408
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x00] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x00] disabled)
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[    0.000000] ACPI: IOAPIC (id[0x04] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 4, version 33, 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 low 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: 0x43538210 base: 0xfed00000
[    0.000000] SMP: Allowing 4 CPUs, 2 hotplug CPUs
[    0.000000] nr_irqs_gsi: 40
[    0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
[    0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000
[    0.000000] PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
[    0.000000] Allocating PCI resources starting at 7f000000 (gap: 7f000000:79000000)
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:4 nr_node_ids:1
[    0.000000] PERCPU: Embedded 14 pages/cpu @f7bbc000 s34240 r0 d23104 u57344
[    0.000000] pcpu-alloc: s34240 r0 d23104 u57344 alloc=14*4096
[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 449785
[    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-3.2.0-29-generic-pae root=UUID=6c7d98ca-6f3b-4c8c-9918-6fdae4c29198 ro quiet splash vt.handoff=7
[    0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes)
[    0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
[    0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
[    0.000000] Initializing CPU#0
[    0.000000] allocated 7270144 bytes of page_cgroup
[    0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
[    0.000000] Initializing HighMem for node 0 (00037bfe:0006ef00)
[    0.000000] Memory: 1766804k/1817600k available (5814k kernel code, 46540k reserved, 2841k data, 740k init, 900396k highmem)
[    0.000000] virtual kernel memory layout:
[    0.000000]     fixmap  : 0xfff16000 - 0xfffff000   ( 932 kB)
[    0.000000]     pkmap   : 0xffc00000 - 0xffe00000   (2048 kB)
[    0.000000]     vmalloc : 0xf83fe000 - 0xffbfe000   ( 120 MB)
[    0.000000]     lowmem  : 0xc0000000 - 0xf7bfe000   ( 891 MB)
[    0.000000]       .init : 0xc1875000 - 0xc192e000   ( 740 kB)
[    0.000000]       .data : 0xc15adb64 - 0xc1874240   (2841 kB)
[    0.000000]       .text : 0xc1000000 - 0xc15adb64   (5814 kB)
[    0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok.
[    0.000000] SLUB: Genslabs=15, 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] NR_IRQS:2304 nr_irqs:712 16
[    0.000000] CPU 0 irqstacks, hard=f500a000 soft=f500c000
[    0.000000] spurious 8259A interrupt: IRQ7.
[    0.000000] vt handoff: transparent VT on vt#7
[    0.000000] Console: colour dummy device 80x25
[    0.000000] console [tty0] enabled
[    0.000000] hpet clockevent registered
[    0.000000] Fast TSC calibration using PIT
[    0.000000] Detected 997.527 MHz processor.
[    0.004006] Calibrating delay loop (skipped), value calculated using timer frequency.. 1995.05 BogoMIPS (lpj=3990108)
[    0.004018] pid_max: default: 32768 minimum: 301
[    0.004077] Security Framework initialized
[    0.004118] AppArmor: AppArmor initialized
[    0.004123] Yama: becoming mindful.
[    0.004257] Mount-cache hash table entries: 512
[    0.004574] Initializing cgroup subsys cpuacct
[    0.004592] Initializing cgroup subsys memory
[    0.004614] Initializing cgroup subsys devices
[    0.004620] Initializing cgroup subsys freezer
[    0.004625] Initializing cgroup subsys blkio
[    0.004642] Initializing cgroup subsys perf_event
[    0.004702] CPU: Physical Processor ID: 0
[    0.004707] CPU: Processor Core ID: 0
[    0.004715] mce: CPU supports 6 MCE banks
[    0.013722] ACPI: Core revision 20110623
[    0.028033] ftrace: allocating 26545 entries in 52 pages
[    0.032158] Enabling APIC mode:  Flat.  Using 1 I/O APICs
[    0.032708] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.073430] CPU0: AMD C-60 APU with Radeon(tm) HD Graphics stepping 00
[    0.076004] Performance Events: AMD PMU driver.
[    0.076004] ... version:                0
[    0.076004] ... bit width:              48
[    0.076004] ... generic registers:      4
[    0.076004] ... value mask:             0000ffffffffffff
[    0.076004] ... max period:             00007fffffffffff
[    0.076004] ... fixed-purpose events:   0
[    0.076004] ... event mask:             000000000000000f
[    0.076004] NMI watchdog enabled, takes one hw-pmu counter.
[    0.076004] CPU 1 irqstacks, hard=f50d2000 soft=f50d4000
[    0.076004] Booting Node   0, Processors  #1
[    0.076004] smpboot cpu 1: start_ip = 9b000
[    0.008000] Initializing CPU#1
[    0.164055] NMI watchdog enabled, takes one hw-pmu counter.
[    0.164122] Brought up 2 CPUs
[    0.164130] Total of 2 processors activated (3990.10 BogoMIPS).
[    0.164892] devtmpfs: initialized
[    0.164892] EVM: security.selinux
[    0.164892] EVM: security.SMACK64
[    0.164892] EVM: security.capability
[    0.164892] PM: Registering ACPI NVS region at 6d63a000 (2097152 bytes)
[    0.164892] PM: Registering ACPI NVS region at 6edbf000 (1048576 bytes)
[    0.169464] print_constraints: dummy: 
[    0.169586] RTC time: 11:29:36, date: 08/13/12
[    0.169692] NET: Registered protocol family 16
[    0.169927] Trying to unpack rootfs image as initramfs...
[    0.170003] EISA bus registered
[    0.170157] Extended Config Space enabled on 0 nodes
[    0.170198] ACPI: bus type pci registered
[    0.170461] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
[    0.170472] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
[    0.170478] PCI: Using MMCONFIG for extended config space
[    0.170483] PCI: Using configuration type 1 for base access
[    0.184514] bio: create slab <bio-0> at 0
[    0.184551] ACPI: Added _OSI(Module Device)
[    0.184558] ACPI: Added _OSI(Processor Device)
[    0.184564] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.184571] ACPI: Added _OSI(Processor Aggregator Device)
[    0.188690] ACPI: EC: Look up EC in DSDT
[    0.192803] ACPI: Executed 1 blocks of module-level executable AML code
[    0.199554] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
[    0.217187] ACPI: Interpreter enabled
[    0.217204] ACPI: (supports S0 S3 S4 S5)
[    0.217258] ACPI: Using IOAPIC for interrupt routing
[    0.397118] ACPI: EC: GPE = 0x3, I/O: command/status = 0x66, data = 0x62
[    0.397572] ACPI: No dock devices found.
[    0.397580] HEST: Table not found.
[    0.397592] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.397900] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.398389] pci_root PNP0A08:00: host bridge window [io  0x0000-0x0cf7]
[    0.398398] pci_root PNP0A08:00: host bridge window [io  0x0d00-0xffff]
[    0.398406] pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff]
[    0.398413] pci_root PNP0A08:00: host bridge window [mem 0x000c0000-0x000c3fff]
[    0.398421] pci_root PNP0A08:00: host bridge window [mem 0x000c4000-0x000c7fff]
[    0.398428] pci_root PNP0A08:00: host bridge window [mem 0x000c8000-0x000cbfff]
[    0.398435] pci_root PNP0A08:00: host bridge window [mem 0x000cc000-0x000cffff]
[    0.398442] pci_root PNP0A08:00: host bridge window [mem 0x000d0000-0x000d3fff]
[    0.398450] pci_root PNP0A08:00: host bridge window [mem 0x000d4000-0x000d7fff]
[    0.398457] pci_root PNP0A08:00: host bridge window [mem 0x000d8000-0x000dbfff]
[    0.398464] pci_root PNP0A08:00: host bridge window [mem 0x000dc000-0x000dffff]
[    0.398470] pci_root PNP0A08:00: host bridge window [mem 0x000e0000-0x000e3fff]
[    0.398477] pci_root PNP0A08:00: host bridge window [mem 0x000e4000-0x000e7fff]
[    0.398484] pci_root PNP0A08:00: host bridge window [mem 0x000e8000-0x000ebfff]
[    0.398491] pci_root PNP0A08:00: host bridge window [mem 0x000ec000-0x000effff]
[    0.398498] pci_root PNP0A08:00: host bridge window [mem 0x7f000000-0xf7ffffff]
[    0.398505] pci_root PNP0A08:00: host bridge window [mem 0xfc000000-0xffffffff]
[    0.398527] pci_root PNP0A08:00: ignoring host bridge window [mem 0x000cc000-0x000cffff] (conflicts with Video ROM [mem 0x000c0000-0x000ce3ff])
[    0.398558] pci 0000:00:00.0: [1022:1510] type 0 class 0x000600
[    0.398641] pci 0000:00:01.0: [1002:9807] type 0 class 0x000300
[    0.398663] pci 0000:00:01.0: reg 10: [mem 0x80000000-0x8fffffff pref]
[    0.398679] pci 0000:00:01.0: reg 14: [io  0x4000-0x40ff]
[    0.398694] pci 0000:00:01.0: reg 18: [mem 0x90400000-0x9043ffff]
[    0.398780] pci 0000:00:01.0: supports D1 D2
[    0.398815] pci 0000:00:01.1: [1002:1314] type 0 class 0x000403
[    0.398835] pci 0000:00:01.1: reg 10: [mem 0x90444000-0x90447fff]
[    0.398936] pci 0000:00:01.1: supports D1 D2
[    0.399063] pci 0000:00:11.0: [1002:4391] type 0 class 0x000106
[    0.399097] pci 0000:00:11.0: reg 10: [io  0x4118-0x411f]
[    0.399116] pci 0000:00:11.0: reg 14: [io  0x4124-0x4127]
[    0.399134] pci 0000:00:11.0: reg 18: [io  0x4110-0x4117]
[    0.399153] pci 0000:00:11.0: reg 1c: [io  0x4120-0x4123]
[    0.399171] pci 0000:00:11.0: reg 20: [io  0x4100-0x410f]
[    0.399191] pci 0000:00:11.0: reg 24: [mem 0x9044c000-0x9044c3ff]
[    0.399292] pci 0000:00:12.0: [1002:4397] type 0 class 0x000c03
[    0.399318] pci 0000:00:12.0: reg 10: [mem 0x9044b000-0x9044bfff]
[    0.399439] pci 0000:00:12.2: [1002:4396] type 0 class 0x000c03
[    0.400062] pci 0000:00:12.2: reg 10: [mem 0x9044a000-0x9044a0ff]
[    0.403329] pci 0000:00:12.2: supports D1 D2
[    0.403344] pci 0000:00:12.2: PME# supported from D0 D1 D2 D3hot
[    0.403357] pci 0000:00:12.2: PME# disabled
[    0.403410] pci 0000:00:13.0: [1002:4397] type 0 class 0x000c03
[    0.403441] pci 0000:00:13.0: reg 10: [mem 0x90449000-0x90449fff]
[    0.403564] pci 0000:00:13.2: [1002:4396] type 0 class 0x000c03
[    0.404058] pci 0000:00:13.2: reg 10: [mem 0x90448000-0x904480ff]
[    0.407329] pci 0000:00:13.2: supports D1 D2
[    0.407343] pci 0000:00:13.2: PME# supported from D0 D1 D2 D3hot
[    0.407357] pci 0000:00:13.2: PME# disabled
[    0.407409] pci 0000:00:14.0: [1002:4385] type 0 class 0x000c05
[    0.407547] pci 0000:00:14.2: [1002:4383] type 0 class 0x000403
[    0.407588] pci 0000:00:14.2: reg 10: [mem 0x90440000-0x90443fff 64bit]
[    0.407699] pci 0000:00:14.2: PME# supported from D0 D3hot D3cold
[    0.407709] pci 0000:00:14.2: PME# disabled
[    0.407736] pci 0000:00:14.3: [1002:439d] type 0 class 0x000601
[    0.408091] pci 0000:00:14.4: [1002:4384] type 1 class 0x000604
[    0.408193] pci 0000:00:15.0: [1002:43a0] type 1 class 0x000604
[    0.408334] pci 0000:00:15.0: supports D1 D2
[    0.408386] pci 0000:00:15.2: [1002:43a2] type 1 class 0x000604
[    0.408521] pci 0000:00:15.2: supports D1 D2
[    0.408570] pci 0000:00:15.3: [1002:43a3] type 1 class 0x000604
[    0.408704] pci 0000:00:15.3: supports D1 D2
[    0.408756] pci 0000:00:18.0: [1022:1700] type 0 class 0x000600
[    0.408826] pci 0000:00:18.1: [1022:1701] type 0 class 0x000600
[    0.408889] pci 0000:00:18.2: [1022:1702] type 0 class 0x000600
[    0.408955] pci 0000:00:18.3: [1022:1703] type 0 class 0x000600
[    0.409037] pci 0000:00:18.4: [1022:1704] type 0 class 0x000600
[    0.409100] pci 0000:00:18.5: [1022:1718] type 0 class 0x000600
[    0.409162] pci 0000:00:18.6: [1022:1716] type 0 class 0x000600
[    0.409224] pci 0000:00:18.7: [1022:1719] type 0 class 0x000600
[    0.409458] pci 0000:00:14.4: PCI bridge to [bus 01-01] (subtractive decode)
[    0.409480] pci 0000:00:14.4:   bridge window [io  0x0000-0x0cf7] (subtractive decode)
[    0.409487] pci 0000:00:14.4:   bridge window [io  0x0d00-0xffff] (subtractive decode)
[    0.409495] pci 0000:00:14.4:   bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
[    0.409502] pci 0000:00:14.4:   bridge window [mem 0x000c0000-0x000c3fff] (subtractive decode)
[    0.409509] pci 0000:00:14.4:   bridge window [mem 0x000c4000-0x000c7fff] (subtractive decode)
[    0.409516] pci 0000:00:14.4:   bridge window [mem 0x000c8000-0x000cbfff] (subtractive decode)
[    0.409524] pci 0000:00:14.4:   bridge window [mem 0x000d0000-0x000d3fff] (subtractive decode)
[    0.409531] pci 0000:00:14.4:   bridge window [mem 0x000d4000-0x000d7fff] (subtractive decode)
[    0.409538] pci 0000:00:14.4:   bridge window [mem 0x000d8000-0x000dbfff] (subtractive decode)
[    0.409545] pci 0000:00:14.4:   bridge window [mem 0x000dc000-0x000dffff] (subtractive decode)
[    0.409552] pci 0000:00:14.4:   bridge window [mem 0x000e0000-0x000e3fff] (subtractive decode)
[    0.409560] pci 0000:00:14.4:   bridge window [mem 0x000e4000-0x000e7fff] (subtractive decode)
[    0.409567] pci 0000:00:14.4:   bridge window [mem 0x000e8000-0x000ebfff] (subtractive decode)
[    0.409574] pci 0000:00:14.4:   bridge window [mem 0x000ec000-0x000effff] (subtractive decode)
[    0.409581] pci 0000:00:14.4:   bridge window [mem 0x7f000000-0xf7ffffff] (subtractive decode)
[    0.409589] pci 0000:00:14.4:   bridge window [mem 0xfc000000-0xffffffff] (subtractive decode)
[    0.409749] pci 0000:00:15.0: PCI bridge to [bus 02-05]
[    0.409762] pci 0000:00:15.0:   bridge window [io  0x3000-0x3fff]
[    0.409772] pci 0000:00:15.0:   bridge window [mem 0x90300000-0x903fffff]
[    0.409785] pci 0000:00:15.0:   bridge window [mem 0x90000000-0x900fffff 64bit pref]
[    0.409904] pci 0000:06:00.0: [1969:2062] type 0 class 0x000200
[    0.409944] pci 0000:06:00.0: reg 10: [mem 0x90200000-0x9023ffff 64bit]
[    0.409967] pci 0000:06:00.0: reg 18: [io  0x2000-0x207f]
[    0.410133] pci 0000:06:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.410144] pci 0000:06:00.0: PME# disabled
[    0.416107] pci 0000:00:15.2: PCI bridge to [bus 06-06]
[    0.416129] pci 0000:00:15.2:   bridge window [io  0x2000-0x2fff]
[    0.416141] pci 0000:00:15.2:   bridge window [mem 0x90200000-0x902fffff]
[    0.416294] pci 0000:07:00.0: [168c:0032] type 0 class 0x000280
[    0.416353] pci 0000:07:00.0: reg 10: [mem 0x90100000-0x9017ffff 64bit]
[    0.416447] pci 0000:07:00.0: reg 30: [mem 0xffff0000-0xffffffff pref]
[    0.416561] pci 0000:07:00.0: supports D1 D2
[    0.416567] pci 0000:07:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.416583] pci 0000:07:00.0: PME# disabled
[    0.424105] pci 0000:00:15.3: PCI bridge to [bus 07-07]
[    0.424130] pci 0000:00:15.3:   bridge window [mem 0x90100000-0x901fffff]
[    0.424182] pci_bus 0000:00: on NUMA node 0
[    0.424201] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[    0.424553] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.SPB0._PRT]
[    0.424648] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.SPB2._PRT]
[    0.424768] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.SPB3._PRT]
[    0.424939] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P2P_._PRT]
[    0.425067]  pci0000:00: Requesting ACPI _OSC control (0x1d)
[    0.425077]  pci0000:00: ACPI _OSC request failed (AE_NOT_FOUND), returned control mask: 0x1d
[    0.425082] ACPI _OSC control for PCIe not granted, disabling ASPM
[    0.446814] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 7 10 11 12 14 15) *0
[    0.447070] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 7 10 11 12 14 15) *0
[    0.447369] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 7 10 11 12 14 15) *0
[    0.447688] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 7 10 11 12 14 15) *0
[    0.447876] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 7 10 11 12 14 15) *0
[    0.448118] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 7 10 11 12 14 15) *0
[    0.448307] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 7 10 11 12 14 15) *0
[    0.448562] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 7 10 11 12 14 15) *0
[    0.448989] vgaarb: device added: PCI:0000:00:01.0,decodes=io+mem,owns=io+mem,locks=none
[    0.449021] vgaarb: loaded
[    0.449026] vgaarb: bridge control possible 0000:00:01.0
[    0.449341] i2c-core: driver [aat2870] using legacy suspend method
[    0.449347] i2c-core: driver [aat2870] using legacy resume method
[    0.449554] SCSI subsystem initialized
[    0.449700] libata version 3.00 loaded.
[    0.449830] usbcore: registered new interface driver usbfs
[    0.449863] usbcore: registered new interface driver hub
[    0.449942] usbcore: registered new device driver usb
[    0.450202] PCI: Using ACPI for IRQ routing
[    0.453302] PCI: pci_cache_line_size set to 64 bytes
[    0.453500] reserve RAM buffer: 000000000009f800 - 000000000009ffff 
[    0.453508] reserve RAM buffer: 000000006d63a000 - 000000006fffffff 
[    0.453517] reserve RAM buffer: 000000006ed3f000 - 000000006fffffff 
[    0.453526] reserve RAM buffer: 000000006ef00000 - 000000006fffffff 
[    0.453800] NetLabel: Initializing
[    0.453806] NetLabel:  domain hash size = 128
[    0.453810] NetLabel:  protocols = UNLABELED CIPSOv4
[    0.453839] NetLabel:  unlabeled traffic allowed by default
[    0.454041] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[    0.454053] hpet0: 3 comparators, 32-bit 14.318180 MHz counter
[    0.456070] Switching to clocksource hpet
[    0.475185] AppArmor: AppArmor Filesystem Enabled
[    0.475270] pnp: PnP ACPI init
[    0.475322] ACPI: bus type pnp registered
[    0.475674] pnp 00:00: [bus 00-ff]
[    0.475684] pnp 00:00: [io  0x0000-0x0cf7 window]
[    0.475692] pnp 00:00: [io  0x0d00-0xffff window]
[    0.475700] pnp 00:00: [mem 0x000a0000-0x000bffff window]
[    0.475707] pnp 00:00: [mem 0x000c0000-0x000c3fff window]
[    0.475714] pnp 00:00: [mem 0x000c4000-0x000c7fff window]
[    0.475721] pnp 00:00: [mem 0x000c8000-0x000cbfff window]
[    0.475728] pnp 00:00: [mem 0x000cc000-0x000cffff window]
[    0.475734] pnp 00:00: [mem 0x000d0000-0x000d3fff window]
[    0.475741] pnp 00:00: [mem 0x000d4000-0x000d7fff window]
[    0.475747] pnp 00:00: [mem 0x000d8000-0x000dbfff window]
[    0.475754] pnp 00:00: [mem 0x000dc000-0x000dffff window]
[    0.475766] pnp 00:00: [mem 0x000e0000-0x000e3fff window]
[    0.475773] pnp 00:00: [mem 0x000e4000-0x000e7fff window]
[    0.475779] pnp 00:00: [mem 0x000e8000-0x000ebfff window]
[    0.475786] pnp 00:00: [mem 0x000ec000-0x000effff window]
[    0.475792] pnp 00:00: [mem 0x7f000000-0xf7ffffff window]
[    0.475799] pnp 00:00: [mem 0xfc000000-0xffffffff window]
[    0.475805] pnp 00:00: [io  0x0cf8-0x0cff]
[    0.475951] pnp 00:00: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active)
[    0.476222] pnp 00:01: [mem 0xfec00000-0xfec00fff]
[    0.476230] pnp 00:01: [mem 0xfee00000-0xfee00fff]
[    0.476368] system 00:01: [mem 0xfec00000-0xfec00fff] could not be reserved
[    0.476378] system 00:01: [mem 0xfee00000-0xfee00fff] has been reserved
[    0.476387] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.476815] pnp 00:02: [irq 0 disabled]
[    0.476908] pnp 00:02: [irq 8]
[    0.476914] pnp 00:02: [mem 0xfed00000-0xfed003ff]
[    0.477001] pnp 00:02: Plug and Play ACPI device, IDs PNP0103 (active)
[    0.477195] pnp 00:03: [io  0x0000-0x000f]
[    0.477201] pnp 00:03: [io  0x0081-0x008f]
[    0.477207] pnp 00:03: [io  0x00c0-0x00df]
[    0.477214] pnp 00:03: [dma 4]
[    0.477305] pnp 00:03: Plug and Play ACPI device, IDs PNP0200 (active)
[    0.477332] pnp 00:04: [io  0x00f0-0x00fe]
[    0.477384] pnp 00:04: [irq 13]
[    0.477478] pnp 00:04: Plug and Play ACPI device, IDs PNP0c04 (active)
[    0.477571] pnp 00:05: [io  0x0070-0x0071]
[    0.477665] pnp 00:05: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.477691] pnp 00:06: [io  0x0061]
[    0.477789] pnp 00:06: Plug and Play ACPI device, IDs PNP0800 (active)
[    0.477865] pnp 00:07: [io  0x0060]
[    0.477871] pnp 00:07: [io  0x0064]
[    0.477953] pnp 00:07: [irq 1]
[    0.478052] pnp 00:07: Plug and Play ACPI device, IDs PNP0303 (active)
[    0.478380] pnp 00:08: [irq 12]
[    0.478480] pnp 00:08: Plug and Play ACPI device, IDs ETD0500 ETD0001 PNP0f13 (active)
[    0.478559] pnp 00:09: [io  0x0010-0x001f]
[    0.478566] pnp 00:09: [io  0x002e-0x002f]
[    0.478572] pnp 00:09: [io  0x0072-0x0073]
[    0.478577] pnp 00:09: [io  0x0080]
[    0.478583] pnp 00:09: [io  0x00b0-0x00b1]
[    0.478588] pnp 00:09: [io  0x0092]
[    0.478594] pnp 00:09: [io  0x0400-0x04cf]
[    0.478599] pnp 00:09: [io  0x04d0-0x04d1]
[    0.478605] pnp 00:09: [io  0x04d6]
[    0.478610] pnp 00:09: [io  0x0680-0x06ff]
[    0.478616] pnp 00:09: [io  0x077a]
[    0.478621] pnp 00:09: [io  0x0c00-0x0c01]
[    0.478627] pnp 00:09: [io  0x0c14]
[    0.478632] pnp 00:09: [io  0x0c50-0x0c52]
[    0.478638] pnp 00:09: [io  0x0c6c]
[    0.478643] pnp 00:09: [io  0x0c6f]
[    0.478648] pnp 00:09: [io  0x0cd0-0x0cdb]
[    0.478811] system 00:09: [io  0x0400-0x04cf] has been reserved
[    0.478819] system 00:09: [io  0x04d0-0x04d1] has been reserved
[    0.478827] system 00:09: [io  0x04d6] has been reserved
[    0.478834] system 00:09: [io  0x0680-0x06ff] has been reserved
[    0.478842] system 00:09: [io  0x077a] has been reserved
[    0.478849] system 00:09: [io  0x0c00-0x0c01] has been reserved
[    0.478857] system 00:09: [io  0x0c14] has been reserved
[    0.478864] system 00:09: [io  0x0c50-0x0c52] has been reserved
[    0.478871] system 00:09: [io  0x0c6c] has been reserved
[    0.478878] system 00:09: [io  0x0c6f] has been reserved
[    0.478885] system 00:09: [io  0x0cd0-0x0cdb] has been reserved
[    0.478895] system 00:09: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.479021] pnp 00:0a: [mem 0x000e0000-0x000fffff]
[    0.479028] pnp 00:0a: [mem 0xffe00000-0xffffffff]
[    0.479178] system 00:0a: [mem 0x000e0000-0x000fffff] could not be reserved
[    0.479187] system 00:0a: [mem 0xffe00000-0xffffffff] has been reserved
[    0.479196] system 00:0a: Plug and Play ACPI device, IDs PNP0c01 (active)
[    0.544256] pnp: PnP ACPI: found 11 devices
[    0.544267] ACPI: ACPI bus type pnp unregistered
[    0.544275] PnPBIOS: Disabled by ACPI PNP
[    0.584759] pci 0000:07:00.0: no compatible bridge window for [mem 0xffff0000-0xffffffff pref]
[    0.584771] PCI: max bus depth: 1 pci_try_num: 2
[    0.584923] pci 0000:00:15.3: BAR 15: assigned [mem 0x7f000000-0x7f0fffff pref]
[    0.584932] pci 0000:00:14.4: PCI bridge to [bus 01-01]
[    0.585025] pci 0000:00:15.0: PCI bridge to [bus 02-05]
[    0.585033] pci 0000:00:15.0:   bridge window [io  0x3000-0x3fff]
[    0.585045] pci 0000:00:15.0:   bridge window [mem 0x90300000-0x903fffff]
[    0.585056] pci 0000:00:15.0:   bridge window [mem 0x90000000-0x900fffff 64bit pref]
[    0.585069] pci 0000:00:15.2: PCI bridge to [bus 06-06]
[    0.585077] pci 0000:00:15.2:   bridge window [io  0x2000-0x2fff]
[    0.585088] pci 0000:00:15.2:   bridge window [mem 0x90200000-0x902fffff]
[    0.585107] pci 0000:07:00.0: BAR 6: assigned [mem 0x7f000000-0x7f00ffff pref]
[    0.585115] pci 0000:00:15.3: PCI bridge to [bus 07-07]
[    0.585126] pci 0000:00:15.3:   bridge window [mem 0x90100000-0x901fffff]
[    0.585136] pci 0000:00:15.3:   bridge window [mem 0x7f000000-0x7f0fffff pref]
[    0.585197] pci 0000:00:15.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    0.585208] pci 0000:00:15.0: setting latency timer to 64
[    0.585223] pci 0000:00:15.2: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    0.585233] pci 0000:00:15.2: setting latency timer to 64
[    0.585247] pci 0000:00:15.3: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    0.585257] pci 0000:00:15.3: setting latency timer to 64
[    0.585267] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7]
[    0.585274] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff]
[    0.585281] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
[    0.585288] pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000c3fff]
[    0.585294] pci_bus 0000:00: resource 8 [mem 0x000c4000-0x000c7fff]
[    0.585301] pci_bus 0000:00: resource 9 [mem 0x000c8000-0x000cbfff]
[    0.585308] pci_bus 0000:00: resource 10 [mem 0x000d0000-0x000d3fff]
[    0.585314] pci_bus 0000:00: resource 11 [mem 0x000d4000-0x000d7fff]
[    0.585321] pci_bus 0000:00: resource 12 [mem 0x000d8000-0x000dbfff]
[    0.585328] pci_bus 0000:00: resource 13 [mem 0x000dc000-0x000dffff]
[    0.585334] pci_bus 0000:00: resource 14 [mem 0x000e0000-0x000e3fff]
[    0.585341] pci_bus 0000:00: resource 15 [mem 0x000e4000-0x000e7fff]
[    0.585348] pci_bus 0000:00: resource 16 [mem 0x000e8000-0x000ebfff]
[    0.585354] pci_bus 0000:00: resource 17 [mem 0x000ec000-0x000effff]
[    0.585361] pci_bus 0000:00: resource 18 [mem 0x7f000000-0xf7ffffff]
[    0.585368] pci_bus 0000:00: resource 19 [mem 0xfc000000-0xffffffff]
[    0.585375] pci_bus 0000:01: resource 4 [io  0x0000-0x0cf7]
[    0.585382] pci_bus 0000:01: resource 5 [io  0x0d00-0xffff]
[    0.585388] pci_bus 0000:01: resource 6 [mem 0x000a0000-0x000bffff]
[    0.585395] pci_bus 0000:01: resource 7 [mem 0x000c0000-0x000c3fff]
[    0.585402] pci_bus 0000:01: resource 8 [mem 0x000c4000-0x000c7fff]
[    0.585408] pci_bus 0000:01: resource 9 [mem 0x000c8000-0x000cbfff]
[    0.585415] pci_bus 0000:01: resource 10 [mem 0x000d0000-0x000d3fff]
[    0.585421] pci_bus 0000:01: resource 11 [mem 0x000d4000-0x000d7fff]
[    0.585428] pci_bus 0000:01: resource 12 [mem 0x000d8000-0x000dbfff]
[    0.585435] pci_bus 0000:01: resource 13 [mem 0x000dc000-0x000dffff]
[    0.585441] pci_bus 0000:01: resource 14 [mem 0x000e0000-0x000e3fff]
[    0.585448] pci_bus 0000:01: resource 15 [mem 0x000e4000-0x000e7fff]
[    0.585455] pci_bus 0000:01: resource 16 [mem 0x000e8000-0x000ebfff]
[    0.585461] pci_bus 0000:01: resource 17 [mem 0x000ec000-0x000effff]
[    0.585468] pci_bus 0000:01: resource 18 [mem 0x7f000000-0xf7ffffff]
[    0.585475] pci_bus 0000:01: resource 19 [mem 0xfc000000-0xffffffff]
[    0.585482] pci_bus 0000:02: resource 0 [io  0x3000-0x3fff]
[    0.585489] pci_bus 0000:02: resource 1 [mem 0x90300000-0x903fffff]
[    0.585496] pci_bus 0000:02: resource 2 [mem 0x90000000-0x900fffff 64bit pref]
[    0.585503] pci_bus 0000:06: resource 0 [io  0x2000-0x2fff]
[    0.585510] pci_bus 0000:06: resource 1 [mem 0x90200000-0x902fffff]
[    0.585517] pci_bus 0000:07: resource 1 [mem 0x90100000-0x901fffff]
[    0.585524] pci_bus 0000:07: resource 2 [mem 0x7f000000-0x7f0fffff pref]
[    0.585627] NET: Registered protocol family 2
[    0.585796] IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
[    0.586333] TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
[    0.587242] TCP bind hash table entries: 65536 (order: 7, 524288 bytes)
[    0.587673] TCP: Hash tables configured (established 131072 bind 65536)
[    0.587680] TCP reno registered
[    0.587691] UDP hash table entries: 512 (order: 2, 16384 bytes)
[    0.587714] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
[    0.587935] NET: Registered protocol family 1
[    0.587983] pci 0000:00:01.0: Boot video device
[    0.588169] pci 0000:00:12.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[    0.660197] pci 0000:00:12.0: PCI INT A disabled
[    0.660267] pci 0000:00:12.2: PCI INT B -> GSI 17 (level, low) -> IRQ 17
[    0.676207] pci 0000:00:12.2: PCI INT B disabled
[    0.676249] pci 0000:00:13.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[    0.748203] pci 0000:00:13.0: PCI INT A disabled
[    0.748247] pci 0000:00:13.2: PCI INT B -> GSI 17 (level, low) -> IRQ 17
[    0.764203] pci 0000:00:13.2: PCI INT B disabled
[    0.764300] PCI: CLS 64 bytes, default 64
[    0.764312] Simple Boot Flag at 0x44 set to 0x1
[    0.764941] perf: AMD IBS detected (0x000000ff)
[    0.765343] audit: initializing netlink socket (disabled)
[    0.765368] type=2000 audit(1344857376.764:1): initialized
[    0.834422] highmem bounce pool size: 64 pages
[    0.834440] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    0.856471] VFS: Disk quotas dquot_6.5.2
[    0.856665] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[    0.858233] fuse init (API version 7.17)
[    0.858507] msgmni has been set to 1692
[    0.859940] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
[    0.860137] io scheduler noop registered
[    0.860143] io scheduler deadline registered
[    0.860164] io scheduler cfq registered (default)
[    0.860823] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    0.860894] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    0.861689] ACPI: Deprecated procfs I/F for AC is loaded, please retry with CONFIG_ACPI_PROCFS_POWER cleared
[    0.862525] ACPI: AC Adapter [ACAD] (off-line)
[    0.862721] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input0
[    0.862734] ACPI: Power Button [PWRB]
[    0.862856] input: Sleep Button as /devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input1
[    0.862865] ACPI: Sleep Button [SLPB]
[    0.863027] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input2
[    0.863160] ACPI: Lid Switch [LID]
[    0.863277] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
[    0.863287] ACPI: Power Button [PWRF]
[    0.864096] ACPI: acpi_idle registered with cpuidle
[    0.928426] ACPI: Deprecated procfs I/F for battery is loaded, please retry with CONFIG_ACPI_PROCFS_POWER cleared
[    0.928456] ACPI: Battery Slot [BAT1] (battery present)
[    0.928525] ERST: Table is not found!
[    0.928530] GHES: HEST is not enabled!
[    0.928763] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    0.930189] isapnp: Scanning for PnP cards...
[    1.020814] Freeing initrd memory: 13808k freed
[    1.345008] isapnp: No Plug & Play device found
[    1.405757] Linux agpgart interface v0.103
[    1.412554] brd: module loaded
[    1.415919] loop: module loaded
[    1.416398] ahci 0000:00:11.0: version 3.0
[    1.416516] ahci 0000:00:11.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19
[    1.416724] ahci 0000:00:11.0: AHCI 0001.0200 32 slots 1 ports 3 Gbps 0x1 impl SATA mode
[    1.416735] ahci 0000:00:11.0: flags: 64bit ncq sntf ilck pm led clo pmp pio slum part 
[    1.417607] scsi0 : ahci
[    1.417917] ata1: SATA max UDMA/133 abar m1024@0x9044c000 port 0x9044c100 irq 19
[    1.418887] Fixed MDIO Bus: probed
[    1.418946] tun: Universal TUN/TAP device driver, 1.6
[    1.418953] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[    1.419373] PPP generic driver version 2.4.2
[    1.419892] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    1.420062] ehci_hcd 0000:00:12.2: PCI INT B -> GSI 17 (level, low) -> IRQ 17
[    1.420181] ehci_hcd 0000:00:12.2: setting latency timer to 64
[    1.420190] ehci_hcd 0000:00:12.2: EHCI Host Controller
[    1.420525] ehci_hcd 0000:00:12.2: new USB bus registered, assigned bus number 1
[    1.420617] ehci_hcd 0000:00:12.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
[    1.420662] QUIRK: Enable AMD PLL fix
[    1.420755] ehci_hcd 0000:00:12.2: debug port 1
[    1.420809] ehci_hcd 0000:00:12.2: irq 17, io mem 0x9044a000
[    1.432119] ehci_hcd 0000:00:12.2: USB 2.0 started, EHCI 1.00
[    1.432687] hub 1-0:1.0: USB hub found
[    1.432701] hub 1-0:1.0: 5 ports detected
[    1.433029] ehci_hcd 0000:00:13.2: PCI INT B -> GSI 17 (level, low) -> IRQ 17
[    1.433147] ehci_hcd 0000:00:13.2: setting latency timer to 64
[    1.433156] ehci_hcd 0000:00:13.2: EHCI Host Controller
[    1.433593] ehci_hcd 0000:00:13.2: new USB bus registered, assigned bus number 2
[    1.433688] ehci_hcd 0000:00:13.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
[    1.433745] ehci_hcd 0000:00:13.2: debug port 1
[    1.433780] ehci_hcd 0000:00:13.2: irq 17, io mem 0x90448000
[    1.444316] ehci_hcd 0000:00:13.2: USB 2.0 started, EHCI 1.00
[    1.444762] hub 2-0:1.0: USB hub found
[    1.444773] hub 2-0:1.0: 5 ports detected
[    1.445005] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    1.445111] ohci_hcd 0000:00:12.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[    1.445221] ohci_hcd 0000:00:12.0: setting latency timer to 64
[    1.445228] ohci_hcd 0000:00:12.0: OHCI Host Controller
[    1.445589] ohci_hcd 0000:00:12.0: new USB bus registered, assigned bus number 3
[    1.445735] ohci_hcd 0000:00:12.0: irq 18, io mem 0x9044b000
[    1.504874] hub 3-0:1.0: USB hub found
[    1.504960] hub 3-0:1.0: 5 ports detected
[    1.505295] ohci_hcd 0000:00:13.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[    1.505346] ohci_hcd 0000:00:13.0: setting latency timer to 64
[    1.505355] ohci_hcd 0000:00:13.0: OHCI Host Controller
[    1.505777] ohci_hcd 0000:00:13.0: new USB bus registered, assigned bus number 4
[    1.505909] ohci_hcd 0000:00:13.0: irq 18, io mem 0x90449000
[    1.564705] hub 4-0:1.0: USB hub found
[    1.564792] hub 4-0:1.0: 5 ports detected
[    1.565065] uhci_hcd: USB Universal Host Controller Interface driver
[    1.565247] usbcore: registered new interface driver libusual
[    1.565365] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:MSS1] at 0x60,0x64 irq 1,12
[    1.610317] serio: i8042 KBD port at 0x60,0x64 irq 1
[    1.610374] serio: i8042 AUX port at 0x60,0x64 irq 12
[    1.610984] mousedev: PS/2 mouse device common for all mice
[    1.612515] rtc_cmos 00:05: RTC can wake from S4
[    1.612903] rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0
[    1.613019] rtc0: alarms up to one month, 114 bytes nvram, hpet irqs
[    1.613190] device-mapper: uevent: version 1.0.3
[    1.613441] device-mapper: ioctl: 4.22.0-ioctl (2011-10-19) initialised: dm-devel@redhat.com
[    1.613546] EISA: Probing bus 0 at eisa.0
[    1.613553] EISA: Cannot allocate resource for mainboard
[    1.613559] Cannot allocate resource for EISA slot 1
[    1.613564] Cannot allocate resource for EISA slot 2
[    1.613570] Cannot allocate resource for EISA slot 3
[    1.613575] Cannot allocate resource for EISA slot 4
[    1.613579] Cannot allocate resource for EISA slot 5
[    1.613584] Cannot allocate resource for EISA slot 6
[    1.613589] Cannot allocate resource for EISA slot 7
[    1.613594] Cannot allocate resource for EISA slot 8
[    1.613599] EISA: Detected 0 cards.
[    1.613691] cpufreq-nforce2: No nForce2 chipset.
[    1.613828] cpuidle: using governor ladder
[    1.614087] cpuidle: using governor menu
[    1.614092] EFI Variables Facility v0.08 2004-May-17
[    1.614597] TCP cubic registered
[    1.614924] NET: Registered protocol family 10
[    1.616386] NET: Registered protocol family 17
[    1.616400] Registering the dns_resolver key type
[    1.616460] Using IPI No-Shortcut mode
[    1.617495] PM: Hibernation image not present or could not be loaded.
[    1.617540] registered taskstats version 1
[    1.648413]   Magic number: 8:81:479
[    1.648652] rtc_cmos 00:05: setting system clock to 2012-08-13 11:29:38 UTC (1344857378)
[    1.648672] powernow-k8: Found 1 AMD C-60 APU with Radeon(tm) HD Graphics (2 cpu cores) (version 2.20.00)
[    1.648703] powernow-k8: Core Performance Boosting: on.
[    1.648774] powernow-k8:    0 : pstate 0 (1000 MHz)
[    1.648779] powernow-k8:    1 : pstate 1 (800 MHz)
[    1.649575] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[    1.649584] EDD information not available.
[    1.650672] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input4
[    1.692524] ACPI: Battery Slot [BAT1] (battery present)
[    1.756302] usb 2-1: new high-speed USB device number 2 using ehci_hcd
[    1.824288] Refined TSC clocksource calibration: 997.502 MHz.
[    1.824304] Switching to clocksource tsc
[    1.908264] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    1.910391] ata1.00: ATA-8: WDC WD3200BPVT-22JJ5T0, 01.01A01, max UDMA/133
[    1.910406] ata1.00: 625142448 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
[    1.912444] ata1.00: configured for UDMA/133
[    1.913008] scsi 0:0:0:0: Direct-Access     ATA      WDC WD3200BPVT-2 01.0 PQ: 0 ANSI: 5
[    1.913347] sd 0:0:0:0: [sda] 625142448 512-byte logical blocks: (320 GB/298 GiB)
[    1.913353] sd 0:0:0:0: [sda] 4096-byte physical blocks
[    1.913406] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    1.913477] sd 0:0:0:0: [sda] Write Protect is off
[    1.913484] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    1.913535] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    1.976162]  sda: sda1 sda2 < sda5 >
[    1.977594] sd 0:0:0:0: [sda] Attached SCSI disk
[    1.977851] Freeing unused kernel memory: 740k freed
[    1.978501] Write protecting the kernel text: 5816k
[    1.978539] Write protecting the kernel read-only data: 2376k
[    1.978544] NX-protecting the kernel data: 4424k
[    2.030031] udevd[87]: starting version 175
[    2.104192] usb 2-2: new high-speed USB device number 3 using ehci_hcd
[    2.258686] atl1c 0000:06:00.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[    2.258713] atl1c 0000:06:00.0: setting latency timer to 64
[    2.393532] atl1c 0000:06:00.0: version 1.0.1.0-NAPI
[    2.414485] EXT4-fs (sda1): INFO: recovery required on readonly filesystem
[    2.414498] EXT4-fs (sda1): write access will be enabled during recovery
[    2.507841] Initializing USB Mass Storage driver...
[    2.508076] usbcore: registered new interface driver usb-storage
[    2.508083] USB Mass Storage support registered.
[    2.509196] usbcore: registered new interface driver uas
[    2.525966] usb 2-2: USB disconnect, device number 3
[    2.534693] scsi1 : usb-storage 2-2:1.0
[    2.534907] usbcore: registered new interface driver ums-realtek
[    2.855624] EXT4-fs (sda1): orphan cleanup on readonly fs
[    2.855655] EXT4-fs (sda1): ext4_orphan_cleanup: deleting unreferenced inode 7602188
[    2.855723] EXT4-fs (sda1): ext4_orphan_cleanup: deleting unreferenced inode 7602189
[    2.855855] EXT4-fs (sda1): 2 orphan inodes deleted
[    2.855862] EXT4-fs (sda1): recovery complete
[    3.798850] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
[   15.273521] ADDRCONF(NETDEV_UP): eth0: link is not ready
[   15.360511] Adding 1812476k swap on /dev/sda5.  Priority:-1 extents:1 across:1812476k 
[   15.410963] udevd[362]: starting version 175
[   15.872693] EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro
[   15.899152] lp: driver loaded but no devices found
[   16.069388] wmi: Mapper loaded
[   16.177230] piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0
[   16.194565] [drm] Initialized drm 1.1.0 20060810
[   16.218789] SP5100 TCO timer: SP5100 TCO WatchDog Timer Driver v0.01
[   16.219193] SP5100 TCO timer: mmio address 0xb8fe00 already in use
[   16.222318] acpi device:01: registered as cooling_device2
[   16.222617] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:00/input/input5
[   16.226456] ACPI: Video Device [VGA] (multi-head: yes  rom: no  post: no)
[   16.406600] Linux video capture interface: v2.00
[   16.436128] uvcvideo: Found UVC 1.00 device WebCam (0402:7675)
[   16.446603] input: WebCam as /devices/pci0000:00/0000:00:13.2/usb2/2-1/2-1:1.0/input/input6
[   16.456098] usbcore: registered new interface driver uvcvideo
[   16.456108] USB Video Class driver (1.1.1)
[   16.610812] cfg80211: Calling CRDA to update world regulatory domain
[   16.735485] acer_wmi: Acer Laptop ACPI-WMI Extras
[   16.735527] acer_wmi: Function bitmap for Communication Button: 0x801
[   16.735539] acer_wmi: Brightness must be controlled by generic video driver
[   16.741316] input: Acer WMI hotkeys as /devices/virtual/input/input7
[   16.742266] acer_wmi: Get 0x1 Device Status failed: 0xe2 - 0x0
[   16.743087] acer_wmi: Get 0x800 Device Status failed: 0xe2 - 0x0
[   16.743875] acer_wmi: Get Current Device Status failed: 0xe2 - 0x0
[   16.744955] cfg80211: World regulatory domain updated:
[   16.744963] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[   16.744971] cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   16.744979] cfg80211:   (2457000 KHz - 2482000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[   16.744987] cfg80211:   (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[   16.744994] cfg80211:   (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   16.745001] cfg80211:   (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   16.888000] type=1400 audit(1344857393.731:2): apparmor="STATUS" operation="profile_load" name="/sbin/dhclient" pid=611 comm="apparmor_parser"
[   16.888125] type=1400 audit(1344857393.735:3): apparmor="STATUS" operation="profile_replace" name="/sbin/dhclient" pid=612 comm="apparmor_parser"
[   16.889832] type=1400 audit(1344857393.735:4): apparmor="STATUS" operation="profile_load" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=611 comm="apparmor_parser"
[   16.890483] type=1400 audit(1344857393.735:5): apparmor="STATUS" operation="profile_load" name="/usr/lib/connman/scripts/dhclient-script" pid=611 comm="apparmor_parser"
[   16.890987] type=1400 audit(1344857393.735:6): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=612 comm="apparmor_parser"
[   16.891670] type=1400 audit(1344857393.735:7): apparmor="STATUS" operation="profile_replace" name="/usr/lib/connman/scripts/dhclient-script" pid=612 comm="apparmor_parser"
[   17.011166] acer_wmi: Get Current Device Status failed: 0xe2 - 0x0
[   17.051152] acer_wmi: Get Current Device Status failed: 0xe2 - 0x0
[   17.117272] [drm] radeon defaulting to kernel modesetting.
[   17.117283] [drm] radeon kernel modesetting enabled.
[   17.117392] radeon 0000:00:01.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[   17.117405] radeon 0000:00:01.0: setting latency timer to 64
[   17.135451] [drm] initializing kernel modesetting (PALM 0x1002:0x9807 0x1025:0x0598).
[   17.135619] [drm] register mmio base: 0x90400000
[   17.135625] [drm] register mmio size: 262144
[   17.137815] ATOM BIOS: Acer
[   17.137884] radeon 0000:00:01.0: VRAM: 256M 0x0000000000000000 - 0x000000000FFFFFFF (256M used)
[   17.137894] radeon 0000:00:01.0: GTT: 512M 0x0000000010000000 - 0x000000002FFFFFFF
[   17.139810] [drm] Detected VRAM RAM=256M, BAR=256M
[   17.139821] [drm] RAM width 32bits DDR
[   17.140002] [TTM] Zone  kernel: Available graphics memory: 440478 kiB.
[   17.140073] [TTM] Zone highmem: Available graphics memory: 890676 kiB.
[   17.140079] [TTM] Initializing pool allocator.
[   17.140147] [drm] radeon: 256M of VRAM memory ready
[   17.140153] [drm] radeon: 512M of GTT memory ready.
[   17.140193] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
[   17.140198] [drm] Driver supports precise vblank timestamp query.
[   17.140284] radeon 0000:00:01.0: irq 40 for MSI/MSI-X
[   17.140296] radeon 0000:00:01.0: radeon: using MSI.
[   17.140360] [drm] radeon: irq initialized.
[   17.140373] [drm] GART: num cpu pages 131072, num gpu pages 131072
[   17.144197] [drm] Loading PALM Microcode
[   17.151344] psmouse serio1: elantech: assuming hardware version 2 (with firmware version 0x040213)
[   17.225932] ath9k 0000:07:00.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19
[   17.225962] ath9k 0000:07:00.0: setting latency timer to 64
[   17.241563] ath: EEPROM regdomain: 0x65
[   17.241573] ath: EEPROM indicates we should expect a direct regpair map
[   17.241583] ath: Country alpha2 being used: 00
[   17.241587] ath: Regpair used: 0x65
[   17.241596] cfg80211: Updating information on frequency 2412 MHz for a 20 MHz width channel with regulatory rule:
[   17.241605] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[   17.241612] cfg80211: Updating information on frequency 2417 MHz for a 20 MHz width channel with regulatory rule:
[   17.241620] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[   17.241626] cfg80211: Updating information on frequency 2422 MHz for a 20 MHz width channel with regulatory rule:
[   17.241634] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[   17.241640] cfg80211: Updating information on frequency 2427 MHz for a 20 MHz width channel with regulatory rule:
[   17.241648] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[   17.241654] cfg80211: Updating information on frequency 2432 MHz for a 20 MHz width channel with regulatory rule:
[   17.241662] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[   17.241668] cfg80211: Updating information on frequency 2437 MHz for a 20 MHz width channel with regulatory rule:
[   17.241676] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[   17.241682] cfg80211: Updating information on frequency 2442 MHz for a 20 MHz width channel with regulatory rule:
[   17.241690] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[   17.241696] cfg80211: Updating information on frequency 2447 MHz for a 20 MHz width channel with regulatory rule:
[   17.241703] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[   17.241709] cfg80211: Updating information on frequency 2452 MHz for a 20 MHz width channel with regulatory rule:
[   17.241717] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[   17.241723] cfg80211: Updating information on frequency 2457 MHz for a 20 MHz width channel with regulatory rule:
[   17.241731] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[   17.241737] cfg80211: Updating information on frequency 2462 MHz for a 20 MHz width channel with regulatory rule:
[   17.241745] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[   17.241751] cfg80211: Updating information on frequency 2467 MHz for a 20 MHz width channel with regulatory rule:
[   17.241758] cfg80211: 2457000 KHz - 2482000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[   17.241765] cfg80211: Updating information on frequency 2472 MHz for a 20 MHz width channel with regulatory rule:
[   17.241772] cfg80211: 2457000 KHz - 2482000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[   17.241778] cfg80211: Disabling freq 2484 MHz as custom regd has no rule that fits a 20 MHz wide channel
[   17.245829] cfg80211: Ignoring regulatory request Set by core since the driver uses its own custom regulatory domain
[   17.258916] psmouse serio1: elantech: Synaptics capabilities query result 0x68, 0x18, 0x0c.
[   17.288627] init: failsafe main process (688) killed by TERM signal
[   17.380499] ieee80211 phy0: Selected rate control algorithm 'ath9k_rate_control'
[   17.397915] Registered led device: ath9k-phy0
[   17.397942] ieee80211 phy0: Atheros AR9485 Rev:1 mem=0xf8a80000, irq=19
[   17.481158] ppdev: user-space parallel port driver
[   17.500420] [drm] PCIE GART of 512M enabled (table at 0x0000000000040000).
[   17.518796] radeon 0000:00:01.0: WB enabled
[   17.545952] [drm] ring test succeeded in 1 usecs
[   17.546367] [drm] radeon: ib pool ready.
[   17.546547] [drm] ib test succeeded in 0 usecs
[   17.581676] Bluetooth: Core ver 2.16
[   17.581736] NET: Registered protocol family 31
[   17.581742] Bluetooth: HCI device and connection manager initialized
[   17.581751] Bluetooth: HCI socket layer initialized
[   17.581757] Bluetooth: L2CAP socket layer initialized
[   17.581775] Bluetooth: SCO socket layer initialized
[   17.636840] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[   17.636851] Bluetooth: BNEP filters: protocol multicast
[   17.652102] psmouse serio1: elantech: retrying ps2 command 0xe6 (2).
[   17.704795] [drm] Radeon Display Connectors
[   17.704804] [drm] Connector 0:
[   17.704810] [drm]   LVDS
[   17.704814] [drm]   HPD1
[   17.704822] [drm]   DDC: 0x6430 0x6430 0x6434 0x6434 0x6438 0x6438 0x643c 0x643c
[   17.704827] [drm]   Encoders:
[   17.704832] [drm]     LCD1: INTERNAL_UNIPHY
[   17.704837] [drm] Connector 1:
[   17.704840] [drm]   HDMI-A
[   17.704844] [drm]   HPD2
[   17.704850] [drm]   DDC: 0x6440 0x6440 0x6444 0x6444 0x6448 0x6448 0x644c 0x644c
[   17.704855] [drm]   Encoders:
[   17.704859] [drm]     DFP1: INTERNAL_UNIPHY
[   17.704863] [drm] Connector 2:
[   17.704867] [drm]   VGA
[   17.704873] [drm]   DDC: 0x64d8 0x64d8 0x64dc 0x64dc 0x64e0 0x64e0 0x64e4 0x64e4
[   17.704878] [drm]   Encoders:
[   17.704882] [drm]     CRT1: INTERNAL_KLDSCP_DAC1
[   17.705031] [drm] Internal thermal controller without fan control
[   17.705290] [drm] radeon: power management initialized
[   17.758461] type=1400 audit(1344857394.603:8): apparmor="STATUS" operation="profile_load" name="/usr/lib/cups/backend/cups-pdf" pid=823 comm="apparmor_parser"
[   17.772991] type=1400 audit(1344857394.619:9): apparmor="STATUS" operation="profile_load" name="/usr/sbin/cupsd" pid=823 comm="apparmor_parser"
[   17.830002] type=1400 audit(1344857394.675:10): apparmor="STATUS" operation="profile_load" name="/usr/lib/lightdm/lightdm/lightdm-guest-session-wrapper" pid=835 comm="apparmor_parser"
[   17.834890] type=1400 audit(1344857394.679:11): apparmor="STATUS" operation="profile_replace" name="/sbin/dhclient" pid=836 comm="apparmor_parser"
[   17.922221] atl1c 0000:06:00.0: irq 41 for MSI/MSI-X
[   17.922386] atl1c 0000:06:00.0: atl1c: eth0 NIC Link is Up<100 Mbps Full Duplex>
[   17.946134] ADDRCONF(NETDEV_UP): wlan0: link is not ready
[   17.947279] ADDRCONF(NETDEV_UP): wlan0: link is not ready
[   18.173334] psmouse serio1: elantech: retrying ps2 command 0xf8 (2).
[   18.288025] [drm] fb mappable at 0x80142000
[   18.288035] [drm] vram apper at 0x80000000
[   18.288040] [drm] size 4325376
[   18.288045] [drm] fb depth is 24
[   18.288049] [drm]    pitch is 5632
[   18.288556] fbcon: radeondrmfb (fb0) is primary device
[   18.289803] Console: switching to colour frame buffer device 170x48
[   18.289904] fb0: radeondrmfb frame buffer device
[   18.289910] drm: registered panic notifier
[   18.289929] [drm] Initialized radeon 2.12.0 20080528 for 0000:00:01.0 on minor 0
[   18.290111] snd_hda_intel 0000:00:01.1: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[   18.290261] snd_hda_intel 0000:00:01.1: irq 42 for MSI/MSI-X
[   18.290312] snd_hda_intel 0000:00:01.1: setting latency timer to 64
[   18.297515] init: alsa-restore main process (893) terminated with status 19
[   18.381000] HDMI status: Codec=0 Pin=3 Presence_Detect=0 ELD_Valid=0
[   18.381224] input: HD-Audio Generic HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.1/sound/card0/input8
[   18.383422] snd_hda_intel 0000:00:14.2: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[   18.383618] snd_hda_intel 0000:00:14.2: setting latency timer to 64
[   18.458913] hda_codec: CX20588: BIOS auto-probing.
[   18.462653] input: HDA ATI SB Mic as /devices/pci0000:00/0000:00:14.2/sound/card1/input9
[   18.463251] input: HDA ATI SB Mic as /devices/pci0000:00/0000:00:14.2/sound/card1/input10
[   18.463831] input: HDA ATI SB Headphone as /devices/pci0000:00/0000:00:14.2/sound/card1/input11
[   18.780590] init: anacron main process (922) killed by TERM signal
[   18.876074] psmouse serio1: elantech: retrying ps2 command 0xf8 (1).
[   19.596727] input: ETPS/2 Elantech Touchpad as /devices/platform/i8042/serio1/input/input12
[   22.239518] wlan0: authenticate with bc:05:43:e5:cb:a8 (try 1)
[   22.241703] wlan0: authenticated
[   22.243692] wlan0: associate with bc:05:43:e5:cb:a8 (try 1)
[   22.247892] wlan0: RX AssocResp from bc:05:43:e5:cb:a8 (capab=0x11 status=0 aid=2)
[   22.247904] wlan0: associated
[   22.247914] wlan0: moving STA bc:05:43:e5:cb:a8 to state 1
[   22.247921] wlan0: moving STA bc:05:43:e5:cb:a8 to state 2
[   22.247928] wlan0: No basic rates in AssocResp. Using min supported rate instead.
[   22.253953] ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[   22.257501] cfg80211: Calling CRDA for country: DE
[   22.263042] wlan0: moving STA bc:05:43:e5:cb:a8 to state 3
[   22.277315] cfg80211: Updating information on frequency 2412 MHz for a 20 MHz width channel with regulatory rule:
[   22.277330] cfg80211: 2400000 KHz - 2483500 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[   22.277338] cfg80211: Updating information on frequency 2417 MHz for a 20 MHz width channel with regulatory rule:
[   22.277346] cfg80211: 2400000 KHz - 2483500 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[   22.277353] cfg80211: Updating information on frequency 2422 MHz for a 20 MHz width channel with regulatory rule:
[   22.277361] cfg80211: 2400000 KHz - 2483500 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[   22.277368] cfg80211: Updating information on frequency 2427 MHz for a 20 MHz width channel with regulatory rule:
[   22.277376] cfg80211: 2400000 KHz - 2483500 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[   22.277382] cfg80211: Updating information on frequency 2432 MHz for a 20 MHz width channel with regulatory rule:
[   22.277390] cfg80211: 2400000 KHz - 2483500 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[   22.277396] cfg80211: Updating information on frequency 2437 MHz for a 20 MHz width channel with regulatory rule:
[   22.277404] cfg80211: 2400000 KHz - 2483500 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[   22.277410] cfg80211: Updating information on frequency 2442 MHz for a 20 MHz width channel with regulatory rule:
[   22.277418] cfg80211: 2400000 KHz - 2483500 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[   22.277424] cfg80211: Updating information on frequency 2447 MHz for a 20 MHz width channel with regulatory rule:
[   22.277432] cfg80211: 2400000 KHz - 2483500 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[   22.277438] cfg80211: Updating information on frequency 2452 MHz for a 20 MHz width channel with regulatory rule:
[   22.277445] cfg80211: 2400000 KHz - 2483500 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[   22.277452] cfg80211: Updating information on frequency 2457 MHz for a 20 MHz width channel with regulatory rule:
[   22.277459] cfg80211: 2400000 KHz - 2483500 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[   22.277465] cfg80211: Updating information on frequency 2462 MHz for a 20 MHz width channel with regulatory rule:
[   22.277473] cfg80211: 2400000 KHz - 2483500 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[   22.277479] cfg80211: Updating information on frequency 2467 MHz for a 20 MHz width channel with regulatory rule:
[   22.277486] cfg80211: 2400000 KHz - 2483500 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[   22.277493] cfg80211: Updating information on frequency 2472 MHz for a 20 MHz width channel with regulatory rule:
[   22.277500] cfg80211: 2400000 KHz - 2483500 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[   22.277506] cfg80211: Disabling freq 2484 MHz
[   22.277517] ath: regdomain 0x8114 updated by CountryIE
[   22.277522] ath: EEPROM regdomain: 0x8114
[   22.277526] ath: EEPROM indicates we should expect a country code
[   22.277532] ath: doing EEPROM country->regdmn map search
[   22.277537] ath: country maps to regdmn code: 0x37
[   22.277542] ath: Country alpha2 being used: DE
[   22.277546] ath: Regpair used: 0x37
[   22.277653] cfg80211: Regulatory domain changed to country: DE
[   22.277658] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[   22.277665] cfg80211:   (2400000 KHz - 2483500 KHz @ 40000 KHz), (N/A, 2000 mBm)
[   22.277672] cfg80211:   (5150000 KHz - 5250000 KHz @ 40000 KHz), (N/A, 2000 mBm)
[   22.277679] cfg80211:   (5250000 KHz - 5350000 KHz @ 40000 KHz), (N/A, 2000 mBm)
[   22.277685] cfg80211:   (5470000 KHz - 5725000 KHz @ 40000 KHz), (N/A, 2698 mBm)
[   28.232046] eth0: no IPv6 routers present
[   32.560159] wlan0: no IPv6 routers present