ubuntuusers.de

Unbenannt

Datum:
26. Juli 2011 19:40
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
[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Linux version 2.6.32-33-generic (buildd@rothera) (gcc version 4.4.3 (Ubuntu 4.4.3-4ubuntu5) ) #70-Ubuntu SMP Thu Jul 7 21:09:46 UTC 2011 (Ubuntu 2.6.32-33.70-generic 2.6.32.41+drm33.18)
[    0.000000] KERNEL supported cpus:
[    0.000000]   Intel GenuineIntel
[    0.000000]   AMD AuthenticAMD
[    0.000000]   NSC Geode by NSC
[    0.000000]   Cyrix CyrixInstead
[    0.000000]   Centaur CentaurHauls
[    0.000000]   Transmeta GenuineTMx86
[    0.000000]   Transmeta TransmetaCPU
[    0.000000]   UMC UMC UMC UMC
[    0.000000] BIOS-provided physical RAM map:
[    0.000000]  BIOS-e820: 0000000000000000 - 000000000009fc00 (usable)
[    0.000000]  BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved)
[    0.000000]  BIOS-e820: 00000000000e2000 - 0000000000100000 (reserved)
[    0.000000]  BIOS-e820: 0000000000100000 - 000000003f650000 (usable)
[    0.000000]  BIOS-e820: 000000003f650000 - 000000003f660000 (reserved)
[    0.000000]  BIOS-e820: 000000003f660000 - 000000003f66e000 (ACPI data)
[    0.000000]  BIOS-e820: 000000003f66e000 - 000000003f6b0000 (ACPI NVS)
[    0.000000]  BIOS-e820: 000000003f6b0000 - 000000003f6c0000 (reserved)
[    0.000000]  BIOS-e820: 000000003f6c8000 - 000000003f800000 (reserved)
[    0.000000]  BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved)
[    0.000000]  BIOS-e820: 00000000fff00000 - 0000000100000000 (reserved)
[    0.000000] DMI 2.5 present.
[    0.000000] AMI BIOS detected: BIOS may corrupt low RAM, working around it.
[    0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
[    0.000000] last_pfn = 0x3f650 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-DFFFF uncachable
[    0.000000]   E0000-EFFFF write-through
[    0.000000]   F0000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 000000000 mask 0C0000000 write-back
[    0.000000]   1 base 03F700000 mask 0FFF00000 uncachable
[    0.000000]   2 base 03F800000 mask 0FF800000 uncachable
[    0.000000]   3 disabled
[    0.000000]   4 disabled
[    0.000000]   5 disabled
[    0.000000]   6 disabled
[    0.000000]   7 disabled
[    0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[    0.000000] Scanning 0 areas for low memory corruption
[    0.000000] modified physical RAM map:
[    0.000000]  modified: 0000000000000000 - 0000000000010000 (reserved)
[    0.000000]  modified: 0000000000010000 - 000000000009fc00 (usable)
[    0.000000]  modified: 000000000009fc00 - 00000000000a0000 (reserved)
[    0.000000]  modified: 00000000000e2000 - 0000000000100000 (reserved)
[    0.000000]  modified: 0000000000100000 - 000000003f650000 (usable)
[    0.000000]  modified: 000000003f650000 - 000000003f660000 (reserved)
[    0.000000]  modified: 000000003f660000 - 000000003f66e000 (ACPI data)
[    0.000000]  modified: 000000003f66e000 - 000000003f6b0000 (ACPI NVS)
[    0.000000]  modified: 000000003f6b0000 - 000000003f6c0000 (reserved)
[    0.000000]  modified: 000000003f6c8000 - 000000003f800000 (reserved)
[    0.000000]  modified: 00000000fee00000 - 00000000fee01000 (reserved)
[    0.000000]  modified: 00000000fff00000 - 0000000100000000 (reserved)
[    0.000000] initial memory mapped : 0 - 00c00000
[    0.000000] init_memory_mapping: 0000000000000000-00000000377fe000
[    0.000000] Using x86 segment limits to approximate NX protection
[    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 @ 10000-15000
[    0.000000] RAMDISK: 2f15c000 - 2f8fbcc4
[    0.000000] ACPI: RSDP 000fbfd0 00024 (v02 ACPIAM)
[    0.000000] ACPI: XSDT 3f660100 0005C (v01 110509 XSDT0923 20091105 MSFT 00000097)
[    0.000000] ACPI: FACP 3f660290 000F4 (v04 110509 FACP0923 20091105 MSFT 00000097)
[    0.000000] ACPI: DSDT 3f660430 0964D (v02  A1359 A1359000 00000000 INTL 20060113)
[    0.000000] ACPI: FACS 3f66e000 00040
[    0.000000] ACPI: APIC 3f660390 0005C (v02 110509 APIC0923 20091105 MSFT 00000097)
[    0.000000] ACPI: MCFG 3f6603f0 0003C (v01 110509 OEMMCFG  20091105 MSFT 00000097)
[    0.000000] ACPI: OEMB 3f66e040 0012C (v01 110509 OEMB0923 20091105 MSFT 00000097)
[    0.000000] ACPI: HPET 3f669a80 00038 (v01 110509 OEMHPET  20091105 MSFT 00000097)
[    0.000000] ACPI: GSCI 3f66e170 02024 (v01 110509 GMCHSCI  20091105 MSFT 00000097)
[    0.000000] ACPI: SSDT 3f670b60 004F0 (v01  PmRef    CpuPm 00003000 INTL 20060113)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] 126MB HIGHMEM available.
[    0.000000] 887MB LOWMEM available.
[    0.000000]   mapped low ram: 0 - 377fe000
[    0.000000]   low ram: 0 - 377fe000
[    0.000000]   node 0 low ram: 00000000 - 377fe000
[    0.000000]   node 0 bootmap 00011000 - 00017f00
[    0.000000] (9 early reservations) ==> bootmem [0000000000 - 00377fe000]
[    0.000000]   #0 [0000000000 - 0000001000]   BIOS data page ==> [0000000000 - 0000001000]
[    0.000000]   #1 [0000001000 - 0000002000]    EX TRAMPOLINE ==> [0000001000 - 0000002000]
[    0.000000]   #2 [0000006000 - 0000007000]       TRAMPOLINE ==> [0000006000 - 0000007000]
[    0.000000]   #3 [0000100000 - 00008e0ef8]    TEXT DATA BSS ==> [0000100000 - 00008e0ef8]
[    0.000000]   #4 [002f15c000 - 002f8fbcc4]          RAMDISK ==> [002f15c000 - 002f8fbcc4]
[    0.000000]   #5 [000009fc00 - 0000100000]    BIOS reserved ==> [000009fc00 - 0000100000]
[    0.000000]   #6 [00008e1000 - 00008e41a8]              BRK ==> [00008e1000 - 00008e41a8]
[    0.000000]   #7 [0000010000 - 0000011000]          PGTABLE ==> [0000010000 - 0000011000]
[    0.000000]   #8 [0000011000 - 0000018000]          BOOTMAP ==> [0000011000 - 0000018000]
[    0.000000] found SMP MP-table at [c00ff780] ff780
[    0.000000] Zone PFN ranges:
[    0.000000]   DMA      0x00000010 -> 0x00001000
[    0.000000]   Normal   0x00001000 -> 0x000377fe
[    0.000000]   HighMem  0x000377fe -> 0x0003f650
[    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 -> 0x0003f650
[    0.000000] On node 0 totalpages: 259551
[    0.000000] free_area_init_node: node 0, pgdat c079a7c0, node_mem_map c1001200
[    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: 253 pages used for memmap
[    0.000000]   HighMem zone: 32085 pages, LIFO batch:7
[    0.000000] Using APIC driver default
[    0.000000] ACPI: PM-Timer IO Port: 0x908
[    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: 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 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: 24
[    0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
[    0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e2000
[    0.000000] PM: Registered nosave memory: 00000000000e2000 - 0000000000100000
[    0.000000] Allocating PCI resources starting at 3f800000 (gap: 3f800000:bf600000)
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:2 nr_node_ids:1
[    0.000000] PERCPU: Embedded 14 pages/cpu @c1800000 s36312 r0 d21032 u2097152
[    0.000000] pcpu-alloc: s36312 r0 d21032 u2097152 alloc=1*4194304
[    0.000000] pcpu-alloc: [0] 0 1 
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 257522
[    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-2.6.32-33-generic root=UUID=b63a2b90-5896-4ed6-a075-17752996334a ro quiet splash
[    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] Enabling fast FPU save and restore... done.
[    0.000000] Enabling unmasked SIMD FPU exception support... done.
[    0.000000] Initializing CPU#0
[    0.000000] allocated 5192960 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:0003f650)
[    0.000000] Memory: 1007548k/1038656k available (4675k kernel code, 30040k reserved, 2127k data, 668k init, 129352k highmem)
[    0.000000] virtual kernel memory layout:
[    0.000000]     fixmap  : 0xfff1d000 - 0xfffff000   ( 904 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 : 0xc07a5000 - 0xc084c000   ( 668 kB)
[    0.000000]       .data : 0xc0590dc7 - 0xc07a4d88   (2127 kB)
[    0.000000]       .text : 0xc0100000 - 0xc0590dc7   (4675 kB)
[    0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok.
[    0.000000] SLUB: Genslabs=13, HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
[    0.000000] Hierarchical RCU implementation.
[    0.000000] NR_IRQS:2304 nr_irqs:424
[    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 1331.258 MHz processor.
[    0.004011] Calibrating delay loop (skipped), value calculated using timer frequency.. 2662.51 BogoMIPS (lpj=5325032)
[    0.004056] Security Framework initialized
[    0.004110] AppArmor: AppArmor initialized
[    0.004130] Mount-cache hash table entries: 512
[    0.004435] Initializing cgroup subsys ns
[    0.004448] Initializing cgroup subsys cpuacct
[    0.004460] Initializing cgroup subsys memory
[    0.004477] Initializing cgroup subsys devices
[    0.004485] Initializing cgroup subsys freezer
[    0.004491] Initializing cgroup subsys net_cls
[    0.004540] CPU: L1 I cache: 32K, L1 D cache: 24K
[    0.004549] CPU: L2 cache: 512K
[    0.004556] CPU: Physical Processor ID: 0
[    0.004561] CPU: Processor Core ID: 0
[    0.004571] mce: CPU supports 5 MCE banks
[    0.004591] CPU0: Thermal monitoring enabled (TM2)
[    0.004602] using mwait in idle threads.
[    0.004618] Performance Events: Atom events, Intel PMU driver.
[    0.004638] ... version:                3
[    0.004643] ... bit width:              40
[    0.004649] ... generic registers:      2
[    0.004655] ... value mask:             000000ffffffffff
[    0.004661] ... max period:             000000007fffffff
[    0.004667] ... fixed-purpose events:   3
[    0.004672] ... event mask:             0000000700000003
[    0.004684] Checking 'hlt' instruction... OK.
[    0.020010] Disabling 4MB page tables to avoid TLB bug
[    0.025214] ACPI: Core revision 20090903
[    0.052044] ftrace: converting mcount calls to 0f 1f 44 00 00
[    0.052063] ftrace: allocating 21725 entries in 43 pages
[    0.056140] Enabling APIC mode:  Flat.  Using 1 I/O APICs
[    0.056473] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.099047] CPU0: Intel(R) Atom(TM) CPU Z520   @ 1.33GHz stepping 02
[    0.100001] Booting processor 1 APIC 0x1 ip 0x6000
[    0.008000] Initializing CPU#1
[    0.008000] CPU: L1 I cache: 32K, L1 D cache: 24K
[    0.008000] CPU: L2 cache: 512K
[    0.008000] CPU: Physical Processor ID: 0
[    0.008000] CPU: Processor Core ID: 0
[    0.008000] CPU1: Thermal monitoring enabled (TM2)
[    0.184080] CPU1: Intel(R) Atom(TM) CPU Z520   @ 1.33GHz stepping 02
[    0.184098] checking TSC synchronization [CPU#0 -> CPU#1]: passed.
[    0.188047] Brought up 2 CPUs
[    0.188056] Total of 2 processors activated (5325.02 BogoMIPS).
[    0.188525] CPU0 attaching sched-domain:
[    0.188535]  domain 0: span 0-1 level SIBLING
[    0.188542]   groups: 0 (cpu_power = 589) 1 (cpu_power = 589)
[    0.188557]   domain 1: span 0-1 level MC
[    0.188564]    groups: 0-1 (cpu_power = 1178)
[    0.188577] CPU1 attaching sched-domain:
[    0.188583]  domain 0: span 0-1 level SIBLING
[    0.188589]   groups: 1 (cpu_power = 589) 0 (cpu_power = 589)
[    0.188603]   domain 1: span 0-1 level MC
[    0.188610]    groups: 0-1 (cpu_power = 1178)
[    0.188825] devtmpfs: initialized
[    0.188909] regulator: core version 0.5
[    0.188909] Time: 10:13:03  Date: 07/26/11
[    0.188909] NET: Registered protocol family 16
[    0.188909] Trying to unpack rootfs image as initramfs...
[    0.188909] EISA bus registered
[    0.188909] ACPI: bus type pci registered
[    0.188914] PCI: MCFG configuration 0: base e0000000 segment 0 buses 0 - 255
[    0.188926] PCI: Not using MMCONFIG.
[    0.189225] PCI: PCI BIOS revision 3.00 entry at 0xf0031, last bus=3
[    0.189233] PCI: Using configuration type 1 for base access
[    0.195268] bio: create slab <bio-0> at 0
[    0.199352] ACPI: EC: Look up EC in DSDT
[    0.203743] ACPI: Executed 1 blocks of module-level executable AML code
[    0.226657] ACPI: Interpreter enabled
[    0.226675] ACPI: (supports S0 S3 S4 S5)
[    0.226769] ACPI: Using IOAPIC for interrupt routing
[    0.226968] PCI: MCFG configuration 0: base e0000000 segment 0 buses 0 - 255
[    0.230910] ACPI: BIOS _OSI(Linux) query ignored
[    0.237697] PCI: MCFG area at e0000000 reserved in ACPI motherboard resources
[    0.237709] PCI: Using MMCONFIG for extended config space
[    0.260078] ACPI: EC: GPE = 0xd, I/O: command/status = 0x66, data = 0x62
[    0.260392] ACPI Warning: Incorrect checksum in table [OEMB] - 20, should be 70 (20090903/tbutils-314)
[    0.261921] ACPI: No dock devices found.
[    0.262520] ACPI: PCI Root Bridge [PCI0] (0000:00)
[    0.262796] pci 0000:00:02.0: reg 10 32bit mmio: [0xf3f80000-0xf3ffffff]
[    0.262814] pci 0000:00:02.0: reg 14 io port: [0xc880-0xc887]
[    0.262830] pci 0000:00:02.0: reg 18 32bit mmio: [0xd0000000-0xdfffffff]
[    0.262847] pci 0000:00:02.0: reg 1c 32bit mmio: [0xf3f40000-0xf3f7ffff]
[    0.263001] pci 0000:00:1b.0: reg 10 64bit mmio: [0xf3f38000-0xf3f3bfff]
[    0.263067] pci 0000:00:1b.0: PME# supported from D0 D3hot
[    0.263079] pci 0000:00:1b.0: PME# disabled
[    0.263176] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.263188] pci 0000:00:1c.0: PME# disabled
[    0.263287] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[    0.263298] pci 0000:00:1c.1: PME# disabled
[    0.263375] pci 0000:00:1d.0: reg 20 io port: [0xb880-0xb89f]
[    0.263453] pci 0000:00:1d.1: reg 20 io port: [0xc080-0xc09f]
[    0.263539] pci 0000:00:1d.2: reg 20 io port: [0xc480-0xc49f]
[    0.263644] pci 0000:00:1d.7: reg 10 32bit mmio: [0xf3f37c00-0xf3f37fff]
[    0.263740] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
[    0.263753] pci 0000:00:1d.7: PME# disabled
[    0.263897] pci 0000:00:1f.1: reg 20 io port: [0xffa0-0xffaf]
[    0.264042] pci 0000:03:00.0: reg 10 64bit mmio: [0xfbfc0000-0xfbffffff]
[    0.264061] pci 0000:03:00.0: reg 18 io port: [0xe880-0xe8ff]
[    0.264152] pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.264165] pci 0000:03:00.0: PME# disabled
[    0.264255] pci 0000:00:1c.0: bridge io port: [0xe000-0xefff]
[    0.264267] pci 0000:00:1c.0: bridge 32bit mmio: [0xfbf00000-0xfbffffff]
[    0.264367] pci 0000:01:00.0: reg 10 64bit mmio: [0xfbef0000-0xfbefffff]
[    0.264471] pci 0000:01:00.0: supports D1
[    0.264481] pci 0000:01:00.0: PME# supported from D0 D1 D3hot D3cold
[    0.264494] pci 0000:01:00.0: PME# disabled
[    0.264588] pci 0000:00:1c.1: bridge io port: [0xd000-0xdfff]
[    0.264601] pci 0000:00:1c.1: bridge 32bit mmio: [0xf4000000-0xfbefffff]
[    0.264614] pci 0000:00:1c.1: bridge 32bit mmio pref: [0xcc000000-0xcfffffff]
[    0.264639] pci_bus 0000:00: on NUMA node 0
[    0.264670] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[    0.265135] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.POP4._PRT]
[    0.265318] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.POP5._PRT]
[    0.290806] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 *11 12 14 15)
[    0.291261] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 *10 11 12 14 15)
[    0.291708] ACPI: PCI Interrupt Link [LNKC] (IRQs *3 4 5 6 7 10 11 12 14 15)
[    0.292202] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 10 11 12 14 *15)
[    0.292649] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 *4 5 6 7 10 11 12 14 15)
[    0.293110] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 *7 10 11 12 14 15)
[    0.293568] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 *5 6 7 10 11 12 14 15)
[    0.294025] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 *6 7 10 11 12 14 15)
[    0.294453] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
[    0.294483] vgaarb: loaded
[    0.294891] SCSI subsystem initialized
[    0.295234] libata version 3.00 loaded.
[    0.295536] usbcore: registered new interface driver usbfs
[    0.295614] usbcore: registered new interface driver hub
[    0.295729] usbcore: registered new device driver usb
[    0.296350] ACPI: WMI: Mapper loaded
[    0.296359] PCI: Using ACPI for IRQ routing
[    0.296829] NetLabel: Initializing
[    0.296837] NetLabel:  domain hash size = 128
[    0.296844] NetLabel:  protocols = UNLABELED CIPSOv4
[    0.296887] NetLabel:  unlabeled traffic allowed by default
[    0.297014] HPET: 3 timers in total, 0 timers will be used for per-cpu timer
[    0.297029] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[    0.297047] hpet0: 3 comparators, 64-bit 14.318180 MHz counter
[    0.308097] Switching to clocksource tsc
[    0.312665] AppArmor: AppArmor Filesystem Enabled
[    0.312720] pnp: PnP ACPI init
[    0.312784] ACPI: bus type pnp registered
[    0.321203] pnp: PnP ACPI: found 14 devices
[    0.321215] ACPI: ACPI bus type pnp unregistered
[    0.321228] PnPBIOS: Disabled by ACPI PNP
[    0.321273] system 00:01: iomem range 0x40000000-0x7fffffff has been reserved
[    0.321286] system 00:01: iomem range 0x3f800000-0x3fffffff could not be reserved
[    0.321320] system 00:06: ioport range 0x374-0x375 has been reserved
[    0.321332] system 00:06: ioport range 0x3f4-0x3f5 has been reserved
[    0.321344] system 00:06: ioport range 0x380-0x387 has been reserved
[    0.321355] system 00:06: ioport range 0x9f4-0x9ff has been reserved
[    0.321368] system 00:06: ioport range 0x4d0-0x4d1 has been reserved
[    0.321379] system 00:06: ioport range 0x900-0x9f3 has been reserved
[    0.321391] system 00:06: ioport range 0x400-0x43f has been reserved
[    0.321403] system 00:06: ioport range 0x480-0x4bf has been reserved
[    0.321416] system 00:06: iomem range 0xf0000000-0xf0003fff has been reserved
[    0.321428] system 00:06: iomem range 0x384-0x387 could not be reserved
[    0.321466] system 00:0a: iomem range 0xfec00000-0xfec00fff could not be reserved
[    0.321479] system 00:0a: iomem range 0xfee00000-0xfee00fff has been reserved
[    0.321504] system 00:0c: iomem range 0xe0000000-0xefffffff has been reserved
[    0.321529] system 00:0d: iomem range 0x0-0x9ffff could not be reserved
[    0.321542] system 00:0d: iomem range 0xc0000-0xcffff could not be reserved
[    0.321555] system 00:0d: iomem range 0xe0000-0xfffff could not be reserved
[    0.321568] system 00:0d: iomem range 0x100000-0x3f7fffff could not be reserved
[    0.356823] pci 0000:00:1c.0: PCI bridge, secondary bus 0000:03
[    0.356840] pci 0000:00:1c.0:   IO window: 0xe000-0xefff
[    0.356856] pci 0000:00:1c.0:   MEM window: 0xfbf00000-0xfbffffff
[    0.356869] pci 0000:00:1c.0:   PREFETCH window: 0x80000000-0x801fffff
[    0.356887] pci 0000:00:1c.1: PCI bridge, secondary bus 0000:01
[    0.356899] pci 0000:00:1c.1:   IO window: 0xd000-0xdfff
[    0.356914] pci 0000:00:1c.1:   MEM window: 0xf4000000-0xfbefffff
[    0.356928] pci 0000:00:1c.1:   PREFETCH window: 0xcc000000-0xcfffffff
[    0.356973]   alloc irq_desc for 16 on node -1
[    0.356983]   alloc kstat_irqs on node -1
[    0.357005] pci 0000:00:1c.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    0.357020] pci 0000:00:1c.0: setting latency timer to 64
[    0.357055]   alloc irq_desc for 17 on node -1
[    0.357064]   alloc kstat_irqs on node -1
[    0.357081] pci 0000:00:1c.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17
[    0.357094] pci 0000:00:1c.1: setting latency timer to 64
[    0.357108] pci_bus 0000:00: resource 0 io:  [0x00-0xffff]
[    0.357119] pci_bus 0000:00: resource 1 mem: [0x000000-0xffffffff]
[    0.357131] pci_bus 0000:03: resource 0 io:  [0xe000-0xefff]
[    0.357141] pci_bus 0000:03: resource 1 mem: [0xfbf00000-0xfbffffff]
[    0.357152] pci_bus 0000:03: resource 2 pref mem [0x80000000-0x801fffff]
[    0.357164] pci_bus 0000:01: resource 0 io:  [0xd000-0xdfff]
[    0.357175] pci_bus 0000:01: resource 1 mem: [0xf4000000-0xfbefffff]
[    0.357186] pci_bus 0000:01: resource 2 pref mem [0xcc000000-0xcfffffff]
[    0.357302] NET: Registered protocol family 2
[    0.357644] IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
[    0.358810] TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
[    0.360277] TCP bind hash table entries: 65536 (order: 7, 524288 bytes)
[    0.361028] TCP: Hash tables configured (established 131072 bind 65536)
[    0.361041] TCP reno registered
[    0.361406] NET: Registered protocol family 1
[    0.361480] pci 0000:00:02.0: Boot video device
[    0.362325] cpufreq-nforce2: No nForce2 chipset.
[    0.362444] Scanning for low memory corruption every 60 seconds
[    0.362874] audit: initializing netlink socket (disabled)
[    0.362910] type=2000 audit(1311675183.359:1): initialized
[    0.388713] highmem bounce pool size: 64 pages
[    0.388733] HugeTLB registered 4 MB page size, pre-allocated 0 pages
[    0.394958] VFS: Disk quotas dquot_6.5.2
[    0.395197] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[    0.397670] fuse init (API version 7.13)
[    0.398025] msgmni has been set to 1716
[    0.398866] alg: No test for stdrng (krng)
[    0.399113] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
[    0.399126] io scheduler noop registered
[    0.399134] io scheduler anticipatory registered
[    0.399142] io scheduler deadline registered
[    0.399313] io scheduler cfq registered (default)
[    0.399676] pcieport 0000:00:1c.0: setting latency timer to 64
[    0.399887] pcieport 0000:00:1c.1: setting latency timer to 64
[    0.400092] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    0.400430] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    0.400775] ACPI: AC Adapter [AC0] (off-line)
[    0.401051] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input0
[    0.406368] ACPI: Lid Switch [LID]
[    0.406587] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input1
[    0.406600] ACPI: Sleep Button [SLPB]
[    0.406758] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input2
[    0.406770] ACPI: Power Button [PWRB]
[    0.408982] ACPI: SSDT 3f670270 001FA (v01  PmRef  Cpu0Ist 00003000 INTL 20060113)
[    0.410823] ACPI: SSDT 3f670500 0065D (v01  PmRef  Cpu0Cst 00003001 INTL 20060113)
[    0.413445] Monitor-Mwait will be used to enter C-1 state
[    0.419773] Monitor-Mwait will be used to enter C-2 state
[    0.419917] Monitor-Mwait will be used to enter C-3 state
[    0.420013] Monitor-Mwait will be used to enter C-3 state
[    0.420044] Marking TSC unstable due to TSC halts in idle
[    0.420217] processor LNXCPU:00: registered as cooling_device0
[    0.421196] ACPI: SSDT 3f6701a0 000CC (v01  PmRef  Cpu1Ist 00003000 INTL 20060113)
[    0.422156] ACPI: SSDT 3f670470 00085 (v01  PmRef  Cpu1Cst 00003000 INTL 20060113)
[    0.424329] processor LNXCPU:01: registered as cooling_device1
[    0.431793] Switching to clocksource hpet
[    0.726256] Freeing initrd memory: 7807k freed
[    0.827998] thermal LNXTHERM:01: registered as thermal_zone0
[    0.828057] ACPI: Thermal Zone [TZ00] (39 C)
[    0.829156] isapnp: Scanning for PnP cards...
[    0.834083] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    0.838770] brd: module loaded
[    0.840623] loop: module loaded
[    0.840932] input: Macintosh mouse button emulation as /devices/virtual/input/input3
[    0.841441] pata_acpi 0000:00:1f.1: setting latency timer to 64
[    0.842598] Fixed MDIO Bus: probed
[    0.842728] PPP generic driver version 2.4.2
[    0.842873] tun: Universal TUN/TAP device driver, 1.6
[    0.842880] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[    0.843172] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    0.843229]   alloc irq_desc for 19 on node -1
[    0.843236]   alloc kstat_irqs on node -1
[    0.843256] ehci_hcd 0000:00:1d.7: PCI INT D -> GSI 19 (level, low) -> IRQ 19
[    0.843293] ehci_hcd 0000:00:1d.7: setting latency timer to 64
[    0.843303] ehci_hcd 0000:00:1d.7: EHCI Host Controller
[    0.843415] ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 1
[    0.843491] ehci_hcd 0000:00:1d.7: debug port 1
[    0.847377] ehci_hcd 0000:00:1d.7: cache line size of 32 is not supported
[    0.847417] ehci_hcd 0000:00:1d.7: irq 19, io mem 0xf3f37c00
[    0.860048] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00
[    0.860363] usb usb1: configuration #1 chosen from 1 choice
[    0.860466] hub 1-0:1.0: USB hub found
[    0.860493] hub 1-0:1.0: 8 ports detected
[    0.860711] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    0.860765] uhci_hcd: USB Universal Host Controller Interface driver
[    0.860858]   alloc irq_desc for 20 on node -1
[    0.860866]   alloc kstat_irqs on node -1
[    0.860883] uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20
[    0.860902] uhci_hcd 0000:00:1d.0: setting latency timer to 64
[    0.860911] uhci_hcd 0000:00:1d.0: UHCI Host Controller
[    0.861045] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
[    0.861107] uhci_hcd 0000:00:1d.0: irq 20, io base 0x0000b880
[    0.861406] usb usb2: configuration #1 chosen from 1 choice
[    0.861503] hub 2-0:1.0: USB hub found
[    0.861526] hub 2-0:1.0: 2 ports detected
[    0.861664]   alloc irq_desc for 21 on node -1
[    0.861671]   alloc kstat_irqs on node -1
[    0.861687] uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 21 (level, low) -> IRQ 21
[    0.861703] uhci_hcd 0000:00:1d.1: setting latency timer to 64
[    0.861712] uhci_hcd 0000:00:1d.1: UHCI Host Controller
[    0.861828] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 3
[    0.861884] uhci_hcd 0000:00:1d.1: irq 21, io base 0x0000c080
[    0.862722] usb usb3: configuration #1 chosen from 1 choice
[    0.862828] hub 3-0:1.0: USB hub found
[    0.862850] hub 3-0:1.0: 2 ports detected
[    0.862986]   alloc irq_desc for 18 on node -1
[    0.862994]   alloc kstat_irqs on node -1
[    0.863010] uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
[    0.863026] uhci_hcd 0000:00:1d.2: setting latency timer to 64
[    0.863035] uhci_hcd 0000:00:1d.2: UHCI Host Controller
[    0.863148] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 4
[    0.863207] uhci_hcd 0000:00:1d.2: irq 18, io base 0x0000c480
[    0.863602] usb usb4: configuration #1 chosen from 1 choice
[    0.863702] hub 4-0:1.0: USB hub found
[    0.863725] hub 4-0:1.0: 2 ports detected
[    0.864165] PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
[    0.893704] serio: i8042 KBD port at 0x60,0x64 irq 1
[    0.893728] serio: i8042 AUX port at 0x60,0x64 irq 12
[    0.894167] mice: PS/2 mouse device common for all mice
[    0.895167] rtc_cmos 00:02: RTC can wake from S4
[    0.895301] rtc_cmos 00:02: rtc core: registered rtc_cmos as rtc0
[    0.895344] rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[    0.895731] device-mapper: uevent: version 1.0.3
[    0.896158] device-mapper: ioctl: 4.15.0-ioctl (2009-04-01) initialised: dm-devel@redhat.com
[    0.896413] device-mapper: multipath: version 1.1.0 loaded
[    0.896422] device-mapper: multipath round-robin: version 1.0.0 loaded
[    0.896822] EISA: Probing bus 0 at eisa.0
[    0.896885] EISA: Detected 0 cards.
[    0.897465] cpuidle: using governor ladder
[    0.897958] cpuidle: using governor menu
[    0.899457] TCP cubic registered
[    0.900075] NET: Registered protocol family 10
[    0.902862] NET: Registered protocol family 17
[    0.904825] Using IPI No-Shortcut mode
[    0.905144] PM: Resume from disk failed.
[    0.905179] registered taskstats version 1
[    0.905674]   Magic number: 3:188:225
[    0.905816] rtc_cmos 00:02: setting system clock to 2011-07-26 10:13:04 UTC (1311675184)
[    0.905827] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[    0.905833] EDD information not available.
[    0.920606] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input4
[    1.033373] ACPI: Battery Slot [BAT0] (battery present)
[    1.184049] usb 1-7: new high speed USB device using ehci_hcd and address 2
[    1.187095] isapnp: No Plug & Play device found
[    1.187165] Freeing unused kernel memory: 668k freed
[    1.187945] Write protecting the kernel text: 4676k
[    1.188128] Write protecting the kernel read-only data: 1848k
[    1.234979] udev: starting version 151
[    1.392439] usb 1-7: configuration #1 chosen from 1 choice
[    1.423546] pata_sch 0000:00:1f.1: version 0.2
[    1.423665] pata_sch 0000:00:1f.1: setting latency timer to 64
[    1.465079] scsi0 : pata_sch
[    1.476151] scsi1 : pata_sch
[    1.477677] ata1: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0xffa0 irq 14
[    1.477691] ata2: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0xffa8 irq 15
[    1.640968] ata1.00: ATA-8: Hitachi HTS543216L9SA00, FB2OC40C, max UDMA/133
[    1.640986] ata1.00: 312581808 sectors, multi 16: LBA48 
[    1.657001] ata1.00: configured for UDMA/100
[    1.657369] scsi 0:0:0:0: Direct-Access     ATA      Hitachi HTS54321 FB2O PQ: 0 ANSI: 5
[    1.657927] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    1.658343] sd 0:0:0:0: [sda] 312581808 512-byte logical blocks: (160 GB/149 GiB)
[    1.658504] sd 0:0:0:0: [sda] Write Protect is off
[    1.658514] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    1.658596] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    1.659027]  sda: sda1 sda2 < sda5 sda6 >
[    1.702113] sd 0:0:0:0: [sda] Attached SCSI disk
[    2.311896] EXT4-fs (sda1): mounted filesystem with ordered data mode
[   18.960852] udev: starting version 151
[   18.983281] Adding 2975736k swap on /dev/sda5.  Priority:-1 extents:1 across:2975736k 
[   19.441689] atl1c 0000:03:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[   19.441721] atl1c 0000:03:00.0: setting latency timer to 64
[   19.542676] atl1c 0000:03:00.0: version 1.0.0.1-NAPI
[   19.654322] ACPI: resource isch_smbus [0x400-0x43f] conflicts with ACPI region SMRG [0x400-0x43f]
[   19.654335] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   19.762086] Linux video capture interface: v2.00
[   19.844126] lp: driver loaded but no devices found
[   19.926203] cfg80211: Calling CRDA to update world regulatory domain
[   19.989250] cfg80211: World regulatory domain updated:
[   19.989262] 	(start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[   19.989275] 	(2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   19.989285] 	(2457000 KHz - 2482000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[   19.989295] 	(2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[   19.989305] 	(5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   19.989315] 	(5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   20.071065] uvcvideo: Found UVC 1.00 device USB2.0 UVC 1.3M WebCam (13d3:5071)
[   20.091144] input: USB2.0 UVC 1.3M WebCam as /devices/pci0000:00/0000:00:1d.7/usb1/1-7/1-7:1.0/input/input5
[   20.091387] usbcore: registered new interface driver uvcvideo
[   20.091401] USB Video Class driver (v0.1.0)
[   20.202144] type=1505 audit(1311675203.794:2):  operation="profile_load" pid=547 name="/sbin/dhclient3"
[   20.203159] type=1505 audit(1311675203.794:3):  operation="profile_load" pid=547 name="/usr/lib/NetworkManager/nm-dhcp-client.action"
[   20.203750] type=1505 audit(1311675203.794:4):  operation="profile_load" pid=547 name="/usr/lib/connman/scripts/dhclient-script"
[   20.561501] ath9k 0000:01:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
[   20.561526] ath9k 0000:01:00.0: setting latency timer to 64
[   20.610594] ath: EEPROM regdomain: 0x60
[   20.610602] ath: EEPROM indicates we should expect a direct regpair map
[   20.610611] ath: Country alpha2 being used: 00
[   20.610616] ath: Regpair used: 0x60
[   20.633579] EXT4-fs (sda6): mounted filesystem with ordered data mode
[   20.828786] Synaptics Touchpad, model: 1, fw: 7.2, id: 0x1a0b1, caps: 0xd04731/0xa40000/0xa0000
[   20.908648] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input6
[   22.240321] phy0: Selected rate control algorithm 'ath9k_rate_control'
[   22.242486] Registered led device: ath9k-phy0::radio
[   22.242563] Registered led device: ath9k-phy0::assoc
[   22.242640] Registered led device: ath9k-phy0::tx
[   22.242717] Registered led device: ath9k-phy0::rx
[   22.242781] phy0: Atheros AR9285 MAC/BB Rev:2 AR5133 RF Rev:e0: mem=0xf82a0000, irq=17
[   22.543866] type=1505 audit(1311675206.134:5):  operation="profile_load" pid=702 name="/usr/share/gdm/guest-session/Xsession"
[   22.546191] type=1505 audit(1311675206.138:6):  operation="profile_replace" pid=703 name="/sbin/dhclient3"
[   22.547238] type=1505 audit(1311675206.138:7):  operation="profile_replace" pid=703 name="/usr/lib/NetworkManager/nm-dhcp-client.action"
[   22.547855] type=1505 audit(1311675206.138:8):  operation="profile_replace" pid=703 name="/usr/lib/connman/scripts/dhclient-script"
[   22.575364] type=1505 audit(1311675206.166:9):  operation="profile_load" pid=706 name="/usr/lib/cups/backend/cups-pdf"
[   22.576680] type=1505 audit(1311675206.170:10):  operation="profile_load" pid=706 name="/usr/sbin/cupsd"
[   22.585914] type=1505 audit(1311675206.178:11):  operation="profile_load" pid=704 name="/usr/bin/evince"
[   22.807252]   alloc irq_desc for 23 on node -1
[   22.807263]   alloc kstat_irqs on node -1
[   22.807286] HDA Intel 0000:00:1b.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23
[   22.807386] HDA Intel 0000:00:1b.0: setting latency timer to 64
[   22.851678]   alloc irq_desc for 24 on node -1
[   22.851692]   alloc kstat_irqs on node -1
[   22.851726] atl1c 0000:03:00.0: irq 24 for MSI/MSI-X
[   22.851880] atl1c 0000:03:00.0: atl1c: eth0 NIC Link is Up<10 Mbps Half Duplex>
[   22.896431] ADDRCONF(NETDEV_UP): wlan0: link is not ready
[   22.952937] hda_codec: ALC269: BIOS auto-probing.
[   22.953712] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/input/input7
[   23.478609] ppdev: user-space parallel port driver
[   24.110072] CPU0 attaching NULL sched-domain.
[   24.110090] CPU1 attaching NULL sched-domain.
[   24.140157] CPU0 attaching sched-domain:
[   24.140168]  domain 0: span 0-1 level SIBLING
[   24.140177]   groups: 0 (cpu_power = 589) 1 (cpu_power = 589)
[   24.140197]   domain 1: span 0-1 level MC
[   24.140205]    groups: 0-1 (cpu_power = 1178)
[   24.140223] CPU1 attaching sched-domain:
[   24.140230]  domain 0: span 0-1 level SIBLING
[   24.140238]   groups: 1 (cpu_power = 589) 0 (cpu_power = 589)
[   24.140257]   domain 1: span 0-1 level MC
[   24.140265]    groups: 0-1 (cpu_power = 1178)
[   24.883794] Linux agpgart interface v0.103
[   25.020637] [drm] Initialized drm 1.1.0 20060810
[   25.063541]   alloc irq_desc for 22 on node -1
[   25.063552]   alloc kstat_irqs on node -1
[   25.063576] psb 0000:00:02.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
[   25.063591] psb 0000:00:02.0: setting latency timer to 64
[   25.063686] [drm] psb - 5.0.1.0046
[   25.098938] psb 0000:00:02.0: firmware: requesting msvdx_fw.bin
[   25.129623] [drm] SGX core id = 0x01130000
[   25.129631] [drm] SGX core rev major = 0x01, minor = 0x02
[   25.129637] [drm] SGX core rev maintenance = 0x01, designer = 0x00
[   25.130060] [drm] intel_lvds_init: OpRegion has the VBT address
[   25.130078] [drm] intel_lvds_init: The bdb->signature is BIOS_DATA_BLOCK ƒ, the bdb_off is 48
[   25.130112] [drm] intel_lvds_init: BLC Data in BIOS VBT tables: datasize=0 paneltype=15 								type=0x02 pol=0x00 freq=0x00c8 minlevel=0x00    								i2caddr=0x58 cmd=0xaa 
[   25.130138] [drm] intel_lvds_init: the CoreClock is 200
[   25.130149] [drm] intel_lvds_init: sku_value is 0x00800000
[   25.130157] [drm] intel_lvds_init: sku_bMaxResEnableInt is 0
[   25.130264] [drm] intel_lvds_set_backlight: the level is 100
[   25.130273] [drm] LVDSGetPWMMaxBacklight: the max_pwm_blc is 31250.
[   25.384393] [drm] intel_sdvo_init: sku_value is 0x00800000
[   25.384407] [drm] intel_sdvo_init: sku_bSDVOEnable is 1
[   25.831940] [drm] intel_sdvo_init: sku_value is 0x00800000
[   25.831949] [drm] intel_sdvo_init: sku_bSDVOEnable is 1
[   26.589786] detear is disabled
[   26.640825] [drm] intel_lvds_prepare
[   26.640837] [drm] intel_lvds_set_power: 0
[   26.640844] [drm] intel_lvds_set_backlight: the level is 0
[   26.640853] [drm] LVDSGetPWMMaxBacklight: the max_pwm_blc is 31250.
[   26.760435] Console: switching to colour frame buffer device 170x48
[   26.952348] [drm] LVDS: set mode 1366x768 a
[   26.952425] [drm] intel_lvds_commit
[   26.952432] [drm] intel_lvds_set_power: 1
[   27.387130] [drm] intel_lvds_set_backlight: the level is 100
[   27.387141] [drm] LVDSGetPWMMaxBacklight: the max_pwm_blc is 31250.
[   27.387156] [drm] fb0: psbfb frame buffer device
[   27.387200] [drm] intel_lvds_prepare
[   27.387208] [drm] intel_lvds_set_power: 0
[   27.387214] [drm] intel_lvds_set_backlight: the level is 0
[   27.387221] [drm] LVDSGetPWMMaxBacklight: the max_pwm_blc is 31250.
[   27.447909] [drm] LVDS: set mode 1366x768 8
[   27.447976] [drm] intel_lvds_commit
[   27.447982] [drm] intel_lvds_set_power: 1
[   27.887893] [drm] intel_lvds_set_backlight: the level is 100
[   27.887902] [drm] LVDSGetPWMMaxBacklight: the max_pwm_blc is 31250.
[   27.920984] [drm] Initialized psb 4.41.1 20090416 on minor 0
[   28.388442] buffer underrun 0x0
[   33.096051] eth0: no IPv6 routers present
[   34.849690] hda-intel: Invalid position buffer, using LPIB read method instead.
[   34.849783] hda-intel: IRQ timing workaround is activated for card #0. Suggest a bigger bdl_pos_adj.
[   35.176912] CPU0 attaching NULL sched-domain.
[   35.176932] CPU1 attaching NULL sched-domain.
[   35.200215] CPU0 attaching sched-domain:
[   35.200229]  domain 0: span 0-1 level SIBLING
[   35.200239]   groups: 0 (cpu_power = 589) 1 (cpu_power = 589)
[   35.200261]   domain 1: span 0-1 level MC
[   35.200271]    groups: 0-1 (cpu_power = 1178)
[   35.200292] CPU1 attaching sched-domain:
[   35.200301]  domain 0: span 0-1 level SIBLING
[   35.200311]   groups: 1 (cpu_power = 589) 0 (cpu_power = 589)
[   35.200333]   domain 1: span 0-1 level MC
[   35.200343]    groups: 0-1 (cpu_power = 1178)
[  104.591856] CPU0 attaching NULL sched-domain.
[  104.591876] CPU1 attaching NULL sched-domain.
[  104.612213] CPU0 attaching sched-domain:
[  104.612227]  domain 0: span 0-1 level SIBLING
[  104.612238]   groups: 0 (cpu_power = 589) 1 (cpu_power = 589)
[  104.612260]   domain 1: span 0-1 level MC
[  104.612269]    groups: 0-1 (cpu_power = 1178)
[  104.612290] CPU1 attaching sched-domain:
[  104.612298]  domain 0: span 0-1 level SIBLING
[  104.612308]   groups: 1 (cpu_power = 589) 0 (cpu_power = 589)
[  104.612328]   domain 1: span 0-1 level MC
[  104.612336]    groups: 0-1 (cpu_power = 1178)
[ 1464.442797] process `skype' is using obsolete setsockopt SO_BSDCOMPAT
[22976.599954] __ratelimit: 9 callbacks suppressed
[22976.599970] gvfsd-smb[3570]: segfault at c ip 08057c82 sp bfc7a3f0 error 4 in gvfsd-smb[8048000+21000]
[24804.757649] [drm] intel_lvds_prepare
[24804.757659] [drm] intel_lvds_set_power: 0
[24804.757666] [drm] intel_lvds_set_backlight: the level is 0
[24804.757675] [drm] LVDSGetPWMMaxBacklight: the max_pwm_blc is 31250.
[24804.868896] [drm] LVDS: set mode 1366x768 a
[24804.868963] [drm] intel_lvds_commit
[24804.868969] [drm] intel_lvds_set_power: 1
[24805.227128] [drm] intel_lvds_set_backlight: the level is 100
[24805.227139] [drm] LVDSGetPWMMaxBacklight: the max_pwm_blc is 31250.
[24805.227157] [drm] intel_lvds_dpms: the mode is 0
[24805.227164] [drm] intel_lvds_set_power: 1
[24805.227172] [drm] intel_lvds_set_backlight: the level is 100
[24805.227180] [drm] LVDSGetPWMMaxBacklight: the max_pwm_blc is 31250.
[24805.318462] [drm] intel_lvds_prepare
[24805.318472] [drm] intel_lvds_set_power: 0
[24805.318479] [drm] intel_lvds_set_backlight: the level is 0
[24805.318488] [drm] LVDSGetPWMMaxBacklight: the max_pwm_blc is 31250.
[24805.429650] [drm] LVDS: set mode 1366x768 a
[24805.429723] [drm] intel_lvds_commit
[24805.429730] [drm] intel_lvds_set_power: 1
[24805.828046] [drm] intel_lvds_set_backlight: the level is 100
[24805.828056] [drm] LVDSGetPWMMaxBacklight: the max_pwm_blc is 31250.
[24819.259613] [drm] intel_lvds_prepare
[24819.259624] [drm] intel_lvds_set_power: 0
[24819.259631] [drm] intel_lvds_set_backlight: the level is 0
[24819.259640] [drm] LVDSGetPWMMaxBacklight: the max_pwm_blc is 31250.
[24819.370842] [drm] LVDS: set mode 1366x768 a
[24819.370912] [drm] intel_lvds_commit
[24819.370919] [drm] intel_lvds_set_power: 1
[24819.749308] [drm] intel_lvds_set_backlight: the level is 100
[24819.749319] [drm] LVDSGetPWMMaxBacklight: the max_pwm_blc is 31250.
[24819.749338] [drm] intel_lvds_dpms: the mode is 0
[24819.749344] [drm] intel_lvds_set_power: 1
[24819.749353] [drm] intel_lvds_set_backlight: the level is 100
[24819.749360] [drm] LVDSGetPWMMaxBacklight: the max_pwm_blc is 31250.
[24819.836258] [drm] intel_lvds_prepare
[24819.836267] [drm] intel_lvds_set_power: 0
[24819.836274] [drm] intel_lvds_set_backlight: the level is 0
[24819.836282] [drm] LVDSGetPWMMaxBacklight: the max_pwm_blc is 31250.
[24819.947527] [drm] LVDS: set mode 1366x768 a
[24819.947599] [drm] intel_lvds_commit
[24819.947606] [drm] intel_lvds_set_power: 1
[24820.350224] [drm] intel_lvds_set_backlight: the level is 100
[24820.350234] [drm] LVDSGetPWMMaxBacklight: the max_pwm_blc is 31250.