ubuntuusers.de

Unbenannt

Datum:
6. August 2011 13:34
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
ddzex@dzex-N210:~$ dmesg
[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Linux version 2.6.38-10-generic (buildd@vernadsky) (gcc version 4.5.2 (Ubuntu/Linaro 4.5.2-8ubuntu4) ) #46-Ubuntu SMP Tue Jun 28 15:05:41 UTC 2011 (Ubuntu 2.6.38-10.46-generic 2.6.38.7)
[    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: 00000000000ce000 - 00000000000d0000 (reserved)
[    0.000000]  BIOS-e820: 00000000000dc000 - 00000000000e0000 (reserved)
[    0.000000]  BIOS-e820: 00000000000e4000 - 0000000000100000 (reserved)
[    0.000000]  BIOS-e820: 0000000000100000 - 000000003f5b0000 (usable)
[    0.000000]  BIOS-e820: 000000003f5b0000 - 000000003f5c0000 (ACPI data)
[    0.000000]  BIOS-e820: 000000003f5c0000 - 000000003f5c3000 (ACPI NVS)
[    0.000000]  BIOS-e820: 000000003f5c3000 - 0000000040000000 (reserved)
[    0.000000]  BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved)
[    0.000000]  BIOS-e820: 00000000fec00000 - 00000000fec10000 (reserved)
[    0.000000]  BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved)
[    0.000000]  BIOS-e820: 00000000ff000000 - 0000000100000000 (reserved)
[    0.000000] Notice: NX (Execute Disable) protection cannot be enabled in hardware: non-PAE kernel!
[    0.000000] NX (Execute Disable) protection: approximated by x86 segment limits
[    0.000000] DMI present.
[    0.000000] DMI: SAMSUNG ELECTRONICS CO., LTD. N150/N210/N220             /N150/N210/N220             , BIOS 00KG.M039.20100122.JIP 01/22/2010
[    0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
[    0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
[    0.000000] last_pfn = 0x3f5b0 max_arch_pfn = 0x100000
[    0.000000] MTRR default type: uncachable
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-BFFFF uncachable
[    0.000000]   C0000-CFFFF write-protect
[    0.000000]   D0000-DFFFF uncachable
[    0.000000]   E0000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 000000000 mask 0C0000000 write-back
[    0.000000]   1 base 03F600000 mask 0FFE00000 uncachable
[    0.000000]   2 base 03F800000 mask 0FF800000 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] found SMP MP-table at [c00f7dd0] f7dd0
[    0.000000] initial memory mapped : 0 - 01c00000
[    0.000000] init_memory_mapping: 0000000000000000-00000000377fe000
[    0.000000]  0000000000 - 0000400000 page 4k
[    0.000000]  0000400000 - 0037400000 page 2M
[    0.000000]  0037400000 - 00377fe000 page 4k
[    0.000000] kernel direct mapping tables up to 377fe000 @ 1bfb000-1c00000
[    0.000000] RAMDISK: 3676c000 - 373ae000
[    0.000000] ACPI: RSDP 000f7da0 00024 (v02 PTLTD )
[    0.000000] ACPI: XSDT 3f5b8e27 0006C (v01 SECCSD LH43STAR 06040000  LTP 00000000)
[    0.000000] ACPI: FACP 3f5bfc92 000F4 (v03 INTEL           06040000 PTL  00000002)
[    0.000000] ACPI: DSDT 3f5ba08f 05B7F (v01  INTEL BEARG31A 06040000 MSFT 03000001)
[    0.000000] ACPI: FACS 3f5c2fc0 00040
[    0.000000] ACPI: MCFG 3f5bfd86 0003C (v01 PTLTD    MCFG   06040000  LTP 00000000)
[    0.000000] ACPI: HPET 3f5bfdc2 00038 (v01 PTLTD  HPETTBL  06040000  LTP 00000001)
[    0.000000] ACPI: APIC 3f5bfdfa 00068 (v01 PTLTD  ? APIC   06040000  LTP 00000000)
[    0.000000] ACPI: BOOT 3f5bfe62 00028 (v01 PTLTD  $SBFTBL$ 06040000  LTP 00000001)
[    0.000000] ACPI: SLIC 3f5bfe8a 00176 (v01 SECCSD LH43STAR 06040000  LTP 00000000)
[    0.000000] ACPI: SSDT 3f5b942f 0025F (v01  PmRef  Cpu0Tst 00003000 INTL 20050624)
[    0.000000] ACPI: SSDT 3f5b9389 000A6 (v01  PmRef  Cpu1Tst 00003000 INTL 20050624)
[    0.000000] ACPI: SSDT 3f5b8e93 004F6 (v02  PmRef    CpuPm 00003000 INTL 20050624)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] 125MB HIGHMEM available.
[    0.000000] 887MB LOWMEM available.
[    0.000000]   mapped low ram: 0 - 377fe000
[    0.000000]   low ram: 0 - 377fe000
[    0.000000] Zone PFN ranges:
[    0.000000]   DMA      0x00000010 -> 0x00001000
[    0.000000]   Normal   0x00001000 -> 0x000377fe
[    0.000000]   HighMem  0x000377fe -> 0x0003f5b0
[    0.000000] Movable zone start PFN for each node
[    0.000000] early_node_map[2] active PFN ranges
[    0.000000]     0: 0x00000010 -> 0x0000009d
[    0.000000]     0: 0x00000100 -> 0x0003f5b0
[    0.000000] On node 0 totalpages: 259389
[    0.000000] free_area_init_node: node 0, pgdat c1784140, node_mem_map f5f7c200
[    0.000000]   DMA zone: 32 pages used for memmap
[    0.000000]   DMA zone: 0 pages reserved
[    0.000000]   DMA zone: 3949 pages, LIFO batch:0
[    0.000000]   Normal zone: 1744 pages used for memmap
[    0.000000]   Normal zone: 221486 pages, LIFO batch:31
[    0.000000]   HighMem zone: 252 pages used for memmap
[    0.000000]   HighMem zone: 31926 pages, LIFO batch:7
[    0.000000] Using APIC driver default
[    0.000000] ACPI: PM-Timer IO Port: 0x1008
[    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_NMI (acpi_id[0x00] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 high edge)
[    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 2 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 - 00000000000ce000
[    0.000000] PM: Registered nosave memory: 00000000000ce000 - 00000000000d0000
[    0.000000] PM: Registered nosave memory: 00000000000d0000 - 00000000000dc000
[    0.000000] PM: Registered nosave memory: 00000000000dc000 - 00000000000e0000
[    0.000000] PM: Registered nosave memory: 00000000000e0000 - 00000000000e4000
[    0.000000] PM: Registered nosave memory: 00000000000e4000 - 0000000000100000
[    0.000000] Allocating PCI resources starting at 40000000 (gap: 40000000:a0000000)
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:2 nr_node_ids:1
[    0.000000] PERCPU: Embedded 13 pages/cpu @f5800000 s28800 r0 d24448 u2097152
[    0.000000] pcpu-alloc: s28800 r0 d24448 u2097152 alloc=1*4194304
[    0.000000] pcpu-alloc: [0] 0 1 
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 257361
[    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-2.6.38-10-generic root=UUID=c081b4b8-17c2-48f0-80e6-373f01a48352 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 5189760 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 (000377fe:0003f5b0)
[    0.000000] Memory: 1001508k/1038016k available (5190k kernel code, 36048k reserved, 2539k data, 700k init, 128712k highmem)
[    0.000000] virtual kernel memory layout:
[    0.000000]     fixmap  : 0xfff16000 - 0xfffff000   ( 932 kB)
[    0.000000]     pkmap   : 0xff800000 - 0xffc00000   (4096 kB)
[    0.000000]     vmalloc : 0xf7ffe000 - 0xff7fe000   ( 120 MB)
[    0.000000]     lowmem  : 0xc0000000 - 0xf77fe000   ( 887 MB)
[    0.000000]       .init : 0xc178d000 - 0xc183c000   ( 700 kB)
[    0.000000]       .data : 0xc1511841 - 0xc178c4c0   (2539 kB)
[    0.000000]       .text : 0xc1000000 - 0xc1511841   (5190 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=2, Nodes=1
[    0.000000] Hierarchical RCU implementation.
[    0.000000] 	RCU dyntick-idle grace-period acceleration is enabled.
[    0.000000] 	RCU-based detection of stalled CPUs is disabled.
[    0.000000] NR_IRQS:2304 nr_irqs:512 16
[    0.000000] CPU 0 irqstacks, hard=f5408000 soft=f540a000
[    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] hpet clockevent registered
[    0.000000] Fast TSC calibration failed
[    0.000000] TSC: PIT calibration matches HPET. 1 loops
[    0.000000] Detected 1662.480 MHz processor.
[    0.004006] Calibrating delay loop (skipped), value calculated using timer frequency.. 3324.96 BogoMIPS (lpj=6649920)
[    0.004017] pid_max: default: 32768 minimum: 301
[    0.004070] Security Framework initialized
[    0.004105] AppArmor: AppArmor initialized
[    0.004110] Yama: becoming mindful.
[    0.004231] Mount-cache hash table entries: 512
[    0.008136] Initializing cgroup subsys ns
[    0.008145] ns_cgroup deprecated: consider using the 'clone_children' flag without the ns_cgroup.
[    0.008152] Initializing cgroup subsys cpuacct
[    0.008164] Initializing cgroup subsys memory
[    0.008181] Initializing cgroup subsys devices
[    0.008188] Initializing cgroup subsys freezer
[    0.008193] Initializing cgroup subsys net_cls
[    0.008199] Initializing cgroup subsys blkio
[    0.008264] CPU: Physical Processor ID: 0
[    0.008269] CPU: Processor Core ID: 0
[    0.008275] mce: CPU supports 5 MCE banks
[    0.008289] CPU0: Thermal monitoring handled by SMI
[    0.008297] using mwait in idle threads.
[    0.012547] ACPI: Core revision 20110112
[    0.024033] ftrace: allocating 23648 entries in 47 pages
[    0.028100] Enabling APIC mode:  Flat.  Using 1 I/O APICs
[    0.028523] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.070841] CPU0: Intel(R) Atom(TM) CPU N450   @ 1.66GHz stepping 0a
[    0.072003] Performance Events: PEBS fmt0+, Atom events, Intel PMU driver.
[    0.072003] ... version:                3
[    0.072003] ... bit width:              40
[    0.072003] ... generic registers:      2
[    0.072003] ... value mask:             000000ffffffffff
[    0.072003] ... max period:             000000007fffffff
[    0.072003] ... fixed-purpose events:   3
[    0.072003] ... event mask:             0000000700000003
[    0.072003] CPU 1 irqstacks, hard=f54aa000 soft=f54ac000
[    0.072003] Booting Node   0, Processors  #1 Ok.
[    0.008000] Initializing CPU#1
[    0.008000] CPU0: Thermal monitoring enabled (TM1)
[    0.160044] Brought up 2 CPUs
[    0.160054] Total of 2 processors activated (6325.59 BogoMIPS).
[    0.160574] devtmpfs: initialized
[    0.164343] print_constraints: dummy: 
[    0.164386] Time: 12:40:16  Date: 08/06/11
[    0.164471] NET: Registered protocol family 16
[    0.164562] Trying to unpack rootfs image as initramfs...
[    0.164837] EISA bus registered
[    0.164862] ACPI: bus type pci registered
[    0.165067] PCI: MMCONFIG for domain 0000 [bus 00-10] at [mem 0xe0000000-0xe10fffff] (base 0xe0000000)
[    0.165079] PCI: MMCONFIG at [mem 0xe0000000-0xe10fffff] reserved in E820
[    0.165085] PCI: Using MMCONFIG for extended config space
[    0.165091] PCI: Using configuration type 1 for base access
[    0.168309] bio: create slab <bio-0> at 0
[    0.172100] ACPI: EC: Look up EC in DSDT
[    0.185195] ACPI: SSDT 3f5b9db8 00203 (v02  PmRef  Cpu0Ist 00003000 INTL 20050624)
[    0.186042] ACPI: Dynamic OEM Table Load:
[    0.186053] ACPI: SSDT   (null) 00203 (v02  PmRef  Cpu0Ist 00003000 INTL 20050624)
[    0.186599] ACPI: SSDT 3f5b968e 006A5 (v02  PmRef  Cpu0Cst 00003001 INTL 20050624)
[    0.187392] ACPI: Dynamic OEM Table Load:
[    0.187403] ACPI: SSDT   (null) 006A5 (v02  PmRef  Cpu0Cst 00003001 INTL 20050624)
[    0.188513] ACPI: SSDT 3f5b9fbb 000D4 (v02  PmRef  Cpu1Ist 00003000 INTL 20050624)
[    0.189340] ACPI: Dynamic OEM Table Load:
[    0.189351] ACPI: SSDT   (null) 000D4 (v02  PmRef  Cpu1Ist 00003000 INTL 20050624)
[    0.189684] ACPI: SSDT 3f5b9d33 00085 (v02  PmRef  Cpu1Cst 00003000 INTL 20050624)
[    0.190479] ACPI: Dynamic OEM Table Load:
[    0.190489] ACPI: SSDT   (null) 00085 (v02  PmRef  Cpu1Cst 00003000 INTL 20050624)
[    0.192615] ACPI: Interpreter enabled
[    0.192636] ACPI: (supports S0 S3 S4 S5)
[    0.192692] ACPI: Using IOAPIC for interrupt routing
[    0.205416] ACPI: EC: GPE = 0x11, I/O: command/status = 0x66, data = 0x62
[    0.228465] ACPI: No dock devices found.
[    0.228475] HEST: Table not found.
[    0.228489] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.230808] ACPI Error: [CAPB] Namespace lookup failure, AE_ALREADY_EXISTS (20110112/dsfield-143)
[    0.230832] ACPI Error: Method parse/execution failed [\_SB_.PCI0._OSC] (Node f5422e88), AE_ALREADY_EXISTS (20110112/psparse-536)
[    0.230858] ACPI: Marking method _OSC as Serialized because of AE_ALREADY_EXISTS error
[    0.230881] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3f])
[    0.235322] pci_root PNP0A08:00: host bridge window [io  0x0000-0x0cf7]
[    0.235334] pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff]
[    0.235345] pci_root PNP0A08:00: host bridge window [mem 0x000d0000-0x000d3fff]
[    0.235355] pci_root PNP0A08:00: host bridge window [mem 0x000d4000-0x000d7fff]
[    0.235365] pci_root PNP0A08:00: host bridge window [mem 0x000d8000-0x000dbfff]
[    0.235374] pci_root PNP0A08:00: host bridge window [mem 0x000e0000-0x000e3fff]
[    0.235385] pci_root PNP0A08:00: host bridge window [mem 0x40000000-0xf7ffffff]
[    0.235395] pci_root PNP0A08:00: host bridge window [io  0x0d00-0xfdff]
[    0.235433] pci 0000:00:00.0: [8086:a010] type 0 class 0x000600
[    0.235515] pci 0000:00:02.0: [8086:a011] type 0 class 0x000300
[    0.235541] pci 0000:00:02.0: reg 10: [mem 0xf0300000-0xf037ffff]
[    0.235556] pci 0000:00:02.0: reg 14: [io  0x18d0-0x18d7]
[    0.235570] pci 0000:00:02.0: reg 18: [mem 0xd0000000-0xdfffffff pref]
[    0.235584] pci 0000:00:02.0: reg 1c: [mem 0xf0000000-0xf00fffff]
[    0.235645] pci 0000:00:02.1: [8086:a012] type 0 class 0x000380
[    0.235664] pci 0000:00:02.1: reg 10: [mem 0xf0380000-0xf03fffff]
[    0.235807] pci 0000:00:1b.0: [8086:27d8] type 0 class 0x000403
[    0.235844] pci 0000:00:1b.0: reg 10: [mem 0xf0400000-0xf0403fff 64bit]
[    0.235960] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    0.235972] pci 0000:00:1b.0: PME# disabled
[    0.236046] pci 0000:00:1c.0: [8086:27d0] type 1 class 0x000604
[    0.236169] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.236183] pci 0000:00:1c.0: PME# disabled
[    0.236236] pci 0000:00:1c.1: [8086:27d2] type 1 class 0x000604
[    0.236356] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[    0.236367] pci 0000:00:1c.1: PME# disabled
[    0.236417] pci 0000:00:1c.2: [8086:27d4] type 1 class 0x000604
[    0.236535] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
[    0.236546] pci 0000:00:1c.2: PME# disabled
[    0.236594] pci 0000:00:1c.3: [8086:27d6] type 1 class 0x000604
[    0.236712] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
[    0.236724] pci 0000:00:1c.3: PME# disabled
[    0.236775] pci 0000:00:1d.0: [8086:27c8] type 0 class 0x000c03
[    0.236854] pci 0000:00:1d.0: reg 20: [io  0x1820-0x183f]
[    0.236921] pci 0000:00:1d.1: [8086:27c9] type 0 class 0x000c03
[    0.237006] pci 0000:00:1d.1: reg 20: [io  0x1840-0x185f]
[    0.237071] pci 0000:00:1d.2: [8086:27ca] type 0 class 0x000c03
[    0.237150] pci 0000:00:1d.2: reg 20: [io  0x1860-0x187f]
[    0.237212] pci 0000:00:1d.3: [8086:27cb] type 0 class 0x000c03
[    0.237290] pci 0000:00:1d.3: reg 20: [io  0x1880-0x189f]
[    0.237373] pci 0000:00:1d.7: [8086:27cc] type 0 class 0x000c03
[    0.237411] pci 0000:00:1d.7: reg 10: [mem 0xf0604000-0xf06043ff]
[    0.237533] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
[    0.237545] pci 0000:00:1d.7: PME# disabled
[    0.237584] pci 0000:00:1e.0: [8086:2448] type 1 class 0x000604
[    0.237709] pci 0000:00:1f.0: [8086:27bc] type 0 class 0x000601
[    0.237832] pci 0000:00:1f.0: [Firmware Bug]: TigerPoint LPC.BM_STS cleared
[    0.237900] pci 0000:00:1f.2: [8086:27c1] type 0 class 0x000106
[    0.237938] pci 0000:00:1f.2: reg 10: [io  0x18e8-0x18ef]
[    0.237960] pci 0000:00:1f.2: reg 14: [io  0x18dc-0x18df]
[    0.237981] pci 0000:00:1f.2: reg 18: [io  0x18e0-0x18e7]
[    0.238002] pci 0000:00:1f.2: reg 1c: [io  0x18d8-0x18db]
[    0.238023] pci 0000:00:1f.2: reg 20: [io  0x18c0-0x18cf]
[    0.238045] pci 0000:00:1f.2: reg 24: [mem 0xf0604400-0xf06047ff]
[    0.238105] pci 0000:00:1f.2: PME# supported from D3hot
[    0.238117] pci 0000:00:1f.2: PME# disabled
[    0.238149] pci 0000:00:1f.3: [8086:27da] type 0 class 0x000c05
[    0.238231] pci 0000:00:1f.3: reg 20: [io  0x18a0-0x18bf]
[    0.238406] pci 0000:05:00.0: [168c:002b] type 0 class 0x000280
[    0.238458] pci 0000:05:00.0: reg 10: [mem 0xf0100000-0xf010ffff 64bit]
[    0.238601] pci 0000:05:00.0: supports D1
[    0.238608] pci 0000:05:00.0: PME# supported from D0 D1 D3hot
[    0.238621] pci 0000:05:00.0: PME# disabled
[    0.244081] pci 0000:00:1c.0: PCI bridge to [bus 05-05]
[    0.244096] pci 0000:00:1c.0:   bridge window [io  0xf000-0x0000] (disabled)
[    0.244111] pci 0000:00:1c.0:   bridge window [mem 0xf0100000-0xf01fffff]
[    0.244127] pci 0000:00:1c.0:   bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
[    0.244223] pci 0000:00:1c.1: PCI bridge to [bus 07-07]
[    0.244234] pci 0000:00:1c.1:   bridge window [io  0x0000-0x0000] (disabled)
[    0.244247] pci 0000:00:1c.1:   bridge window [mem 0xfff00000-0x000fffff] (disabled)
[    0.244263] pci 0000:00:1c.1:   bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
[    0.244521] pci 0000:09:00.0: [11ab:4354] type 0 class 0x000200
[    0.244738] pci 0000:09:00.0: reg 10: [mem 0xf0200000-0xf0203fff 64bit]
[    0.244849] pci 0000:09:00.0: reg 18: [io  0x2000-0x20ff]
[    0.245502] pci 0000:09:00.0: supports D1 D2
[    0.245511] pci 0000:09:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.245541] pci 0000:09:00.0: PME# disabled
[    0.245859] pci 0000:00:1c.2: PCI bridge to [bus 09-09]
[    0.245872] pci 0000:00:1c.2:   bridge window [io  0x2000-0x2fff]
[    0.245884] pci 0000:00:1c.2:   bridge window [mem 0xf0200000-0xf02fffff]
[    0.245900] pci 0000:00:1c.2:   bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
[    0.245992] pci 0000:00:1c.3: PCI bridge to [bus 0b-0b]
[    0.246004] pci 0000:00:1c.3:   bridge window [io  0x0000-0x0000] (disabled)
[    0.246018] pci 0000:00:1c.3:   bridge window [mem 0xfff00000-0x000fffff] (disabled)
[    0.246035] pci 0000:00:1c.3:   bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
[    0.246160] pci 0000:00:1e.0: PCI bridge to [bus 11-11] (subtractive decode)
[    0.246175] pci 0000:00:1e.0:   bridge window [io  0xf000-0x0000] (disabled)
[    0.246189] pci 0000:00:1e.0:   bridge window [mem 0xfff00000-0x000fffff] (disabled)
[    0.246207] pci 0000:00:1e.0:   bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
[    0.246219] pci 0000:00:1e.0:   bridge window [io  0x0000-0x0cf7] (subtractive decode)
[    0.246230] pci 0000:00:1e.0:   bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
[    0.246240] pci 0000:00:1e.0:   bridge window [mem 0x000d0000-0x000d3fff] (subtractive decode)
[    0.246251] pci 0000:00:1e.0:   bridge window [mem 0x000d4000-0x000d7fff] (subtractive decode)
[    0.246262] pci 0000:00:1e.0:   bridge window [mem 0x000d8000-0x000dbfff] (subtractive decode)
[    0.246272] pci 0000:00:1e.0:   bridge window [mem 0x000e0000-0x000e3fff] (subtractive decode)
[    0.246282] pci 0000:00:1e.0:   bridge window [mem 0x40000000-0xf7ffffff] (subtractive decode)
[    0.246292] pci 0000:00:1e.0:   bridge window [io  0x0d00-0xfdff] (subtractive decode)
[    0.246342] pci_bus 0000:00: on NUMA node 0
[    0.246358] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[    0.246636] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.EXP1._PRT]
[    0.246782] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.EXP2._PRT]
[    0.246921] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.EXP3._PRT]
[    0.247076] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.EXP4._PRT]
[    0.247217] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCIB._PRT]
[    0.247671] ACPI Error: [CAPB] Namespace lookup failure, AE_ALREADY_EXISTS (20110112/dsfield-143)
[    0.247694] ACPI Error: Method parse/execution failed [\_SB_.PCI0._OSC] (Node f5422e88), AE_ALREADY_EXISTS (20110112/psparse-536)
[    0.247735]  pci0000:00: Requesting ACPI _OSC control (0x1d)
[    0.247947] ACPI Error: [CAPB] Namespace lookup failure, AE_ALREADY_EXISTS (20110112/dsfield-143)
[    0.247968] ACPI Error: Method parse/execution failed [\_SB_.PCI0._OSC] (Node f5422e88), AE_ALREADY_EXISTS (20110112/psparse-536)
[    0.261326] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 *11 12 14 15)
[    0.261499] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 *4 5 6 7 10 11 12 14 15)
[    0.261667] ACPI: PCI Interrupt Link [LNKC] (IRQs *3 4 5 6 7 10 11 12 14 15)
[    0.261834] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 *10 11 12 14 15)
[    0.262013] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
[    0.262206] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
[    0.262413] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 *7 10 11 12 14 15)
[    0.262597] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 *5 6 7 10 11 12 14 15)
[    0.262944] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
[    0.262976] vgaarb: loaded
[    0.263607] SCSI subsystem initialized
[    0.263774] libata version 3.00 loaded.
[    0.263927] usbcore: registered new interface driver usbfs
[    0.263969] usbcore: registered new interface driver hub
[    0.264094] usbcore: registered new device driver usb
[    0.264492] wmi: Mapper loaded
[    0.264499] PCI: Using ACPI for IRQ routing
[    0.264509] PCI: pci_cache_line_size set to 64 bytes
[    0.264700] reserve RAM buffer: 000000000009dc00 - 000000000009ffff 
[    0.264710] reserve RAM buffer: 000000003f5b0000 - 000000003fffffff 
[    0.265018] NetLabel: Initializing
[    0.265025] NetLabel:  domain hash size = 128
[    0.265030] NetLabel:  protocols = UNLABELED CIPSOv4
[    0.265063] NetLabel:  unlabeled traffic allowed by default
[    0.265196] HPET: 3 timers in total, 0 timers will be used for per-cpu timer
[    0.265210] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[    0.265224] hpet0: 3 comparators, 64-bit 14.318180 MHz counter
[    0.269288] Switching to clocksource hpet
[    0.270085] Switched to NOHz mode on CPU #0
[    0.270153] Switched to NOHz mode on CPU #1
[    0.289989] AppArmor: AppArmor Filesystem Enabled
[    0.290058] pnp: PnP ACPI init
[    0.290110] ACPI: bus type pnp registered
[    0.292347] pnp 00:00: [bus 00-3f]
[    0.292358] pnp 00:00: [io  0x0cf8-0x0cff]
[    0.292367] pnp 00:00: [io  0x0000-0x0cf7 window]
[    0.292376] pnp 00:00: [mem 0x000a0000-0x000bffff window]
[    0.292384] pnp 00:00: [mem 0x000c0000-0x000c3fff window]
[    0.292393] pnp 00:00: [mem 0x000c4000-0x000c7fff window]
[    0.292401] pnp 00:00: [mem 0x000c8000-0x000cbfff window]
[    0.292410] pnp 00:00: [mem 0x000cc000-0x000cffff window]
[    0.292418] pnp 00:00: [mem 0x000d0000-0x000d3fff window]
[    0.292427] pnp 00:00: [mem 0x000d4000-0x000d7fff window]
[    0.292435] pnp 00:00: [mem 0x000d8000-0x000dbfff window]
[    0.292443] pnp 00:00: [mem 0x000dc000-0x000dffff window]
[    0.292452] pnp 00:00: [mem 0x000e0000-0x000e3fff window]
[    0.292460] pnp 00:00: [mem 0x000e4000-0x000e7fff window]
[    0.292469] pnp 00:00: [mem 0x000e8000-0x000ebfff window]
[    0.292477] pnp 00:00: [mem 0x000ec000-0x000effff window]
[    0.292486] pnp 00:00: [mem 0x000f0000-0x000fffff window]
[    0.292495] pnp 00:00: [mem 0x40000000-0xf7ffffff window]
[    0.292503] pnp 00:00: [io  0x0d00-0xfdff window]
[    0.292511] pnp 00:00: [mem 0x00000000 window]
[    0.292519] pnp 00:00: [mem 0xfed40000-0xfed44fff window]
[    0.292711] pnp 00:00: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active)
[    0.293421] pnp 00:01: [io  0x0010-0x001f]
[    0.293431] pnp 00:01: [io  0x0024-0x0025]
[    0.293439] pnp 00:01: [io  0x0028-0x0029]
[    0.293446] pnp 00:01: [io  0x002c-0x002d]
[    0.293453] pnp 00:01: [io  0x0030-0x0031]
[    0.293460] pnp 00:01: [io  0x0034-0x0035]
[    0.293467] pnp 00:01: [io  0x0038-0x0039]
[    0.293474] pnp 00:01: [io  0x003c-0x003d]
[    0.293482] pnp 00:01: [io  0x0072-0x0077]
[    0.293489] pnp 00:01: [io  0x0080]
[    0.293495] pnp 00:01: [io  0x0090-0x009f]
[    0.293503] pnp 00:01: [io  0x00a4-0x00a5]
[    0.293510] pnp 00:01: [io  0x00a8-0x00a9]
[    0.293517] pnp 00:01: [io  0x00ac-0x00ad]
[    0.293524] pnp 00:01: [io  0x00b0-0x00b5]
[    0.293531] pnp 00:01: [io  0x00b8-0x00b9]
[    0.293539] pnp 00:01: [io  0x00bc-0x00bd]
[    0.293546] pnp 00:01: [io  0x0800-0x080f]
[    0.293553] pnp 00:01: [io  0x1000-0x107f]
[    0.293561] pnp 00:01: [io  0x1180-0x11bf]
[    0.293568] pnp 00:01: [io  0x002e-0x002f]
[    0.293575] pnp 00:01: [io  0x04d0-0x04d1]
[    0.293589] pnp 00:01: [io  0xfe00]
[    0.293596] pnp 00:01: [io  0x164e-0x174c]
[    0.293604] pnp 00:01: [mem 0xe0000000-0xefffffff]
[    0.293612] pnp 00:01: [mem 0xfed14000-0xfed17fff]
[    0.293620] pnp 00:01: [mem 0xf8000000-0xfbffffff]
[    0.293628] pnp 00:01: [mem 0xfef00000-0xfeffffff]
[    0.293877] system 00:01: [io  0x0800-0x080f] has been reserved
[    0.293888] system 00:01: [io  0x1000-0x107f] has been reserved
[    0.293898] system 00:01: [io  0x1180-0x11bf] has been reserved
[    0.293908] system 00:01: [io  0x04d0-0x04d1] has been reserved
[    0.293917] system 00:01: [io  0xfe00] has been reserved
[    0.293927] system 00:01: [io  0x164e-0x174c] has been reserved
[    0.293938] system 00:01: [mem 0xe0000000-0xefffffff] has been reserved
[    0.293948] system 00:01: [mem 0xfed14000-0xfed17fff] has been reserved
[    0.293958] system 00:01: [mem 0xf8000000-0xfbffffff] has been reserved
[    0.293968] system 00:01: [mem 0xfef00000-0xfeffffff] has been reserved
[    0.293981] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.294021] pnp 00:02: [io  0x0000-0x000f]
[    0.294029] pnp 00:02: [io  0x0081-0x008f]
[    0.294037] pnp 00:02: [io  0x00c0-0x00df]
[    0.294047] pnp 00:02: [dma 4]
[    0.294153] pnp 00:02: Plug and Play ACPI device, IDs PNP0200 (active)
[    0.294190] pnp 00:03: [io  0x00f0-0x00fe]
[    0.294214] pnp 00:03: [irq 13]
[    0.294322] pnp 00:03: Plug and Play ACPI device, IDs PNP0c04 (active)
[    0.294436] pnp 00:04: [io  0x0070-0x0071]
[    0.294452] pnp 00:04: [irq 8]
[    0.294557] pnp 00:04: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.294590] pnp 00:05: [io  0x0061]
[    0.294694] pnp 00:05: Plug and Play ACPI device, IDs PNP0800 (active)
[    0.294777] pnp 00:06: [io  0x0060]
[    0.294785] pnp 00:06: [io  0x0064]
[    0.294800] pnp 00:06: [irq 1]
[    0.294917] pnp 00:06: Plug and Play ACPI device, IDs PNP0303 (active)
[    0.294960] pnp 00:07: [irq 12]
[    0.295079] pnp 00:07: Plug and Play ACPI device, IDs PNP0f13 (active)
[    0.295509] pnp 00:08: [mem 0xff800000-0xffffffff]
[    0.295629] pnp 00:08: Plug and Play ACPI device, IDs INT0800 (active)
[    0.296143] pnp: PnP ACPI: found 9 devices
[    0.296151] ACPI: ACPI bus type pnp unregistered
[    0.296161] PnPBIOS: Disabled by ACPI PNP
[    0.337391] pci 0000:00:1c.0: BAR 15: assigned [mem 0x40000000-0x401fffff 64bit pref]
[    0.337409] pci 0000:00:1c.1: BAR 14: assigned [mem 0x40200000-0x403fffff]
[    0.337424] pci 0000:00:1c.1: BAR 15: assigned [mem 0x40400000-0x405fffff 64bit pref]
[    0.337439] pci 0000:00:1c.2: BAR 15: assigned [mem 0x40600000-0x407fffff 64bit pref]
[    0.337454] pci 0000:00:1c.3: BAR 14: assigned [mem 0x40800000-0x409fffff]
[    0.337469] pci 0000:00:1c.3: BAR 15: assigned [mem 0x40a00000-0x40bfffff 64bit pref]
[    0.337483] pci 0000:00:1c.0: BAR 13: assigned [io  0x3000-0x3fff]
[    0.337496] pci 0000:00:1c.1: BAR 13: assigned [io  0x4000-0x4fff]
[    0.337508] pci 0000:00:1c.3: BAR 13: assigned [io  0x5000-0x5fff]
[    0.337517] pci 0000:00:1c.0: PCI bridge to [bus 05-05]
[    0.337527] pci 0000:00:1c.0:   bridge window [io  0x3000-0x3fff]
[    0.337542] pci 0000:00:1c.0:   bridge window [mem 0xf0100000-0xf01fffff]
[    0.337555] pci 0000:00:1c.0:   bridge window [mem 0x40000000-0x401fffff 64bit pref]
[    0.337573] pci 0000:00:1c.1: PCI bridge to [bus 07-07]
[    0.337584] pci 0000:00:1c.1:   bridge window [io  0x4000-0x4fff]
[    0.337599] pci 0000:00:1c.1:   bridge window [mem 0x40200000-0x403fffff]
[    0.337613] pci 0000:00:1c.1:   bridge window [mem 0x40400000-0x405fffff 64bit pref]
[    0.337630] pci 0000:00:1c.2: PCI bridge to [bus 09-09]
[    0.337639] pci 0000:00:1c.2:   bridge window [io  0x2000-0x2fff]
[    0.337653] pci 0000:00:1c.2:   bridge window [mem 0xf0200000-0xf02fffff]
[    0.337666] pci 0000:00:1c.2:   bridge window [mem 0x40600000-0x407fffff 64bit pref]
[    0.337682] pci 0000:00:1c.3: PCI bridge to [bus 0b-0b]
[    0.337691] pci 0000:00:1c.3:   bridge window [io  0x5000-0x5fff]
[    0.337705] pci 0000:00:1c.3:   bridge window [mem 0x40800000-0x409fffff]
[    0.337717] pci 0000:00:1c.3:   bridge window [mem 0x40a00000-0x40bfffff 64bit pref]
[    0.337734] pci 0000:00:1e.0: PCI bridge to [bus 11-11]
[    0.337740] pci 0000:00:1e.0:   bridge window [io  disabled]
[    0.337752] pci 0000:00:1e.0:   bridge window [mem disabled]
[    0.337762] pci 0000:00:1e.0:   bridge window [mem pref disabled]
[    0.337817] pci 0000:00:1c.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    0.337832] pci 0000:00:1c.0: setting latency timer to 64
[    0.337848] pci 0000:00:1c.1: enabling device (0000 -> 0003)
[    0.337871] pci 0000:00:1c.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17
[    0.337885] pci 0000:00:1c.1: setting latency timer to 64
[    0.337914] pci 0000:00:1c.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
[    0.337927] pci 0000:00:1c.2: setting latency timer to 64
[    0.337943] pci 0000:00:1c.3: enabling device (0000 -> 0003)
[    0.337965] pci 0000:00:1c.3: PCI INT D -> GSI 19 (level, low) -> IRQ 19
[    0.337980] pci 0000:00:1c.3: setting latency timer to 64
[    0.337998] pci 0000:00:1e.0: setting latency timer to 64
[    0.338010] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7]
[    0.338018] pci_bus 0000:00: resource 5 [mem 0x000a0000-0x000bffff]
[    0.338027] pci_bus 0000:00: resource 6 [mem 0x000d0000-0x000d3fff]
[    0.338036] pci_bus 0000:00: resource 7 [mem 0x000d4000-0x000d7fff]
[    0.338045] pci_bus 0000:00: resource 8 [mem 0x000d8000-0x000dbfff]
[    0.338054] pci_bus 0000:00: resource 9 [mem 0x000e0000-0x000e3fff]
[    0.338063] pci_bus 0000:00: resource 10 [mem 0x40000000-0xf7ffffff]
[    0.338072] pci_bus 0000:00: resource 11 [io  0x0d00-0xfdff]
[    0.338081] pci_bus 0000:05: resource 0 [io  0x3000-0x3fff]
[    0.338089] pci_bus 0000:05: resource 1 [mem 0xf0100000-0xf01fffff]
[    0.338099] pci_bus 0000:05: resource 2 [mem 0x40000000-0x401fffff 64bit pref]
[    0.338108] pci_bus 0000:07: resource 0 [io  0x4000-0x4fff]
[    0.338116] pci_bus 0000:07: resource 1 [mem 0x40200000-0x403fffff]
[    0.338126] pci_bus 0000:07: resource 2 [mem 0x40400000-0x405fffff 64bit pref]
[    0.338135] pci_bus 0000:09: resource 0 [io  0x2000-0x2fff]
[    0.338143] pci_bus 0000:09: resource 1 [mem 0xf0200000-0xf02fffff]
[    0.338153] pci_bus 0000:09: resource 2 [mem 0x40600000-0x407fffff 64bit pref]
[    0.338162] pci_bus 0000:0b: resource 0 [io  0x5000-0x5fff]
[    0.338171] pci_bus 0000:0b: resource 1 [mem 0x40800000-0x409fffff]
[    0.338180] pci_bus 0000:0b: resource 2 [mem 0x40a00000-0x40bfffff 64bit pref]
[    0.338189] pci_bus 0000:11: resource 4 [io  0x0000-0x0cf7]
[    0.338198] pci_bus 0000:11: resource 5 [mem 0x000a0000-0x000bffff]
[    0.338207] pci_bus 0000:11: resource 6 [mem 0x000d0000-0x000d3fff]
[    0.338216] pci_bus 0000:11: resource 7 [mem 0x000d4000-0x000d7fff]
[    0.338224] pci_bus 0000:11: resource 8 [mem 0x000d8000-0x000dbfff]
[    0.338233] pci_bus 0000:11: resource 9 [mem 0x000e0000-0x000e3fff]
[    0.338242] pci_bus 0000:11: resource 10 [mem 0x40000000-0xf7ffffff]
[    0.338251] pci_bus 0000:11: resource 11 [io  0x0d00-0xfdff]
[    0.338345] NET: Registered protocol family 2
[    0.338547] IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
[    0.339183] TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
[    0.340324] TCP bind hash table entries: 65536 (order: 7, 524288 bytes)
[    0.340868] TCP: Hash tables configured (established 131072 bind 65536)
[    0.340877] TCP reno registered
[    0.340888] UDP hash table entries: 512 (order: 2, 16384 bytes)
[    0.340912] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
[    0.341192] NET: Registered protocol family 1
[    0.341239] pci 0000:00:02.0: Boot video device
[    0.341450] PCI: CLS 32 bytes, default 64
[    0.341529] Simple Boot Flag at 0x36 set to 0x1
[    0.342060] cpufreq-nforce2: No nForce2 chipset.
[    0.342455] audit: initializing netlink socket (disabled)
[    0.342481] type=2000 audit(1312634416.340:1): initialized
[    0.366599] highmem bounce pool size: 64 pages
[    0.366617] HugeTLB registered 4 MB page size, pre-allocated 0 pages
[    0.372910] VFS: Disk quotas dquot_6.5.2
[    0.373111] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[    0.375561] fuse init (API version 7.16)
[    0.375881] msgmni has been set to 1704
[    0.376721] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
[    0.376820] io scheduler noop registered
[    0.376827] io scheduler deadline registered
[    0.376890] io scheduler cfq registered (default)
[    0.377215] pcieport 0000:00:1c.0: setting latency timer to 64
[    0.377310] pcieport 0000:00:1c.0: irq 40 for MSI/MSI-X
[    0.377466] pcieport 0000:00:1c.1: setting latency timer to 64
[    0.377548] pcieport 0000:00:1c.1: irq 41 for MSI/MSI-X
[    0.377700] pcieport 0000:00:1c.2: setting latency timer to 64
[    0.377783] pcieport 0000:00:1c.2: irq 42 for MSI/MSI-X
[    0.377935] pcieport 0000:00:1c.3: setting latency timer to 64
[    0.378018] pcieport 0000:00:1c.3: irq 43 for MSI/MSI-X
[    0.378258] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    0.378334] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    0.378515] intel_idle: MWAIT substates: 0x20220
[    0.378532] intel_idle: v0.4 model 0x1C
[    0.378537] intel_idle: lapic_timer_reliable_states 0x2
[    0.378555] Marking TSC unstable due to TSC halts in idle states deeper than C2
[    0.379006] ACPI: Deprecated procfs I/F for AC is loaded, please retry with CONFIG_ACPI_PROCFS_POWER cleared
[    0.379422] ACPI: AC Adapter [ADP1] (off-line)
[    0.379914] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input0
[    0.380133] ACPI: Lid Switch [LID0]
[    0.380311] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input1
[    0.456064] ACPI: Power Button [PWRB]
[    0.456261] input: Sleep Button as /devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input2
[    0.456277] ACPI: Sleep Button [SLPB]
[    0.456442] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
[    0.456454] ACPI: Power Button [PWRF]
[    0.456916] ACPI: acpi_idle yielding to intel_idle
[    0.468739] thermal LNXTHERM:00: registered as thermal_zone0
[    0.468749] ACPI: Thermal Zone [TZ00] (48 C)
[    0.468899] ERST: Table is not found!
[    0.469162] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    0.469849] isapnp: Scanning for PnP cards...
[    0.492627] ACPI: Deprecated procfs I/F for battery is loaded, please retry with CONFIG_ACPI_PROCFS_POWER cleared
[    0.492649] ACPI: Battery Slot [BAT1] (battery present)
[    0.824807] isapnp: No Plug & Play device found
[    0.838504] Freeing initrd memory: 12552k freed
[    0.864170] Linux agpgart interface v0.103
[    0.864346] agpgart-intel 0000:00:00.0: Intel GMA3150 Chipset
[    0.864545] agpgart-intel 0000:00:00.0: detected gtt size: 524288K total, 262144K mappable
[    0.864805] agpgart-intel 0000:00:00.0: detected 8192K stolen memory
[    0.865019] agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0xd0000000
[    0.868127] brd: module loaded
[    0.869573] loop: module loaded
[    0.869804] i2c-core: driver [adp5520] using legacy suspend method
[    0.869810] i2c-core: driver [adp5520] using legacy resume method
[    0.870838] Fixed MDIO Bus: probed
[    0.870931] PPP generic driver version 2.4.2
[    0.871031] tun: Universal TUN/TAP device driver, 1.6
[    0.871036] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[    0.871246] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    0.871311] ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 23 (level, low) -> IRQ 23
[    0.871343] ehci_hcd 0000:00:1d.7: setting latency timer to 64
[    0.871351] ehci_hcd 0000:00:1d.7: EHCI Host Controller
[    0.871456] ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 1
[    0.871574] ehci_hcd 0000:00:1d.7: using broken periodic workaround
[    0.871593] ehci_hcd 0000:00:1d.7: debug port 1
[    0.875469] ehci_hcd 0000:00:1d.7: cache line size of 32 is not supported
[    0.875503] ehci_hcd 0000:00:1d.7: irq 23, io mem 0xf0604000
[    0.888056] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00
[    0.888366] hub 1-0:1.0: USB hub found
[    0.888378] hub 1-0:1.0: 8 ports detected
[    0.888552] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    0.888587] uhci_hcd: USB Universal Host Controller Interface driver
[    0.888658] uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23
[    0.888672] uhci_hcd 0000:00:1d.0: setting latency timer to 64
[    0.888680] uhci_hcd 0000:00:1d.0: UHCI Host Controller
[    0.888777] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
[    0.888879] uhci_hcd 0000:00:1d.0: irq 23, io base 0x00001820
[    0.889197] hub 2-0:1.0: USB hub found
[    0.889208] hub 2-0:1.0: 2 ports detected
[    0.889358] uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[    0.889372] uhci_hcd 0000:00:1d.1: setting latency timer to 64
[    0.889379] uhci_hcd 0000:00:1d.1: UHCI Host Controller
[    0.889473] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 3
[    0.889579] uhci_hcd 0000:00:1d.1: irq 19, io base 0x00001840
[    0.889875] hub 3-0:1.0: USB hub found
[    0.889886] hub 3-0:1.0: 2 ports detected
[    0.890032] uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
[    0.890045] uhci_hcd 0000:00:1d.2: setting latency timer to 64
[    0.890052] uhci_hcd 0000:00:1d.2: UHCI Host Controller
[    0.890146] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 4
[    0.892150] uhci_hcd 0000:00:1d.2: irq 18, io base 0x00001860
[    0.892453] hub 4-0:1.0: USB hub found
[    0.892464] hub 4-0:1.0: 2 ports detected
[    0.892606] uhci_hcd 0000:00:1d.3: PCI INT D -> GSI 16 (level, low) -> IRQ 16
[    0.892619] uhci_hcd 0000:00:1d.3: setting latency timer to 64
[    0.892626] uhci_hcd 0000:00:1d.3: UHCI Host Controller
[    0.892721] uhci_hcd 0000:00:1d.3: new USB bus registered, assigned bus number 5
[    0.896169] uhci_hcd 0000:00:1d.3: irq 16, io base 0x00001880
[    0.896469] hub 5-0:1.0: USB hub found
[    0.896480] hub 5-0:1.0: 2 ports detected
[    0.896730] i8042: PNP: PS/2 Controller [PNP0303:KBC0,PNP0f13:MSE0] at 0x60,0x64 irq 1,12
[    0.899285] i8042: Detected active multiplexing controller, rev 1.1
[    0.900637] serio: i8042 KBD port at 0x60,0x64 irq 1
[    0.900655] serio: i8042 AUX0 port at 0x60,0x64 irq 12
[    0.900740] serio: i8042 AUX1 port at 0x60,0x64 irq 12
[    0.900814] serio: i8042 AUX2 port at 0x60,0x64 irq 12
[    0.900883] serio: i8042 AUX3 port at 0x60,0x64 irq 12
[    0.901191] mousedev: PS/2 mouse device common for all mice
[    0.901803] rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0
[    0.901848] rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[    0.902074] device-mapper: uevent: version 1.0.3
[    0.902275] device-mapper: ioctl: 4.19.1-ioctl (2011-01-07) initialised: dm-devel@redhat.com
[    0.902444] device-mapper: multipath: version 1.2.0 loaded
[    0.902453] device-mapper: multipath round-robin: version 1.0.0 loaded
[    0.902657] EISA: Probing bus 0 at eisa.0
[    0.902663] EISA: Cannot allocate resource for mainboard
[    0.902669] Cannot allocate resource for EISA slot 1
[    0.902674] Cannot allocate resource for EISA slot 2
[    0.902678] Cannot allocate resource for EISA slot 3
[    0.902683] Cannot allocate resource for EISA slot 4
[    0.902687] Cannot allocate resource for EISA slot 5
[    0.902692] Cannot allocate resource for EISA slot 6
[    0.902696] Cannot allocate resource for EISA slot 7
[    0.902701] Cannot allocate resource for EISA slot 8
[    0.902705] EISA: Detected 0 cards.
[    0.902978] cpuidle: using governor ladder
[    0.903192] cpuidle: using governor menu
[    0.903813] TCP cubic registered
[    0.904199] NET: Registered protocol family 10
[    0.905453] NET: Registered protocol family 17
[    0.905496] Registering the dns_resolver key type
[    0.906337] Using IPI No-Shortcut mode
[    0.906593] PM: Hibernation image not present or could not be loaded.
[    0.906628] registered taskstats version 1
[    0.907181]   Magic number: 7:865:682
[    0.907323] rtc_cmos 00:04: setting system clock to 2011-08-06 12:40:17 UTC (1312634417)
[    0.907332] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[    0.907336] EDD information not available.
[    0.907549] Freeing unused kernel memory: 700k freed
[    0.907953] Write protecting the kernel text: 5192k
[    0.908101] Write protecting the kernel read-only data: 2148k
[    0.935297] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input4
[    0.954943] <30>udev[64]: starting version 167
[    1.215597] sky2: driver version 1.28
[    1.215712] sky2 0000:09:00.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[    1.215772] sky2 0000:09:00.0: setting latency timer to 64
[    1.215913] sky2 0000:09:00.0: Yukon-2 FE+ chip revision 0
[    1.233682] sky2 0000:09:00.0: irq 44 for MSI/MSI-X
[    1.244195] sky2 0000:09:00.0: eth0: addr 00:24:54:6b:4e:16
[    1.260169] usb 1-4: new high speed USB device using ehci_hcd and address 3
[    1.268858] ahci 0000:00:1f.2: version 3.0
[    1.268892] ahci 0000:00:1f.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[    1.269001] ahci 0000:00:1f.2: irq 45 for MSI/MSI-X
[    1.269146] ahci 0000:00:1f.2: AHCI 0001.0100 32 slots 4 ports 3 Gbps 0xf impl SATA mode
[    1.269159] ahci 0000:00:1f.2: flags: 64bit ncq pm led clo pio slum part 
[    1.269173] ahci 0000:00:1f.2: setting latency timer to 64
[    1.271757] scsi0 : ahci
[    1.272217] scsi1 : ahci
[    1.273600] scsi2 : ahci
[    1.274659] scsi3 : ahci
[    1.274999] ata1: SATA max UDMA/133 abar m1024@0xf0604400 port 0xf0604500 irq 45
[    1.275008] ata2: SATA max UDMA/133 abar m1024@0xf0604400 port 0xf0604580 irq 45
[    1.275016] ata3: SATA max UDMA/133 abar m1024@0xf0604400 port 0xf0604600 irq 45
[    1.275023] ata4: SATA max UDMA/133 abar m1024@0xf0604400 port 0xf0604680 irq 45
[    1.512142] usb 1-5: new high speed USB device using ehci_hcd and address 4
[    1.592163] ata4: SATA link down (SStatus 0 SControl 300)
[    1.592230] ata3: SATA link down (SStatus 0 SControl 300)
[    1.592266] ata2: SATA link down (SStatus 0 SControl 300)
[    1.592306] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    1.637916] ata1.00: ATA-8: TOSHIBA MK2555GSX, FG001A, max UDMA/100
[    1.637924] ata1.00: 488397168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
[    1.638795] ata1.00: configured for UDMA/100
[    1.639114] scsi 0:0:0:0: Direct-Access     ATA      TOSHIBA MK2555GS FG00 PQ: 0 ANSI: 5
[    1.639648] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    1.639751] sd 0:0:0:0: [sda] 488397168 512-byte logical blocks: (250 GB/232 GiB)
[    1.640002] sd 0:0:0:0: [sda] Write Protect is off
[    1.640064] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    1.640173] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    1.660901] usbcore: registered new interface driver uas
[    1.724193]  sda: sda1 sda2 < sda5 >
[    1.725111] sd 0:0:0:0: [sda] Attached SCSI disk
[    1.747804] Initializing USB Mass Storage driver...
[    1.748333] scsi4 : usb-storage 1-5:1.0
[    1.748651] usbcore: registered new interface driver usb-storage
[    1.748659] USB Mass Storage support registered.
[    1.876101] usb 1-8: new high speed USB device using ehci_hcd and address 6
[    2.174776] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
[    2.268120] usb 4-2: new full speed USB device using uhci_hcd and address 2
[    2.684085] usb 3-1: new low speed USB device using uhci_hcd and address 2
[    2.749517] scsi 4:0:0:0: Direct-Access     Generic  STORAGE DEVICE   0202 PQ: 0 ANSI: 0
[    2.750720] sd 4:0:0:0: Attached scsi generic sg1 type 0
[    2.903171] sd 4:0:0:0: [sdb] 3970048 512-byte logical blocks: (2.03 GB/1.89 GiB)
[    2.904398] sd 4:0:0:0: [sdb] Write Protect is off
[    2.904413] sd 4:0:0:0: [sdb] Mode Sense: 03 00 00 00
[    2.904426] sd 4:0:0:0: [sdb] Assuming drive cache: write through
[    2.907229] sd 4:0:0:0: [sdb] Assuming drive cache: write through
[    2.908488]  sdb: sdb1
[    2.910852] sd 4:0:0:0: [sdb] Assuming drive cache: write through
[    2.910861] sd 4:0:0:0: [sdb] Attached SCSI removable disk
[   14.696551] <30>udev[282]: starting version 167
[   14.731247] Adding 3068924k swap on /dev/sda5.  Priority:-1 extents:1 across:3068924k 
[   14.801485] lp: driver loaded but no devices found
[   14.970841] EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro
[   15.379829] type=1400 audit(1312627231.966:2): apparmor="STATUS" operation="profile_load" name="/sbin/dhclient" pid=473 comm="apparmor_parser"
[   15.381176] type=1400 audit(1312627231.970:3): apparmor="STATUS" operation="profile_load" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=473 comm="apparmor_parser"
[   15.381907] type=1400 audit(1312627231.970:4): apparmor="STATUS" operation="profile_load" name="/usr/lib/connman/scripts/dhclient-script" pid=473 comm="apparmor_parser"
[   15.464701] cfg80211: Calling CRDA to update world regulatory domain
[   15.974431] sky2 0000:09:00.0: eth0: enabling interface
[   16.003402] ADDRCONF(NETDEV_UP): eth0: link is not ready
[   16.216530] Bluetooth: Core ver 2.15
[   16.216706] NET: Registered protocol family 31
[   16.216713] Bluetooth: HCI device and connection manager initialized
[   16.216721] Bluetooth: HCI socket layer initialized
[   16.233420] cdc_acm 1-4:1.0: ttyACM0: USB ACM device
[   16.234381] cdc_acm 1-4:1.2: ttyACM1: USB ACM device
[   16.235244] cdc_acm 1-4:1.4: ttyACM2: USB ACM device
[   16.236761] usbcore: registered new interface driver cdc_acm
[   16.236770] cdc_acm: v0.26:USB Abstract Control Model driver for USB modems and ISDN adapters
[   16.305822] Bluetooth: Generic Bluetooth USB driver ver 0.6
[   16.306389] usbcore: registered new interface driver btusb
[   16.419867] Linux video capture interface: v2.00
[   16.520375] cdc_ether 1-4:1.6: usb0: register 'cdc_ether' at usb-0000:00:1d.7-4, CDC Ethernet Device, 02:fa:d4:40:a6:98
[   16.521894] usbcore: registered new interface driver usbhid
[   16.521903] usbhid: USB HID core driver
[   16.527127] usbcore: registered new interface driver cdc_ether
[   16.736878] type=1400 audit(1312627233.326:5): apparmor="STATUS" operation="profile_replace" name="/sbin/dhclient" pid=635 comm="apparmor_parser"
[   16.739567] type=1400 audit(1312627233.326:6): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=635 comm="apparmor_parser"
[   16.741308] type=1400 audit(1312627233.330:7): apparmor="STATUS" operation="profile_replace" name="/usr/lib/connman/scripts/dhclient-script" pid=635 comm="apparmor_parser"
[   16.770836] type=1400 audit(1312627233.358:8): apparmor="STATUS" operation="profile_load" name="/usr/share/gdm/guest-session/Xsession" pid=634 comm="apparmor_parser"
[   16.776867] Synaptics Touchpad, model: 1, fw: 7.2, id: 0x1c0b1, caps: 0xd04773/0xa40000/0xa0000
[   16.810249] type=1400 audit(1312627233.398:9): apparmor="STATUS" operation="profile_load" name="/usr/bin/evince" pid=638 comm="apparmor_parser"
[   16.836692] type=1400 audit(1312627233.426:10): apparmor="STATUS" operation="profile_load" name="/usr/lib/cups/backend/cups-pdf" pid=643 comm="apparmor_parser"
[   16.838117] type=1400 audit(1312627233.426:11): apparmor="STATUS" operation="profile_load" name="/usr/sbin/cupsd" pid=643 comm="apparmor_parser"
[   16.845193] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio4/input/input5
[   17.007140] uvcvideo: Found UVC 1.00 device WebCam SCB-0340N (0ac8:c33f)
[   17.109962] input: WebCam SCB-0340N as /devices/pci0000:00/0000:00:1d.7/usb1/1-8/1-8:1.0/input/input6
[   17.110840] usbcore: registered new interface driver uvcvideo
[   17.110850] USB Video Class driver (v1.0.0)
[   17.173174] [drm] Initialized drm 1.1.0 20060810
[   17.352109] Bluetooth: L2CAP ver 2.15
[   17.352118] Bluetooth: L2CAP socket layer initialized
[   17.395148] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[   17.395157] Bluetooth: BNEP filters: protocol multicast
[   17.429830] Bluetooth: SCO (Voice Link) ver 0.6
[   17.429839] Bluetooth: SCO socket layer initialized
[   17.542444] input: Mitsumi Electric Apple Optical USB Mouse as /devices/pci0000:00/0000:00:1d.1/usb3/3-1/3-1:1.0/input/input7
[   17.556770] apple 0003:05AC:0304.0001: input,hidraw0: USB HID v1.10 Mouse [Mitsumi Electric Apple Optical USB Mouse] on usb-0000:00:1d.1-1/input0
[   17.604416] Bluetooth: RFCOMM TTY layer initialized
[   17.604432] Bluetooth: RFCOMM socket layer initialized
[   17.604439] Bluetooth: RFCOMM ver 1.11
[   17.652649] cfg80211: World regulatory domain updated:
[   17.652660] cfg80211:     (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[   17.652672] cfg80211:     (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   17.652682] cfg80211:     (2457000 KHz - 2482000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[   17.652691] cfg80211:     (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[   17.652701] cfg80211:     (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   17.652711] cfg80211:     (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   17.989218] ath9k 0000:05:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[   17.989242] ath9k 0000:05:00.0: setting latency timer to 64
[   18.044968] ath: EEPROM regdomain: 0x65
[   18.044977] ath: EEPROM indicates we should expect a direct regpair map
[   18.044987] ath: Country alpha2 being used: 00
[   18.044993] ath: Regpair used: 0x65
[   18.048193] cfg80211: Updating information on frequency 2412 MHz for a 20 MHz width channel with regulatory rule:
[   18.048207] cfg80211: 2402000 KHz - 2472000 KHz @  KHz), (N/A mBi, 2000 mBm)
[   18.048215] cfg80211: Updating information on frequency 2417 MHz for a 20 MHz width channel with regulatory rule:
[   18.048224] cfg80211: 2402000 KHz - 2472000 KHz @  KHz), (N/A mBi, 2000 mBm)
[   18.048232] cfg80211: Updating information on frequency 2422 MHz for a 20 MHz width channel with regulatory rule:
[   18.048241] cfg80211: 2402000 KHz - 2472000 KHz @  KHz), (N/A mBi, 2000 mBm)
[   18.048248] cfg80211: Updating information on frequency 2427 MHz for a 20 MHz width channel with regulatory rule:
[   18.048257] cfg80211: 2402000 KHz - 2472000 KHz @  KHz), (N/A mBi, 2000 mBm)
[   18.048266] cfg80211: Updating information on frequency 2432 MHz for a 20 MHz width channel with regulatory rule:
[   18.048275] cfg80211: 2402000 KHz - 2472000 KHz @  KHz), (N/A mBi, 2000 mBm)
[   18.048283] cfg80211: Updating information on frequency 2437 MHz for a 20 MHz width channel with regulatory rule:
[   18.048293] cfg80211: 2402000 KHz - 2472000 KHz @  KHz), (N/A mBi, 2000 mBm)
[   18.048302] cfg80211: Updating information on frequency 2442 MHz for a 20 MHz width channel with regulatory rule:
[   18.048312] cfg80211: 2402000 KHz - 2472000 KHz @  KHz), (N/A mBi, 2000 mBm)
[   18.048321] cfg80211: Updating information on frequency 2447 MHz for a 20 MHz width channel with regulatory rule:
[   18.048331] cfg80211: 2402000 KHz - 2472000 KHz @  KHz), (N/A mBi, 2000 mBm)
[   18.048340] cfg80211: Updating information on frequency 2452 MHz for a 20 MHz width channel with regulatory rule:
[   18.048350] cfg80211: 2402000 KHz - 2472000 KHz @  KHz), (N/A mBi, 2000 mBm)
[   18.048358] cfg80211: Updating information on frequency 2457 MHz for a 20 MHz width channel with regulatory rule:
[   18.048368] cfg80211: 2402000 KHz - 2472000 KHz @  KHz), (N/A mBi, 2000 mBm)
[   18.048375] cfg80211: Updating information on frequency 2462 MHz for a 20 MHz width channel with regulatory rule:
[   18.048385] cfg80211: 2402000 KHz - 2472000 KHz @  KHz), (N/A mBi, 2000 mBm)
[   18.048394] cfg80211: Updating information on frequency 2467 MHz for a 20 MHz width channel with regulatory rule:
[   18.048404] cfg80211: 2457000 KHz - 2482000 KHz @  KHz), (N/A mBi, 2000 mBm)
[   18.048412] cfg80211: Updating information on frequency 2472 MHz for a 20 MHz width channel with regulatory rule:
[   18.048422] cfg80211: 2457000 KHz - 2482000 KHz @  KHz), (N/A mBi, 2000 mBm)
[   18.048430] cfg80211: Disabling freq 2484 MHz as custom regd has no rule that fits a 20 MHz wide channel
[   18.060232] cfg80211: Ignoring regulatory request Set by core since the driver uses its own custom regulatory domain 
[   18.165248] ieee80211 phy0: Selected rate control algorithm 'ath9k_rate_control'
[   18.173819] Registered led device: ath9k-phy0::radio
[   18.174075] Registered led device: ath9k-phy0::assoc
[   18.174308] Registered led device: ath9k-phy0::tx
[   18.174537] Registered led device: ath9k-phy0::rx
[   18.174561] ieee80211 phy0: Atheros AR9285 Rev:2 mem=0xf8520000, irq=16
[   18.197915] i915 0000:00:02.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[   18.197931] i915 0000:00:02.0: setting latency timer to 64
[   18.298509] i915 0000:00:02.0: irq 46 for MSI/MSI-X
[   18.298535] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
[   18.298541] [drm] Driver supports precise vblank timestamp query.
[   18.317159] ADDRCONF(NETDEV_UP): wlan0: link is not ready
[   18.373175] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
[   18.373678] [drm] initialized overlay support
[   18.649349] fbcon: inteldrmfb (fb0) is primary device
[   18.649632] Console: switching to colour frame buffer device 128x37
[   18.649707] fb0: inteldrmfb frame buffer device
[   18.649713] drm: registered panic notifier
[   18.652290] ACPI Warning: _BQC returned an invalid level (20110112/video-473)
[   18.652967] acpi device:04: registered as cooling_device2
[   18.653467] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:00/input/input8
[   18.653799] ACPI: Video Device [IGD0] (multi-head: yes  rom: no  post: no)
[   18.655606] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
[   18.655864] HDA Intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
[   18.655977] HDA Intel 0000:00:1b.0: irq 47 for MSI/MSI-X
[   18.656293] HDA Intel 0000:00:1b.0: setting latency timer to 64
[   18.808660] hda_codec: ALC269: BIOS auto-probing.
[   18.820316] input: HDA Intel Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input9
[   18.821410] input: HDA Intel Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input10
[   19.286933] ppdev: user-space parallel port driver
[   19.300255] EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro,commit=600
[   20.621412] EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro,commit=600
[   23.350729] EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro,commit=600
[   28.480038] usb0: no IPv6 routers present
[   39.714723] wlan0: authenticate with 00:26:24:3e:79:74 (try 1)
[   39.716793] wlan0: authenticated
[   39.716843] wlan0: associate with 00:26:24:3e:79:74 (try 1)
[   39.720304] wlan0: RX AssocResp from 00:26:24:3e:79:74 (capab=0x411 status=0 aid=2)
[   39.720316] wlan0: associated
[   39.728118] ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[   40.124713] Intel AES-NI instructions are not detected.
[   40.181323] padlock_aes: VIA PadLock not detected.
[   49.936056] wlan0: no IPv6 routers present
[   84.708820] usb 1-5: USB disconnect, address 4
[   86.860116] usb 1-5: new high speed USB device using ehci_hcd and address 7
[   86.998608] scsi5 : usb-storage 1-5:1.0
[   87.998112] scsi 5:0:0:0: Direct-Access     Generic  STORAGE DEVICE   0202 PQ: 0 ANSI: 0
[   88.001065] sd 5:0:0:0: Attached scsi generic sg1 type 0
[   88.151920] sd 5:0:0:0: [sdb] 3970048 512-byte logical blocks: (2.03 GB/1.89 GiB)
[   88.153416] sd 5:0:0:0: [sdb] Write Protect is off
[   88.153432] sd 5:0:0:0: [sdb] Mode Sense: 03 00 00 00
[   88.153442] sd 5:0:0:0: [sdb] Assuming drive cache: write through
[   88.158764] sd 5:0:0:0: [sdb] Assuming drive cache: write through
[   88.160672]  sdb: sdb1
[   88.167320] sd 5:0:0:0: [sdb] Assuming drive cache: write through
[   88.167343] sd 5:0:0:0: [sdb] Attached SCSI removable disk
[  281.454816] usb 1-5: USB disconnect, address 7
[  293.456130] usb 1-7: new high speed USB device using ehci_hcd and address 8
[  293.596073] scsi6 : usb-storage 1-7:1.0
[  294.599531] scsi 6:0:0:0: Direct-Access     Generic  STORAGE DEVICE   9407 PQ: 0 ANSI: 0
[  294.602395] sd 6:0:0:0: Attached scsi generic sg1 type 0
[  294.735970] sd 6:0:0:0: [sdb] 3970048 512-byte logical blocks: (2.03 GB/1.89 GiB)
[  294.737849] sd 6:0:0:0: [sdb] Write Protect is off
[  294.737871] sd 6:0:0:0: [sdb] Mode Sense: 03 00 00 00
[  294.737886] sd 6:0:0:0: [sdb] Assuming drive cache: write through
[  294.741565] sd 6:0:0:0: [sdb] Assuming drive cache: write through
[  294.743543]  sdb: sdb1
[  294.748653] sd 6:0:0:0: [sdb] Assuming drive cache: write through
[  294.748669] sd 6:0:0:0: [sdb] Attached SCSI removable disk
[  463.434526] usb 1-7: USB disconnect, address 8
[ 1635.560107] usb 1-7: new high speed USB device using ehci_hcd and address 9
[ 1635.700078] scsi7 : usb-storage 1-7:1.0
[ 1636.703541] scsi 7:0:0:0: Direct-Access     Generic  STORAGE DEVICE   9407 PQ: 0 ANSI: 0
[ 1636.706474] sd 7:0:0:0: Attached scsi generic sg1 type 0
[ 1636.839633] sd 7:0:0:0: [sdb] 3970048 512-byte logical blocks: (2.03 GB/1.89 GiB)
[ 1636.841028] sd 7:0:0:0: [sdb] Write Protect is off
[ 1636.841044] sd 7:0:0:0: [sdb] Mode Sense: 03 00 00 00
[ 1636.841055] sd 7:0:0:0: [sdb] Assuming drive cache: write through
[ 1636.846486] sd 7:0:0:0: [sdb] Assuming drive cache: write through
[ 1636.848262]  sdb: sdb1
[ 1636.851744] sd 7:0:0:0: [sdb] Assuming drive cache: write through
[ 1636.851762] sd 7:0:0:0: [sdb] Attached SCSI removable disk
[ 1769.607018] process `skype' is using obsolete setsockopt SO_BSDCOMPAT
[ 1855.970814] usb 1-7: USB disconnect, address 9
[ 2146.596128] usb 1-5: new high speed USB device using ehci_hcd and address 10
[ 2146.735489] scsi8 : usb-storage 1-5:1.0
[ 2147.738142] scsi 8:0:0:0: Direct-Access     Generic  STORAGE DEVICE   0202 PQ: 0 ANSI: 0
[ 2147.741849] sd 8:0:0:0: Attached scsi generic sg1 type 0
[ 2147.891367] sd 8:0:0:0: [sdb] 3970048 512-byte logical blocks: (2.03 GB/1.89 GiB)
[ 2147.893104] sd 8:0:0:0: [sdb] Write Protect is off
[ 2147.893120] sd 8:0:0:0: [sdb] Mode Sense: 03 00 00 00
[ 2147.893130] sd 8:0:0:0: [sdb] Assuming drive cache: write through
[ 2147.898956] sd 8:0:0:0: [sdb] Assuming drive cache: write through
[ 2147.900943]  sdb: sdb1
[ 2147.904631] sd 8:0:0:0: [sdb] Assuming drive cache: write through
[ 2147.904654] sd 8:0:0:0: [sdb] Attached SCSI removable disk
[ 2541.250078] usb 1-5: USB disconnect, address 10
[ 2542.744126] usb 1-5: new high speed USB device using ehci_hcd and address 11
[ 2542.882864] scsi9 : usb-storage 1-5:1.0
[ 2543.886354] scsi 9:0:0:0: Direct-Access     Generic  STORAGE DEVICE   0202 PQ: 0 ANSI: 0
[ 2543.890452] sd 9:0:0:0: Attached scsi generic sg1 type 0
[ 2544.040156] sd 9:0:0:0: [sdb] 3970048 512-byte logical blocks: (2.03 GB/1.89 GiB)
[ 2544.041559] sd 9:0:0:0: [sdb] Write Protect is off
[ 2544.041575] sd 9:0:0:0: [sdb] Mode Sense: 03 00 00 00
[ 2544.041585] sd 9:0:0:0: [sdb] Assuming drive cache: write through
[ 2544.047784] sd 9:0:0:0: [sdb] Assuming drive cache: write through
[ 2544.049470]  sdb: sdb1
[ 2544.053695] sd 9:0:0:0: [sdb] Assuming drive cache: write through
[ 2544.053713] sd 9:0:0:0: [sdb] Attached SCSI removable disk
[ 3149.539805] usb 1-5: USB disconnect, address 11
[ 3170.776130] usb 1-5: new high speed USB device using ehci_hcd and address 12
[ 3170.914723] scsi10 : usb-storage 1-5:1.0
[ 3171.920109] scsi 10:0:0:0: Direct-Access     Generic  STORAGE DEVICE   0202 PQ: 0 ANSI: 0
[ 3171.922753] sd 10:0:0:0: Attached scsi generic sg1 type 0
[ 3172.072932] sd 10:0:0:0: [sdb] 3970048 512-byte logical blocks: (2.03 GB/1.89 GiB)
[ 3172.074331] sd 10:0:0:0: [sdb] Write Protect is off
[ 3172.074350] sd 10:0:0:0: [sdb] Mode Sense: 03 00 00 00
[ 3172.074469] sd 10:0:0:0: [sdb] Assuming drive cache: write through
[ 3172.081682] sd 10:0:0:0: [sdb] Assuming drive cache: write through
[ 3172.083415]  sdb: sdb1
[ 3172.089200] sd 10:0:0:0: [sdb] Assuming drive cache: write through
[ 3172.089223] sd 10:0:0:0: [sdb] Attached SCSI removable disk
dzex@dzex-N210:~$