ubuntuusers.de

dmesg

Datum:
26. Juli 2011 14:43
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
[    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 - 000000000009fc00 (usable)
[    0.000000]  BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved)
[    0.000000]  BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved)
[    0.000000]  BIOS-e820: 0000000000100000 - 000000007f7d0000 (usable)
[    0.000000]  BIOS-e820: 000000007f7d0000 - 000000007f7e5600 (reserved)
[    0.000000]  BIOS-e820: 000000007f7e5600 - 000000007f7f8000 (ACPI NVS)
[    0.000000]  BIOS-e820: 000000007f7f8000 - 000000007f800000 (reserved)
[    0.000000]  BIOS-e820: 00000000fec00000 - 00000000fec01000 (reserved)
[    0.000000]  BIOS-e820: 00000000fed20000 - 00000000fed9b000 (reserved)
[    0.000000]  BIOS-e820: 00000000feda0000 - 00000000fedc0000 (reserved)
[    0.000000]  BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved)
[    0.000000]  BIOS-e820: 00000000ffb00000 - 00000000ffc00000 (reserved)
[    0.000000]  BIOS-e820: 00000000fff00000 - 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 2.4 present.
[    0.000000] DMI: Hewlett-Packard HP Compaq nx7400 (RH402ET#ABD)/30A2, BIOS 68YGU Ver. F.08 10/23/2006
[    0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
[    0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
[    0.000000] last_pfn = 0x7f7d0 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-EFFFF uncachable
[    0.000000]   F0000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 000000000 mask F80000000 write-back
[    0.000000]   1 base F7F800000 mask FFF800000 uncachable
[    0.000000]   2 base 0FEDA0000 mask FFFFE0000 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] 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 000f7ad0 00024 (v02 HP    )
[    0.000000] ACPI: XSDT 7f7e57bc 00064 (v01 HPQOEM SLIC-MPC 00000001 HP   00000001)
[    0.000000] ACPI: FACP 7f7e5684 000F4 (v04 HP     30A2     00000003 HP   00000001)
[    0.000000] ACPI: DSDT 7f7e5aa8 0F3A6 (v01 HP       nx7400 00010000 MSFT 0100000E)
[    0.000000] ACPI: FACS 7f7f7e80 00040
[    0.000000] ACPI: SLIC 7f7e5820 00176 (v01 HPQOEM SLIC-MPC 00000001 HP   00000001)
[    0.000000] ACPI: HPET 7f7e5998 00038 (v01 HP     30A2     00000001 HP   00000001)
[    0.000000] ACPI: APIC 7f7e59d0 00068 (v01 HP     30A2     00000001 HP   00000001)
[    0.000000] ACPI: MCFG 7f7e5a38 0003C (v01 HP     30A2     00000001 HP   00000001)
[    0.000000] ACPI: TCPA 7f7e5a74 00032 (v02 HP     30A2     00000001 HP   00000001)
[    0.000000] ACPI: SSDT 7f7f4e4e 0033A (v01 HP       HPQPAT 00000001 MSFT 0100000E)
[    0.000000] ACPI: SSDT 7f7f5619 004E7 (v01 HP        CpuPm 00003000 INTL 20060317)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] 1151MB 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 -> 0x0007f7d0
[    0.000000] Movable zone start PFN for each node
[    0.000000] early_node_map[2] active PFN ranges
[    0.000000]     0: 0x00000010 -> 0x0000009f
[    0.000000]     0: 0x00000100 -> 0x0007f7d0
[    0.000000] On node 0 totalpages: 522079
[    0.000000] free_area_init_node: node 0, pgdat c1784140, node_mem_map f577c200
[    0.000000]   DMA zone: 32 pages used for memmap
[    0.000000]   DMA zone: 0 pages reserved
[    0.000000]   DMA zone: 3951 pages, LIFO batch:0
[    0.000000]   Normal zone: 1744 pages used for memmap
[    0.000000]   Normal zone: 221486 pages, LIFO batch:31
[    0.000000]   HighMem zone: 2304 pages used for memmap
[    0.000000]   HighMem zone: 292562 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[0x01] lapic_id[0x00] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[    0.000000] ACPI: 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] SMP: Allowing 2 CPUs, 0 hotplug CPUs
[    0.000000] nr_irqs_gsi: 40
[    0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
[    0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000
[    0.000000] PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
[    0.000000] Allocating PCI resources starting at 7f800000 (gap: 7f800000:7f400000)
[    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 @f5000000 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: 517999
[    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-2.6.38-10-generic root=UUID=186c417e-0d9b-4d78-96ec-be802b87f94e 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 10443520 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:0007f7d0)
[    0.000000] Memory: 2038928k/2088768k available (5190k kernel code, 49388k reserved, 2539k data, 700k init, 1179464k 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=f4008000 soft=f400a000
[    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 using PIT
[    0.000000] Detected 1828.795 MHz processor.
[    0.004004] Calibrating delay loop (skipped), value calculated using timer frequency.. 3657.59 BogoMIPS (lpj=7315180)
[    0.004010] pid_max: default: 32768 minimum: 301
[    0.004036] Security Framework initialized
[    0.004054] AppArmor: AppArmor initialized
[    0.004057] Yama: becoming mindful.
[    0.004124] Mount-cache hash table entries: 512
[    0.004282] Initializing cgroup subsys ns
[    0.004287] ns_cgroup deprecated: consider using the 'clone_children' flag without the ns_cgroup.
[    0.004290] Initializing cgroup subsys cpuacct
[    0.004296] Initializing cgroup subsys memory
[    0.004305] Initializing cgroup subsys devices
[    0.004308] Initializing cgroup subsys freezer
[    0.004311] Initializing cgroup subsys net_cls
[    0.004314] Initializing cgroup subsys blkio
[    0.004356] CPU: Physical Processor ID: 0
[    0.004358] CPU: Processor Core ID: 0
[    0.004362] mce: CPU supports 6 MCE banks
[    0.004371] CPU0: Thermal monitoring handled by SMI
[    0.004376] using mwait in idle threads.
[    0.010486] ACPI: Core revision 20110112
[    0.020015] ftrace: allocating 23648 entries in 47 pages
[    0.024065] Enabling APIC mode:  Flat.  Using 1 I/O APICs
[    0.024450] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.065203] CPU0: Intel(R) Core(TM)2 CPU         T5600  @ 1.83GHz stepping 06
[    0.068003] Performance Events: PEBS fmt0-, Core2 events, Intel PMU driver.
[    0.068003] PEBS disabled due to CPU errata.
[    0.068003] ... version:                2
[    0.068003] ... bit width:              40
[    0.068003] ... generic registers:      2
[    0.068003] ... value mask:             000000ffffffffff
[    0.068003] ... max period:             000000007fffffff
[    0.068003] ... fixed-purpose events:   3
[    0.068003] ... event mask:             0000000700000003
[    0.068003] CPU 1 irqstacks, hard=f40ca000 soft=f40cc000
[    0.068003] Booting Node   0, Processors  #1 Ok.
[    0.008000] Initializing CPU#1
[    0.008000] CPU1: Thermal monitoring handled by SMI
[    0.156028] Brought up 2 CPUs
[    0.156033] Total of 2 processors activated (7315.13 BogoMIPS).
[    0.157094] devtmpfs: initialized
[    0.157094] HP Compaq Laptop series board detected. Selecting BIOS-method for reboots.
[    0.157377] print_constraints: dummy: 
[    0.157413] Time: 12:12:36  Date: 07/26/11
[    0.157462] NET: Registered protocol family 16
[    0.157499] Trying to unpack rootfs image as initramfs...
[    0.157617] EISA bus registered
[    0.157627] ACPI: bus type pci registered
[    0.157716] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
[    0.157720] PCI: not using MMCONFIG
[    0.160449] PCI: PCI BIOS revision 2.10 entry at 0xf0322, last bus=32
[    0.160452] PCI: Using configuration type 1 for base access
[    0.161760] bio: create slab <bio-0> at 0
[    0.164202] ACPI: EC: Look up EC in DSDT
[    0.203739] ACPI: SSDT 7f7f5211 001A8 (v01 HP      Cpu0Ist 00003000 INTL 20060317)
[    0.204319] ACPI: Dynamic OEM Table Load:
[    0.204323] ACPI: SSDT   (null) 001A8 (v01 HP      Cpu0Ist 00003000 INTL 20060317)
[    0.204468] ACPI: SSDT 7f7f543e 001DB (v01 HP      Cpu0Cst 00003001 INTL 20060317)
[    0.205011] ACPI: Dynamic OEM Table Load:
[    0.205015] ACPI: SSDT   (null) 001DB (v01 HP      Cpu0Cst 00003001 INTL 20060317)
[    0.205324] ACPI: SSDT 7f7f5188 00089 (v01 HP      Cpu1Ist 00003000 INTL 20060317)
[    0.205874] ACPI: Dynamic OEM Table Load:
[    0.205879] ACPI: SSDT   (null) 00089 (v01 HP      Cpu1Ist 00003000 INTL 20060317)
[    0.206011] ACPI: SSDT 7f7f53b9 00085 (v01 HP      Cpu1Cst 00003000 INTL 20060317)
[    0.206555] ACPI: Dynamic OEM Table Load:
[    0.206559] ACPI: SSDT   (null) 00085 (v01 HP      Cpu1Cst 00003000 INTL 20060317)
[    0.224190] ACPI: Interpreter enabled
[    0.224202] ACPI: (supports S0 S3 S4 S5)
[    0.224230] ACPI: Using IOAPIC for interrupt routing
[    0.224273] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
[    0.224990] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in ACPI motherboard resources
[    0.224993] PCI: Using MMCONFIG for extended config space
[    0.225491] [Firmware Bug]: ACPI: No _BQC method, cannot determine initial brightness
[    0.228411] ACPI: Power Resource [C1FB] (on)
[    0.264391] ACPI: Power Resource [C218] (on)
[    0.268078] ACPI: Power Resource [C221] (off)
[    0.270439] ACPI: Power Resource [C314] (off)
[    0.270524] ACPI: Power Resource [C315] (off)
[    0.270612] ACPI: Power Resource [C316] (off)
[    0.270696] ACPI: Power Resource [C317] (off)
[    0.271498] ACPI: EC: GPE = 0x16, I/O: command/status = 0x66, data = 0x62
[    0.271786] ACPI: No dock devices found.
[    0.271790] HEST: Table not found.
[    0.271795] PCI: Ignoring host bridge windows from ACPI; if necessary, use "pci=use_crs" and report a bug
[    0.275874] ACPI: PCI Root Bridge [C002] (domain 0000 [bus 00-ff])
[    0.284081] pci_root PNP0A08:00: host bridge window [io  0x0000-0x0cf7] (ignored)
[    0.284086] pci_root PNP0A08:00: host bridge window [io  0x0d00-0xffff] (ignored)
[    0.284089] pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff] (ignored)
[    0.284093] pci_root PNP0A08:00: host bridge window [mem 0x7f800000-0xfedfffff] (ignored)
[    0.284096] pci_root PNP0A08:00: host bridge window [mem 0xfee01000-0xffffffff] (ignored)
[    0.284099] pci_root PNP0A08:00: host bridge window [mem 0x000d0000-0x000dffff] (ignored)
[    0.284115] pci 0000:00:00.0: [8086:27a0] type 0 class 0x000600
[    0.284174] pci 0000:00:02.0: [8086:27a2] type 0 class 0x000300
[    0.284189] pci 0000:00:02.0: reg 10: [mem 0xf4400000-0xf447ffff]
[    0.284198] pci 0000:00:02.0: reg 14: [io  0x4000-0x4007]
[    0.284207] pci 0000:00:02.0: reg 18: [mem 0xe0000000-0xefffffff pref]
[    0.284215] pci 0000:00:02.0: reg 1c: [mem 0xf4480000-0xf44bffff]
[    0.284261] pci 0000:00:02.1: [8086:27a6] type 0 class 0x000380
[    0.284273] pci 0000:00:02.1: reg 10: [mem 0xf4500000-0xf457ffff]
[    0.284391] pci 0000:00:1b.0: [8086:27d8] type 0 class 0x000403
[    0.284417] pci 0000:00:1b.0: reg 10: [mem 0xf4580000-0xf4583fff 64bit]
[    0.284509] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    0.284515] pci 0000:00:1b.0: PME# disabled
[    0.284549] pci 0000:00:1c.0: [8086:27d0] type 1 class 0x000604
[    0.284645] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.284651] pci 0000:00:1c.0: PME# disabled
[    0.284686] pci 0000:00:1c.1: [8086:27d2] type 1 class 0x000604
[    0.284781] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[    0.284787] pci 0000:00:1c.1: PME# disabled
[    0.284824] pci 0000:00:1c.3: [8086:27d6] type 1 class 0x000604
[    0.284919] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
[    0.284925] pci 0000:00:1c.3: PME# disabled
[    0.284964] pci 0000:00:1d.0: [8086:27c8] type 0 class 0x000c03
[    0.285026] pci 0000:00:1d.0: reg 20: [io  0x4020-0x403f]
[    0.285070] pci 0000:00:1d.1: [8086:27c9] type 0 class 0x000c03
[    0.285132] pci 0000:00:1d.1: reg 20: [io  0x4040-0x405f]
[    0.285177] pci 0000:00:1d.2: [8086:27ca] type 0 class 0x000c03
[    0.285241] pci 0000:00:1d.2: reg 20: [io  0x4060-0x407f]
[    0.285285] pci 0000:00:1d.3: [8086:27cb] type 0 class 0x000c03
[    0.285348] pci 0000:00:1d.3: reg 20: [io  0x4080-0x409f]
[    0.285405] pci 0000:00:1d.7: [8086:27cc] type 0 class 0x000c03
[    0.285433] pci 0000:00:1d.7: reg 10: [mem 0xf4584000-0xf45843ff]
[    0.285534] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
[    0.285541] pci 0000:00:1d.7: PME# disabled
[    0.285568] pci 0000:00:1e.0: [8086:2448] type 1 class 0x000604
[    0.285666] pci 0000:00:1f.0: [8086:27b9] type 0 class 0x000601
[    0.285790] pci 0000:00:1f.0: quirk: [io  0x1000-0x107f] claimed by ICH6 ACPI/GPIO/TCO
[    0.285797] pci 0000:00:1f.0: quirk: [io  0x1100-0x113f] claimed by ICH6 GPIO
[    0.285803] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 1 PIO at 0500 (mask 007f)
[    0.285812] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 4 PIO at 0238 (mask 0007)
[    0.285864] pci 0000:00:1f.2: [8086:27c4] type 0 class 0x000101
[    0.285888] pci 0000:00:1f.2: reg 10: [io  0x0000-0x0007]
[    0.285902] pci 0000:00:1f.2: reg 14: [io  0x0000-0x0003]
[    0.285917] pci 0000:00:1f.2: reg 18: [io  0x0000-0x0007]
[    0.285930] pci 0000:00:1f.2: reg 1c: [io  0x0000-0x0003]
[    0.285944] pci 0000:00:1f.2: reg 20: [io  0x40a0-0x40af]
[    0.285994] pci 0000:00:1f.2: PME# supported from D3hot
[    0.286000] pci 0000:00:1f.2: PME# disabled
[    0.286083] pci 0000:00:1c.0: PCI bridge to [bus 08-08]
[    0.286089] pci 0000:00:1c.0:   bridge window [io  0xf000-0x0000] (disabled)
[    0.286095] pci 0000:00:1c.0:   bridge window [mem 0xfff00000-0x000fffff] (disabled)
[    0.286105] pci 0000:00:1c.0:   bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
[    0.286235] pci 0000:10:00.0: [8086:4222] type 0 class 0x000280
[    0.286293] pci 0000:10:00.0: reg 10: [mem 0xf4000000-0xf4000fff]
[    0.286646] pci 0000:10:00.0: PME# supported from D0 D3hot D3cold
[    0.286659] pci 0000:10:00.0: PME# disabled
[    0.286733] pci 0000:10:00.0: disabling ASPM on pre-1.1 PCIe device.  You can enable it with 'pcie_aspm=force'
[    0.286763] pci 0000:00:1c.1: PCI bridge to [bus 10-10]
[    0.286769] pci 0000:00:1c.1:   bridge window [io  0xf000-0x0000] (disabled)
[    0.286775] pci 0000:00:1c.1:   bridge window [mem 0xf4000000-0xf40fffff]
[    0.286785] pci 0000:00:1c.1:   bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
[    0.286853] pci 0000:00:1c.3: PCI bridge to [bus 20-20]
[    0.286859] pci 0000:00:1c.3:   bridge window [io  0x2000-0x3fff]
[    0.286865] pci 0000:00:1c.3:   bridge window [mem 0xf0000000-0xf3ffffff]
[    0.286874] pci 0000:00:1c.3:   bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
[    0.286940] pci 0000:02:06.0: [104c:8039] type 2 class 0x000607
[    0.286969] pci 0000:02:06.0: reg 10: [mem 0xf4100000-0xf4100fff]
[    0.287001] pci 0000:02:06.0: supports D1 D2
[    0.287003] pci 0000:02:06.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.287010] pci 0000:02:06.0: PME# disabled
[    0.287039] pci 0000:02:06.1: [104c:803a] type 0 class 0x000c00
[    0.287068] pci 0000:02:06.1: reg 10: [mem 0xf4101000-0xf41017ff]
[    0.287085] pci 0000:02:06.1: reg 14: [mem 0xf4104000-0xf4107fff]
[    0.287184] pci 0000:02:06.1: supports D1 D2
[    0.287187] pci 0000:02:06.1: PME# supported from D0 D1 D2 D3hot
[    0.287193] pci 0000:02:06.1: PME# disabled
[    0.287244] pci 0000:02:0e.0: [14e4:170c] type 0 class 0x000200
[    0.287268] pci 0000:02:0e.0: reg 10: [mem 0xf4108000-0xf4109fff]
[    0.287361] pci 0000:02:0e.0: supports D1 D2
[    0.287364] pci 0000:02:0e.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.287370] pci 0000:02:0e.0: PME# disabled
[    0.287414] pci 0000:00:1e.0: PCI bridge to [bus 02-03] (subtractive decode)
[    0.287421] pci 0000:00:1e.0:   bridge window [io  0xf000-0x0000] (disabled)
[    0.287427] pci 0000:00:1e.0:   bridge window [mem 0xf4100000-0xf43fffff]
[    0.287436] pci 0000:00:1e.0:   bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
[    0.287440] pci 0000:00:1e.0:   bridge window [io  0x0000-0xffff] (subtractive decode)
[    0.287443] pci 0000:00:1e.0:   bridge window [mem 0x00000000-0xffffffff] (subtractive decode)
[    0.287504] pci_bus 0000:03: [bus 03-06] partially hidden behind transparent bridge 0000:02 [bus 02-03]
[    0.287536] pci_bus 0000:00: on NUMA node 0
[    0.287543] ACPI: PCI Interrupt Routing Table [\_SB_.C002._PRT]
[    0.287808] ACPI: PCI Interrupt Routing Table [\_SB_.C002.C093._PRT]
[    0.287945] ACPI: PCI Interrupt Routing Table [\_SB_.C002.C0FF._PRT]
[    0.288030] ACPI: PCI Interrupt Routing Table [\_SB_.C002.C10F._PRT]
[    0.288107] ACPI: PCI Interrupt Routing Table [\_SB_.C002.C115._PRT]
[    0.288226]  pci0000:00: Requesting ACPI _OSC control (0x1d)
[    0.305464] ACPI: PCI Interrupt Link [C10B] (IRQs *10 11)
[    0.305578] ACPI: PCI Interrupt Link [C10C] (IRQs 10 *11)
[    0.305686] ACPI: PCI Interrupt Link [C10D] (IRQs 10 *11)
[    0.305793] ACPI: PCI Interrupt Link [C10E] (IRQs *10 11)
[    0.305901] ACPI: PCI Interrupt Link [C127] (IRQs *10 11)
[    0.305999] ACPI: PCI Interrupt Link [C128] (IRQs 10 11) *0, disabled.
[    0.306099] ACPI: PCI Interrupt Link [C129] (IRQs 10 11) *0, disabled.
[    0.306148] ACPI Exception: AE_NOT_FOUND, Evaluating _PRS (20110112/pci_link-184)
[    0.306310] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
[    0.306328] vgaarb: loaded
[    0.306603] SCSI subsystem initialized
[    0.306686] libata version 3.00 loaded.
[    0.306750] usbcore: registered new interface driver usbfs
[    0.306765] usbcore: registered new interface driver hub
[    0.306800] usbcore: registered new device driver usb
[    0.307374] wmi: Mapper loaded
[    0.307376] PCI: Using ACPI for IRQ routing
[    0.308651] PCI: pci_cache_line_size set to 64 bytes
[    0.308766] reserve RAM buffer: 000000000009fc00 - 000000000009ffff 
[    0.308769] reserve RAM buffer: 000000007f7d0000 - 000000007fffffff 
[    0.308906] NetLabel: Initializing
[    0.308908] NetLabel:  domain hash size = 128
[    0.308910] NetLabel:  protocols = UNLABELED CIPSOv4
[    0.308924] NetLabel:  unlabeled traffic allowed by default
[    0.308968] HPET: 3 timers in total, 0 timers will be used for per-cpu timer
[    0.308976] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[    0.308982] hpet0: 3 comparators, 64-bit 14.318180 MHz counter
[    0.312087] Switching to clocksource hpet
[    0.315523] Switched to NOHz mode on CPU #0
[    0.315610] Switched to NOHz mode on CPU #1
[    0.322140] AppArmor: AppArmor Filesystem Enabled
[    0.322181] pnp: PnP ACPI init
[    0.322210] ACPI: bus type pnp registered
[    0.322349] pnp 00:00: [mem 0x00000000-0x0009ffff]
[    0.322352] pnp 00:00: [mem 0x000e0000-0x000fffff]
[    0.322355] pnp 00:00: [mem 0x00100000-0x7f7fffff]
[    0.322431] system 00:00: [mem 0x00000000-0x0009ffff] could not be reserved
[    0.322435] system 00:00: [mem 0x000e0000-0x000fffff] could not be reserved
[    0.322439] system 00:00: [mem 0x00100000-0x7f7fffff] could not be reserved
[    0.322445] system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
[    0.326535] pnp 00:01: [bus 00-ff]
[    0.326538] pnp 00:01: [io  0x0cf8-0x0cff]
[    0.326542] pnp 00:01: [io  0x0000-0x0cf7 window]
[    0.326544] pnp 00:01: [io  0x0d00-0xffff window]
[    0.326547] pnp 00:01: [mem 0x000a0000-0x000bffff window]
[    0.326551] pnp 00:01: [mem 0x7f800000-0xfedfffff window]
[    0.326554] pnp 00:01: [mem 0xfee01000-0xffffffff window]
[    0.326557] pnp 00:01: [mem 0x000d0000-0x000dffff window]
[    0.326677] pnp 00:01: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active)
[    0.327462] pnp 00:02: [io  0x0378-0x037f]
[    0.327465] pnp 00:02: [io  0x0778-0x077a]
[    0.327481] pnp 00:02: [irq 7]
[    0.327483] pnp 00:02: [dma 1]
[    0.327602] pnp 00:02: Plug and Play ACPI device, IDs PNP0401 (active)
[    0.327651] pnp 00:03: [io  0x00f0-0x00ff]
[    0.327659] pnp 00:03: [irq 13]
[    0.327700] pnp 00:03: Plug and Play ACPI device, IDs PNP0c04 (active)
[    0.327716] pnp 00:04: [io  0x0000-0x000f]
[    0.327718] pnp 00:04: [io  0x0080-0x008f]
[    0.327721] pnp 00:04: [io  0x00c0-0x00df]
[    0.327723] pnp 00:04: [dma 4]
[    0.327764] pnp 00:04: Plug and Play ACPI device, IDs PNP0200 (active)
[    0.327776] pnp 00:05: [io  0x0061]
[    0.327817] pnp 00:05: Plug and Play ACPI device, IDs PNP0800 (active)
[    0.327829] pnp 00:06: [io  0x0070-0x0071]
[    0.327831] pnp 00:06: [io  0x0072-0x0073]
[    0.327838] pnp 00:06: [irq 8]
[    0.327885] pnp 00:06: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.327967] pnp 00:07: [mem 0xfed00000-0xfed003ff]
[    0.328037] pnp 00:07: Plug and Play ACPI device, IDs PNP0103 (active)
[    0.328050] pnp 00:08: [io  0x0060]
[    0.328053] pnp 00:08: [io  0x0064]
[    0.328059] pnp 00:08: [irq 1]
[    0.328103] pnp 00:08: Plug and Play ACPI device, IDs PNP0303 (active)
[    0.328119] pnp 00:09: [irq 12]
[    0.328169] pnp 00:09: Plug and Play ACPI device, IDs SYN010d SYN0100 SYN0002 PNP0f13 (active)
[    0.328268] pnp 00:0a: [io  0x0010-0x001f]
[    0.328271] pnp 00:0a: [io  0x0024-0x003f]
[    0.328274] pnp 00:0a: [io  0x004e-0x004f]
[    0.328276] pnp 00:0a: [io  0x0050-0x0053]
[    0.328279] pnp 00:0a: [io  0x0063]
[    0.328281] pnp 00:0a: [io  0x0065]
[    0.328283] pnp 00:0a: [io  0x0067]
[    0.328286] pnp 00:0a: [io  0x0074-0x0077]
[    0.328288] pnp 00:0a: [io  0x0090-0x009f]
[    0.328291] pnp 00:0a: [io  0x00a4-0x00bd]
[    0.328293] pnp 00:0a: [io  0x0500-0x057f]
[    0.328296] pnp 00:0a: [io  0x0800-0x080f]
[    0.328299] pnp 00:0a: [mem 0xffb00000-0xffbfffff]
[    0.328301] pnp 00:0a: [mem 0xfff00000-0xffffffff]
[    0.328385] system 00:0a: [io  0x0500-0x057f] has been reserved
[    0.328389] system 00:0a: [io  0x0800-0x080f] has been reserved
[    0.328393] system 00:0a: [mem 0xffb00000-0xffbfffff] has been reserved
[    0.328397] system 00:0a: [mem 0xfff00000-0xffffffff] has been reserved
[    0.328401] system 00:0a: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.329135] pnp 00:0b: [io  0x04d0-0x04d1]
[    0.329138] pnp 00:0b: [io  0x1000-0x107f]
[    0.329141] pnp 00:0b: [io  0x1100-0x113f]
[    0.329143] pnp 00:0b: [io  0x1200-0x121f]
[    0.329146] pnp 00:0b: [mem 0xf8000000-0xfbffffff]
[    0.329149] pnp 00:0b: [mem 0xfec00000-0xfec000ff]
[    0.329151] pnp 00:0b: [mem 0xfed20000-0xfed3ffff]
[    0.329154] pnp 00:0b: [mem 0xfed45000-0xfed8ffff]
[    0.329157] pnp 00:0b: [mem 0xfed90000-0xfed9afff]
[    0.329256] system 00:0b: [io  0x04d0-0x04d1] has been reserved
[    0.329259] system 00:0b: [io  0x1000-0x107f] has been reserved
[    0.329263] system 00:0b: [io  0x1100-0x113f] has been reserved
[    0.329266] system 00:0b: [io  0x1200-0x121f] has been reserved
[    0.329270] system 00:0b: [mem 0xf8000000-0xfbffffff] has been reserved
[    0.329274] system 00:0b: [mem 0xfec00000-0xfec000ff] could not be reserved
[    0.329277] system 00:0b: [mem 0xfed20000-0xfed3ffff] has been reserved
[    0.329281] system 00:0b: [mem 0xfed45000-0xfed8ffff] has been reserved
[    0.329285] system 00:0b: [mem 0xfed90000-0xfed9afff] has been reserved
[    0.329289] system 00:0b: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.329533] pnp 00:0c: [mem 0xfeda0000-0xfedbffff]
[    0.329536] pnp 00:0c: [mem 0xfee00000-0xfee00fff]
[    0.329635] system 00:0c: [mem 0xfeda0000-0xfedbffff] has been reserved
[    0.329639] system 00:0c: [mem 0xfee00000-0xfee00fff] has been reserved
[    0.329643] system 00:0c: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.329661] pnp: PnP ACPI: found 13 devices
[    0.329663] ACPI: ACPI bus type pnp unregistered
[    0.329669] PnPBIOS: Disabled by ACPI PNP
[    0.366681] pci 0000:00:1e.0: BAR 15: assigned [mem 0x80000000-0x83ffffff pref]
[    0.366688] pci 0000:00:1c.0: BAR 14: assigned [mem 0x84000000-0x841fffff]
[    0.366693] pci 0000:00:1c.0: BAR 15: assigned [mem 0x84200000-0x843fffff 64bit pref]
[    0.366698] pci 0000:00:1c.1: BAR 15: assigned [mem 0x84400000-0x845fffff 64bit pref]
[    0.366702] pci 0000:00:1c.3: BAR 15: assigned [mem 0x84600000-0x847fffff 64bit pref]
[    0.366707] pci 0000:00:1c.0: BAR 13: assigned [io  0x5000-0x5fff]
[    0.366711] pci 0000:00:1c.1: BAR 13: assigned [io  0x6000-0x6fff]
[    0.366715] pci 0000:00:1e.0: BAR 13: assigned [io  0x7000-0x7fff]
[    0.366718] pci 0000:00:1c.0: PCI bridge to [bus 08-08]
[    0.366723] pci 0000:00:1c.0:   bridge window [io  0x5000-0x5fff]
[    0.366730] pci 0000:00:1c.0:   bridge window [mem 0x84000000-0x841fffff]
[    0.366736] pci 0000:00:1c.0:   bridge window [mem 0x84200000-0x843fffff 64bit pref]
[    0.366746] pci 0000:00:1c.1: PCI bridge to [bus 10-10]
[    0.366750] pci 0000:00:1c.1:   bridge window [io  0x6000-0x6fff]
[    0.366758] pci 0000:00:1c.1:   bridge window [mem 0xf4000000-0xf40fffff]
[    0.366764] pci 0000:00:1c.1:   bridge window [mem 0x84400000-0x845fffff 64bit pref]
[    0.366773] pci 0000:00:1c.3: PCI bridge to [bus 20-20]
[    0.366777] pci 0000:00:1c.3:   bridge window [io  0x2000-0x3fff]
[    0.366785] pci 0000:00:1c.3:   bridge window [mem 0xf0000000-0xf3ffffff]
[    0.366791] pci 0000:00:1c.3:   bridge window [mem 0x84600000-0x847fffff 64bit pref]
[    0.366801] pci 0000:02:06.0: BAR 15: assigned [mem 0x80000000-0x83ffffff pref]
[    0.366807] pci 0000:02:06.0: BAR 16: assigned [mem 0x88000000-0x8bffffff]
[    0.366810] pci 0000:02:06.0: BAR 13: assigned [io  0x7000-0x70ff]
[    0.366813] pci 0000:02:06.0: BAR 14: assigned [io  0x7400-0x74ff]
[    0.366816] pci 0000:02:06.0: CardBus bridge to [bus 03-06]
[    0.366819] pci 0000:02:06.0:   bridge window [io  0x7000-0x70ff]
[    0.366825] pci 0000:02:06.0:   bridge window [io  0x7400-0x74ff]
[    0.366832] pci 0000:02:06.0:   bridge window [mem 0x80000000-0x83ffffff pref]
[    0.366838] pci 0000:02:06.0:   bridge window [mem 0x88000000-0x8bffffff]
[    0.366845] pci 0000:00:1e.0: PCI bridge to [bus 02-03]
[    0.366849] pci 0000:00:1e.0:   bridge window [io  0x7000-0x7fff]
[    0.366856] pci 0000:00:1e.0:   bridge window [mem 0xf4100000-0xf43fffff]
[    0.366862] pci 0000:00:1e.0:   bridge window [mem 0x80000000-0x83ffffff pref]
[    0.366899] pci 0000:00:1c.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    0.366906] pci 0000:00:1c.0: setting latency timer to 64
[    0.366919] pci 0000:00:1c.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17
[    0.366925] pci 0000:00:1c.1: setting latency timer to 64
[    0.366938] pci 0000:00:1c.3: PCI INT D -> GSI 19 (level, low) -> IRQ 19
[    0.366943] pci 0000:00:1c.3: setting latency timer to 64
[    0.366955] pci 0000:00:1e.0: setting latency timer to 64
[    0.366969] pci 0000:02:06.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[    0.366977] pci_bus 0000:00: resource 0 [io  0x0000-0xffff]
[    0.366980] pci_bus 0000:00: resource 1 [mem 0x00000000-0xffffffff]
[    0.366984] pci_bus 0000:08: resource 0 [io  0x5000-0x5fff]
[    0.366987] pci_bus 0000:08: resource 1 [mem 0x84000000-0x841fffff]
[    0.366990] pci_bus 0000:08: resource 2 [mem 0x84200000-0x843fffff 64bit pref]
[    0.366993] pci_bus 0000:10: resource 0 [io  0x6000-0x6fff]
[    0.366996] pci_bus 0000:10: resource 1 [mem 0xf4000000-0xf40fffff]
[    0.366999] pci_bus 0000:10: resource 2 [mem 0x84400000-0x845fffff 64bit pref]
[    0.367003] pci_bus 0000:20: resource 0 [io  0x2000-0x3fff]
[    0.367006] pci_bus 0000:20: resource 1 [mem 0xf0000000-0xf3ffffff]
[    0.367009] pci_bus 0000:20: resource 2 [mem 0x84600000-0x847fffff 64bit pref]
[    0.367012] pci_bus 0000:02: resource 0 [io  0x7000-0x7fff]
[    0.367015] pci_bus 0000:02: resource 1 [mem 0xf4100000-0xf43fffff]
[    0.367018] pci_bus 0000:02: resource 2 [mem 0x80000000-0x83ffffff pref]
[    0.367021] pci_bus 0000:02: resource 4 [io  0x0000-0xffff]
[    0.367024] pci_bus 0000:02: resource 5 [mem 0x00000000-0xffffffff]
[    0.367027] pci_bus 0000:03: resource 0 [io  0x7000-0x70ff]
[    0.367030] pci_bus 0000:03: resource 1 [io  0x7400-0x74ff]
[    0.367033] pci_bus 0000:03: resource 2 [mem 0x80000000-0x83ffffff pref]
[    0.367036] pci_bus 0000:03: resource 3 [mem 0x88000000-0x8bffffff]
[    0.367087] NET: Registered protocol family 2
[    0.367178] IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
[    0.367491] TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
[    0.368121] TCP bind hash table entries: 65536 (order: 7, 524288 bytes)
[    0.368395] TCP: Hash tables configured (established 131072 bind 65536)
[    0.368398] TCP reno registered
[    0.368401] UDP hash table entries: 512 (order: 2, 16384 bytes)
[    0.368413] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
[    0.368523] NET: Registered protocol family 1
[    0.368544] pci 0000:00:02.0: Boot video device
[    0.368705] PCI: CLS 64 bytes, default 64
[    0.368983] cpufreq-nforce2: No nForce2 chipset.
[    0.369160] audit: initializing netlink socket (disabled)
[    0.369172] type=2000 audit(1311682356.364:1): initialized
[    0.380434] highmem bounce pool size: 64 pages
[    0.380441] HugeTLB registered 4 MB page size, pre-allocated 0 pages
[    0.382738] VFS: Disk quotas dquot_6.5.2
[    0.382814] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[    0.383670] fuse init (API version 7.16)
[    0.383785] msgmni has been set to 1678
[    0.384111] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
[    0.384145] io scheduler noop registered
[    0.384148] io scheduler deadline registered
[    0.384166] io scheduler cfq registered (default)
[    0.384312] pcieport 0000:00:1c.0: setting latency timer to 64
[    0.384384] pcieport 0000:00:1c.0: irq 40 for MSI/MSI-X
[    0.384479] pcieport 0000:00:1c.1: setting latency timer to 64
[    0.384540] pcieport 0000:00:1c.1: irq 41 for MSI/MSI-X
[    0.384632] pcieport 0000:00:1c.3: setting latency timer to 64
[    0.384692] pcieport 0000:00:1c.3: irq 42 for MSI/MSI-X
[    0.384817] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    0.384851] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    0.384930] intel_idle: MWAIT substates: 0x22220
[    0.384933] intel_idle: does not run on family 6 model 15
[    0.388567] ACPI: Deprecated procfs I/F for AC is loaded, please retry with CONFIG_ACPI_PROCFS_POWER cleared
[    0.388716] ACPI: AC Adapter [C1B7] (on-line)
[    0.388821] input: Sleep Button as /devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input0
[    0.388828] ACPI: Sleep Button [C23E]
[    0.388888] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input1
[    0.388929] ACPI: Lid Switch [C237]
[    0.388992] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
[    0.388997] ACPI: Power Button [PWRF]
[    0.389130] ACPI: Fan [C318] (off)
[    0.389204] ACPI: Fan [C319] (off)
[    0.389277] ACPI: Fan [C31A] (off)
[    0.389354] ACPI: Fan [C31B] (off)
[    0.389632] ACPI: acpi_idle registered with cpuidle
[    0.389821] Marking TSC unstable due to TSC halts in idle
[    0.415117] thermal LNXTHERM:00: registered as thermal_zone0
[    0.415122] ACPI: Thermal Zone [TZ0] (32 C)
[    0.429654] thermal LNXTHERM:01: registered as thermal_zone1
[    0.429658] ACPI: Thermal Zone [TZ1] (39 C)
[    0.443908] thermal LNXTHERM:02: registered as thermal_zone2
[    0.443912] ACPI: Thermal Zone [TZ2] (22 C)
[    0.453905] thermal LNXTHERM:03: registered as thermal_zone3
[    0.453909] ACPI: Thermal Zone [TZ3] (21 C)
[    0.457623] thermal LNXTHERM:04: registered as thermal_zone4
[    0.457626] ACPI: Thermal Zone [TZ4] (75 C)
[    0.457756] ERST: Table is not found!
[    0.457865] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    0.458319] isapnp: Scanning for PnP cards...
[    0.501290] Freeing initrd memory: 12552k freed
[    0.510222] ACPI: Deprecated procfs I/F for battery is loaded, please retry with CONFIG_ACPI_PROCFS_POWER cleared
[    0.510235] ACPI: Battery Slot [C1B9] (battery present)
[    0.510328] ACPI: Deprecated procfs I/F for battery is loaded, please retry with CONFIG_ACPI_PROCFS_POWER cleared
[    0.510335] ACPI: Battery Slot [C1B8] (battery absent)
[    0.812334] isapnp: No Plug & Play device found
[    0.844713] Linux agpgart interface v0.103
[    0.844823] agpgart-intel 0000:00:00.0: Intel 945GM Chipset
[    0.844906] agpgart-intel 0000:00:00.0: detected gtt size: 262144K total, 262144K mappable
[    0.845584] agpgart-intel 0000:00:00.0: detected 8192K stolen memory
[    0.845722] agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0xe0000000
[    0.847371] brd: module loaded
[    0.848164] loop: module loaded
[    0.848278] i2c-core: driver [adp5520] using legacy suspend method
[    0.848281] i2c-core: driver [adp5520] using legacy resume method
[    0.848408] ata_piix 0000:00:1f.2: version 2.13
[    0.848426] ata_piix 0000:00:1f.2: PCI INT B -> GSI 17 (level, low) -> IRQ 17
[    0.848433] ata_piix 0000:00:1f.2: MAP [ P0 P2 IDE IDE ]
[    0.848477] ata_piix 0000:00:1f.2: setting latency timer to 64
[    0.848921] scsi0 : ata_piix
[    0.849048] scsi1 : ata_piix
[    0.849605] ata1: SATA max UDMA/133 cmd 0x1f0 ctl 0x3f6 bmdma 0x40a0 irq 14
[    0.849608] ata2: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0x40a8 irq 15
[    0.850081] Fixed MDIO Bus: probed
[    0.850130] PPP generic driver version 2.4.2
[    0.850180] tun: Universal TUN/TAP device driver, 1.6
[    0.850182] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[    0.850292] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    0.850320] ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 20 (level, low) -> IRQ 20
[    0.850336] ehci_hcd 0000:00:1d.7: setting latency timer to 64
[    0.850341] ehci_hcd 0000:00:1d.7: EHCI Host Controller
[    0.850390] ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 1
[    0.850450] ehci_hcd 0000:00:1d.7: using broken periodic workaround
[    0.850465] ehci_hcd 0000:00:1d.7: debug port 1
[    0.854348] ehci_hcd 0000:00:1d.7: cache line size of 64 is not supported
[    0.854367] ehci_hcd 0000:00:1d.7: irq 20, io mem 0xf4584000
[    0.868020] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00
[    0.868171] hub 1-0:1.0: USB hub found
[    0.868176] hub 1-0:1.0: 8 ports detected
[    0.868288] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    0.868305] uhci_hcd: USB Universal Host Controller Interface driver
[    0.868335] uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20
[    0.868343] uhci_hcd 0000:00:1d.0: setting latency timer to 64
[    0.868348] uhci_hcd 0000:00:1d.0: UHCI Host Controller
[    0.868395] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
[    0.868448] uhci_hcd 0000:00:1d.0: irq 20, io base 0x00004020
[    0.868611] hub 2-0:1.0: USB hub found
[    0.868616] hub 2-0:1.0: 2 ports detected
[    0.868706] uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17
[    0.868713] uhci_hcd 0000:00:1d.1: setting latency timer to 64
[    0.868717] uhci_hcd 0000:00:1d.1: UHCI Host Controller
[    0.868763] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 3
[    0.868825] uhci_hcd 0000:00:1d.1: irq 17, io base 0x00004040
[    0.868987] hub 3-0:1.0: USB hub found
[    0.868992] hub 3-0:1.0: 2 ports detected
[    0.869076] uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
[    0.869084] uhci_hcd 0000:00:1d.2: setting latency timer to 64
[    0.869088] uhci_hcd 0000:00:1d.2: UHCI Host Controller
[    0.869136] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 4
[    0.872070] uhci_hcd 0000:00:1d.2: irq 18, io base 0x00004060
[    0.872222] hub 4-0:1.0: USB hub found
[    0.872226] hub 4-0:1.0: 2 ports detected
[    0.872311] uhci_hcd 0000:00:1d.3: PCI INT D -> GSI 19 (level, low) -> IRQ 19
[    0.872319] uhci_hcd 0000:00:1d.3: setting latency timer to 64
[    0.872323] uhci_hcd 0000:00:1d.3: UHCI Host Controller
[    0.872378] uhci_hcd 0000:00:1d.3: new USB bus registered, assigned bus number 5
[    0.872439] uhci_hcd 0000:00:1d.3: irq 19, io base 0x00004080
[    0.872589] hub 5-0:1.0: USB hub found
[    0.872594] hub 5-0:1.0: 2 ports detected
[    0.872766] i8042: PNP: PS/2 Controller [PNP0303:C215,PNP0f13:C216] at 0x60,0x64 irq 1,12
[    0.874426] i8042: Detected active multiplexing controller, rev 1.1
[    0.875082] serio: i8042 KBD port at 0x60,0x64 irq 1
[    0.875089] serio: i8042 AUX0 port at 0x60,0x64 irq 12
[    0.875127] serio: i8042 AUX1 port at 0x60,0x64 irq 12
[    0.875161] serio: i8042 AUX2 port at 0x60,0x64 irq 12
[    0.875195] serio: i8042 AUX3 port at 0x60,0x64 irq 12
[    0.875343] mousedev: PS/2 mouse device common for all mice
[    0.875556] rtc_cmos 00:06: RTC can wake from S4
[    0.875640] rtc_cmos 00:06: rtc core: registered rtc_cmos as rtc0
[    0.875675] rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[    0.875779] device-mapper: uevent: version 1.0.3
[    0.875878] device-mapper: ioctl: 4.19.1-ioctl (2011-01-07) initialised: dm-devel@redhat.com
[    0.875969] device-mapper: multipath: version 1.2.0 loaded
[    0.875972] device-mapper: multipath round-robin: version 1.0.0 loaded
[    0.876080] EISA: Probing bus 0 at eisa.0
[    0.876088] Cannot allocate resource for EISA slot 1
[    0.876090] Cannot allocate resource for EISA slot 2
[    0.876093] Cannot allocate resource for EISA slot 3
[    0.876095] Cannot allocate resource for EISA slot 4
[    0.876097] Cannot allocate resource for EISA slot 5
[    0.876099] Cannot allocate resource for EISA slot 6
[    0.876102] Cannot allocate resource for EISA slot 7
[    0.876108] EISA: Detected 0 cards.
[    0.876243] cpuidle: using governor ladder
[    0.876344] cpuidle: using governor menu
[    0.876706] TCP cubic registered
[    0.876876] NET: Registered protocol family 10
[    0.877608] NET: Registered protocol family 17
[    0.877627] Registering the dns_resolver key type
[    0.883258] Using IPI No-Shortcut mode
[    0.883416] PM: Hibernation image not present or could not be loaded.
[    0.883434] registered taskstats version 1
[    0.883840]   Magic number: 3:400:229
[    0.883961] rtc_cmos 00:06: setting system clock to 2011-07-26 12:12:37 UTC (1311682357)
[    0.883966] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[    0.883969] EDD information not available.
[    0.896901] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input3
[    1.012384] ata1.00: ATA-7: HTS541010G9SA00, MBZOC60P, max UDMA/100
[    1.012390] ata1.00: 195371568 sectors, multi 16: LBA48 
[    1.028262] ata1.00: configured for UDMA/100
[    1.028439] scsi 0:0:0:0: Direct-Access     ATA      HTS541010G9SA00  MBZO PQ: 0 ANSI: 5
[    1.028637] ata2.00: ATAPI: TSSTcorpCD/DVDW TS-L632D, HH15, max MWDMA2
[    1.028689] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    1.028782] sd 0:0:0:0: [sda] 195371568 512-byte logical blocks: (100 GB/93.1 GiB)
[    1.028927] sd 0:0:0:0: [sda] Write Protect is off
[    1.028932] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    1.029005] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    1.060348] ata2.00: configured for MWDMA2
[    1.069884]  sda: sda1 sda2 < sda5 >
[    1.070508] sd 0:0:0:0: [sda] Attached SCSI disk
[    1.084464] scsi 1:0:0:0: CD-ROM            TSSTcorp CD/DVDW TS-L632D HH15 PQ: 0 ANSI: 5
[    1.116608] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
[    1.116614] cdrom: Uniform CD-ROM driver Revision: 3.20
[    1.116808] sr 1:0:0:0: Attached scsi CD-ROM sr0
[    1.116902] sr 1:0:0:0: Attached scsi generic sg1 type 5
[    1.117081] Freeing unused kernel memory: 700k freed
[    1.117403] Write protecting the kernel text: 5192k
[    1.117489] Write protecting the kernel read-only data: 2148k
[    1.151222] <30>udev[67]: starting version 167
[    1.333524] firewire_ohci 0000:02:06.1: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[    1.388233] firewire_ohci: Added fw-ohci device 0000:02:06.1, OHCI v1.10, 4 IR + 8 IT contexts, quirks 0x2
[    1.388334] b44 0000:02:0e.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    1.408090] ssb: Core 0 found: Fast Ethernet (cc 0x806, rev 0x07, vendor 0x4243)
[    1.408104] ssb: Core 1 found: V90 (cc 0x807, rev 0x03, vendor 0x4243)
[    1.408115] ssb: Core 2 found: PCI (cc 0x804, rev 0x0A, vendor 0x4243)
[    1.448182] ssb: Sonics Silicon Backplane found on PCI device 0000:02:0e.0
[    1.448213] b44: b44.c:v2.0
[    1.470434] b44 ssb0:0: eth0: Broadcom 44xx/47xx 10/100BaseT Ethernet 00:17:08:43:a9:d8
[    1.548800] EXT4-fs (sda1): INFO: recovery required on readonly filesystem
[    1.548806] EXT4-fs (sda1): write access will be enabled during recovery
[    1.888311] firewire_core: created device fw0: GUID 00023f9929b54e0c, S400
[    3.315352] EXT4-fs (sda1): orphan cleanup on readonly fs
[    3.315363] EXT4-fs (sda1): ext4_orphan_cleanup: deleting unreferenced inode 918238
[    3.383842] EXT4-fs (sda1): ext4_orphan_cleanup: deleting unreferenced inode 917745
[    3.383891] EXT4-fs (sda1): ext4_orphan_cleanup: deleting unreferenced inode 918121
[    3.422541] EXT4-fs (sda1): ext4_orphan_cleanup: deleting unreferenced inode 917801
[    3.481459] EXT4-fs (sda1): ext4_orphan_cleanup: deleting unreferenced inode 918106
[    3.531860] EXT4-fs (sda1): ext4_orphan_cleanup: deleting unreferenced inode 917776
[    3.573001] EXT4-fs (sda1): ext4_orphan_cleanup: deleting unreferenced inode 2490390
[    3.573030] EXT4-fs (sda1): ext4_orphan_cleanup: deleting unreferenced inode 2490380
[    3.573049] EXT4-fs (sda1): ext4_orphan_cleanup: deleting unreferenced inode 2490379
[    3.573065] EXT4-fs (sda1): ext4_orphan_cleanup: deleting unreferenced inode 2490377
[    3.573082] EXT4-fs (sda1): ext4_orphan_cleanup: deleting unreferenced inode 2490376
[    3.573098] EXT4-fs (sda1): 11 orphan inodes deleted
[    3.573102] EXT4-fs (sda1): recovery complete
[    3.712548] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
[   31.680791] <30>udev[291]: starting version 167
[   31.751589] Adding 4016124k swap on /dev/sda5.  Priority:-1 extents:1 across:4016124k 
[   31.961170] lp: driver loaded but no devices found
[   31.977173] [Firmware Bug]: ACPI: No _BQC method, cannot determine initial brightness
[   31.977312] [Firmware Bug]: _BCQ is used instead of _BQC
[   31.978333] acpi device:02: registered as cooling_device6
[   31.978509] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:00/input/input4
[   31.978583] ACPI: Video Device [C080] (multi-head: yes  rom: no  post: no)
[   32.022561] parport_pc 00:02: reported by Plug and Play ACPI
[   32.022643] parport0: PC-style at 0x378 (0x778), irq 7, dma 1 [PCSPP,TRISTATE,COMPAT,ECP,DMA]
[   32.084181] intel_rng: FWH not detected
[   32.112278] lp0: using parport0 (interrupt-driven).
[   32.136487] leds_ss4200: no LED devices found
[   32.244811] ppdev: user-space parallel port driver
[   32.307114] yenta_cardbus 0000:02:06.0: CardBus bridge found [103c:30a2]
[   32.307137] yenta_cardbus 0000:02:06.0: Enabling burst memory read transactions
[   32.307144] yenta_cardbus 0000:02:06.0: Using INTVAL to route CSC interrupts to PCI
[   32.307147] yenta_cardbus 0000:02:06.0: Routing CardBus interrupts to PCI
[   32.307155] yenta_cardbus 0000:02:06.0: TI: mfunc 0x01011b22, devctl 0x64
[   32.371779] Synaptics Touchpad, model: 1, fw: 6.2, id: 0x2580b1, caps: 0xa04793/0x300000/0x0
[   32.371789] serio: Synaptics pass-through port at isa0060/serio4/input0
[   32.377606] type=1400 audit(1311675188.990:2): apparmor="STATUS" operation="profile_load" name="/sbin/dhclient" pid=550 comm="apparmor_parser"
[   32.377619] type=1400 audit(1311675188.990:3): apparmor="STATUS" operation="profile_replace" name="/sbin/dhclient" pid=515 comm="apparmor_parser"
[   32.378654] type=1400 audit(1311675188.990:4): apparmor="STATUS" operation="profile_load" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=550 comm="apparmor_parser"
[   32.378666] type=1400 audit(1311675188.990:5): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=515 comm="apparmor_parser"
[   32.379320] type=1400 audit(1311675188.990:6): apparmor="STATUS" operation="profile_load" name="/usr/lib/connman/scripts/dhclient-script" pid=550 comm="apparmor_parser"
[   32.379337] type=1400 audit(1311675188.990:7): apparmor="STATUS" operation="profile_replace" name="/usr/lib/connman/scripts/dhclient-script" pid=515 comm="apparmor_parser"
[   32.415024] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio4/input/input5
[   32.529323] cfg80211: Calling CRDA to update world regulatory domain
[   32.536738] yenta_cardbus 0000:02:06.0: ISA IRQ mask 0x0c78, PCI irq 18
[   32.536744] yenta_cardbus 0000:02:06.0: Socket status: 30000006
[   32.536749] pci_bus 0000:02: Raising subordinate bus# of parent bus (#02) from #03 to #06
[   32.536760] yenta_cardbus 0000:02:06.0: pcmcia: parent PCI bridge window: [io  0x7000-0x7fff]
[   32.536764] pcmcia_socket pcmcia_socket0: cs: IO port probe 0x7000-0x7fff: excluding 0x7000-0x70ff 0x7400-0x74ff
[   32.543754] yenta_cardbus 0000:02:06.0: pcmcia: parent PCI bridge window: [mem 0xf4100000-0xf43fffff]
[   32.543758] pcmcia_socket pcmcia_socket0: cs: memory probe 0xf4100000-0xf43fffff: excluding 0xf4100000-0xf412ffff
[   32.543777] yenta_cardbus 0000:02:06.0: pcmcia: parent PCI bridge window: [mem 0x80000000-0x83ffffff pref]
[   32.543780] pcmcia_socket pcmcia_socket0: cs: memory probe 0x80000000-0x83ffffff: excluding 0x80000000-0x83ffffff
[   32.565016] cfg80211: World regulatory domain updated:
[   32.565020] cfg80211:     (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[   32.565024] cfg80211:     (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   32.565027] cfg80211:     (2457000 KHz - 2482000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[   32.565030] cfg80211:     (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[   32.565034] cfg80211:     (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   32.565036] cfg80211:     (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   32.732283] pcmcia_socket pcmcia_socket0: cs: IO port probe 0x100-0x3af: excluding 0x170-0x177 0x1f0-0x1f7 0x370-0x37f
[   32.734363] pcmcia_socket pcmcia_socket0: cs: IO port probe 0x3e0-0x4ff: excluding 0x3f0-0x3f7 0x4d0-0x4d7
[   32.735253] pcmcia_socket pcmcia_socket0: cs: IO port probe 0x820-0x8ff: clean.
[   32.735992] pcmcia_socket pcmcia_socket0: cs: IO port probe 0xc00-0xcf7: clean.
[   32.736830] pcmcia_socket pcmcia_socket0: cs: memory probe 0x0c0000-0x0fffff: excluding 0xc0000-0xc7fff 0xe0000-0xfffff
[   32.736903] pcmcia_socket pcmcia_socket0: cs: memory probe 0xa0000000-0xa0ffffff: clean.
[   32.736978] pcmcia_socket pcmcia_socket0: cs: memory probe 0x60000000-0x60ffffff: excluding 0x60000000-0x60ffffff
[   32.737051] pcmcia_socket pcmcia_socket0: cs: IO port probe 0xa00-0xaff: clean.
[   32.741029] [drm] Initialized drm 1.1.0 20060810
[   32.772287] input: HP WMI hotkeys as /devices/virtual/input/input6
[   32.949464] i915 0000:00:02.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[   32.949473] i915 0000:00:02.0: setting latency timer to 64
[   32.977004] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
[   32.977007] [drm] Driver supports precise vblank timestamp query.
[   32.999804] EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro
[   33.054066] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
[   33.054519] [drm] initialized overlay support
[   33.242652] iwl3945: Intel(R) PRO/Wireless 3945ABG/BG Network Connection driver for Linux, in-tree:s
[   33.242656] iwl3945: Copyright(c) 2003-2010 Intel Corporation
[   33.242731] iwl3945 0000:10:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
[   33.242747] iwl3945 0000:10:00.0: setting latency timer to 64
[   33.296429] iwl3945 0000:10:00.0: Tunable channels: 13 802.11bg, 23 802.11a channels
[   33.296433] iwl3945 0000:10:00.0: Detected Intel Wireless WiFi Link 3945ABG
[   33.296586] iwl3945 0000:10:00.0: irq 43 for MSI/MSI-X
[   33.296848] cfg80211: Ignoring regulatory request Set by core since the driver uses its own custom regulatory domain 
[   33.529195] fbcon: inteldrmfb (fb0) is primary device
[   33.529750] Console: switching to colour frame buffer device 160x50
[   33.529785] fb0: inteldrmfb frame buffer device
[   33.529788] drm: registered panic notifier
[   33.529952] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
[   33.536378] HDA Intel 0000:00:1b.0: power state changed by ACPI to D0
[   33.536390] HDA Intel 0000:00:1b.0: power state changed by ACPI to D0
[   33.536401] HDA Intel 0000:00:1b.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[   33.536490] HDA Intel 0000:00:1b.0: irq 44 for MSI/MSI-X
[   33.536529] HDA Intel 0000:00:1b.0: setting latency timer to 64
[   33.617085] type=1400 audit(1311675190.230:8): apparmor="STATUS" operation="profile_load" name="/usr/share/gdm/guest-session/Xsession" pid=758 comm="apparmor_parser"
[   33.630690] type=1400 audit(1311675190.242:9): apparmor="STATUS" operation="profile_replace" name="/sbin/dhclient" pid=759 comm="apparmor_parser"
[   33.636539] type=1400 audit(1311675190.250:10): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=759 comm="apparmor_parser"
[   33.637215] type=1400 audit(1311675190.250:11): apparmor="STATUS" operation="profile_replace" name="/usr/lib/connman/scripts/dhclient-script" pid=759 comm="apparmor_parser"
[   33.653975] ieee80211 phy0: Selected rate control algorithm 'iwl-3945-rs'
[   33.838205] ADDRCONF(NETDEV_UP): eth0: link is not ready
[   37.804236] b44 ssb0:0: eth0: Link is up at 10 Mbps, half duplex
[   37.804244] b44 ssb0:0: eth0: Flow control is off for TX and off for RX
[   37.804536] ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[   43.392958] vboxdrv: Found 2 processor cores.
[   43.393079] vboxdrv: fAsync=0 offMin=0x370 offMax=0xca2
[   43.393151] vboxdrv: TSC mode is 'synchronous', kernel timer mode is 'normal'.
[   43.393153] vboxdrv: Successfully loaded version 4.0.4_OSE (interface 0x00160000).
[   46.571022] EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro,commit=0
[   47.824053] eth0: no IPv6 routers present
[ 2101.088214] ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x6 frozen
[ 2101.088224] sr 1:0:0:0: CDB: Test Unit Ready: 00 00 00 00 00 00
[ 2101.088239] ata2.00: cmd a0/00:00:00:00:00/00:00:00:00:00/a0 tag 0
[ 2101.088240]          res 40/00:02:00:08:00/00:00:00:00:00/a0 Emask 0x4 (timeout)
[ 2101.088244] ata2.00: status: { DRDY }
[ 2106.128072] ata2: link is slow to respond, please be patient (ready=0)
[ 2111.112086] ata2: device not ready (errno=-16), forcing hardreset
[ 2111.112104] ata2: soft resetting link
[ 2111.324345] ata2.00: configured for MWDMA2
[ 2111.332771] ata2: EH complete
[ 3088.992106] ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x6 frozen
[ 3088.992118] sr 1:0:0:0: CDB: Get event status notification: 4a 01 00 00 10 00 00 00 08 00
[ 3088.992149] ata2.00: cmd a0/00:00:00:08:00/00:00:00:00:00/a0 tag 0 pio 16392 in
[ 3088.992152]          res 40/00:03:00:00:00/00:00:00:00:00/a0 Emask 0x4 (timeout)
[ 3088.992158] ata2.00: status: { DRDY }
[ 3094.032085] ata2: link is slow to respond, please be patient (ready=0)
[ 3099.016062] ata2: device not ready (errno=-16), forcing hardreset
[ 3099.016079] ata2: soft resetting link
[ 3099.228353] ata2.00: configured for MWDMA2
[ 3099.236801] ata2: EH complete
[ 3941.092223] ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x6 frozen
[ 3941.092234] sr 1:0:0:0: CDB: Test Unit Ready: 00 00 00 00 00 00
[ 3941.092260] ata2.00: cmd a0/00:00:00:00:00/00:00:00:00:00/a0 tag 0
[ 3941.092262]          res 40/00:02:00:08:00/00:00:00:00:00/a0 Emask 0x4 (timeout)
[ 3941.092269] ata2.00: status: { DRDY }
[ 3946.132070] ata2: link is slow to respond, please be patient (ready=0)
[ 3951.120046] ata2: device not ready (errno=-16), forcing hardreset
[ 3951.120059] ata2: soft resetting link
[ 3951.332354] ata2.00: configured for MWDMA2
[ 3951.340810] ata2: EH complete
[ 4039.008245] ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x6 frozen
[ 4039.008256] sr 1:0:0:0: CDB: Test Unit Ready: 00 00 00 00 00 00
[ 4039.008281] ata2.00: cmd a0/00:00:00:00:00/00:00:00:00:00/a0 tag 0
[ 4039.008283]          res 40/00:02:00:08:00/00:00:00:00:00/a0 Emask 0x4 (timeout)
[ 4039.008290] ata2.00: status: { DRDY }
[ 4044.048069] ata2: link is slow to respond, please be patient (ready=0)
[ 4049.032076] ata2: device not ready (errno=-16), forcing hardreset
[ 4049.032092] ata2: soft resetting link
[ 4049.244359] ata2.00: configured for MWDMA2
[ 4049.252783] ata2: EH complete
[ 4743.008111] ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x6 frozen
[ 4743.008124] sr 1:0:0:0: CDB: Get event status notification: 4a 01 00 00 10 00 00 00 08 00
[ 4743.008154] ata2.00: cmd a0/00:00:00:08:00/00:00:00:00:00/a0 tag 0 pio 16392 in
[ 4743.008157]          res 40/00:03:00:00:00/00:00:00:00:00/a0 Emask 0x4 (timeout)
[ 4743.008163] ata2.00: status: { DRDY }
[ 4748.048091] ata2: link is slow to respond, please be patient (ready=0)
[ 4753.032074] ata2: device not ready (errno=-16), forcing hardreset
[ 4753.032091] ata2: soft resetting link
[ 4753.244336] ata2.00: configured for MWDMA2
[ 4753.252820] ata2: EH complete
[ 5073.000236] ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x6 frozen
[ 5073.000249] sr 1:0:0:0: CDB: Get event status notification: 4a 01 00 00 10 00 00 00 08 00
[ 5073.000280] ata2.00: cmd a0/00:00:00:08:00/00:00:00:00:00/a0 tag 0 pio 16392 in
[ 5073.000283]          res 40/00:03:00:00:00/00:00:00:00:00/a0 Emask 0x4 (timeout)
[ 5073.000289] ata2.00: status: { DRDY }
[ 5078.040079] ata2: link is slow to respond, please be patient (ready=0)
[ 5083.024081] ata2: device not ready (errno=-16), forcing hardreset
[ 5083.024097] ata2: soft resetting link
[ 5083.236352] ata2.00: configured for MWDMA2
[ 5083.244761] ata2: EH complete
[ 5600.992094] ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x6 frozen
[ 5600.992107] sr 1:0:0:0: CDB: Get event status notification: 4a 01 00 00 10 00 00 00 08 00
[ 5600.992138] ata2.00: cmd a0/00:00:00:08:00/00:00:00:00:00/a0 tag 0 pio 16392 in
[ 5600.992141]          res 40/00:03:00:00:00/00:00:00:00:00/a0 Emask 0x4 (timeout)
[ 5600.992147] ata2.00: status: { DRDY }
[ 5606.032089] ata2: link is slow to respond, please be patient (ready=0)
[ 5611.016067] ata2: device not ready (errno=-16), forcing hardreset
[ 5611.016084] ata2: soft resetting link
[ 5611.228359] ata2.00: configured for MWDMA2
[ 5611.236806] ata2: EH complete
[ 7095.871588] ip_tables: (C) 2000-2006 Netfilter Core Team
[ 7181.114539] nf_conntrack version 0.5.0 (16384 buckets, 65536 max)
[ 7283.040312] ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x6 frozen
[ 7283.040325] sr 1:0:0:0: CDB: Get event status notification: 4a 01 00 00 10 00 00 00 08 00
[ 7283.040355] ata2.00: cmd a0/00:00:00:08:00/00:00:00:00:00/a0 tag 0 pio 16392 in
[ 7283.040358]          res 40/00:03:00:00:00/00:00:00:00:00/a0 Emask 0x4 (timeout)
[ 7283.040364] ata2.00: status: { DRDY }
[ 7288.080082] ata2: link is slow to respond, please be patient (ready=0)
[ 7293.064085] ata2: device not ready (errno=-16), forcing hardreset
[ 7293.064101] ata2: soft resetting link
[ 7293.276361] ata2.00: configured for MWDMA2
[ 7293.284808] ata2: EH complete