ubuntuusers.de

dsmsg_bluetooth

Autor:
grand-cherokee
Datum:
13. April 2014 06:29
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
[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Initializing cgroup subsys cpuacct
[    0.000000] Linux version 3.11.0-19-generic (buildd@tipua) (gcc version 4.6.3 (Ubuntu/Linaro 4.6.3-1ubuntu5) ) #33~precise1-Ubuntu SMP Wed Mar 12 21:17:09 UTC 2014 (Ubuntu 3.11.0-19.33~precise1-generic 3.11.10.5)
[    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] e820: BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009f7ff] usable
[    0.000000] BIOS-e820: [mem 0x000000000009f800-0x000000000009ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000000dc000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000007f66ffff] usable
[    0.000000] BIOS-e820: [mem 0x000000007f670000-0x000000007f6fffff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000007f700000-0x000000007fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec0ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed00000-0x00000000fed003ff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed14000-0x00000000fed19fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed8ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] SMBIOS 2.4 present.
[    0.000000] DMI: Motion Computing LE1700/IDX80, BIOS A.18      08/28/2009
[    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] e820: last_pfn = 0x7f670 max_arch_pfn = 0x1000000
[    0.000000] MTRR default type: uncachable
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-BFFFF uncachable
[    0.000000]   C0000-CFFFF write-protect
[    0.000000]   D0000-DFFFF uncachable
[    0.000000]   E0000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 000000000 mask F80000000 write-back
[    0.000000]   1 base 07F700000 mask FFFF00000 uncachable
[    0.000000]   2 base 07F800000 mask FFF800000 uncachable
[    0.000000]   3 disabled
[    0.000000]   4 disabled
[    0.000000]   5 disabled
[    0.000000]   6 disabled
[    0.000000]   7 disabled
[    0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[    0.000000] original variable MTRRs
[    0.000000] reg 0, base: 0GB, range: 2GB, type WB
[    0.000000] reg 1, base: 2039MB, range: 1MB, type UC
[    0.000000] reg 2, base: 2040MB, range: 8MB, type UC
[    0.000000] total RAM covered: 2039M
[    0.000000] Found optimal setting for mtrr clean up
[    0.000000]  gran_size: 64K 	chunk_size: 16M 	num_reg: 3  	lose cover RAM: 0G
[    0.000000] New variable MTRRs
[    0.000000] reg 0, base: 0GB, range: 2GB, type WB
[    0.000000] reg 1, base: 2039MB, range: 1MB, type UC
[    0.000000] reg 2, base: 2040MB, range: 8MB, type UC
[    0.000000] found SMP MP-table at [mem 0x000f7430-0x000f743f] mapped at [c00f7430]
[    0.000000] Scanning 1 areas for low memory corruption
[    0.000000] initial memory mapped: [mem 0x00000000-0x021fffff]
[    0.000000] Base memory trampoline at [c009b000] 9b000 size 16384
[    0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
[    0.000000]  [mem 0x00000000-0x000fffff] page 4k
[    0.000000] init_memory_mapping: [mem 0x37800000-0x379fffff]
[    0.000000]  [mem 0x37800000-0x379fffff] page 2M
[    0.000000] init_memory_mapping: [mem 0x34000000-0x377fffff]
[    0.000000]  [mem 0x34000000-0x377fffff] page 2M
[    0.000000] init_memory_mapping: [mem 0x00100000-0x33ffffff]
[    0.000000]  [mem 0x00100000-0x001fffff] page 4k
[    0.000000]  [mem 0x00200000-0x33ffffff] page 2M
[    0.000000] init_memory_mapping: [mem 0x37a00000-0x37bfdfff]
[    0.000000]  [mem 0x37a00000-0x37bfdfff] page 4k
[    0.000000] BRK [0x01c5c000, 0x01c5cfff] PGTABLE
[    0.000000] RAMDISK: [mem 0x350a0000-0x36847fff]
[    0.000000] ACPI: RSDP 000f73a0 00014 (v00 Motion)
[    0.000000] ACPI: RSDT 7f679c12 00048 (v01 Motion TabletPC 06040000  LTP 00000000)
[    0.000000] ACPI: FACP 7f67fc78 00074 (v01 MOTION CALISTGA 06040000 LOHR 0000005A)
[    0.000000] ACPI: DSDT 7f67a66e 0560A (v01 MOTION CALISTGA 06040000 INTL 20060707)
[    0.000000] ACPI: FACS 7f680fc0 00040
[    0.000000] ACPI: APIC 7f67fcec 00068 (v01 INTEL  CALISTGA 06040000 LOHR 0000005A)
[    0.000000] ACPI: HPET 7f67fd54 00038 (v01 INTEL  CALISTGA 06040000 LOHR 0000005A)
[    0.000000] ACPI: MCFG 7f67fd8c 0003C (v01 INTEL  CALISTGA 06040000 LOHR 0000005A)
[    0.000000] ACPI: TCPA 7f67fdc8 00032 (v01 PTLTD  CALISTGA 06040000  PTL 00000001)
[    0.000000] ACPI: SLIC 7f67fdfa 00176 (v01 Motion TabletPC 06040000 LOHR 00000000)
[    0.000000] ACPI: APIC 7f67ff70 00068 (v01 PTLTD  ? APIC   06040000  LTP 00000000)
[    0.000000] ACPI: BOOT 7f67ffd8 00028 (v01 PTLTD  $SBFTBL$ 06040000  LTP 00000001)
[    0.000000] ACPI: SSDT 7f679c5a 004F6 (v01  PmRef    CpuPm 00003000 INTL 20050624)
[    0.000000] ACPI: BIOS bug: multiple APIC/MADT found, using 0
[    0.000000] ACPI: If "acpi_apic_instance=2" works better, notify linux-acpi@vger.kernel.org
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] 1146MB HIGHMEM available.
[    0.000000] 891MB LOWMEM available.
[    0.000000]   mapped low ram: 0 - 37bfe000
[    0.000000]   low ram: 0 - 37bfe000
[    0.000000] BRK [0x01c5d000, 0x01c5dfff] PGTABLE
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x00001000-0x00ffffff]
[    0.000000]   Normal   [mem 0x01000000-0x37bfdfff]
[    0.000000]   HighMem  [mem 0x37bfe000-0x7f66ffff]
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x00001000-0x0009efff]
[    0.000000]   node   0: [mem 0x00100000-0x7f66ffff]
[    0.000000] On node 0 totalpages: 521742
[    0.000000] free_area_init_node: node 0, pgdat c1a63f80, node_mem_map f6c0e020
[    0.000000]   DMA zone: 32 pages used for memmap
[    0.000000]   DMA zone: 0 pages reserved
[    0.000000]   DMA zone: 3998 pages, LIFO batch:0
[    0.000000]   Normal zone: 1752 pages used for memmap
[    0.000000]   Normal zone: 224254 pages, LIFO batch:31
[    0.000000]   HighMem zone: 2293 pages used for memmap
[    0.000000]   HighMem zone: 293490 pages, LIFO batch:31
[    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[0x01] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 1, version 32, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.000000] ACPI: IRQ0 used by override.
[    0.000000] ACPI: IRQ2 used by override.
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[    0.000000] smpboot: Allowing 2 CPUs, 0 hotplug CPUs
[    0.000000] nr_irqs_gsi: 40
[    0.000000] PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
[    0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000dbfff]
[    0.000000] PM: Registered nosave memory: [mem 0x000dc000-0x000fffff]
[    0.000000] e820: [mem 0x80000000-0xdfffffff] available for PCI devices
[    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 14 pages/cpu @f6be6000 s36032 r0 d21312 u57344
[    0.000000] pcpu-alloc: s36032 r0 d21312 u57344 alloc=14*4096
[    0.000000] pcpu-alloc: [0] 0 [0] 1 
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 519958
[    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-3.11.0-19-generic root=UUID=042cac9a-7b1c-41a0-87f1-a7bc0277fd52 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 4174712 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:0007f670)
[    0.000000] Memory: 2028648K/2086968K available (6681K kernel code, 612K rwdata, 3440K rodata, 900K init, 912K bss, 58320K reserved, 1173960K highmem)
[    0.000000] virtual kernel memory layout:
[    0.000000]     fixmap  : 0xfff14000 - 0xfffff000   ( 940 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 : 0xc1a7e000 - 0xc1b5f000   ( 900 kB)
[    0.000000]       .data : 0xc16869b3 - 0xc1a7d280   (4058 kB)
[    0.000000]       .text : 0xc1000000 - 0xc16869b3   (6682 kB)
[    0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok.
[    0.000000] SLUB: 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 restricting CPUs from NR_CPUS=8 to nr_cpu_ids=2.
[    0.000000] NR_IRQS:2304 nr_irqs:512 16
[    0.000000] CPU 0 irqstacks, hard=f4808000 soft=f480a000
[    0.000000] Console: colour dummy device 80x25
[    0.000000] console [tty0] enabled
[    0.000000] hpet clockevent registered
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] tsc: Detected 1500.089 MHz processor
[    0.004002] Calibrating delay loop (skipped), value calculated using timer frequency.. 3000.17 BogoMIPS (lpj=6000356)
[    0.004008] pid_max: default: 32768 minimum: 301
[    0.004050] Security Framework initialized
[    0.004077] AppArmor: AppArmor initialized
[    0.004080] Yama: becoming mindful.
[    0.004153] Mount-cache hash table entries: 512
[    0.004521] Initializing cgroup subsys memory
[    0.004536] Initializing cgroup subsys devices
[    0.004539] Initializing cgroup subsys freezer
[    0.004543] Initializing cgroup subsys blkio
[    0.004546] Initializing cgroup subsys perf_event
[    0.004550] Initializing cgroup subsys hugetlb
[    0.004591] CPU: Physical Processor ID: 0
[    0.004594] CPU: Processor Core ID: 0
[    0.004599] mce: CPU supports 6 MCE banks
[    0.004610] CPU0: Thermal monitoring handled by SMI
[    0.004627] Last level iTLB entries: 4KB 128, 2MB 4, 4MB 4
[    0.004627] Last level dTLB entries: 4KB 256, 2MB 0, 4MB 32
[    0.004627] tlb_flushall_shift: -1
[    0.005041] Freeing SMP alternatives memory: 28K (c1b5f000 - c1b66000)
[    0.009805] ACPI: Core revision 20130517
[    0.014567] ACPI: All ACPI Tables successfully acquired
[    0.016015] ftrace: allocating 30718 entries in 60 pages
[    0.028114] Enabling APIC mode:  Flat.  Using 1 I/O APICs
[    0.028592] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.068497] smpboot: CPU0: Intel(R) Core(TM)2 CPU         L7400  @ 1.50GHz (fam: 06, model: 0f, stepping: 06)
[    0.072000] Performance Events: PEBS fmt0-, 4-deep LBR, Core2 events, Intel PMU driver.
[    0.072000] perf_event_intel: PEBS disabled due to CPU errata
[    0.072000] ... version:                2
[    0.072000] ... bit width:              40
[    0.072000] ... generic registers:      2
[    0.072000] ... value mask:             000000ffffffffff
[    0.072000] ... max period:             000000007fffffff
[    0.072000] ... fixed-purpose events:   3
[    0.072000] ... event mask:             0000000700000003
[    0.072000] CPU 1 irqstacks, hard=f48ee000 soft=f48f8000
[    0.072000] smpboot: Booting Node   0, Processors  #1 OK
[    0.008000] Initializing CPU#1
[    0.008000] CPU1: Thermal monitoring handled by SMI
[    0.084052] Brought up 2 CPUs
[    0.084060] smpboot: Total of 2 processors activated (6000.35 BogoMIPS)
[    0.084163] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.088093] devtmpfs: initialized
[    0.088379] EVM: security.selinux
[    0.088382] EVM: security.SMACK64
[    0.088385] EVM: security.capability
[    0.088411] PM: Registering ACPI NVS region [mem 0x7f670000-0x7f6fffff] (589824 bytes)
[    0.090089] regulator-dummy: no parameters
[    0.090138] RTC time:  6:12:44, date: 04/13/14
[    0.090206] NET: Registered protocol family 16
[    0.090490] EISA bus registered
[    0.090637] ACPI: bus type PCI registered
[    0.090642] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.090730] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    0.090735] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
[    0.090737] PCI: Using MMCONFIG for extended config space
[    0.090740] PCI: Using configuration type 1 for base access
[    0.093096] bio: create slab <bio-0> at 0
[    0.093096] ACPI: Added _OSI(Module Device)
[    0.093096] ACPI: Added _OSI(Processor Device)
[    0.093096] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.093096] ACPI: Added _OSI(Processor Aggregator Device)
[    0.094150] ACPI: EC: Look up EC in DSDT
[    0.096031] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
[    0.096595] ACPI: SSDT 7f67a3b1 00229 (v01  PmRef  Cpu0Ist 00003000 INTL 20050624)
[    0.097096] ACPI: Dynamic OEM Table Load:
[    0.097101] ACPI: SSDT   (null) 00229 (v01  PmRef  Cpu0Ist 00003000 INTL 20050624)
[    0.097245] ACPI: SSDT 7f67a150 001DC (v01  PmRef  Cpu0Cst 00003001 INTL 20050624)
[    0.097719] ACPI: Dynamic OEM Table Load:
[    0.097724] ACPI: SSDT   (null) 001DC (v01  PmRef  Cpu0Cst 00003001 INTL 20050624)
[    0.098094] ACPI: SSDT 7f67a5da 00094 (v01  PmRef  Cpu1Ist 00003000 INTL 20050624)
[    0.104283] ACPI: Dynamic OEM Table Load:
[    0.104288] ACPI: SSDT   (null) 00094 (v01  PmRef  Cpu1Ist 00003000 INTL 20050624)
[    0.104414] ACPI: SSDT 7f67a32c 00085 (v01  PmRef  Cpu1Cst 00003000 INTL 20050624)
[    0.104888] ACPI: Dynamic OEM Table Load:
[    0.104892] ACPI: SSDT   (null) 00085 (v01  PmRef  Cpu1Cst 00003000 INTL 20050624)
[    0.105390] ACPI: Interpreter enabled
[    0.105411] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20130517/hwxface-571)
[    0.105419] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20130517/hwxface-571)
[    0.105442] ACPI: (supports S0 S3 S4 S5)
[    0.105445] ACPI: Using IOAPIC for interrupt routing
[    0.105484] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.105630] ACPI: No dock devices found.
[    0.106320] [Firmware Bug]: ACPI: No _BQC method, cannot determine initial brightness
[    0.106348] [Firmware Bug]: ACPI: No _BQC method, cannot determine initial brightness
[    0.233863] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.233872] acpi PNP0A08:00: ACPI _OSC support notification failed, disabling PCIe ASPM
[    0.233876] acpi PNP0A08:00: Unable to request _OSC control (_OSC support mask: 0x08)
[    0.234974] PCI host bridge to bus 0000:00
[    0.234980] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.234985] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7]
[    0.234988] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff]
[    0.234992] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
[    0.234996] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff]
[    0.235000] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff]
[    0.235004] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff]
[    0.235008] pci_bus 0000:00: root bus resource [mem 0x80000000-0xfebfffff]
[    0.235011] pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfed44fff]
[    0.235028] pci 0000:00:00.0: [8086:27a0] type 00 class 0x060000
[    0.235194] pci 0000:00:02.0: [8086:27a2] type 00 class 0x030000
[    0.235212] pci 0000:00:02.0: reg 0x10: [mem 0xdc100000-0xdc17ffff]
[    0.235223] pci 0000:00:02.0: reg 0x14: [io  0x1800-0x1807]
[    0.235233] pci 0000:00:02.0: reg 0x18: [mem 0xc0000000-0xcfffffff pref]
[    0.235243] pci 0000:00:02.0: reg 0x1c: [mem 0xdc200000-0xdc23ffff]
[    0.235406] pci 0000:00:02.1: [8086:27a6] type 00 class 0x038000
[    0.235421] pci 0000:00:02.1: reg 0x10: [mem 0xdc180000-0xdc1fffff]
[    0.235653] pci 0000:00:1b.0: [8086:27d8] type 00 class 0x040300
[    0.235681] pci 0000:00:1b.0: reg 0x10: [mem 0xdc440000-0xdc443fff 64bit]
[    0.235805] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    0.235893] pci 0000:00:1b.0: System wakeup disabled by ACPI
[    0.235962] pci 0000:00:1c.0: [8086:27d0] type 01 class 0x060400
[    0.236095] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.236243] pci 0000:00:1c.1: [8086:27d2] type 01 class 0x060400
[    0.236373] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[    0.236523] pci 0000:00:1d.0: [8086:27c8] type 00 class 0x0c0300
[    0.236590] pci 0000:00:1d.0: reg 0x20: [io  0x1820-0x183f]
[    0.236738] pci 0000:00:1d.1: [8086:27c9] type 00 class 0x0c0300
[    0.236805] pci 0000:00:1d.1: reg 0x20: [io  0x1840-0x185f]
[    0.236951] pci 0000:00:1d.2: [8086:27ca] type 00 class 0x0c0300
[    0.237018] pci 0000:00:1d.2: reg 0x20: [io  0x1860-0x187f]
[    0.237166] pci 0000:00:1d.3: [8086:27cb] type 00 class 0x0c0300
[    0.237233] pci 0000:00:1d.3: reg 0x20: [io  0x1880-0x189f]
[    0.237393] pci 0000:00:1d.7: [8086:27cc] type 00 class 0x0c0320
[    0.237423] pci 0000:00:1d.7: reg 0x10: [mem 0xdc444000-0xdc4443ff]
[    0.237549] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
[    0.237687] pci 0000:00:1e.0: [8086:2448] type 01 class 0x060401
[    0.237899] pci 0000:00:1f.0: [8086:27b9] type 00 class 0x060100
[    0.238029] pci 0000:00:1f.0: address space collision: [io  0x1000-0x107f] conflicts with ACPI CPU throttle [??? 0x00001010-0x00001015 flags 0x80000000]
[    0.238039] pci 0000:00:1f.0: quirk: [io  0x1180-0x11bf] claimed by ICH6 GPIO
[    0.238047] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 2 PIO at 1640 (mask 007f)
[    0.238216] pci 0000:00:1f.1: [8086:27df] type 00 class 0x01018a
[    0.238237] pci 0000:00:1f.1: reg 0x10: [io  0x0000-0x0007]
[    0.238253] pci 0000:00:1f.1: reg 0x14: [io  0x0000-0x0003]
[    0.238268] pci 0000:00:1f.1: reg 0x18: [io  0x0000-0x0007]
[    0.238283] pci 0000:00:1f.1: reg 0x1c: [io  0x0000-0x0003]
[    0.238298] pci 0000:00:1f.1: reg 0x20: [io  0x1810-0x181f]
[    0.238453] pci 0000:00:1f.3: [8086:27da] type 00 class 0x0c0500
[    0.238537] pci 0000:00:1f.3: reg 0x20: [io  0x18a0-0x18bf]
[    0.238840] pci 0000:02:00.0: [11ab:4362] type 00 class 0x020000
[    0.238883] pci 0000:02:00.0: reg 0x10: [mem 0xd6000000-0xd6003fff 64bit]
[    0.238906] pci 0000:02:00.0: reg 0x18: [io  0x2000-0x20ff]
[    0.238985] pci 0000:02:00.0: reg 0x30: [mem 0x00000000-0x0001ffff pref]
[    0.239109] pci 0000:02:00.0: supports D1 D2
[    0.239113] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.239155] pci 0000:02:00.0: System wakeup disabled by ACPI
[    0.239208] pci 0000:02:00.0: disabling ASPM on pre-1.1 PCIe device.  You can enable it with 'pcie_aspm=force'
[    0.239226] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.239233] pci 0000:00:1c.0:   bridge window [io  0x2000-0x2fff]
[    0.239241] pci 0000:00:1c.0:   bridge window [mem 0xd6000000-0xd7ffffff]
[    0.239252] pci 0000:00:1c.0:   bridge window [mem 0xd0000000-0xd1ffffff 64bit pref]
[    0.239472] pci 0000:03:00.0: [8086:4222] type 00 class 0x028000
[    0.239533] pci 0000:03:00.0: reg 0x10: [mem 0xd8000000-0xd8000fff]
[    0.239972] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
[    0.240104] pci 0000:03:00.0: disabling ASPM on pre-1.1 PCIe device.  You can enable it with 'pcie_aspm=force'
[    0.240146] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.240154] pci 0000:00:1c.1:   bridge window [io  0x3000-0x3fff]
[    0.240161] pci 0000:00:1c.1:   bridge window [mem 0xd8000000-0xd9ffffff]
[    0.240172] pci 0000:00:1c.1:   bridge window [mem 0xd2000000-0xd3ffffff 64bit pref]
[    0.240275] pci 0000:08:04.0: [1180:0476] type 02 class 0x060700
[    0.240300] pci 0000:08:04.0: proprietary Ricoh MMC controller disabled (via cardbus function)
[    0.240303] pci 0000:08:04.0: MMC cards are now supported by standard SDHCI controller
[    0.240323] pci 0000:08:04.0: reg 0x10: [mem 0xdc000000-0xdc000fff]
[    0.240369] pci 0000:08:04.0: supports D1 D2
[    0.240373] pci 0000:08:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.240455] pci 0000:08:04.1: [1180:0822] type 00 class 0x080500
[    0.240483] pci 0000:08:04.1: reg 0x10: [mem 0xdc003800-0xdc0038ff]
[    0.240600] pci 0000:08:04.1: supports D1 D2
[    0.240603] pci 0000:08:04.1: PME# supported from D0 D1 D2 D3hot D3cold
[    0.240699] pci 0000:08:05.0: [1033:0035] type 00 class 0x0c0310
[    0.240727] pci 0000:08:05.0: reg 0x10: [mem 0xdc001000-0xdc001fff]
[    0.240844] pci 0000:08:05.0: supports D1 D2
[    0.240847] pci 0000:08:05.0: PME# supported from D0 D1 D2 D3hot
[    0.240933] pci 0000:08:05.1: [1033:0035] type 00 class 0x0c0310
[    0.240960] pci 0000:08:05.1: reg 0x10: [mem 0xdc002000-0xdc002fff]
[    0.241078] pci 0000:08:05.1: supports D1 D2
[    0.241081] pci 0000:08:05.1: PME# supported from D0 D1 D2 D3hot
[    0.241166] pci 0000:08:05.2: [1033:00e0] type 00 class 0x0c0320
[    0.241194] pci 0000:08:05.2: reg 0x10: [mem 0xdc004000-0xdc0040ff]
[    0.241309] pci 0000:08:05.2: supports D1 D2
[    0.241313] pci 0000:08:05.2: PME# supported from D0 D1 D2 D3hot
[    0.241448] pci 0000:00:1e.0: PCI bridge to [bus 08-09] (subtractive decode)
[    0.241459] pci 0000:00:1e.0:   bridge window [mem 0xdc000000-0xdc0fffff]
[    0.241470] pci 0000:00:1e.0:   bridge window [io  0x0000-0x0cf7] (subtractive decode)
[    0.241474] pci 0000:00:1e.0:   bridge window [io  0x0d00-0xffff] (subtractive decode)
[    0.241479] pci 0000:00:1e.0:   bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
[    0.241483] pci 0000:00:1e.0:   bridge window [mem 0x000d0000-0x000d3fff] (subtractive decode)
[    0.241487] pci 0000:00:1e.0:   bridge window [mem 0x000d4000-0x000d7fff] (subtractive decode)
[    0.241491] pci 0000:00:1e.0:   bridge window [mem 0x000d8000-0x000dbfff] (subtractive decode)
[    0.241495] pci 0000:00:1e.0:   bridge window [mem 0x80000000-0xfebfffff] (subtractive decode)
[    0.241499] pci 0000:00:1e.0:   bridge window [mem 0xfed40000-0xfed44fff] (subtractive decode)
[    0.241574] pci_bus 0000:09: busn_res: can not insert [bus 09-ff] under [bus 08-09] (conflicts with (null) [bus 08-09])
[    0.241582] pci_bus 0000:09: busn_res: [bus 09-ff] end is updated to 0c
[    0.241587] pci_bus 0000:09: busn_res: can not insert [bus 09-0c] under [bus 08-09] (conflicts with (null) [bus 08-09])
[    0.241594] pci_bus 0000:09: [bus 09-0c] partially hidden behind transparent bridge 0000:08 [bus 08-09]
[    0.241622] pci_bus 0000:00: on NUMA node 0
[    0.241941] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 5 6 7 *10 11)
[    0.242050] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 5 6 7 *10 11)
[    0.242154] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 5 6 *7 10 11)
[    0.242255] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 5 6 7 *10 11)
[    0.242356] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 5 6 7 10 *11)
[    0.242457] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 5 6 7 *10 11)
[    0.242558] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 5 6 7 10 *11)
[    0.242658] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 5 6 7 10 *11)
[    0.280400] ACPI: Enabled 11 GPEs in block 00 to 1F
[    0.280413] ACPI: \_SB_.PCI0: notify handler is installed
[    0.280479] Found 1 acpi root devices
[    0.280534] ACPI: EC: GPE = 0x1b, I/O: command/status = 0x66, data = 0x62
[    0.280655] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
[    0.280655] vgaarb: loaded
[    0.280655] vgaarb: bridge control possible 0000:00:02.0
[    0.280655] SCSI subsystem initialized
[    0.280655] ACPI: bus type ATA registered
[    0.280655] libata version 3.00 loaded.
[    0.280655] ACPI: bus type USB registered
[    0.280655] usbcore: registered new interface driver usbfs
[    0.280655] usbcore: registered new interface driver hub
[    0.280655] usbcore: registered new device driver usb
[    0.280655] PCI: Using ACPI for IRQ routing
[    0.293498] PCI: pci_cache_line_size set to 64 bytes
[    0.293600] e820: reserve RAM buffer [mem 0x0009f800-0x0009ffff]
[    0.293604] e820: reserve RAM buffer [mem 0x7f670000-0x7fffffff]
[    0.293755] NetLabel: Initializing
[    0.293758] NetLabel:  domain hash size = 128
[    0.293760] NetLabel:  protocols = UNLABELED CIPSOv4
[    0.293777] NetLabel:  unlabeled traffic allowed by default
[    0.293799] HPET: 3 timers in total, 0 timers will be used for per-cpu timer
[    0.293799] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[    0.293799] hpet0: 3 comparators, 64-bit 14.318180 MHz counter
[    0.296030] Switched to clocksource hpet
[    0.308515] AppArmor: AppArmor Filesystem Enabled
[    0.308557] pnp: PnP ACPI init
[    0.308581] ACPI: bus type PNP registered
[    0.308738] system 00:00: [io  0xfe00-0xfe7f] has been reserved
[    0.308744] system 00:00: [io  0xfe80-0xfeff] has been reserved
[    0.308749] system 00:00: [io  0xff00-0xff7f] has been reserved
[    0.308754] system 00:00: [mem 0xe0000000-0xefffffff] has been reserved
[    0.308759] system 00:00: [mem 0xfed14000-0xfed17fff] has been reserved
[    0.308764] system 00:00: [mem 0xfed18000-0xfed18fff] has been reserved
[    0.308768] system 00:00: [mem 0xfed19000-0xfed19fff] has been reserved
[    0.308773] system 00:00: [mem 0xfed1c000-0xfed1ffff] has been reserved
[    0.308778] system 00:00: [mem 0xfed20000-0xfed3ffff] has been reserved
[    0.308782] system 00:00: [mem 0xfed45000-0xfed8ffff] has been reserved
[    0.308789] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.309105] pnp 00:01: [dma 4]
[    0.309152] pnp 00:01: Plug and Play ACPI device, IDs PNP0200 (active)
[    0.309205] pnp 00:02: Plug and Play ACPI device, IDs INT0800 (active)
[    0.309371] system 00:03: [mem 0xfed00000-0xfed003ff] has been reserved
[    0.309378] system 00:03: Plug and Play ACPI device, IDs PNP0103 PNP0c01 (active)
[    0.309452] pnp 00:04: Plug and Play ACPI device, IDs PNP0c04 (active)
[    0.309541] system 00:05: [io  0x0800-0x080f] has been reserved
[    0.309546] system 00:05: [io  0x1000-0x107f] could not be reserved
[    0.309551] system 00:05: [io  0x1180-0x11bf] has been reserved
[    0.309555] system 00:05: [io  0xe02c-0xe02f] has been reserved
[    0.309561] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.309623] pnp 00:06: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.309759] pnp 00:07: Plug and Play ACPI device, IDs WACf004 (active)
[    0.310634] pnp 00:08: [dma 3]
[    0.310726] pnp 00:08: Plug and Play ACPI device, IDs SMCf010 (active)
[    0.348093] pnp 00:09: Plug and Play ACPI device, IDs MCO0102 (active)
[    0.348143] pnp: PnP ACPI: found 10 devices
[    0.348146] ACPI: bus type PNP unregistered
[    0.348151] PnPBIOS: Disabled by ACPI PNP
[    0.386609] pci 0000:08:04.0: res[13]=[io  0x0100-0x00ff] get_res_add_size add_size 100
[    0.386615] pci 0000:08:04.0: res[14]=[io  0x0100-0x00ff] get_res_add_size add_size 100
[    0.386621] pci 0000:00:1e.0: bridge window [io  0x1000-0x0fff] to [bus 08-09] add_size 1000
[    0.386627] pci 0000:08:04.0: res[15]=[mem 0x04000000-0x03ffffff pref] get_res_add_size add_size 4000000
[    0.386633] pci 0000:00:1e.0: bridge window [mem 0x04000000-0x03ffffff pref] to [bus 08-09] add_size 4000000
[    0.386641] pci 0000:00:1f.0: BAR 13: [io  0x1000-0x107f] has bogus alignment
[    0.386646] pci 0000:00:1e.0: res[15]=[mem 0x04000000-0x03ffffff pref] get_res_add_size add_size 4000000
[    0.386650] pci 0000:00:1e.0: res[13]=[io  0x1000-0x0fff] get_res_add_size add_size 1000
[    0.386660] pci 0000:00:1e.0: BAR 15: assigned [mem 0x80000000-0x83ffffff pref]
[    0.386666] pci 0000:00:1e.0: BAR 13: assigned [io  0x4000-0x4fff]
[    0.386673] pci 0000:02:00.0: BAR 6: assigned [mem 0xd0000000-0xd001ffff pref]
[    0.386678] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.386684] pci 0000:00:1c.0:   bridge window [io  0x2000-0x2fff]
[    0.386692] pci 0000:00:1c.0:   bridge window [mem 0xd6000000-0xd7ffffff]
[    0.386700] pci 0000:00:1c.0:   bridge window [mem 0xd0000000-0xd1ffffff 64bit pref]
[    0.386711] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.386716] pci 0000:00:1c.1:   bridge window [io  0x3000-0x3fff]
[    0.386725] pci 0000:00:1c.1:   bridge window [mem 0xd8000000-0xd9ffffff]
[    0.386732] pci 0000:00:1c.1:   bridge window [mem 0xd2000000-0xd3ffffff 64bit pref]
[    0.386745] pci 0000:08:04.0: res[15]=[mem 0x04000000-0x03ffffff pref] get_res_add_size add_size 4000000
[    0.386750] pci 0000:08:04.0: res[16]=[mem 0x04000000-0x03ffffff] get_res_add_size add_size 4000000
[    0.386754] pci 0000:08:04.0: res[13]=[io  0x0100-0x00ff] get_res_add_size add_size 100
[    0.386758] pci 0000:08:04.0: res[14]=[io  0x0100-0x00ff] get_res_add_size add_size 100
[    0.386763] pci 0000:08:04.0: BAR 15: assigned [mem 0x80000000-0x83ffffff pref]
[    0.386770] pci 0000:08:04.0: BAR 16: assigned [mem 0x84000000-0x87ffffff]
[    0.386774] pci 0000:08:04.0: BAR 13: assigned [io  0x4000-0x40ff]
[    0.386778] pci 0000:08:04.0: BAR 14: assigned [io  0x4400-0x44ff]
[    0.386783] pci 0000:08:04.0: CardBus bridge to [bus 09-0c]
[    0.386787] pci 0000:08:04.0:   bridge window [io  0x4000-0x40ff]
[    0.386794] pci 0000:08:04.0:   bridge window [io  0x4400-0x44ff]
[    0.386801] pci 0000:08:04.0:   bridge window [mem 0x80000000-0x83ffffff pref]
[    0.386809] pci 0000:08:04.0:   bridge window [mem 0x84000000-0x87ffffff]
[    0.386816] pci 0000:00:1e.0: PCI bridge to [bus 08-09]
[    0.386821] pci 0000:00:1e.0:   bridge window [io  0x4000-0x4fff]
[    0.386830] pci 0000:00:1e.0:   bridge window [mem 0xdc000000-0xdc0fffff]
[    0.386837] pci 0000:00:1e.0:   bridge window [mem 0x80000000-0x83ffffff pref]
[    0.387236] pci 0000:00:1e.0: setting latency timer to 64
[    0.387325] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7]
[    0.387330] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff]
[    0.387334] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
[    0.387338] pci_bus 0000:00: resource 7 [mem 0x000d0000-0x000d3fff]
[    0.387342] pci_bus 0000:00: resource 8 [mem 0x000d4000-0x000d7fff]
[    0.387346] pci_bus 0000:00: resource 9 [mem 0x000d8000-0x000dbfff]
[    0.387350] pci_bus 0000:00: resource 10 [mem 0x80000000-0xfebfffff]
[    0.387354] pci_bus 0000:00: resource 11 [mem 0xfed40000-0xfed44fff]
[    0.387358] pci_bus 0000:02: resource 0 [io  0x2000-0x2fff]
[    0.387362] pci_bus 0000:02: resource 1 [mem 0xd6000000-0xd7ffffff]
[    0.387366] pci_bus 0000:02: resource 2 [mem 0xd0000000-0xd1ffffff 64bit pref]
[    0.387370] pci_bus 0000:03: resource 0 [io  0x3000-0x3fff]
[    0.387375] pci_bus 0000:03: resource 1 [mem 0xd8000000-0xd9ffffff]
[    0.387379] pci_bus 0000:03: resource 2 [mem 0xd2000000-0xd3ffffff 64bit pref]
[    0.387383] pci_bus 0000:08: resource 0 [io  0x4000-0x4fff]
[    0.387387] pci_bus 0000:08: resource 1 [mem 0xdc000000-0xdc0fffff]
[    0.387391] pci_bus 0000:08: resource 2 [mem 0x80000000-0x83ffffff pref]
[    0.387395] pci_bus 0000:08: resource 4 [io  0x0000-0x0cf7]
[    0.387399] pci_bus 0000:08: resource 5 [io  0x0d00-0xffff]
[    0.387403] pci_bus 0000:08: resource 6 [mem 0x000a0000-0x000bffff]
[    0.387407] pci_bus 0000:08: resource 7 [mem 0x000d0000-0x000d3fff]
[    0.387411] pci_bus 0000:08: resource 8 [mem 0x000d4000-0x000d7fff]
[    0.387415] pci_bus 0000:08: resource 9 [mem 0x000d8000-0x000dbfff]
[    0.387419] pci_bus 0000:08: resource 10 [mem 0x80000000-0xfebfffff]
[    0.387422] pci_bus 0000:08: resource 11 [mem 0xfed40000-0xfed44fff]
[    0.387427] pci_bus 0000:09: resource 0 [io  0x4000-0x40ff]
[    0.387431] pci_bus 0000:09: resource 1 [io  0x4400-0x44ff]
[    0.387435] pci_bus 0000:09: resource 2 [mem 0x80000000-0x83ffffff pref]
[    0.387439] pci_bus 0000:09: resource 3 [mem 0x84000000-0x87ffffff]
[    0.387493] NET: Registered protocol family 2
[    0.387746] TCP established hash table entries: 8192 (order: 4, 65536 bytes)
[    0.387784] TCP bind hash table entries: 8192 (order: 4, 65536 bytes)
[    0.387820] TCP: Hash tables configured (established 8192 bind 8192)
[    0.387853] TCP: reno registered
[    0.387858] UDP hash table entries: 512 (order: 2, 16384 bytes)
[    0.387870] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
[    0.387954] NET: Registered protocol family 1
[    0.387974] pci 0000:00:02.0: Boot video device
[    0.390388] PCI: CLS 64 bytes, default 64
[    0.390450] Trying to unpack rootfs image as initramfs...
[    1.316158] Freeing initrd memory: 24224K (f50a0000 - f6848000)
[    1.316310] Simple Boot Flag at 0x36 set to 0x1
[    1.316500] Scanning for low memory corruption every 60 seconds
[    1.316905] Initialise module verification
[    1.316986] audit: initializing netlink socket (disabled)
[    1.317008] type=2000 audit(1397369565.316:1): initialized
[    1.356785] bounce pool size: 64 pages
[    1.356803] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    1.359256] zbud: loaded
[    1.359346] VFS: Disk quotas dquot_6.5.2
[    1.359424] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[    1.360337] fuse init (API version 7.22)
[    1.360491] msgmni has been set to 1716
[    1.361379] Key type asymmetric registered
[    1.361383] Asymmetric key parser 'x509' registered
[    1.361439] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
[    1.361499] io scheduler noop registered
[    1.361503] io scheduler deadline registered (default)
[    1.361551] io scheduler cfq registered
[    1.361746] pcieport 0000:00:1c.0: irq 40 for MSI/MSI-X
[    1.361874] pcieport 0000:00:1c.1: irq 41 for MSI/MSI-X
[    1.362005] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    1.362032] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    1.362185] intel_idle: does not run on family 6 model 15
[    1.377994] ACPI: AC Adapter [ACAD] (on-line)
[    1.378138] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input0
[    1.378147] ACPI: Power Button [PWRB]
[    1.378224] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[    1.378229] ACPI: Power Button [PWRF]
[    1.378328] ACPI: Requesting acpi_cpufreq
[    1.387336] tsc: Marking TSC unstable due to TSC halts in idle
[    1.387353] ACPI: acpi_idle registered with cpuidle
[    1.502141] thermal LNXTHERM:00: registered as thermal_zone0
[    1.502146] ACPI: Thermal Zone [TZ00] (41 C)
[    1.557157] ACPI: EC: GPE storm detected(9 GPEs), transactions will use polling mode
[    1.740056] thermal LNXTHERM:01: registered as thermal_zone1
[    1.740060] ACPI: Thermal Zone [TZ01] (39 C)
[    1.976052] thermal LNXTHERM:02: registered as thermal_zone2
[    1.976057] ACPI: Thermal Zone [TZ02] (26 C)
[    2.256053] thermal LNXTHERM:03: registered as thermal_zone3
[    2.256056] ACPI: Thermal Zone [TZ03] (21 C)
[    2.560055] thermal LNXTHERM:04: registered as thermal_zone4
[    2.560059] ACPI: Thermal Zone [TZ04] (25 C)
[    2.776052] thermal LNXTHERM:05: registered as thermal_zone5
[    2.776056] ACPI: Thermal Zone [TZ05] (27 C)
[    2.992053] thermal LNXTHERM:06: registered as thermal_zone6
[    2.992057] ACPI: Thermal Zone [TZ06] (26 C)
[    2.992110] GHES: HEST is not enabled!
[    2.992197] isapnp: Scanning for PnP cards...
[    2.996121] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    3.016869] 00:07: ttyS4 at I/O 0x238 (irq = 5) is a 16550A
[    3.017323] ACPI: Battery Slot [BAT1] (battery present)
[    3.060034] ACPI: Battery Slot [BAT2] (battery absent)
[    3.060167] Linux agpgart interface v0.103
[    3.060294] agpgart-intel 0000:00:00.0: Intel 945GM Chipset
[    3.060352] agpgart-intel 0000:00:00.0: detected gtt size: 262144K total, 262144K mappable
[    3.061595] agpgart-intel 0000:00:00.0: detected 8192K stolen memory
[    3.061752] agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0xc0000000
[    3.064051] brd: module loaded
[    3.065201] loop: module loaded
[    3.065323] megasas: 06.600.18.00-rc1 Wed. May. 15 17:00:00 PDT 2013
[    3.065432] ata_piix 0000:00:1f.1: version 2.13
[    3.065694] ata_piix 0000:00:1f.1: setting latency timer to 64
[    3.066147] scsi0 : ata_piix
[    3.066657] scsi1 : ata_piix
[    3.066742] ata1: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0x1810 irq 14
[    3.066746] ata2: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0x1818 irq 15
[    3.067261] libphy: Fixed MDIO Bus: probed
[    3.067431] tun: Universal TUN/TAP device driver, 1.6
[    3.067434] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[    3.067524] PPP generic driver version 2.4.2
[    3.067591] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    3.067594] ehci-pci: EHCI PCI platform driver
[    3.067810] ehci-pci 0000:00:1d.7: setting latency timer to 64
[    3.067829] ehci-pci 0000:00:1d.7: EHCI Host Controller
[    3.067838] ehci-pci 0000:00:1d.7: new USB bus registered, assigned bus number 1
[    3.067859] ehci-pci 0000:00:1d.7: debug port 1
[    3.071759] ehci-pci 0000:00:1d.7: cache line size of 64 is not supported
[    3.071784] ehci-pci 0000:00:1d.7: irq 23, io mem 0xdc444000
[    3.071966] ata2: port disabled--ignoring
[    3.080030] ehci-pci 0000:00:1d.7: USB 2.0 started, EHCI 1.00
[    3.080089] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    3.080094] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.080098] usb usb1: Product: EHCI Host Controller
[    3.080102] usb usb1: Manufacturer: Linux 3.11.0-19-generic ehci_hcd
[    3.080105] usb usb1: SerialNumber: 0000:00:1d.7
[    3.080260] hub 1-0:1.0: USB hub found
[    3.080268] hub 1-0:1.0: 8 ports detected
[    3.080637] ehci-pci 0000:08:05.2: EHCI Host Controller
[    3.080646] ehci-pci 0000:08:05.2: new USB bus registered, assigned bus number 2
[    3.080704] ehci-pci 0000:08:05.2: irq 22, io mem 0xdc004000
[    3.092025] ehci-pci 0000:08:05.2: USB 2.0 started, EHCI 1.00
[    3.092051] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
[    3.092056] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.092060] usb usb2: Product: EHCI Host Controller
[    3.092063] usb usb2: Manufacturer: Linux 3.11.0-19-generic ehci_hcd
[    3.092067] usb usb2: SerialNumber: 0000:08:05.2
[    3.092221] hub 2-0:1.0: USB hub found
[    3.092228] hub 2-0:1.0: 5 ports detected
[    3.092416] ehci-platform: EHCI generic platform driver
[    3.092432] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    3.092435] ohci-pci: OHCI PCI platform driver
[    3.092556] ohci-pci 0000:08:05.0: OHCI PCI host controller
[    3.092565] ohci-pci 0000:08:05.0: new USB bus registered, assigned bus number 3
[    3.092597] ohci-pci 0000:08:05.0: irq 20, io mem 0xdc001000
[    3.177832] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
[    3.177837] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.177841] usb usb3: Product: OHCI PCI host controller
[    3.177845] usb usb3: Manufacturer: Linux 3.11.0-19-generic ohci_hcd
[    3.177849] usb usb3: SerialNumber: 0000:08:05.0
[    3.177989] hub 3-0:1.0: USB hub found
[    3.177998] hub 3-0:1.0: 3 ports detected
[    3.178244] ohci-pci 0000:08:05.1: OHCI PCI host controller
[    3.178253] ohci-pci 0000:08:05.1: new USB bus registered, assigned bus number 4
[    3.178284] ohci-pci 0000:08:05.1: irq 21, io mem 0xdc002000
[    3.262266] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001
[    3.262271] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.262275] usb usb4: Product: OHCI PCI host controller
[    3.262279] usb usb4: Manufacturer: Linux 3.11.0-19-generic ohci_hcd
[    3.262283] usb usb4: SerialNumber: 0000:08:05.1
[    3.262370] ata1.00: ATA-6: TOSHIBA MK8009GAH, BS011A, max UDMA/100
[    3.262375] ata1.00: 156301488 sectors, multi 16: LBA48 
[    3.262789] hub 4-0:1.0: USB hub found
[    3.262799] hub 4-0:1.0: 2 ports detected
[    3.262922] ohci-platform: OHCI generic platform driver
[    3.262935] uhci_hcd: USB Universal Host Controller Interface driver
[    3.263141] uhci_hcd 0000:00:1d.0: setting latency timer to 64
[    3.263147] uhci_hcd 0000:00:1d.0: UHCI Host Controller
[    3.263155] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 5
[    3.263186] uhci_hcd 0000:00:1d.0: irq 23, io base 0x00001820
[    3.263233] usb usb5: New USB device found, idVendor=1d6b, idProduct=0001
[    3.263237] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.263241] usb usb5: Product: UHCI Host Controller
[    3.263245] usb usb5: Manufacturer: Linux 3.11.0-19-generic uhci_hcd
[    3.263248] usb usb5: SerialNumber: 0000:00:1d.0
[    3.263390] hub 5-0:1.0: USB hub found
[    3.263397] hub 5-0:1.0: 2 ports detected
[    3.263711] uhci_hcd 0000:00:1d.1: setting latency timer to 64
[    3.263717] uhci_hcd 0000:00:1d.1: UHCI Host Controller
[    3.263727] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 6
[    3.263773] uhci_hcd 0000:00:1d.1: irq 19, io base 0x00001840
[    3.263817] usb usb6: New USB device found, idVendor=1d6b, idProduct=0001
[    3.263822] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.263825] usb usb6: Product: UHCI Host Controller
[    3.263829] usb usb6: Manufacturer: Linux 3.11.0-19-generic uhci_hcd
[    3.263833] usb usb6: SerialNumber: 0000:00:1d.1
[    3.263975] hub 6-0:1.0: USB hub found
[    3.263982] hub 6-0:1.0: 2 ports detected
[    3.264311] uhci_hcd 0000:00:1d.2: setting latency timer to 64
[    3.264317] uhci_hcd 0000:00:1d.2: UHCI Host Controller
[    3.264324] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 7
[    3.264370] uhci_hcd 0000:00:1d.2: irq 18, io base 0x00001860
[    3.264417] usb usb7: New USB device found, idVendor=1d6b, idProduct=0001
[    3.264421] usb usb7: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.264425] usb usb7: Product: UHCI Host Controller
[    3.264429] usb usb7: Manufacturer: Linux 3.11.0-19-generic uhci_hcd
[    3.264432] usb usb7: SerialNumber: 0000:00:1d.2
[    3.264573] hub 7-0:1.0: USB hub found
[    3.264579] hub 7-0:1.0: 2 ports detected
[    3.264893] uhci_hcd 0000:00:1d.3: setting latency timer to 64
[    3.264899] uhci_hcd 0000:00:1d.3: UHCI Host Controller
[    3.264906] uhci_hcd 0000:00:1d.3: new USB bus registered, assigned bus number 8
[    3.264953] uhci_hcd 0000:00:1d.3: irq 16, io base 0x00001880
[    3.264997] usb usb8: New USB device found, idVendor=1d6b, idProduct=0001
[    3.265001] usb usb8: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.265005] usb usb8: Product: UHCI Host Controller
[    3.265009] usb usb8: Manufacturer: Linux 3.11.0-19-generic uhci_hcd
[    3.265013] usb usb8: SerialNumber: 0000:00:1d.3
[    3.265151] hub 8-0:1.0: USB hub found
[    3.265157] hub 8-0:1.0: 2 ports detected
[    3.265388] i8042: PNP: No PS/2 controller found. Probing ports directly.
[    3.292889] serio: i8042 KBD port at 0x60,0x64 irq 1
[    3.293088] ata1.00: configured for UDMA/100
[    3.293184] mousedev: PS/2 mouse device common for all mice
[    3.299928] rtc_cmos 00:06: RTC can wake from S4
[    3.300124] rtc_cmos 00:06: rtc core: registered rtc_cmos as rtc0
[    3.300161] rtc_cmos 00:06: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
[    3.300270] device-mapper: uevent: version 1.0.3
[    3.300365] device-mapper: ioctl: 4.25.0-ioctl (2013-06-26) initialised: dm-devel@redhat.com
[    3.300444] platform eisa.0: Probing EISA bus 0
[    3.300449] platform eisa.0: EISA: Cannot allocate resource for mainboard
[    3.300453] platform eisa.0: Cannot allocate resource for EISA slot 1
[    3.300457] platform eisa.0: Cannot allocate resource for EISA slot 2
[    3.300461] platform eisa.0: Cannot allocate resource for EISA slot 3
[    3.300465] platform eisa.0: Cannot allocate resource for EISA slot 4
[    3.300469] platform eisa.0: Cannot allocate resource for EISA slot 5
[    3.300473] platform eisa.0: Cannot allocate resource for EISA slot 6
[    3.300477] platform eisa.0: Cannot allocate resource for EISA slot 7
[    3.300481] platform eisa.0: Cannot allocate resource for EISA slot 8
[    3.300484] platform eisa.0: EISA: Detected 0 cards
[    3.300496] cpufreq-nforce2: No nForce2 chipset.
[    3.300566] cpuidle: using governor ladder
[    3.300661] cpuidle: using governor menu
[    3.300679] ledtrig-cpu: registered to indicate activity on CPUs
[    3.300839] TCP: cubic registered
[    3.301012] NET: Registered protocol family 10
[    3.301327] NET: Registered protocol family 17
[    3.301345] Key type dns_resolver registered
[    3.301618] Using IPI No-Shortcut mode
[    3.301747] PM: Hibernation image not present or could not be loaded.
[    3.301753] Loading module verification certificates
[    3.308097] MODSIGN: Loaded cert 'Magrathea: Glacier signing key: ca1b055db3ec8cb1ca2747acb5e7f809ae1841c4'
[    3.308118] registered taskstats version 1
[    3.311342] Key type trusted registered
[    3.314186] Key type encrypted registered
[    3.317102] AppArmor: AppArmor sha1 policy hashing enabled
[    3.317590]   Magic number: 10:764:215
[    3.317626] event_source software: hash matches
[    3.317700] rtc_cmos 00:06: setting system clock to 2014-04-13 06:12:47 UTC (1397369567)
[    3.347042] isapnp: No Plug & Play device found
[    3.347254] scsi 0:0:0:0: Direct-Access     ATA      TOSHIBA MK8009GA BS01 PQ: 0 ANSI: 5
[    3.347451] sd 0:0:0:0: [sda] 156301488 512-byte logical blocks: (80.0 GB/74.5 GiB)
[    3.347492] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    3.347525] sd 0:0:0:0: [sda] Write Protect is off
[    3.347531] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    3.347564] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    3.412146] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[    3.412150] EDD information not available.
[    3.430702]  sda: sda1 sda2 sda3 < sda5 > sda4
[    3.431456] sd 0:0:0:0: [sda] Attached SCSI disk
[    3.431957] Freeing unused kernel memory: 900K (c1a7e000 - c1b5f000)
[    3.432059] Write protecting the kernel text: 6684k
[    3.432260] Write protecting the kernel read-only data: 3444k
[    3.432262] NX-protecting the kernel data: 5604k
[    3.460257] udevd[105]: starting version 175
[    3.531257] [Firmware Bug]: ACPI: No _BQC method, cannot determine initial brightness
[    3.556955] acpi device:04: registered as cooling_device2
[    3.556998] ACPI: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
[    3.557072] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:00/input/input2
[    3.558204] sky2: driver version 1.30
[    3.558360] sky2 0000:02:00.0: Yukon-2 EC chip revision 2
[    3.558431] sky2 0000:02:00.0: irq 42 for MSI/MSI-X
[    3.599578] sky2 0000:02:00.0 eth0: addr 00:02:3f:fe:0e:e3
[    3.610252] [drm] Initialized drm 1.1.0 20060810
[    3.619750] sdhci: Secure Digital Host Controller Interface driver
[    3.619754] sdhci: Copyright(c) Pierre Ossman
[    3.633266] sdhci-pci 0000:08:04.1: SDHCI controller found [1180:0822] (rev 18)
[    3.634416] sdhci-pci 0000:08:04.1: Will use DMA mode even though HW doesn't fully claim to support it.
[    3.634426] mmc0: no vqmmc regulator found
[    3.634429] mmc0: no vmmc regulator found
[    3.635436] sdhci-pci 0000:08:04.1: Will use DMA mode even though HW doesn't fully claim to support it.
[    3.635535] mmc0: SDHCI controller on PCI [0000:08:04.1] using DMA
[    3.678815] [drm] Memory usable by graphics device = 256M
[    3.678827] i915 0000:00:02.0: setting latency timer to 64
[    3.679143] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
[    3.679146] [drm] Driver supports precise vblank timestamp query.
[    3.679223] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
[    3.763288] [drm] initialized overlay support
[    3.964060] usb 6-1: new full-speed USB device number 2 using uhci_hcd
[    4.126823] usb 6-1: New USB device found, idVendor=1410, idProduct=2420
[    4.126834] usb 6-1: New USB device strings: Mfr=1, Product=2, SerialNumber=2
[    4.126841] usb 6-1: Product: Novatel Wireless HSDPA Modem
[    4.126846] usb 6-1: Manufacturer: Novatel Wireless
[    4.126852] usb 6-1: SerialNumber: Novatel Wireless HSDPA Modem
[    4.222109] fbcon: inteldrmfb (fb0) is primary device
[    4.269754] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input3
[    4.516696] Console: switching to colour frame buffer device 128x48
[    4.521289] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
[    4.521293] i915 0000:00:02.0: registered panic notifier
[    4.521303] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
[   10.217770] EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null)
[   11.752174] init: ureadahead main process (290) terminated with status 5
[   14.200106] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[   14.519891] udevd[364]: starting version 175
[   15.681880] lp: driver loaded but no devices found
[   15.977704] EXT4-fs (sda2): re-mounted. Opts: errors=remount-ro
[   17.204854] EXT4-fs (sda5): mounted filesystem with ordered data mode. Opts: (null)
[   17.246226] intel_rng: FWH not detected
[   17.342687] NET: Registered protocol family 23
[   17.616672] cfg80211: Calling CRDA to update world regulatory domain
[   18.134072] yenta_cardbus 0000:08:04.0: CardBus bridge found [14c0:0012]
[   18.146467] ACPI Warning: 0x00001028-0x0000102f SystemIO conflicts with Region \PMIO 1 (20130517/utaddress-251)
[   18.146478] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   18.146484] ACPI Warning: 0x000011b0-0x000011bf SystemIO conflicts with Region \GPIO 1 (20130517/utaddress-251)
[   18.146491] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   18.146494] ACPI Warning: 0x00001180-0x000011af SystemIO conflicts with Region \GPIO 1 (20130517/utaddress-251)
[   18.146500] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   18.146503] lpc_ich: Resource conflict(s) found affecting gpio_ich
[   18.264845] yenta_cardbus 0000:08:04.0: ISA IRQ mask 0x0cb8, PCI irq 16
[   18.264854] yenta_cardbus 0000:08:04.0: Socket status: 30000006
[   18.264860] pci_bus 0000:08: Raising subordinate bus# of parent bus (#08) from #09 to #0c
[   18.264874] yenta_cardbus 0000:08:04.0: pcmcia: parent PCI bridge window: [io  0x4000-0x4fff]
[   18.264879] pcmcia_socket pcmcia_socket0: cs: IO port probe 0x4000-0x4fff:
[   18.266445]  excluding 0x4000-0x40ff 0x4400-0x44ff
[   18.271884] yenta_cardbus 0000:08:04.0: pcmcia: parent PCI bridge window: [mem 0xdc000000-0xdc0fffff]
[   18.271889] pcmcia_socket pcmcia_socket0: cs: memory probe 0xdc000000-0xdc0fffff:
[   18.271894]  excluding 0xdc000000-0xdc00ffff
[   18.271914] yenta_cardbus 0000:08:04.0: pcmcia: parent PCI bridge window: [mem 0x80000000-0x83ffffff pref]
[   18.271918] pcmcia_socket pcmcia_socket0: cs: memory probe 0x80000000-0x83ffffff:
[   18.271938]  excluding 0x80000000-0x83ffffff
[   18.355151] found SMC SuperIO Chip (devid=0x7a rev=01 base=0x002e): LPC47N227
[   18.355178] smsc_superio_flat(): fir: 0x7e8, sir: 0x3e8, dma: 03, irq: 4, mode: 0x0e
[   18.355195] smsc_ircc_present(), addr 0x07e8 - no device found!
[   18.616308] leds_ss4200: no LED devices found
[   18.843800] usbcore: registered new interface driver usbserial
[   18.843827] usbcore: registered new interface driver usbserial_generic
[   18.843855] usbserial: USB Serial support registered for generic
[   18.894607] pcmcia_socket pcmcia_socket0: cs: IO port probe 0x100-0x3af:
[   18.895802]  excluding 0x170-0x177 0x1f0-0x1f7 0x238-0x23f 0x370-0x377
[   18.896719] pcmcia_socket pcmcia_socket0: cs: IO port probe 0x3e0-0x4ff:
[   18.897167]  excluding 0x3f0-0x3f7 0x4d0-0x4d7
[   18.897590] pcmcia_socket pcmcia_socket0: cs: IO port probe 0x820-0x8ff:
[   18.898279]  clean.
[   18.898306] pcmcia_socket pcmcia_socket0: cs: IO port probe 0xc00-0xcf7:
[   18.899068]  clean.
[   18.899099] pcmcia_socket pcmcia_socket0: cs: memory probe 0x0c0000-0x0fffff:
[   18.899108]  excluding 0xc0000-0xcffff 0xdc000-0xfffff
[   18.899151] pcmcia_socket pcmcia_socket0: cs: memory probe 0xa0000000-0xa0ffffff:
[   18.899174]  clean.
[   18.899201] pcmcia_socket pcmcia_socket0: cs: memory probe 0x60000000-0x60ffffff:
[   18.899220]  excluding 0x60000000-0x60ffffff
[   18.899249] pcmcia_socket pcmcia_socket0: cs: IO port probe 0xa00-0xaff:
[   18.900056]  clean.
[   19.096059] usbcore: registered new interface driver option
[   19.096825] usbserial: USB Serial support registered for GSM modem (1-port)
[   19.097521] option 6-1:1.0: GSM modem (1-port) converter detected
[   19.097804] usb 6-1: GSM modem (1-port) converter now attached to ttyUSB0
[   19.097861] option 6-1:1.1: GSM modem (1-port) converter detected
[   19.098084] usb 6-1: GSM modem (1-port) converter now attached to ttyUSB1
[   19.230965] iwl3945: Intel(R) PRO/Wireless 3945ABG/BG Network Connection driver for Linux, in-tree:s
[   19.230971] iwl3945: Copyright(c) 2003-2011 Intel Corporation
[   19.231025] iwl3945 0000:03:00.0: can't disable ASPM; OS doesn't have ASPM control
[   19.271343] iwl3945 0000:03:00.0: Tunable channels: 13 802.11bg, 23 802.11a channels
[   19.271349] iwl3945 0000:03:00.0: Detected Intel Wireless WiFi Link 3945ABG
[   19.271426] iwl3945 0000:03:00.0: irq 43 for MSI/MSI-X
[   19.803201] ieee80211 phy0: Selected rate control algorithm 'iwl-3945-rs'
[   20.113171] snd_hda_intel 0000:00:1b.0: irq 44 for MSI/MSI-X
[   20.229870] autoconfig: line_outs=1 (0xd/0x0/0x0/0x0/0x0) type:line
[   20.229876]    speaker_outs=1 (0xf/0x0/0x0/0x0/0x0)
[   20.229879]    hp_outs=1 (0xa/0x0/0x0/0x0/0x0)
[   20.229882]    mono: mono_out=0x0
[   20.229884]    inputs:
[   20.229887]      Dock Mic=0xc
[   20.229890]      Internal Mic=0xe
[   20.229893]      Internal Mic=0x15
[   20.229896]      Mic=0xb
[   20.602346] cfg80211: World regulatory domain updated:
[   20.602353] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[   20.602357] cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   20.602361] cfg80211:   (2457000 KHz - 2482000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[   20.602365] cfg80211:   (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[   20.602368] cfg80211:   (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   20.602371] cfg80211:   (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   21.349599] type=1400 audit(1397362385.530:2): apparmor="STATUS" operation="profile_load" parent=668 profile="unconfined" name="/sbin/dhclient" pid=669 comm="apparmor_parser"
[   21.349612] type=1400 audit(1397362385.530:3): apparmor="STATUS" operation="profile_load" parent=668 profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=669 comm="apparmor_parser"
[   21.349622] type=1400 audit(1397362385.530:4): apparmor="STATUS" operation="profile_load" parent=668 profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=669 comm="apparmor_parser"
[   21.349643] type=1400 audit(1397362385.530:5): apparmor="STATUS" operation="profile_replace" parent=731 profile="unconfined" name="/sbin/dhclient" pid=732 comm="apparmor_parser"
[   21.349656] type=1400 audit(1397362385.530:6): apparmor="STATUS" operation="profile_replace" parent=731 profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=732 comm="apparmor_parser"
[   21.349665] type=1400 audit(1397362385.530:7): apparmor="STATUS" operation="profile_replace" parent=731 profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=732 comm="apparmor_parser"
[   21.350698] type=1400 audit(1397362385.530:8): apparmor="STATUS" operation="profile_replace" parent=731 profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=732 comm="apparmor_parser"
[   21.350707] type=1400 audit(1397362385.530:9): apparmor="STATUS" operation="profile_replace" parent=731 profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=732 comm="apparmor_parser"
[   21.351000] type=1400 audit(1397362385.530:10): apparmor="STATUS" operation="profile_replace" parent=668 profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=669 comm="apparmor_parser"
[   21.351010] type=1400 audit(1397362385.530:11): apparmor="STATUS" operation="profile_replace" parent=668 profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=669 comm="apparmor_parser"
[   22.055767] init: failsafe main process (749) killed by TERM signal
[   22.248246] input: HDA Intel Front Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input4
[   22.248528] input: HDA Intel Dock Line Out as /devices/pci0000:00/0000:00:1b.0/sound/card0/input5
[   22.248723] input: HDA Intel Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input6
[   22.248884] input: HDA Intel Dock Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input7
[   23.431063] ppdev: user-space parallel port driver
[   24.798683] Bluetooth: Core ver 2.16
[   24.798724] NET: Registered protocol family 31
[   24.798727] Bluetooth: HCI device and connection manager initialized
[   24.799413] Bluetooth: HCI socket layer initialized
[   24.799420] Bluetooth: L2CAP socket layer initialized
[   24.799433] Bluetooth: SCO socket layer initialized
[   24.940151] Bluetooth: RFCOMM TTY layer initialized
[   24.940169] Bluetooth: RFCOMM socket layer initialized
[   24.940172] Bluetooth: RFCOMM ver 1.11
[   25.354117] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[   25.354124] Bluetooth: BNEP filters: protocol multicast
[   25.354136] Bluetooth: BNEP socket layer initialized
[   26.677080] audit_printk_skb: 81 callbacks suppressed
[   26.677087] type=1400 audit(1397362390.858:39): apparmor="STATUS" operation="profile_load" parent=884 profile="unconfined" name="/usr/bin/evince" pid=898 comm="apparmor_parser"
[   26.677100] type=1400 audit(1397362390.858:40): apparmor="STATUS" operation="profile_load" parent=884 profile="unconfined" name="launchpad_integration" pid=898 comm="apparmor_parser"
[   26.677109] type=1400 audit(1397362390.858:41): apparmor="STATUS" operation="profile_load" parent=884 profile="unconfined" name="sanitized_helper" pid=898 comm="apparmor_parser"
[   26.677118] type=1400 audit(1397362390.858:42): apparmor="STATUS" operation="profile_load" parent=884 profile="unconfined" name="/usr/bin/evince-previewer" pid=898 comm="apparmor_parser"
[   26.677126] type=1400 audit(1397362390.858:43): apparmor="STATUS" operation="profile_load" parent=884 profile="unconfined" name="launchpad_integration" pid=898 comm="apparmor_parser"
[   26.677136] type=1400 audit(1397362390.858:44): apparmor="STATUS" operation="profile_load" parent=884 profile="unconfined" name="sanitized_helper" pid=898 comm="apparmor_parser"
[   26.677145] type=1400 audit(1397362390.858:45): apparmor="STATUS" operation="profile_load" parent=884 profile="unconfined" name="/usr/bin/evince-thumbnailer" pid=898 comm="apparmor_parser"
[   26.677154] type=1400 audit(1397362390.858:46): apparmor="STATUS" operation="profile_load" parent=884 profile="unconfined" name="sanitized_helper" pid=898 comm="apparmor_parser"
[   26.691632] type=1400 audit(1397362390.870:47): apparmor="STATUS" operation="profile_replace" parent=884 profile="unconfined" name="launchpad_integration" pid=898 comm="apparmor_parser"
[   26.691648] type=1400 audit(1397362390.870:48): apparmor="STATUS" operation="profile_replace" parent=884 profile="unconfined" name="sanitized_helper" pid=898 comm="apparmor_parser"
[   33.027268] sky2 0000:02:00.0 eth0: enabling interface
[   33.027364] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[   33.028109] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[   33.341765] iwl3945 0000:03:00.0: loaded firmware version 15.32.2.9
[   33.415203] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[   33.415657] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[   34.700109] bio: create slab <bio-1> at 1
[   36.511800] Adding 1999868k swap on /dev/mapper/cryptswap1.  Priority:-1 extents:1 across:1999868k FS
[   40.788681] wlan0: authenticate with c0:3f:22:0e:21:88
[   40.790809] wlan0: send auth to c0:3f:22:0e:21:88 (try 1/3)
[   40.792618] wlan0: authenticated
[   40.796070] wlan0: associate with c0:3f:22:0e:21:88 (try 1/3)
[   40.798653] wlan0: RX AssocResp from c0:3f:22:0e:21:88 (capab=0x411 status=0 aid=1)
[   40.799818] wlan0: associated
[   40.799853] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
           CPU0       CPU1       
  0:      11851          0   IO-APIC-edge      timer
  1:         48          0   IO-APIC-edge      i8042
  5:       3101          0   IO-APIC-edge      serial
  8:          1          0   IO-APIC-edge      rtc0
  9:        357          0   IO-APIC-fasteoi   acpi
 14:       8797          0   IO-APIC-edge      ata_piix
 15:          0          0   IO-APIC-edge      ata_piix
 16:       1691          0   IO-APIC-fasteoi   uhci_hcd:usb8, i915, yenta
 18:          0          0   IO-APIC-fasteoi   uhci_hcd:usb7, mmc0
 19:        321          0   IO-APIC-fasteoi   uhci_hcd:usb6
 20:          0          0   IO-APIC-fasteoi   ohci_hcd:usb3
 21:          0          0   IO-APIC-fasteoi   ohci_hcd:usb4
 22:          0          0   IO-APIC-fasteoi   ehci_hcd:usb2
 23:          2          0   IO-APIC-fasteoi   ehci_hcd:usb1, uhci_hcd:usb5
 42:          1          0   PCI-MSI-edge      eth0
 43:        755       2280   PCI-MSI-edge      iwl3945
 44:        175          0   PCI-MSI-edge      snd_hda_intel
NMI:         15         12   Non-maskable interrupts
LOC:       5773      10780   Local timer interrupts
SPU:          0          0   Spurious interrupts
PMI:         15         12   Performance monitoring interrupts
IWI:       2291       1597   IRQ work interrupts
RTR:          0          0   APIC ICR read retries
RES:      16297      21708   Rescheduling interrupts
CAL:        186        271   Function call interrupts
TLB:        378        415   TLB shootdowns
TRM:          0          0   Thermal event interrupts
THR:          0          0   Threshold APIC interrupts
MCE:          0          0   Machine check exceptions
MCP:          1          1   Machine check polls
ERR:          0
MIS:          0