[ create a new paste ] login | about

Link: http://codepad.org/YPnaCpIY    [ raw code | fork ]

C, pasted on May 9:
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
[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Linux version 2.6.38-netbook (root@ragnarok) (gcc version 4.6.0 20110429 (prerelease) (GCC) ) #1 SMP Mon May 9 03:16:51 CEST 2011
[    0.000000] BIOS-provided physical RAM map:
[    0.000000]  BIOS-e820: 0000000000000000 - 000000000009dc00 (usable)
[    0.000000]  BIOS-e820: 000000000009dc00 - 00000000000a0000 (reserved)
[    0.000000]  BIOS-e820: 00000000000ce000 - 00000000000d0000 (reserved)
[    0.000000]  BIOS-e820: 00000000000dc000 - 00000000000e0000 (reserved)
[    0.000000]  BIOS-e820: 00000000000e4000 - 0000000000100000 (reserved)
[    0.000000]  BIOS-e820: 0000000000100000 - 000000007f5b0000 (usable)
[    0.000000]  BIOS-e820: 000000007f5b0000 - 000000007f5c0000 (ACPI data)
[    0.000000]  BIOS-e820: 000000007f5c0000 - 000000007f5c3000 (ACPI NVS)
[    0.000000]  BIOS-e820: 000000007f5c3000 - 0000000080000000 (reserved)
[    0.000000]  BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved)
[    0.000000]  BIOS-e820: 00000000fec00000 - 00000000fec10000 (reserved)
[    0.000000]  BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved)
[    0.000000]  BIOS-e820: 00000000ff000000 - 0000000100000000 (reserved)
[    0.000000] Notice: NX (Execute Disable) protection cannot be enabled: non-PAE kernel!
[    0.000000] DMI present.
[    0.000000] DMI: SAMSUNG ELECTRONICS CO., LTD. N150/N210/N220             /N150/N210/N220             , BIOS 06JI.M053.20100129.JIP 01/29/2010
[    0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
[    0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
[    0.000000] last_pfn = 0x7f5b0 max_arch_pfn = 0x100000
[    0.000000] MTRR default type: uncachable
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-BFFFF uncachable
[    0.000000]   C0000-CFFFF write-protect
[    0.000000]   D0000-DFFFF uncachable
[    0.000000]   E0000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 000000000 mask 080000000 write-back
[    0.000000]   1 base 07F600000 mask 0FFE00000 uncachable
[    0.000000]   2 base 07F800000 mask 0FF800000 uncachable
[    0.000000]   3 disabled
[    0.000000]   4 disabled
[    0.000000]   5 disabled
[    0.000000]   6 disabled
[    0.000000]   7 disabled
[    0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[    0.000000] found SMP MP-table at [c00f7dd0] f7dd0
[    0.000000] initial memory mapped : 0 - 01c00000
[    0.000000] init_memory_mapping: 0000000000000000-00000000377fe000
[    0.000000]  0000000000 - 0000400000 page 4k
[    0.000000]  0000400000 - 0037400000 page 2M
[    0.000000]  0037400000 - 00377fe000 page 4k
[    0.000000] kernel direct mapping tables up to 377fe000 @ 1bfb000-1c00000
[    0.000000] ACPI: RSDP 000f7da0 00024 (v02 PTLTD )
[    0.000000] ACPI: XSDT 7f5b8db7 0006C (v01 SECCSD LH43STAR 06040000  LTP 00000000)
[    0.000000] ACPI: FACP 7f5bfc92 000F4 (v03 INTEL           06040000 PTL  00000002)
[    0.000000] ACPI: DSDT 7f5ba01f 05B7F (v01  INTEL BEARG31A 06040000 MSFT 03000001)
[    0.000000] ACPI: FACS 7f5c2fc0 00040
[    0.000000] ACPI: MCFG 7f5bfd86 0003C (v01 PTLTD    MCFG   06040000  LTP 00000000)
[    0.000000] ACPI: HPET 7f5bfdc2 00038 (v01 PTLTD  HPETTBL  06040000  LTP 00000001)
[    0.000000] ACPI: APIC 7f5bfdfa 00068 (v01 PTLTD  ? APIC   06040000  LTP 00000000)
[    0.000000] ACPI: BOOT 7f5bfe62 00028 (v01 PTLTD  $SBFTBL$ 06040000  LTP 00000001)
[    0.000000] ACPI: SLIC 7f5bfe8a 00176 (v01 SECCSD LH43STAR 06040000  LTP 00000000)
[    0.000000] ACPI: SSDT 7f5b93bf 0025F (v01  PmRef  Cpu0Tst 00003000 INTL 20050624)
[    0.000000] ACPI: SSDT 7f5b9319 000A6 (v01  PmRef  Cpu1Tst 00003000 INTL 20050624)
[    0.000000] ACPI: SSDT 7f5b8e23 004F6 (v02  PmRef    CpuPm 00003000 INTL 20050624)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] 1149MB 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 -> 0x0007f5b0
[    0.000000] Movable zone start PFN for each node
[    0.000000] early_node_map[2] active PFN ranges
[    0.000000]     0: 0x00000010 -> 0x0000009d
[    0.000000]     0: 0x00000100 -> 0x0007f5b0
[    0.000000] On node 0 totalpages: 521533
[    0.000000] free_area_init_node: node 0, pgdat c158f040, node_mem_map f680d200
[    0.000000]   DMA zone: 32 pages used for memmap
[    0.000000]   DMA zone: 0 pages reserved
[    0.000000]   DMA zone: 3949 pages, LIFO batch:0
[    0.000000]   Normal zone: 1744 pages used for memmap
[    0.000000]   Normal zone: 221486 pages, LIFO batch:31
[    0.000000]   HighMem zone: 2300 pages used for memmap
[    0.000000]   HighMem zone: 292022 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[0x02] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 high edge)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.000000] ACPI: IRQ0 used by override.
[    0.000000] ACPI: IRQ2 used by override.
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0xffffffff base: 0xfed00000
[    0.000000] SMP: Allowing 2 CPUs, 0 hotplug CPUs
[    0.000000] nr_irqs_gsi: 40
[    0.000000] PM: Registered nosave memory: 000000000009d000 - 000000000009e000
[    0.000000] PM: Registered nosave memory: 000000000009e000 - 00000000000a0000
[    0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000ce000
[    0.000000] PM: Registered nosave memory: 00000000000ce000 - 00000000000d0000
[    0.000000] PM: Registered nosave memory: 00000000000d0000 - 00000000000dc000
[    0.000000] PM: Registered nosave memory: 00000000000dc000 - 00000000000e0000
[    0.000000] PM: Registered nosave memory: 00000000000e0000 - 00000000000e4000
[    0.000000] PM: Registered nosave memory: 00000000000e4000 - 0000000000100000
[    0.000000] Allocating PCI resources starting at 80000000 (gap: 80000000:60000000)
[    0.000000] setup_percpu: NR_CPUS:4 nr_cpumask_bits:4 nr_cpu_ids:2 nr_node_ids:1
[    0.000000] PERCPU: Embedded 11 pages/cpu @f6400000 s24448 r0 d20608 u2097152
[    0.000000] pcpu-alloc: s24448 r0 d20608 u2097152 alloc=1*4194304
[    0.000000] pcpu-alloc: [0] 0 1 
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 517457
[    0.000000] Kernel command line: root=/dev/sda5 ro quiet rootfstype=ext4
[    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 10432640 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:0007f5b0)
[    0.000000] Memory: 2052248k/2086592k available (3838k kernel code, 33884k reserved, 1884k data, 348k init, 1177288k highmem)
[    0.000000] virtual kernel memory layout:
[    0.000000]     fixmap  : 0xfff67000 - 0xfffff000   ( 608 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 : 0xc1597000 - 0xc15ee000   ( 348 kB)
[    0.000000]       .data : 0xc13bf848 - 0xc1596b00   (1884 kB)
[    0.000000]       .text : 0xc1000000 - 0xc13bf848   (3838 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 debugfs-based tracing is enabled.
[    0.000000] 	RCU-based detection of stalled CPUs is disabled.
[    0.000000] NR_IRQS:384
[    0.000000] CPU 0 irqstacks, hard=f540c000 soft=f540e000
[    0.000000] Extended CMOS year: 2000
[    0.000000] Console: colour VGA+ 80x25
[    0.000000] console [tty0] enabled
[    0.000000] hpet clockevent registered
[    0.000000] Fast TSC calibration using PIT
[    0.000000] Detected 1662.633 MHz processor.
[    0.001004] Calibrating delay loop (skipped), value calculated using timer frequency.. 3325.26 BogoMIPS (lpj=1662633)
[    0.001014] pid_max: default: 32768 minimum: 301
[    0.001096] Security Framework initialized
[    0.001142] Mount-cache hash table entries: 512
[    0.001468] Initializing cgroup subsys ns
[    0.001475] ns_cgroup deprecated: consider using the 'clone_children' flag without the ns_cgroup.
[    0.001481] Initializing cgroup subsys memory
[    0.001498] Initializing cgroup subsys devices
[    0.001503] Initializing cgroup subsys freezer
[    0.001557] CPU: Physical Processor ID: 0
[    0.001561] CPU: Processor Core ID: 0
[    0.001565] using mwait in idle threads.
[    0.002029] ACPI: Core revision 20110112
[    0.010022] Enabling APIC mode:  Flat.  Using 1 I/O APICs
[    0.010431] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.020445] CPU0: Intel(R) Atom(TM) CPU N450   @ 1.66GHz stepping 0a
[    0.020998] Performance Events: PEBS fmt0+, Atom events, Intel PMU driver.
[    0.020998] ... version:                3
[    0.020998] ... bit width:              40
[    0.020998] ... generic registers:      2
[    0.020998] ... value mask:             000000ffffffffff
[    0.020998] ... max period:             000000007fffffff
[    0.020998] ... fixed-purpose events:   3
[    0.020998] ... event mask:             0000000700000003
[    0.020998] CPU 1 irqstacks, hard=f548e000 soft=f5490000
[    0.020998] Booting Node   0, Processors  #1
[    0.020998] Initializing CPU#1
[    0.092014] Brought up 2 CPUs
[    0.092021] Total of 2 processors activated (6607.62 BogoMIPS).
[    0.092530] devtmpfs: initialized
[    0.093237] NET: Registered protocol family 16
[    0.094080] ACPI: bus type pci registered
[    0.094115] PCI: MMCONFIG for domain 0000 [bus 00-10] at [mem 0xe0000000-0xe10fffff] (base 0xe0000000)
[    0.094115] PCI: MMCONFIG at [mem 0xe0000000-0xe10fffff] reserved in E820
[    0.094115] PCI: Using MMCONFIG for extended config space
[    0.094115] PCI: Using configuration type 1 for base access
[    0.106245] bio: create slab <bio-0> at 0
[    0.108729] ACPI: EC: Look up EC in DSDT
[    0.116620] ACPI: SSDT 7f5b9d48 00203 (v02  PmRef  Cpu0Ist 00003000 INTL 20050624)
[    0.117095] ACPI: Dynamic OEM Table Load:
[    0.117103] ACPI: SSDT   (null) 00203 (v02  PmRef  Cpu0Ist 00003000 INTL 20050624)
[    0.117435] ACPI: SSDT 7f5b961e 006A5 (v02  PmRef  Cpu0Cst 00003001 INTL 20050624)
[    0.117855] ACPI: Dynamic OEM Table Load:
[    0.117862] ACPI: SSDT   (null) 006A5 (v02  PmRef  Cpu0Cst 00003001 INTL 20050624)
[    0.118475] ACPI: SSDT 7f5b9f4b 000D4 (v02  PmRef  Cpu1Ist 00003000 INTL 20050624)
[    0.118921] ACPI: Dynamic OEM Table Load:
[    0.118928] ACPI: SSDT   (null) 000D4 (v02  PmRef  Cpu1Ist 00003000 INTL 20050624)
[    0.119173] ACPI: SSDT 7f5b9cc3 00085 (v02  PmRef  Cpu1Cst 00003000 INTL 20050624)
[    0.119596] ACPI: Dynamic OEM Table Load:
[    0.119603] ACPI: SSDT   (null) 00085 (v02  PmRef  Cpu1Cst 00003000 INTL 20050624)
[    0.121547] ACPI: Interpreter enabled
[    0.121562] ACPI: (supports S0 S3 S4 S5)
[    0.121601] ACPI: Using IOAPIC for interrupt routing
[    0.136174] ACPI: EC: GPE = 0x11, I/O: command/status = 0x66, data = 0x62
[    0.139328] ACPI: No dock devices found.
[    0.139339] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.141001] ACPI Error: [CAPB] Namespace lookup failure, AE_ALREADY_EXISTS (20110112/dsfield-143)
[    0.141017] ACPI Error: Method parse/execution failed [\_SB_.PCI0._OSC] (Node f542ce88), AE_ALREADY_EXISTS (20110112/psparse-536)
[    0.141035] ACPI: Marking method _OSC as Serialized because of AE_ALREADY_EXISTS error
[    0.141051] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3f])
[    0.144130] pci_root PNP0A08:00: host bridge window [io  0x0000-0x0cf7]
[    0.144139] pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff]
[    0.144146] pci_root PNP0A08:00: host bridge window [mem 0x000d0000-0x000d3fff]
[    0.144152] pci_root PNP0A08:00: host bridge window [mem 0x000d4000-0x000d7fff]
[    0.144158] pci_root PNP0A08:00: host bridge window [mem 0x000d8000-0x000dbfff]
[    0.144164] pci_root PNP0A08:00: host bridge window [mem 0x000e0000-0x000e3fff]
[    0.144171] pci_root PNP0A08:00: host bridge window [mem 0x80000000-0xf7ffffff]
[    0.144178] pci_root PNP0A08:00: host bridge window [io  0x0d00-0xfdff]
[    0.144203] pci 0000:00:00.0: [8086:a010] type 0 class 0x000600
[    0.144256] pci 0000:00:02.0: [8086:a011] type 0 class 0x000300
[    0.144272] pci 0000:00:02.0: reg 10: [mem 0xf0300000-0xf037ffff]
[    0.144282] pci 0000:00:02.0: reg 14: [io  0x18d0-0x18d7]
[    0.144292] pci 0000:00:02.0: reg 18: [mem 0xd0000000-0xdfffffff pref]
[    0.144303] pci 0000:00:02.0: reg 1c: [mem 0xf0000000-0xf00fffff]
[    0.144345] pci 0000:00:02.1: [8086:a012] type 0 class 0x000380
[    0.144358] pci 0000:00:02.1: reg 10: [mem 0xf0380000-0xf03fffff]
[    0.144471] pci 0000:00:1b.0: [8086:27d8] type 0 class 0x000403
[    0.144499] pci 0000:00:1b.0: reg 10: [mem 0xf0400000-0xf0403fff 64bit]
[    0.144589] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    0.144598] pci 0000:00:1b.0: PME# disabled
[    0.144631] pci 0000:00:1c.0: [8086:27d0] type 1 class 0x000604
[    0.144730] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.144738] pci 0000:00:1c.0: PME# disabled
[    0.144773] pci 0000:00:1c.1: [8086:27d2] type 1 class 0x000604
[    0.144875] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[    0.144885] pci 0000:00:1c.1: PME# disabled
[    0.144921] pci 0000:00:1c.2: [8086:27d4] type 1 class 0x000604
[    0.145020] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
[    0.145028] pci 0000:00:1c.2: PME# disabled
[    0.145063] pci 0000:00:1c.3: [8086:27d6] type 1 class 0x000604
[    0.145157] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
[    0.145165] pci 0000:00:1c.3: PME# disabled
[    0.145209] pci 0000:00:1d.0: [8086:27c8] type 0 class 0x000c03
[    0.145269] pci 0000:00:1d.0: reg 20: [io  0x1820-0x183f]
[    0.145316] pci 0000:00:1d.1: [8086:27c9] type 0 class 0x000c03
[    0.145377] pci 0000:00:1d.1: reg 20: [io  0x1840-0x185f]
[    0.145425] pci 0000:00:1d.2: [8086:27ca] type 0 class 0x000c03
[    0.145485] pci 0000:00:1d.2: reg 20: [io  0x1860-0x187f]
[    0.145532] pci 0000:00:1d.3: [8086:27cb] type 0 class 0x000c03
[    0.145593] pci 0000:00:1d.3: reg 20: [io  0x1880-0x189f]
[    0.145654] pci 0000:00:1d.7: [8086:27cc] type 0 class 0x000c03
[    0.145687] pci 0000:00:1d.7: reg 10: [mem 0xf0604000-0xf06043ff]
[    0.145788] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
[    0.145797] pci 0000:00:1d.7: PME# disabled
[    0.145828] pci 0000:00:1e.0: [8086:2448] type 1 class 0x000604
[    0.145930] pci 0000:00:1f.0: [8086:27bc] type 0 class 0x000601
[    0.146048] pci 0000:00:1f.0: [Firmware Bug]: TigerPoint LPC.BM_STS cleared
[    0.146104] pci 0000:00:1f.2: [8086:27c1] type 0 class 0x000106
[    0.146133] pci 0000:00:1f.2: reg 10: [io  0x18e8-0x18ef]
[    0.146150] pci 0000:00:1f.2: reg 14: [io  0x18dc-0x18df]
[    0.146165] pci 0000:00:1f.2: reg 18: [io  0x18e0-0x18e7]
[    0.146180] pci 0000:00:1f.2: reg 1c: [io  0x18d8-0x18db]
[    0.146195] pci 0000:00:1f.2: reg 20: [io  0x18c0-0x18cf]
[    0.146210] pci 0000:00:1f.2: reg 24: [mem 0xf0604400-0xf06047ff]
[    0.146256] pci 0000:00:1f.2: PME# supported from D3hot
[    0.146263] pci 0000:00:1f.2: PME# disabled
[    0.146288] pci 0000:00:1f.3: [8086:27da] type 0 class 0x000c05
[    0.146364] pci 0000:00:1f.3: reg 20: [io  0x18a0-0x18bf]
[    0.146505] pci 0000:05:00.0: [168c:002b] type 0 class 0x000280
[    0.146542] pci 0000:05:00.0: reg 10: [mem 0xf0100000-0xf010ffff 64bit]
[    0.146664] pci 0000:05:00.0: supports D1
[    0.146669] pci 0000:05:00.0: PME# supported from D0 D1 D3hot
[    0.146678] pci 0000:05:00.0: PME# disabled
[    0.148020] pci 0000:00:1c.0: PCI bridge to [bus 05-05]
[    0.148034] pci 0000:00:1c.0:   bridge window [io  0xf000-0x0000] (disabled)
[    0.148048] pci 0000:00:1c.0:   bridge window [mem 0xf0100000-0xf01fffff]
[    0.148066] pci 0000:00:1c.0:   bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
[    0.148157] pci 0000:00:1c.1: PCI bridge to [bus 07-07]
[    0.148165] pci 0000:00:1c.1:   bridge window [io  0x0000-0x0000] (disabled)
[    0.148174] pci 0000:00:1c.1:   bridge window [mem 0xfff00000-0x000fffff] (disabled)
[    0.148186] pci 0000:00:1c.1:   bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
[    0.148428] pci 0000:09:00.0: [11ab:4354] type 0 class 0x000200
[    0.148609] pci 0000:09:00.0: reg 10: [mem 0xf0200000-0xf0203fff 64bit]
[    0.148715] pci 0000:09:00.0: reg 18: [io  0x2000-0x20ff]
[    0.149371] pci 0000:09:00.0: supports D1 D2
[    0.149376] pci 0000:09:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.149404] pci 0000:09:00.0: PME# disabled
[    0.149664] pci 0000:00:1c.2: PCI bridge to [bus 09-09]
[    0.149673] pci 0000:00:1c.2:   bridge window [io  0x2000-0x2fff]
[    0.149681] pci 0000:00:1c.2:   bridge window [mem 0xf0200000-0xf02fffff]
[    0.149694] pci 0000:00:1c.2:   bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
[    0.149763] pci 0000:00:1c.3: PCI bridge to [bus 0b-0b]
[    0.149772] pci 0000:00:1c.3:   bridge window [io  0x0000-0x0000] (disabled)
[    0.149780] pci 0000:00:1c.3:   bridge window [mem 0xfff00000-0x000fffff] (disabled)
[    0.149793] pci 0000:00:1c.3:   bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
[    0.149896] pci 0000:00:1e.0: PCI bridge to [bus 11-11] (subtractive decode)
[    0.149905] pci 0000:00:1e.0:   bridge window [io  0xf000-0x0000] (disabled)
[    0.149914] pci 0000:00:1e.0:   bridge window [mem 0xfff00000-0x000fffff] (disabled)
[    0.149926] pci 0000:00:1e.0:   bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
[    0.149933] pci 0000:00:1e.0:   bridge window [io  0x0000-0x0cf7] (subtractive decode)
[    0.149939] pci 0000:00:1e.0:   bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
[    0.149946] pci 0000:00:1e.0:   bridge window [mem 0x000d0000-0x000d3fff] (subtractive decode)
[    0.149953] pci 0000:00:1e.0:   bridge window [mem 0x000d4000-0x000d7fff] (subtractive decode)
[    0.149960] pci 0000:00:1e.0:   bridge window [mem 0x000d8000-0x000dbfff] (subtractive decode)
[    0.149967] pci 0000:00:1e.0:   bridge window [mem 0x000e0000-0x000e3fff] (subtractive decode)
[    0.149974] pci 0000:00:1e.0:   bridge window [mem 0x80000000-0xf7ffffff] (subtractive decode)
[    0.149990] pci 0000:00:1e.0:   bridge window [io  0x0d00-0xfdff] (subtractive decode)
[    0.150029] pci_bus 0000:00: on NUMA node 0
[    0.150037] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[    0.150213] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.EXP1._PRT]
[    0.150310] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.EXP2._PRT]
[    0.150402] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.EXP3._PRT]
[    0.150496] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.EXP4._PRT]
[    0.150588] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCIB._PRT]
[    0.150887] ACPI Error: [CAPB] Namespace lookup failure, AE_ALREADY_EXISTS (20110112/dsfield-143)
[    0.150902] ACPI Error: Method parse/execution failed [\_SB_.PCI0._OSC] (Node f542ce88), AE_ALREADY_EXISTS (20110112/psparse-536)
[    0.161116] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 *11 12 14 15)
[    0.161237] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 *4 5 6 7 10 11 12 14 15)
[    0.161352] ACPI: PCI Interrupt Link [LNKC] (IRQs *3 4 5 6 7 10 11 12 14 15)
[    0.161467] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 *10 11 12 14 15)
[    0.161589] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
[    0.161714] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
[    0.162096] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 *7 10 11 12 14 15)
[    0.162226] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 *5 6 7 10 11 12 14 15)
[    0.162346] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
[    0.162346] vgaarb: loaded
[    0.162346] SCSI subsystem initialized
[    0.163048] libata version 3.00 loaded.
[    0.163071] usbcore: registered new interface driver usbfs
[    0.163082] usbcore: registered new interface driver hub
[    0.163082] usbcore: registered new device driver usb
[    0.164061] Advanced Linux Sound Architecture Driver Version 1.0.23.
[    0.164061] PCI: Using ACPI for IRQ routing
[    0.164061] PCI: pci_cache_line_size set to 64 bytes
[    0.164217] reserve RAM buffer: 000000000009dc00 - 000000000009ffff 
[    0.164223] reserve RAM buffer: 000000007f5b0000 - 000000007fffffff 
[    0.165018] cfg80211: Calling CRDA to update world regulatory domain
[    0.165451] NetLabel: Initializing
[    0.165455] NetLabel:  domain hash size = 128
[    0.165459] NetLabel:  protocols = UNLABELED CIPSOv4
[    0.165483] NetLabel:  unlabeled traffic allowed by default
[    0.165548] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[    0.165548] hpet0: 3 comparators, 64-bit 14.318180 MHz counter
[    0.167012] Switching to clocksource hpet
[    0.167086] Switched to NOHz mode on CPU #0
[    0.167188] pnp: PnP ACPI init
[    0.167202] Switched to NOHz mode on CPU #1
[    0.167212] ACPI: bus type pnp registered
[    0.168761] pnp 00:00: [bus 00-3f]
[    0.168768] pnp 00:00: [io  0x0cf8-0x0cff]
[    0.168774] pnp 00:00: [io  0x0000-0x0cf7 window]
[    0.168780] pnp 00:00: [mem 0x000a0000-0x000bffff window]
[    0.168786] pnp 00:00: [mem 0x000c0000-0x000c3fff window]
[    0.168792] pnp 00:00: [mem 0x000c4000-0x000c7fff window]
[    0.168798] pnp 00:00: [mem 0x000c8000-0x000cbfff window]
[    0.168804] pnp 00:00: [mem 0x000cc000-0x000cffff window]
[    0.168810] pnp 00:00: [mem 0x000d0000-0x000d3fff window]
[    0.168815] pnp 00:00: [mem 0x000d4000-0x000d7fff window]
[    0.168821] pnp 00:00: [mem 0x000d8000-0x000dbfff window]
[    0.168827] pnp 00:00: [mem 0x000dc000-0x000dffff window]
[    0.168833] pnp 00:00: [mem 0x000e0000-0x000e3fff window]
[    0.168839] pnp 00:00: [mem 0x000e4000-0x000e7fff window]
[    0.168845] pnp 00:00: [mem 0x000e8000-0x000ebfff window]
[    0.168851] pnp 00:00: [mem 0x000ec000-0x000effff window]
[    0.168857] pnp 00:00: [mem 0x000f0000-0x000fffff window]
[    0.168863] pnp 00:00: [mem 0x80000000-0xf7ffffff window]
[    0.168868] pnp 00:00: [io  0x0d00-0xfdff window]
[    0.168874] pnp 00:00: [mem 0x00000000 window]
[    0.168880] pnp 00:00: [mem 0xfed40000-0xfed44fff window]
[    0.169101] pnp 00:00: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active)
[    0.169653] pnp 00:01: [io  0x0010-0x001f]
[    0.169659] pnp 00:01: [io  0x0024-0x0025]
[    0.169665] pnp 00:01: [io  0x0028-0x0029]
[    0.169670] pnp 00:01: [io  0x002c-0x002d]
[    0.169675] pnp 00:01: [io  0x0030-0x0031]
[    0.169680] pnp 00:01: [io  0x0034-0x0035]
[    0.169685] pnp 00:01: [io  0x0038-0x0039]
[    0.169690] pnp 00:01: [io  0x003c-0x003d]
[    0.169695] pnp 00:01: [io  0x0072-0x0077]
[    0.169700] pnp 00:01: [io  0x0080]
[    0.169705] pnp 00:01: [io  0x0090-0x009f]
[    0.169710] pnp 00:01: [io  0x00a4-0x00a5]
[    0.169715] pnp 00:01: [io  0x00a8-0x00a9]
[    0.169720] pnp 00:01: [io  0x00ac-0x00ad]
[    0.169726] pnp 00:01: [io  0x00b0-0x00b5]
[    0.169731] pnp 00:01: [io  0x00b8-0x00b9]
[    0.169736] pnp 00:01: [io  0x00bc-0x00bd]
[    0.169741] pnp 00:01: [io  0x0800-0x080f]
[    0.169746] pnp 00:01: [io  0x1000-0x107f]
[    0.169752] pnp 00:01: [io  0x1180-0x11bf]
[    0.169757] pnp 00:01: [io  0x002e-0x002f]
[    0.169762] pnp 00:01: [io  0x04d0-0x04d1]
[    0.169767] pnp 00:01: [io  0xfe00]
[    0.169772] pnp 00:01: [io  0x164e-0x174c]
[    0.169778] pnp 00:01: [mem 0xe0000000-0xefffffff]
[    0.169784] pnp 00:01: [mem 0xfed14000-0xfed17fff]
[    0.169789] pnp 00:01: [mem 0xf8000000-0xfbffffff]
[    0.169795] pnp 00:01: [mem 0xfef00000-0xfeffffff]
[    0.170083] system 00:01: [io  0x0800-0x080f] has been reserved
[    0.170091] system 00:01: [io  0x1000-0x107f] has been reserved
[    0.170098] system 00:01: [io  0x1180-0x11bf] has been reserved
[    0.170105] system 00:01: [io  0x04d0-0x04d1] has been reserved
[    0.170112] system 00:01: [io  0xfe00] has been reserved
[    0.170119] system 00:01: [io  0x164e-0x174c] has been reserved
[    0.170127] system 00:01: [mem 0xe0000000-0xefffffff] has been reserved
[    0.170135] system 00:01: [mem 0xfed14000-0xfed17fff] has been reserved
[    0.170142] system 00:01: [mem 0xf8000000-0xfbffffff] has been reserved
[    0.170149] system 00:01: [mem 0xfef00000-0xfeffffff] has been reserved
[    0.170158] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.170189] pnp 00:02: [io  0x0000-0x000f]
[    0.170195] pnp 00:02: [io  0x0081-0x008f]
[    0.170200] pnp 00:02: [io  0x00c0-0x00df]
[    0.170206] pnp 00:02: [dma 4]
[    0.170336] pnp 00:02: Plug and Play ACPI device, IDs PNP0200 (active)
[    0.170363] pnp 00:03: [io  0x00f0-0x00fe]
[    0.170380] pnp 00:03: [irq 13]
[    0.170510] pnp 00:03: Plug and Play ACPI device, IDs PNP0c04 (active)
[    0.170596] pnp 00:04: [io  0x0070-0x0071]
[    0.170609] pnp 00:04: [irq 8]
[    0.170744] pnp 00:04: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.170771] pnp 00:05: [io  0x0061]
[    0.170902] pnp 00:05: Plug and Play ACPI device, IDs PNP0800 (active)
[    0.170970] pnp 00:06: [io  0x0060]
[    0.170976] pnp 00:06: [io  0x0064]
[    0.170987] pnp 00:06: [irq 1]
[    0.171163] pnp 00:06: Plug and Play ACPI device, IDs PNP0303 (active)
[    0.171197] pnp 00:07: [irq 12]
[    0.171332] pnp 00:07: Plug and Play ACPI device, IDs PNP0f13 (active)
[    0.171624] pnp 00:08: [mem 0xff800000-0xffffffff]
[    0.171766] pnp 00:08: Plug and Play ACPI device, IDs INT0800 (active)
[    0.172536] pnp: PnP ACPI: found 9 devices
[    0.172541] ACPI: ACPI bus type pnp unregistered
[    0.216876] pci 0000:00:1c.0: BAR 9: assigned [mem 0x80000000-0x801fffff 64bit pref]
[    0.216888] pci 0000:00:1c.1: BAR 8: assigned [mem 0x80200000-0x803fffff]
[    0.216900] pci 0000:00:1c.1: BAR 9: assigned [mem 0x80400000-0x805fffff 64bit pref]
[    0.216911] pci 0000:00:1c.2: BAR 9: assigned [mem 0x80600000-0x807fffff 64bit pref]
[    0.216922] pci 0000:00:1c.3: BAR 8: assigned [mem 0x80800000-0x809fffff]
[    0.216933] pci 0000:00:1c.3: BAR 9: assigned [mem 0x80a00000-0x80bfffff 64bit pref]
[    0.216945] pci 0000:00:1c.0: BAR 7: assigned [io  0x3000-0x3fff]
[    0.216954] pci 0000:00:1c.1: BAR 7: assigned [io  0x4000-0x4fff]
[    0.216963] pci 0000:00:1c.3: BAR 7: assigned [io  0x5000-0x5fff]
[    0.216970] pci 0000:00:1c.0: PCI bridge to [bus 05-05]
[    0.216977] pci 0000:00:1c.0:   bridge window [io  0x3000-0x3fff]
[    0.216987] pci 0000:00:1c.0:   bridge window [mem 0xf0100000-0xf01fffff]
[    0.216997] pci 0000:00:1c.0:   bridge window [mem 0x80000000-0x801fffff 64bit pref]
[    0.217028] pci 0000:00:1c.1: PCI bridge to [bus 07-07]
[    0.217035] pci 0000:00:1c.1:   bridge window [io  0x4000-0x4fff]
[    0.217045] pci 0000:00:1c.1:   bridge window [mem 0x80200000-0x803fffff]
[    0.217054] pci 0000:00:1c.1:   bridge window [mem 0x80400000-0x805fffff 64bit pref]
[    0.217067] pci 0000:00:1c.2: PCI bridge to [bus 09-09]
[    0.217074] pci 0000:00:1c.2:   bridge window [io  0x2000-0x2fff]
[    0.217084] pci 0000:00:1c.2:   bridge window [mem 0xf0200000-0xf02fffff]
[    0.217093] pci 0000:00:1c.2:   bridge window [mem 0x80600000-0x807fffff 64bit pref]
[    0.217105] pci 0000:00:1c.3: PCI bridge to [bus 0b-0b]
[    0.217112] pci 0000:00:1c.3:   bridge window [io  0x5000-0x5fff]
[    0.217122] pci 0000:00:1c.3:   bridge window [mem 0x80800000-0x809fffff]
[    0.217131] pci 0000:00:1c.3:   bridge window [mem 0x80a00000-0x80bfffff 64bit pref]
[    0.217144] pci 0000:00:1e.0: PCI bridge to [bus 11-11]
[    0.217149] pci 0000:00:1e.0:   bridge window [io  disabled]
[    0.217157] pci 0000:00:1e.0:   bridge window [mem disabled]
[    0.217165] pci 0000:00:1e.0:   bridge window [mem pref disabled]
[    0.217199] pci 0000:00:1c.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    0.217209] pci 0000:00:1c.0: setting latency timer to 64
[    0.217222] pci 0000:00:1c.1: enabling device (0000 -> 0003)
[    0.217234] pci 0000:00:1c.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17
[    0.217245] pci 0000:00:1c.1: setting latency timer to 64
[    0.217261] pci 0000:00:1c.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
[    0.217270] pci 0000:00:1c.2: setting latency timer to 64
[    0.217282] pci 0000:00:1c.3: enabling device (0000 -> 0003)
[    0.217293] pci 0000:00:1c.3: PCI INT D -> GSI 19 (level, low) -> IRQ 19
[    0.217304] pci 0000:00:1c.3: setting latency timer to 64
[    0.217317] pci 0000:00:1e.0: setting latency timer to 64
[    0.217325] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7]
[    0.217331] pci_bus 0000:00: resource 5 [mem 0x000a0000-0x000bffff]
[    0.217337] pci_bus 0000:00: resource 6 [mem 0x000d0000-0x000d3fff]
[    0.217343] pci_bus 0000:00: resource 7 [mem 0x000d4000-0x000d7fff]
[    0.217349] pci_bus 0000:00: resource 8 [mem 0x000d8000-0x000dbfff]
[    0.217355] pci_bus 0000:00: resource 9 [mem 0x000e0000-0x000e3fff]
[    0.217361] pci_bus 0000:00: resource 10 [mem 0x80000000-0xf7ffffff]
[    0.217367] pci_bus 0000:00: resource 11 [io  0x0d00-0xfdff]
[    0.217374] pci_bus 0000:05: resource 0 [io  0x3000-0x3fff]
[    0.217380] pci_bus 0000:05: resource 1 [mem 0xf0100000-0xf01fffff]
[    0.217386] pci_bus 0000:05: resource 2 [mem 0x80000000-0x801fffff 64bit pref]
[    0.217393] pci_bus 0000:07: resource 0 [io  0x4000-0x4fff]
[    0.217398] pci_bus 0000:07: resource 1 [mem 0x80200000-0x803fffff]
[    0.217405] pci_bus 0000:07: resource 2 [mem 0x80400000-0x805fffff 64bit pref]
[    0.217411] pci_bus 0000:09: resource 0 [io  0x2000-0x2fff]
[    0.217417] pci_bus 0000:09: resource 1 [mem 0xf0200000-0xf02fffff]
[    0.217423] pci_bus 0000:09: resource 2 [mem 0x80600000-0x807fffff 64bit pref]
[    0.217430] pci_bus 0000:0b: resource 0 [io  0x5000-0x5fff]
[    0.217436] pci_bus 0000:0b: resource 1 [mem 0x80800000-0x809fffff]
[    0.217442] pci_bus 0000:0b: resource 2 [mem 0x80a00000-0x80bfffff 64bit pref]
[    0.217449] pci_bus 0000:11: resource 4 [io  0x0000-0x0cf7]
[    0.217454] pci_bus 0000:11: resource 5 [mem 0x000a0000-0x000bffff]
[    0.217461] pci_bus 0000:11: resource 6 [mem 0x000d0000-0x000d3fff]
[    0.217467] pci_bus 0000:11: resource 7 [mem 0x000d4000-0x000d7fff]
[    0.217473] pci_bus 0000:11: resource 8 [mem 0x000d8000-0x000dbfff]
[    0.217479] pci_bus 0000:11: resource 9 [mem 0x000e0000-0x000e3fff]
[    0.217485] pci_bus 0000:11: resource 10 [mem 0x80000000-0xf7ffffff]
[    0.217491] pci_bus 0000:11: resource 11 [io  0x0d00-0xfdff]
[    0.217578] NET: Registered protocol family 2
[    0.217723] IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
[    0.218228] TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
[    0.219190] TCP bind hash table entries: 65536 (order: 7, 524288 bytes)
[    0.219616] TCP: Hash tables configured (established 131072 bind 65536)
[    0.219623] TCP reno registered
[    0.219631] UDP hash table entries: 512 (order: 2, 16384 bytes)
[    0.219649] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
[    0.219921] pci 0000:00:02.0: Boot video device
[    0.220162] PCI: CLS 32 bytes, default 64
[    0.220445] Simple Boot Flag at 0x36 set to 0x1
[    0.221970] audit: initializing netlink socket (disabled)
[    0.221991] type=2000 audit(1304962352.220:1): initialized
[    0.222696] highmem bounce pool size: 64 pages
[    0.230282] VFS: Disk quotas dquot_6.5.2
[    0.230506] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[    0.232438] SGI XFS with security attributes, realtime, large block/inode numbers, no debug enabled
[    0.233899] msgmni has been set to 1708
[    0.234565] alg: No test for stdrng (krng)
[    0.234690] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
[    0.234697] io scheduler noop registered
[    0.234739] io scheduler cfq registered (default)
[    0.234861] xz_dec_test: module loaded
[    0.234865] xz_dec_test: Create a device node with 'mknod xz_dec_test c 252 0' and write .xz files to it.
[    0.235118] pcieport 0000:00:1c.0: setting latency timer to 64
[    0.235298] pcieport 0000:00:1c.1: setting latency timer to 64
[    0.235476] pcieport 0000:00:1c.2: setting latency timer to 64
[    0.235649] pcieport 0000:00:1c.3: setting latency timer to 64
[    0.236235] intel_idle: MWAIT substates: 0x20220
[    0.236249] intel_idle: v0.4 model 0x1C
[    0.236253] intel_idle: lapic_timer_reliable_states 0x2
[    0.236271] Marking TSC unstable due to TSC halts in idle states deeper than C2
[    0.237087] ACPI: Deprecated procfs I/F for AC is loaded, please retry with CONFIG_ACPI_PROCFS_POWER cleared
[    0.237497] ACPI: AC Adapter [ADP1] (on-line)
[    0.237891] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input0
[    0.238185] ACPI: Lid Switch [LID0]
[    0.238419] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input1
[    0.246042] ACPI: Power Button [PWRB]
[    0.246265] input: Sleep Button as /devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input2
[    0.246274] ACPI: Sleep Button [SLPB]
[    0.246474] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
[    0.246483] ACPI: Power Button [PWRF]
[    0.246660] ACPI: acpi_idle yielding to intel_idle
[    0.254864] thermal LNXTHERM:00: registered as thermal_zone0
[    0.254871] ACPI: Thermal Zone [TZ00] (25 C)
[    0.255303] ACPI: Deprecated procfs I/F for battery is loaded, please retry with CONFIG_ACPI_PROCFS_POWER cleared
[    0.255328] ACPI: Battery Slot [BAT1] (battery absent)
[    0.255830] Non-volatile memory driver v1.3
[    0.255909] Linux agpgart interface v0.103
[    0.255990] agpgart-intel 0000:00:00.0: Intel GMA3150 Chipset
[    0.256208] agpgart-intel 0000:00:00.0: detected gtt size: 524288K total, 262144K mappable
[    0.256441] agpgart-intel 0000:00:00.0: detected 8192K stolen memory
[    0.256740] agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0xd0000000
[    0.256942] [drm] Initialized drm 1.1.0 20060810
[    0.256981] i915 0000:00:02.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    0.256990] i915 0000:00:02.0: setting latency timer to 64
[    0.300472] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
[    0.300479] [drm] Driver supports precise vblank timestamp query.
[    0.361630] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
[    0.361996] [drm] initialized overlay support
[    0.643440] fbcon: inteldrmfb (fb0) is primary device
[    0.662948] Console: switching to colour frame buffer device 128x37
[    0.669566] fb0: inteldrmfb frame buffer device
[    0.669570] drm: registered panic notifier
[    0.670870] ACPI Warning: _BQC returned an invalid level (20110112/video-473)
[    0.671608] acpi device:04: registered as cooling_device2
[    0.671915] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:00/input/input4
[    0.671929] ACPI: Video Device [IGD0] (multi-head: yes  rom: no  post: no)
[    0.672256] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
[    0.672776] ahci 0000:00:1f.2: version 3.0
[    0.672799] ahci 0000:00:1f.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[    0.672942] ahci 0000:00:1f.2: AHCI 0001.0100 32 slots 4 ports 3 Gbps 0xf impl SATA mode
[    0.672952] ahci 0000:00:1f.2: flags: 64bit ncq pm led clo pio slum part 
[    0.672961] ahci 0000:00:1f.2: setting latency timer to 64
[    0.675182] scsi0 : ahci
[    0.675530] scsi1 : ahci
[    0.675813] scsi2 : ahci
[    0.676105] scsi3 : ahci
[    0.676527] ata1: SATA max UDMA/133 abar m1024@0xf0604400 port 0xf0604500 irq 19
[    0.676535] ata2: SATA max UDMA/133 abar m1024@0xf0604400 port 0xf0604580 irq 19
[    0.676543] ata3: SATA max UDMA/133 abar m1024@0xf0604400 port 0xf0604600 irq 19
[    0.676550] ata4: SATA max UDMA/133 abar m1024@0xf0604400 port 0xf0604680 irq 19
[    0.677103] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    0.677151] ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 23 (level, low) -> IRQ 23
[    0.677184] ehci_hcd 0000:00:1d.7: setting latency timer to 64
[    0.677192] ehci_hcd 0000:00:1d.7: EHCI Host Controller
[    0.677205] ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 1
[    0.681095] ehci_hcd 0000:00:1d.7: using broken periodic workaround
[    0.681113] ehci_hcd 0000:00:1d.7: debug port 1
[    0.685025] ehci_hcd 0000:00:1d.7: cache line size of 32 is not supported
[    0.685058] ehci_hcd 0000:00:1d.7: irq 23, io mem 0xf0604000
[    0.694055] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00
[    0.694128] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    0.694134] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.694140] usb usb1: Product: EHCI Host Controller
[    0.694144] usb usb1: Manufacturer: Linux 2.6.38-netbook ehci_hcd
[    0.694150] usb usb1: SerialNumber: 0000:00:1d.7
[    0.694539] hub 1-0:1.0: USB hub found
[    0.694549] hub 1-0:1.0: 8 ports detected
[    0.694779] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    0.694864] uhci_hcd: USB Universal Host Controller Interface driver
[    0.694937] uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23
[    0.694954] uhci_hcd 0000:00:1d.0: setting latency timer to 64
[    0.694961] uhci_hcd 0000:00:1d.0: UHCI Host Controller
[    0.694974] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
[    0.698098] uhci_hcd 0000:00:1d.0: irq 23, io base 0x00001820
[    0.698172] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001
[    0.698178] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.698184] usb usb2: Product: UHCI Host Controller
[    0.698189] usb usb2: Manufacturer: Linux 2.6.38-netbook uhci_hcd
[    0.698194] usb usb2: SerialNumber: 0000:00:1d.0
[    0.698548] hub 2-0:1.0: USB hub found
[    0.698559] hub 2-0:1.0: 2 ports detected
[    0.698705] uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[    0.698717] uhci_hcd 0000:00:1d.1: setting latency timer to 64
[    0.698724] uhci_hcd 0000:00:1d.1: UHCI Host Controller
[    0.698736] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 3
[    0.701087] uhci_hcd 0000:00:1d.1: irq 19, io base 0x00001840
[    0.701165] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
[    0.701171] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.701176] usb usb3: Product: UHCI Host Controller
[    0.701181] usb usb3: Manufacturer: Linux 2.6.38-netbook uhci_hcd
[    0.701186] usb usb3: SerialNumber: 0000:00:1d.1
[    0.701530] hub 3-0:1.0: USB hub found
[    0.701540] hub 3-0:1.0: 2 ports detected
[    0.701689] uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
[    0.701702] uhci_hcd 0000:00:1d.2: setting latency timer to 64
[    0.701709] uhci_hcd 0000:00:1d.2: UHCI Host Controller
[    0.701721] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 4
[    0.704125] uhci_hcd 0000:00:1d.2: irq 18, io base 0x00001860
[    0.704200] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001
[    0.704206] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.704212] usb usb4: Product: UHCI Host Controller
[    0.704216] usb usb4: Manufacturer: Linux 2.6.38-netbook uhci_hcd
[    0.704221] usb usb4: SerialNumber: 0000:00:1d.2
[    0.704563] hub 4-0:1.0: USB hub found
[    0.704573] hub 4-0:1.0: 2 ports detected
[    0.704725] uhci_hcd 0000:00:1d.3: PCI INT D -> GSI 16 (level, low) -> IRQ 16
[    0.704738] uhci_hcd 0000:00:1d.3: setting latency timer to 64
[    0.704745] uhci_hcd 0000:00:1d.3: UHCI Host Controller
[    0.704757] uhci_hcd 0000:00:1d.3: new USB bus registered, assigned bus number 5
[    0.707086] uhci_hcd 0000:00:1d.3: irq 16, io base 0x00001880
[    0.707163] usb usb5: New USB device found, idVendor=1d6b, idProduct=0001
[    0.707169] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.707175] usb usb5: Product: UHCI Host Controller
[    0.707180] usb usb5: Manufacturer: Linux 2.6.38-netbook uhci_hcd
[    0.707185] usb usb5: SerialNumber: 0000:00:1d.3
[    0.707534] hub 5-0:1.0: USB hub found
[    0.707545] hub 5-0:1.0: 2 ports detected
[    0.707760] Initializing USB Mass Storage driver...
[    0.707888] usbcore: registered new interface driver usb-storage
[    0.707893] USB Mass Storage support registered.
[    0.708037] usbcore: registered new interface driver libusual
[    0.708228] i8042: PNP: PS/2 Controller [PNP0303:KBC0,PNP0f13:MSE0] at 0x60,0x64 irq 1,12
[    0.711057] i8042: Detected active multiplexing controller, rev 1.1
[    0.712474] serio: i8042 KBD port at 0x60,0x64 irq 1
[    0.712485] serio: i8042 AUX0 port at 0x60,0x64 irq 12
[    0.712492] serio: i8042 AUX1 port at 0x60,0x64 irq 12
[    0.712498] serio: i8042 AUX2 port at 0x60,0x64 irq 12
[    0.712505] serio: i8042 AUX3 port at 0x60,0x64 irq 12
[    0.712786] mousedev: PS/2 mouse device common for all mice
[    0.719260] rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0
[    0.719306] rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[    0.719564] coretemp coretemp.0: Unable to read TjMax from CPU.
[    0.719574] coretemp coretemp.0: Using relative temperature scale!
[    0.720265] device-mapper: ioctl: 4.19.1-ioctl (2011-01-07) initialised: dm-devel@redhat.com
[    0.720916] cpuidle: using governor ladder
[    0.721949] cpuidle: using governor menu
[    0.721966] ieee80211_crypt: registered algorithm 'NULL'
[    0.721970] ieee80211_crypt: registered algorithm 'TKIP'
[    0.721975] ieee80211_crypt: registered algorithm 'CCMP'
[    0.721979] ieee80211_crypt: registered algorithm 'WEP'
[    0.721983] 
[    0.721984] Linux kernel driver for RTL8192 based WLAN cards
[    0.721988] Copyright (c) 2007-2008, Realsil Wlan
[    0.722109] usbcore: registered new interface driver rtl819xU
[    0.722931] HDA Intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
[    0.722996] HDA Intel 0000:00:1b.0: setting latency timer to 64
[    0.736801] hda_codec: ALC269: BIOS auto-probing.
[    0.740814] input: HDA Intel Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input5
[    0.741159] input: HDA Intel Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input6
[    0.742558] ALSA device list:
[    0.742564]   #0: HDA Intel at 0xf0400000 irq 22
[    0.742630] Netfilter messages via NETLINK v0.30.
[    0.742659] nf_conntrack version 0.5.0 (16384 buckets, 65536 max)
[    0.743081] ctnetlink v0.93: registering with nfnetlink.
[    0.743105] xt_time: kernel timezone is -0000
[    0.744097] ip_tables: (C) 2000-2006 Netfilter Core Team
[    0.744225] arp_tables: (C) 2002 David S. Miller
[    0.744253] TCP cubic registered
[    0.744257] Registering the dns_resolver key type
[    0.745222] Using IPI No-Shortcut mode
[    0.745642] PM: Hibernation image not present or could not be loaded.
[    0.745658] registered taskstats version 1
[    0.746340] rtc_cmos 00:04: setting system clock to 2011-05-09 17:32:33 UTC (1304962353)
[    0.752049] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input7
[    0.983130] ata2: SATA link down (SStatus 0 SControl 300)
[    0.983182] ata4: SATA link down (SStatus 0 SControl 300)
[    0.983219] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    0.983254] ata3: SATA link down (SStatus 0 SControl 300)
[    0.983512] ata1.00: ATA-7: INTEL SSDSA2M080G2GC, 2CV102HD, max UDMA/133
[    0.983519] ata1.00: 156301488 sectors, multi 16: LBA48 NCQ (depth 31/32)
[    0.983850] ata1.00: configured for UDMA/133
[    0.984120] scsi 0:0:0:0: Direct-Access     ATA      INTEL SSDSA2M080 2CV1 PQ: 0 ANSI: 5
[    0.984640] sd 0:0:0:0: [sda] 156301488 512-byte logical blocks: (80.0 GB/74.5 GiB)
[    0.984880] sd 0:0:0:0: [sda] Write Protect is off
[    0.984891] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    0.984946] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    0.984975] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    0.987463]  sda: sda1 sda2 sda3 sda4 < sda5 sda6 >
[    0.988862] sd 0:0:0:0: [sda] Attached SCSI disk
[    1.099135] usb 1-8: new high speed USB device using ehci_hcd and address 3
[    1.228263] usb 1-8: New USB device found, idVendor=0ac8, idProduct=c33f
[    1.228275] usb 1-8: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    1.228285] usb 1-8: Product: WebCam SCB-0340N
[    1.228292] usb 1-8: Manufacturer: Namuga.
[    1.435051] usb 4-2: new full speed USB device using uhci_hcd and address 2
[    1.599218] usb 4-2: New USB device found, idVendor=0a5c, idProduct=219b
[    1.599230] usb 4-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    1.599240] usb 4-2: Product: Broadcom Bluetooth 2.1 Device
[    1.599248] usb 4-2: Manufacturer: Broadcom Corp
[    1.599260] usb 4-2: SerialNumber: 2C8158C9FEC0
[    1.718071] Synaptics Touchpad, model: 1, fw: 7.2, id: 0x1c0b1, caps: 0xd04773/0xa40000/0xa0000
[    1.760391] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio4/input/input8
[    1.770232] EXT4-fs (sda5): mounted filesystem with ordered data mode. Opts: (null)
[    1.770255] VFS: Mounted root (ext4 filesystem) readonly on device 8:5.
[    1.771727] devtmpfs: mounted
[    1.771808] Freeing unused kernel memory: 348k freed
[    1.772135] Write protecting the kernel text: 3840k
[    1.772188] Write protecting the kernel read-only data: 1340k
[    1.772198] BFS CPU scheduler v0.401 by Con Kolivas.
[    1.863227] NET: Registered protocol family 1
[    2.469993] <30>udev[851]: starting version 167
[    2.741537] i801_smbus 0000:00:1f.3: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[    2.874679] sky2: driver version 1.28
[    2.874826] sky2 0000:09:00.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[    2.874886] sky2 0000:09:00.0: setting latency timer to 64
[    2.875057] sky2 0000:09:00.0: Yukon-2 FE+ chip revision 0
[    2.877182] fuse init (API version 7.16)
[    2.915089] sky2 0000:09:00.0: eth0: addr 00:24:54:65:e0:d9
[    2.922770] usbcore: registered new interface driver usblp
[    2.995450] Bluetooth: Core ver 2.15
[    2.995499] NET: Registered protocol family 31
[    2.995505] Bluetooth: HCI device and connection manager initialized
[    2.995512] Bluetooth: HCI socket layer initialized
[    3.145089] Bluetooth: Generic Bluetooth USB driver ver 0.6
[    3.147389] Linux video capture interface: v2.00
[    3.203691] usbcore: registered new interface driver btusb
[    3.284928] uvcvideo: Found UVC 1.00 device WebCam SCB-0340N (0ac8:c33f)
[    3.287167] input: WebCam SCB-0340N as /devices/pci0000:00/0000:00:1d.7/usb1/1-8/1-8:1.0/input/input9
[    3.287406] usbcore: registered new interface driver uvcvideo
[    3.287413] USB Video Class driver (v1.0.0)
[    3.373716] ath9k 0000:05:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    3.373740] ath9k 0000:05:00.0: setting latency timer to 64
[    3.474866] ath: EEPROM regdomain: 0x65
[    3.474875] ath: EEPROM indicates we should expect a direct regpair map
[    3.474886] ath: Country alpha2 being used: 00
[    3.474892] ath: Regpair used: 0x65
[    3.541422] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
[    3.542662] Registered led device: ath9k-phy0::radio
[    3.542758] Registered led device: ath9k-phy0::assoc
[    3.542838] Registered led device: ath9k-phy0::tx
[    3.542918] Registered led device: ath9k-phy0::rx
[    3.542938] ieee80211 phy0: Atheros AR9285 Rev:2 mem=0xf89e0000, irq=16
[    3.748769] EXT4-fs (sda5): re-mounted. Opts: discard
[    3.873936] EXT4-fs (sda5): re-mounted. Opts: discard
[    3.973059] EXT4-fs (sda6): mounted filesystem with ordered data mode. Opts: (null)
[    3.988469] REISERFS (device sda3): found reiserfs format "3.6" with standard journal
[    3.988519] REISERFS (device sda3): using ordered data mode
[    3.988873] REISERFS (device sda3): journal params: device sda3, size 8192, journal first block 18, max trans len 1024, max batch 900, max commit age 30, max trans age 30
[    3.989411] REISERFS (device sda3): checking transaction log (sda3)
[    3.991951] REISERFS (device sda3): Using r5 hash to sort names
[    4.045670] Adding 1028156k swap on /dev/sda2.  Priority:-1 extents:1 across:1028156k SS
[    5.950288] sky2 0000:09:00.0: eth0: enabling interface
[    6.010322] NET: Registered protocol family 17
[    7.724797] NET: Registered protocol family 10
[    7.728194] ADDRCONF(NETDEV_UP): eth0: link is not ready
[    7.728654] ADDRCONF(NETDEV_UP): wlan0: link is not ready
[    8.977943] wlan0: authenticate with 00:23:69:88:e1:72 (try 1)
[    8.979996] wlan0: authenticated
[    9.034350] wlan0: associate with 00:23:69:88:e1:72 (try 1)
[    9.037157] wlan0: RX AssocResp from 00:23:69:88:e1:72 (capab=0x411 status=0 aid=2)
[    9.037167] wlan0: associated
[    9.038590] ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[    9.236684] EXT4-fs (sda5): re-mounted. Opts: discard,commit=0
[    9.258136] EXT4-fs (sda6): re-mounted. Opts: commit=0


Create a new paste based on this one


Comments: