[ create a new paste ] login | about

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

C, pasted on Feb 18:
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
[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Linux version 2.6.30-02063003-generic (root@zinc) (gcc version 4.2.3 (Ubuntu 4.2.3-2ubuntu7)) #02063003 SMP Sat Jul 25 10:57:13 UTC 2009
[    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: 00000000000e0000 - 0000000000100000 (reserved)
[    0.000000]  BIOS-e820: 0000000000100000 - 000000007a7b5000 (usable)
[    0.000000]  BIOS-e820: 000000007a7b5000 - 000000007a7b8000 (ACPI NVS)
[    0.000000]  BIOS-e820: 000000007a7b8000 - 000000007baa8000 (usable)
[    0.000000]  BIOS-e820: 000000007baa8000 - 000000007babf000 (reserved)
[    0.000000]  BIOS-e820: 000000007babf000 - 000000007bb85000 (usable)
[    0.000000]  BIOS-e820: 000000007bb85000 - 000000007bbbf000 (ACPI NVS)
[    0.000000]  BIOS-e820: 000000007bbbf000 - 000000007bbec000 (usable)
[    0.000000]  BIOS-e820: 000000007bbec000 - 000000007bbff000 (ACPI data)
[    0.000000]  BIOS-e820: 000000007bbff000 - 000000007bc00000 (usable)
[    0.000000]  BIOS-e820: 000000007bc00000 - 0000000080000000 (reserved)
[    0.000000]  BIOS-e820: 00000000f8000000 - 00000000fc000000 (reserved)
[    0.000000]  BIOS-e820: 00000000fec00000 - 00000000fec01000 (reserved)
[    0.000000]  BIOS-e820: 00000000fed10000 - 00000000fed14000 (reserved)
[    0.000000]  BIOS-e820: 00000000fed18000 - 00000000fed1a000 (reserved)
[    0.000000]  BIOS-e820: 00000000fed1c000 - 00000000fed20000 (reserved)
[    0.000000]  BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved)
[    0.000000]  BIOS-e820: 00000000fff00000 - 0000000100000000 (reserved)
[    0.000000] DMI 2.4 present.
[    0.000000] last_pfn = 0x7bc00 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-C7FFF uncachable
[    0.000000]   C8000-EFFFF write-protect
[    0.000000]   F0000-FFFFF uncachable
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 000000000 mask FC0000000 write-back
[    0.000000]   1 base 040000000 mask FC0000000 write-back
[    0.000000]   2 base 07C000000 mask FFC000000 uncachable
[    0.000000]   3 base 07BC00000 mask FFFC00000 uncachable
[    0.000000]   4 disabled
[    0.000000]   5 disabled
[    0.000000]   6 base 0FFFE0000 mask FFFFE0000 write-protect
[    0.000000]   7 base 0FFFD8000 mask FFFFF8000 write-protect
[    0.000000] e820 update range: 0000000000002000 - 0000000000006000 (usable) ==> (reserved)
[    0.000000] Scanning 1 areas for low memory corruption
[    0.000000] modified physical RAM map:
[    0.000000]  modified: 0000000000000000 - 0000000000002000 (usable)
[    0.000000]  modified: 0000000000002000 - 0000000000006000 (reserved)
[    0.000000]  modified: 0000000000006000 - 000000000009fc00 (usable)
[    0.000000]  modified: 000000000009fc00 - 00000000000a0000 (reserved)
[    0.000000]  modified: 00000000000e0000 - 0000000000100000 (reserved)
[    0.000000]  modified: 0000000000100000 - 000000007a7b5000 (usable)
[    0.000000]  modified: 000000007a7b5000 - 000000007a7b8000 (ACPI NVS)
[    0.000000]  modified: 000000007a7b8000 - 000000007baa8000 (usable)
[    0.000000]  modified: 000000007baa8000 - 000000007babf000 (reserved)
[    0.000000]  modified: 000000007babf000 - 000000007bb85000 (usable)
[    0.000000]  modified: 000000007bb85000 - 000000007bbbf000 (ACPI NVS)
[    0.000000]  modified: 000000007bbbf000 - 000000007bbec000 (usable)
[    0.000000]  modified: 000000007bbec000 - 000000007bbff000 (ACPI data)
[    0.000000]  modified: 000000007bbff000 - 000000007bc00000 (usable)
[    0.000000]  modified: 000000007bc00000 - 0000000080000000 (reserved)
[    0.000000]  modified: 00000000f8000000 - 00000000fc000000 (reserved)
[    0.000000]  modified: 00000000fec00000 - 00000000fec01000 (reserved)
[    0.000000]  modified: 00000000fed10000 - 00000000fed14000 (reserved)
[    0.000000]  modified: 00000000fed18000 - 00000000fed1a000 (reserved)
[    0.000000]  modified: 00000000fed1c000 - 00000000fed20000 (reserved)
[    0.000000]  modified: 00000000fee00000 - 00000000fee01000 (reserved)
[    0.000000]  modified: 00000000fff00000 - 0000000100000000 (reserved)
[    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 @ 7000-c000
[    0.000000] RAMDISK: 378b3000 - 37fefb10
[    0.000000] Allocated new RAMDISK: 0083a000 - 00f76b10
[    0.000000] Move RAMDISK from 00000000378b3000 - 0000000037fefb0f to 0083a000 - 00f76b0f
[    0.000000] ACPI: RSDP 000fe020 00024 (v02 QUANTA)
[    0.000000] ACPI: XSDT 7bbfe120 00064 (v01 QUANTA WTW8     00000001      01000013)
[    0.000000] ACPI: FACP 7bbfd000 000F4 (v04 QUANTA WTW8     00000001 MSFT 01000013)
[    0.000000] ACPI: DSDT 7bbef000 09EB8 (v01 QUANTA WTW8     00000001 MSFT 01000013)
[    0.000000] ACPI: FACS 7bb92000 00040
[    0.000000] ACPI: HPET 7bbfc000 00038 (v01 QUANTA WTW8     00000001 MSFT 01000013)
[    0.000000] ACPI: APIC 7bbfb000 0006C (v01 QUANTA WTW8     00000001 MSFT 01000013)
[    0.000000] ACPI: MCFG 7bbfa000 0003C (v01 QUANTA WTW8     00000001 MSFT 01000013)
[    0.000000] ACPI: ASF! 7bbf9000 000A5 (v32 QUANTA WTW8     00000001 MSFT 01000013)
[    0.000000] ACPI: SLIC 7bbee000 00176 (v01 QUANTA WTW8     06040000 MSFT 01000013)
[    0.000000] ACPI: BOOT 7bbed000 00028 (v01 QUANTA WTW8     00000001 MSFT 01000013)
[    0.000000] ACPI: SSDT 7bbec000 00655 (v01 QUANTA WTW8     00003000 INTL 20060317)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] 1092MB 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 00008000 - 0000ef00
[    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 - 0000835454]    TEXT DATA BSS ==> [0000100000 - 0000835454]
[    0.000000]   #4 [000009fc00 - 0000100000]    BIOS reserved ==> [000009fc00 - 0000100000]
[    0.000000]   #5 [0000836000 - 0000839224]              BRK ==> [0000836000 - 0000839224]
[    0.000000]   #6 [0000007000 - 0000008000]          PGTABLE ==> [0000007000 - 0000008000]
[    0.000000]   #7 [000083a000 - 0000f76b10]      NEW RAMDISK ==> [000083a000 - 0000f76b10]
[    0.000000]   #8 [0000008000 - 000000f000]          BOOTMAP ==> [0000008000 - 000000f000]
[    0.000000] Zone PFN ranges:
[    0.000000]   DMA      0x00000000 -> 0x00001000
[    0.000000]   Normal   0x00001000 -> 0x000377fe
[    0.000000]   HighMem  0x000377fe -> 0x0007bc00
[    0.000000] Movable zone start PFN for each node
[    0.000000] early_node_map[7] active PFN ranges
[    0.000000]     0: 0x00000000 -> 0x00000002
[    0.000000]     0: 0x00000006 -> 0x0000009f
[    0.000000]     0: 0x00000100 -> 0x0007a7b5
[    0.000000]     0: 0x0007a7b8 -> 0x0007baa8
[    0.000000]     0: 0x0007babf -> 0x0007bb85
[    0.000000]     0: 0x0007bbbf -> 0x0007bbec
[    0.000000]     0: 0x0007bbff -> 0x0007bc00
[    0.000000] On node 0 totalpages: 506676
[    0.000000] free_area_init_node: node 0, pgdat c06ef2c0, node_mem_map c1000000
[    0.000000]   DMA zone: 32 pages used for memmap
[    0.000000]   DMA zone: 0 pages reserved
[    0.000000]   DMA zone: 3963 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: 2185 pages used for memmap
[    0.000000]   HighMem zone: 277266 pages, LIFO batch:31
[    0.000000] Using APIC driver default
[    0.000000] ACPI: PM-Timer IO Port: 0x408
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x00] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x00] disabled)
[    0.000000] ACPI: IOAPIC (id[0x04] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 4, 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] Enabling APIC mode:  Flat.  Using 1 I/O APICs
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[    0.000000] SMP: Allowing 4 CPUs, 2 hotplug CPUs
[    0.000000] nr_irqs_gsi: 24
[    0.000000] PM: Registered nosave memory: 0000000000002000 - 0000000000006000
[    0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
[    0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000
[    0.000000] PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
[    0.000000] Allocating PCI resources starting at 88000000 (gap: 80000000:78000000)
[    0.000000] NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:4 nr_node_ids:1
[    0.000000] PERCPU: Embedded 12 pages at c1f82000, static data 25884 bytes
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 502715
[    0.000000] Kernel command line: root=UUID=49914b4c-e2ca-44b7-8a94-2d72232e4e6a ro quiet splash 
[    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] NR_IRQS:512
[    0.000000] PID hash table entries: 4096 (order: 12, 16384 bytes)
[    0.000000] Fast TSC calibration using PIT
[    0.000000] Detected 1994.844 MHz processor.
[    0.004000] Console: colour VGA+ 80x25
[    0.004000] console [tty0] enabled
[    0.004000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
[    0.004000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
[    0.004000] allocated 10137600 bytes of page_cgroup
[    0.004000] please try cgroup_disable=memory option if you don't want
[    0.004000] Initializing HighMem for node 0 (000377fe:0007bc00)
[    0.004000] Memory: 1984168k/2027520k available (4181k kernel code, 41612k reserved, 2006k data, 528k init, 1117804k highmem)
[    0.004000] virtual kernel memory layout:
[    0.004000]     fixmap  : 0xfff4d000 - 0xfffff000   ( 712 kB)
[    0.004000]     pkmap   : 0xff800000 - 0xffc00000   (4096 kB)
[    0.004000]     vmalloc : 0xf7ffe000 - 0xff7fe000   ( 120 MB)
[    0.004000]     lowmem  : 0xc0000000 - 0xf77fe000   ( 887 MB)
[    0.004000]       .init : 0xc0716000 - 0xc079a000   ( 528 kB)
[    0.004000]       .data : 0xc0515400 - 0xc070aee8   (2006 kB)
[    0.004000]       .text : 0xc0100000 - 0xc0515400   (4181 kB)
[    0.004000] Checking if this processor honours the WP bit even in supervisor mode...Ok.
[    0.004000] SLUB: Genslabs=13, HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[    0.004000] hpet clockevent registered
[    0.004000] HPET: 4 timers in total, 0 timers will be used for per-cpu timer
[    0.004000] Calibrating delay loop (skipped), value calculated using timer frequency.. 3989.68 BogoMIPS (lpj=7979376)
[    0.004000] Security Framework initialized
[    0.004000] SELinux:  Disabled at boot.
[    0.004000] Mount-cache hash table entries: 512
[    0.004000] Initializing cgroup subsys ns
[    0.004000] Initializing cgroup subsys cpuacct
[    0.004000] Initializing cgroup subsys memory
[    0.004000] Initializing cgroup subsys freezer
[    0.004000] CPU: L1 I cache: 32K, L1 D cache: 32K
[    0.004000] CPU: L2 cache: 1024K
[    0.004000] CPU: Physical Processor ID: 0
[    0.004000] CPU: Processor Core ID: 0
[    0.004000] using mwait in idle threads.
[    0.004000] Checking 'hlt' instruction... OK.
[    0.017436] ACPI: Core revision 20090320
[    0.032446] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.073720] CPU0: Intel(R) Pentium(R) Dual  CPU  T3200  @ 2.00GHz stepping 0d
[    0.076001] Booting processor 1 APIC 0x1 ip 0x6000
[    0.004000] Initializing CPU#1
[    0.004000] Calibrating delay using timer specific routine.. 3990.39 BogoMIPS (lpj=7980782)
[    0.004000] CPU: L1 I cache: 32K, L1 D cache: 32K
[    0.004000] CPU: L2 cache: 1024K
[    0.004000] CPU: Physical Processor ID: 0
[    0.004000] CPU: Processor Core ID: 1
[    0.160427] CPU1: Intel(R) Pentium(R) Dual  CPU  T3200  @ 2.00GHz stepping 0d
[    0.160442] checking TSC synchronization [CPU#0 -> CPU#1]: passed.
[    0.164043] Brought up 2 CPUs
[    0.164046] Total of 2 processors activated (7980.07 BogoMIPS).
[    0.164105] CPU0 attaching sched-domain:
[    0.164107]  domain 0: span 0-1 level MC
[    0.164110]   groups: 0 1
[    0.164115] CPU1 attaching sched-domain:
[    0.164117]  domain 0: span 0-1 level MC
[    0.164120]   groups: 1 0
[    0.164189] net_namespace: 1056 bytes
[    0.164189] Booting paravirtualized kernel on bare hardware
[    0.164287] regulator: core version 0.5
[    0.164287] Time:  4:07:13  Date: 02/18/10
[    0.164287] NET: Registered protocol family 16
[    0.164287] EISA bus registered
[    0.164287] ACPI: bus type pci registered
[    0.164296] PCI: MCFG configuration 0: base f8000000 segment 0 buses 0 - 63
[    0.164299] PCI: MCFG area at f8000000 reserved in E820
[    0.164301] PCI: Using MMCONFIG for extended config space
[    0.164303] PCI: Using configuration type 1 for base access
[    0.165188] bio: create slab <bio-0> at 0
[    0.165332] ACPI: EC: Look up EC in DSDT
[    0.171653] ACPI: BIOS _OSI(Linux) query ignored
[    0.172020] ACPI: EC: non-query interrupt received, switching to interrupt mode
[    0.188209] ACPI: Interpreter enabled
[    0.188214] ACPI: (supports S0 S1 S3 S4 S5)
[    0.188248] ACPI: Using IOAPIC for interrupt routing
[    0.198756] ACPI: EC: GPE = 0x17, I/O: command/status = 0x66, data = 0x62
[    0.198759] ACPI: EC: driver started in interrupt mode
[    0.199477] ACPI: ACPI Dock Station Driver: 1 docks/bays found
[    0.199643] ACPI: PCI Root Bridge [PCI0] (0000:00)
[    0.199743] pci 0000:00:02.0: reg 10 64bit mmio: [0x90000000-0x903fffff]
[    0.199752] pci 0000:00:02.0: reg 18 64bit mmio: [0x80000000-0x8fffffff]
[    0.199757] pci 0000:00:02.0: reg 20 io port: [0x5140-0x5147]
[    0.199804] pci 0000:00:02.1: reg 10 64bit mmio: [0x93500000-0x935fffff]
[    0.199942] pci 0000:00:1a.0: reg 20 io port: [0x50c0-0x50df]
[    0.200052] pci 0000:00:1a.1: reg 20 io port: [0x50a0-0x50bf]
[    0.200160] pci 0000:00:1a.7: reg 10 32bit mmio: [0x96605400-0x966057ff]
[    0.200236] pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold
[    0.200242] pci 0000:00:1a.7: PME# disabled
[    0.200305] pci 0000:00:1b.0: reg 10 64bit mmio: [0x96600000-0x96603fff]
[    0.200371] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    0.200376] pci 0000:00:1b.0: PME# disabled
[    0.200469] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.200474] pci 0000:00:1c.0: PME# disabled
[    0.200569] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[    0.200575] pci 0000:00:1c.1: PME# disabled
[    0.200674] pci 0000:00:1c.5: PME# supported from D0 D3hot D3cold
[    0.200680] pci 0000:00:1c.5: PME# disabled
[    0.200760] pci 0000:00:1d.0: reg 20 io port: [0x5080-0x509f]
[    0.200865] pci 0000:00:1d.1: reg 20 io port: [0x5060-0x507f]
[    0.200969] pci 0000:00:1d.2: reg 20 io port: [0x5040-0x505f]
[    0.201072] pci 0000:00:1d.3: reg 20 io port: [0x5020-0x503f]
[    0.201176] pci 0000:00:1d.7: reg 10 32bit mmio: [0x96605000-0x966053ff]
[    0.201252] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
[    0.201258] pci 0000:00:1d.7: PME# disabled
[    0.201518] pci 0000:00:1f.2: reg 10 io port: [0x5138-0x513f]
[    0.201526] pci 0000:00:1f.2: reg 14 io port: [0x5154-0x5157]
[    0.201535] pci 0000:00:1f.2: reg 18 io port: [0x5130-0x5137]
[    0.201543] pci 0000:00:1f.2: reg 1c io port: [0x5150-0x5153]
[    0.201552] pci 0000:00:1f.2: reg 20 io port: [0x5110-0x511f]
[    0.201560] pci 0000:00:1f.2: reg 24 io port: [0x5100-0x510f]
[    0.201635] pci 0000:00:1f.3: reg 10 64bit mmio: [0x96605800-0x966058ff]
[    0.201657] pci 0000:00:1f.3: reg 20 io port: [0x5000-0x501f]
[    0.201727] pci 0000:00:1f.5: reg 10 io port: [0x5128-0x512f]
[    0.201736] pci 0000:00:1f.5: reg 14 io port: [0x514c-0x514f]
[    0.201744] pci 0000:00:1f.5: reg 18 io port: [0x5120-0x5127]
[    0.201753] pci 0000:00:1f.5: reg 1c io port: [0x5148-0x514b]
[    0.201761] pci 0000:00:1f.5: reg 20 io port: [0x50f0-0x50ff]
[    0.201769] pci 0000:00:1f.5: reg 24 io port: [0x50e0-0x50ef]
[    0.201869] pci 0000:00:1f.6: reg 10 64bit mmio: [0x96604000-0x96604fff]
[    0.202013] pci 0000:00:1c.0: bridge io port: [0x4000-0x4fff]
[    0.202018] pci 0000:00:1c.0: bridge 32bit mmio: [0x95600000-0x965fffff]
[    0.202027] pci 0000:00:1c.0: bridge 64bit mmio pref: [0x90400000-0x913fffff]
[    0.202094] pci 0000:00:1c.1: bridge io port: [0x3000-0x3fff]
[    0.202099] pci 0000:00:1c.1: bridge 32bit mmio: [0x94600000-0x955fffff]
[    0.202108] pci 0000:00:1c.1: bridge 64bit mmio pref: [0x91400000-0x923fffff]
[    0.202175] pci 0000:04:00.0: reg 10 io port: [0x1000-0x10ff]
[    0.202204] pci 0000:04:00.0: reg 18 64bit mmio: [0x92410000-0x92410fff]
[    0.202224] pci 0000:04:00.0: reg 20 64bit mmio: [0x92400000-0x9240ffff]
[    0.202235] pci 0000:04:00.0: reg 30 32bit mmio: [0xffff0000-0xffffffff]
[    0.202294] pci 0000:04:00.0: supports D1 D2
[    0.202296] pci 0000:04:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.202303] pci 0000:04:00.0: PME# disabled
[    0.202390] pci 0000:00:1c.5: bridge io port: [0x1000-0x2fff]
[    0.202395] pci 0000:00:1c.5: bridge 32bit mmio: [0x93600000-0x945fffff]
[    0.202404] pci 0000:00:1c.5: bridge 64bit mmio pref: [0x92400000-0x934fffff]
[    0.202478] pci 0000:00:1e.0: transparent bridge
[    0.202519] pci_bus 0000:00: on NUMA node 0
[    0.202530] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[    0.202825] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P32_._PRT]
[    0.202970] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.EXP1._PRT]
[    0.203076] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.EXP2._PRT]
[    0.203195] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.EXP6._PRT]
[    0.213936] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 7 9 10 *11 12)
[    0.214109] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 7 9 10 *11 12)
[    0.214280] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 7 9 10 *11 12)
[    0.214449] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 7 9 10 *11 12)
[    0.214622] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 7 9 10 *11 12)
[    0.214792] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 7 9 *10 11 12)
[    0.214961] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 7 9 10 *11 12)
[    0.215130] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 7 9 10 11 12) *0, disabled.
[    0.215341] SCSI subsystem initialized
[    0.215354] libata version 3.00 loaded.
[    0.215354] usbcore: registered new interface driver usbfs
[    0.215354] usbcore: registered new interface driver hub
[    0.215354] usbcore: registered new device driver usb
[    0.216048] ACPI: WMI: Mapper loaded
[    0.216050] PCI: Using ACPI for IRQ routing
[    0.224010] Bluetooth: Core ver 2.15
[    0.224015] NET: Registered protocol family 31
[    0.224015] Bluetooth: HCI device and connection manager initialized
[    0.224016] Bluetooth: HCI socket layer initialized
[    0.224019] NET: Registered protocol family 8
[    0.224021] NET: Registered protocol family 20
[    0.224032] NetLabel: Initializing
[    0.224034] NetLabel:  domain hash size = 128
[    0.224035] NetLabel:  protocols = UNLABELED CIPSOv4
[    0.224048] NetLabel:  unlabeled traffic allowed by default
[    0.224067] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0
[    0.224072] hpet0: 4 comparators, 64-bit 14.318180 MHz counter
[    0.240476] pnp: PnP ACPI init
[    0.240485] ACPI: bus type pnp registered
[    0.242813] pnp 00:02: io resource (0x164e-0x164f) overlaps 0000:00:1c.5 BAR 7 (0x1000-0x2fff), disabling
[    0.244132] pnp: PnP ACPI: found 10 devices
[    0.244134] ACPI: ACPI bus type pnp unregistered
[    0.244137] PnPBIOS: Disabled by ACPI PNP
[    0.244148] system 00:00: iomem range 0xf8000000-0xfbffffff has been reserved
[    0.244156] system 00:02: ioport range 0x600-0x60f has been reserved
[    0.244159] system 00:02: ioport range 0x610-0x610 has been reserved
[    0.244162] system 00:02: ioport range 0x800-0x80f has been reserved
[    0.244165] system 00:02: ioport range 0x810-0x817 has been reserved
[    0.244168] system 00:02: ioport range 0x820-0x823 has been reserved
[    0.244171] system 00:02: ioport range 0x400-0x47f has been reserved
[    0.244173] system 00:02: ioport range 0x500-0x53f has been reserved
[    0.244176] system 00:02: ioport range 0x540-0x57f has been reserved
[    0.244179] system 00:02: ioport range 0x380-0x383 has been reserved
[    0.244182] system 00:02: iomem range 0xf8000000-0xfbffffff has been reserved
[    0.244186] system 00:02: iomem range 0xfed1c000-0xfed1ffff has been reserved
[    0.244189] system 00:02: iomem range 0xfed10000-0xfed13fff has been reserved
[    0.244192] system 00:02: iomem range 0xfed18000-0xfed18fff has been reserved
[    0.244195] system 00:02: iomem range 0xfed19000-0xfed19fff has been reserved
[    0.244198] system 00:02: iomem range 0xfec00000-0xfec00fff has been reserved
[    0.244201] system 00:02: iomem range 0xfed20000-0xfed8ffff has been reserved
[    0.244204] system 00:02: iomem range 0xfee00000-0xfee00fff has been reserved
[    0.278898] pci 0000:00:1c.0: PCI bridge, secondary bus 0000:01
[    0.278903] pci 0000:00:1c.0:   IO window: 0x4000-0x4fff
[    0.278910] pci 0000:00:1c.0:   MEM window: 0x95600000-0x965fffff
[    0.278915] pci 0000:00:1c.0:   PREFETCH window: 0x00000090400000-0x000000913fffff
[    0.278924] pci 0000:00:1c.1: PCI bridge, secondary bus 0000:02
[    0.278928] pci 0000:00:1c.1:   IO window: 0x3000-0x3fff
[    0.278935] pci 0000:00:1c.1:   MEM window: 0x94600000-0x955fffff
[    0.278940] pci 0000:00:1c.1:   PREFETCH window: 0x00000091400000-0x000000923fffff
[    0.278951] pci 0000:00:1c.5: PCI bridge, secondary bus 0000:04
[    0.278954] pci 0000:00:1c.5:   IO window: 0x1000-0x2fff
[    0.278961] pci 0000:00:1c.5:   MEM window: 0x93600000-0x945fffff
[    0.278967] pci 0000:00:1c.5:   PREFETCH window: 0x00000092400000-0x000000934fffff
[    0.278976] pci 0000:00:1e.0: PCI bridge, secondary bus 0000:05
[    0.278978] pci 0000:00:1e.0:   IO window: disabled
[    0.278984] pci 0000:00:1e.0:   MEM window: disabled
[    0.278989] pci 0000:00:1e.0:   PREFETCH window: disabled
[    0.279004] pci 0000:00:1c.0: enabling device (0000 -> 0003)
[    0.279012] pci 0000:00:1c.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
[    0.279020] pci 0000:00:1c.0: setting latency timer to 64
[    0.279029] pci 0000:00:1c.1: enabling device (0000 -> 0003)
[    0.279035] pci 0000:00:1c.1: PCI INT B -> GSI 16 (level, low) -> IRQ 16
[    0.279042] pci 0000:00:1c.1: setting latency timer to 64
[    0.279051] pci 0000:00:1c.5: PCI INT B -> GSI 16 (level, low) -> IRQ 16
[    0.279057] pci 0000:00:1c.5: setting latency timer to 64
[    0.279066] pci 0000:00:1e.0: setting latency timer to 64
[    0.279071] pci_bus 0000:00: resource 0 io:  [0x00-0xffff]
[    0.279073] pci_bus 0000:00: resource 1 mem: [0x000000-0xffffffff]
[    0.279076] pci_bus 0000:01: resource 0 io:  [0x4000-0x4fff]
[    0.279079] pci_bus 0000:01: resource 1 mem: [0x95600000-0x965fffff]
[    0.279081] pci_bus 0000:01: resource 2 pref mem [0x90400000-0x913fffff]
[    0.279084] pci_bus 0000:02: resource 0 io:  [0x3000-0x3fff]
[    0.279086] pci_bus 0000:02: resource 1 mem: [0x94600000-0x955fffff]
[    0.279089] pci_bus 0000:02: resource 2 pref mem [0x91400000-0x923fffff]
[    0.279091] pci_bus 0000:04: resource 0 io:  [0x1000-0x2fff]
[    0.279094] pci_bus 0000:04: resource 1 mem: [0x93600000-0x945fffff]
[    0.279096] pci_bus 0000:04: resource 2 pref mem [0x92400000-0x934fffff]
[    0.279099] pci_bus 0000:05: resource 3 io:  [0x00-0xffff]
[    0.279101] pci_bus 0000:05: resource 4 mem: [0x000000-0xffffffff]
[    0.279137] NET: Registered protocol family 2
[    0.312551] IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
[    0.312870] TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
[    0.313284] TCP bind hash table entries: 65536 (order: 7, 524288 bytes)
[    0.313596] TCP: Hash tables configured (established 131072 bind 65536)
[    0.313599] TCP reno registered
[    0.324613] NET: Registered protocol family 1
[    0.324684] Trying to unpack rootfs image as initramfs...
[    0.500531] Switched to high resolution mode on CPU 1
[    0.504050] Switched to high resolution mode on CPU 0
[    0.530125] Freeing initrd memory: 7410k freed
[    0.534701] Simple Boot Flag value 0x5 read from CMOS RAM was invalid
[    0.534705] Simple Boot Flag at 0x44 set to 0x1
[    0.534826] cpufreq-nforce2: No nForce2 chipset.
[    0.534861] Scanning for low memory corruption every 60 seconds
[    0.534978] audit: initializing netlink socket (disabled)
[    0.534995] type=2000 audit(1266466032.532:1): initialized
[    0.545042] highmem bounce pool size: 64 pages
[    0.545048] HugeTLB registered 4 MB page size, pre-allocated 0 pages
[    0.546435] VFS: Disk quotas dquot_6.5.2
[    0.546501] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[    0.547080] fuse init (API version 7.11)
[    0.547161] msgmni has been set to 1708
[    0.547372] alg: No test for stdrng (krng)
[    0.547382] io scheduler noop registered
[    0.547384] io scheduler anticipatory registered
[    0.547386] io scheduler deadline registered
[    0.547428] io scheduler cfq registered (default)
[    0.547441] pci 0000:00:02.0: Boot video device
[    0.547945] pcieport-driver 0000:00:1c.0: irq 24 for MSI/MSI-X
[    0.547966] pcieport-driver 0000:00:1c.0: setting latency timer to 64
[    0.548146] pcieport-driver 0000:00:1c.1: irq 25 for MSI/MSI-X
[    0.548166] pcieport-driver 0000:00:1c.1: setting latency timer to 64
[    0.548345] pcieport-driver 0000:00:1c.5: irq 26 for MSI/MSI-X
[    0.548364] pcieport-driver 0000:00:1c.5: setting latency timer to 64
[    0.548474] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    0.548494] Firmware did not grant requested _OSC control
[    0.548560] Firmware did not grant requested _OSC control
[    0.548609] Firmware did not grant requested _OSC control
[    0.548674] Firmware did not grant requested _OSC control
[    0.548722] Firmware did not grant requested _OSC control
[    0.548769] Firmware did not grant requested _OSC control
[    0.548817] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    0.550657] ACPI: AC Adapter [ACAD] (off-line)
[    0.550729] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
[    0.550732] ACPI: Power Button [PWRF]
[    0.550781] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input1
[    0.550783] ACPI: Power Button [PWRB]
[    0.550828] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input2
[    0.551929] ACPI: Lid Switch [LID0]
[    0.551974] input: Sleep Button as /devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input3
[    0.551977] ACPI: Sleep Button [SLPB]
[    0.552867] ACPI: SSDT 7bab4c18 00265 (v01 QUANTA WTW8     00003000 INTL 20060317)
[    0.553371] ACPI: SSDT 7bab2698 0061D (v01 QUANTA WTW8     00003001 INTL 20060317)
[    0.553959] Monitor-Mwait will be used to enter C-1 state
[    0.553989] Monitor-Mwait will be used to enter C-2 state
[    0.554013] Monitor-Mwait will be used to enter C-3 state
[    0.554022] Marking TSC unstable due to TSC halts in idle
[    0.554043] ACPI: CPU0 (power states: C1[C1] C2[C2] C3[C3])
[    0.554071] processor ACPI_CPU:00: registered as cooling_device0
[    0.554075] ACPI: Processor [CPU0] (supports 8 throttling states)
[    0.554584] ACPI: SSDT 7bab3e18 001CF (v01 QUANTA WTW8     00003000 INTL 20060317)
[    0.555099] ACPI: SSDT 7bab4f18 0008D (v01 QUANTA WTW8     00003000 INTL 20060317)
[    0.555863] ACPI: CPU1 (power states: C1[C1] C2[C2] C3[C3])
[    0.555886] processor ACPI_CPU:01: registered as cooling_device1
[    0.555890] ACPI: Processor [CPU1] (supports 8 throttling states)
[    0.579195] thermal LNXTHERM:01: registered as thermal_zone0
[    0.579204] ACPI: Thermal Zone [TZ01] (70 C)
[    0.579270] isapnp: Scanning for PnP cards...
[    0.731725] ACPI: Battery Slot [BAT0] (battery present)
[    0.933657] isapnp: No Plug & Play device found
[    0.934829] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    0.935921] brd: module loaded
[    0.936250] loop: module loaded
[    0.936331] input: Macintosh mouse button emulation as /devices/virtual/input/input4
[    0.936364] Driver 'sd' needs updating - please use bus_type methods
[    0.936374] Driver 'sr' needs updating - please use bus_type methods
[    0.936453] ata_piix 0000:00:1f.2: version 2.13
[    0.936474] ata_piix 0000:00:1f.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[    0.936481] ata_piix 0000:00:1f.2: MAP [ P0 -- P1 -- ]
[    0.936550] ata_piix 0000:00:1f.2: setting latency timer to 64
[    0.936624] scsi0 : ata_piix
[    0.936713] scsi1 : ata_piix
[    0.937958] ata1: SATA max UDMA/133 cmd 0x5138 ctl 0x5154 bmdma 0x5110 irq 19
[    0.937964] ata2: SATA max UDMA/133 cmd 0x5130 ctl 0x5150 bmdma 0x5118 irq 19
[    0.937990] ata_piix 0000:00:1f.5: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[    0.937998] ata_piix 0000:00:1f.5: MAP [ P0 -- P1 -- ]
[    1.092032] ata_piix 0000:00:1f.5: setting latency timer to 64
[    1.092091] scsi2 : ata_piix
[    1.092169] scsi3 : ata_piix
[    1.093321] ata3: SATA max UDMA/133 cmd 0x5128 ctl 0x514c bmdma 0x50f0 irq 19
[    1.093327] ata4: SATA max UDMA/133 cmd 0x5120 ctl 0x5148 bmdma 0x50f8 irq 19
[    1.094008] Fixed MDIO Bus: probed
[    1.094014] PPP generic driver version 2.4.2
[    1.094110] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    1.094130] ehci_hcd 0000:00:1a.7: PCI INT D -> GSI 19 (level, low) -> IRQ 19
[    1.094143] ehci_hcd 0000:00:1a.7: setting latency timer to 64
[    1.094147] ehci_hcd 0000:00:1a.7: EHCI Host Controller
[    1.094206] ehci_hcd 0000:00:1a.7: new USB bus registered, assigned bus number 1
[    1.098122] ehci_hcd 0000:00:1a.7: debug port 1
[    1.098129] ehci_hcd 0000:00:1a.7: cache line size of 32 is not supported
[    1.098136] ehci_hcd 0000:00:1a.7: irq 19, io mem 0x96605400
[    1.112513] ehci_hcd 0000:00:1a.7: USB 2.0 started, EHCI 1.00
[    1.112580] usb usb1: configuration #1 chosen from 1 choice
[    1.112612] hub 1-0:1.0: USB hub found
[    1.112619] hub 1-0:1.0: 4 ports detected
[    1.112722] ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 20 (level, low) -> IRQ 20
[    1.112732] ehci_hcd 0000:00:1d.7: setting latency timer to 64
[    1.112736] ehci_hcd 0000:00:1d.7: EHCI Host Controller
[    1.112779] ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 2
[    1.116677] ehci_hcd 0000:00:1d.7: debug port 1
[    1.116684] ehci_hcd 0000:00:1d.7: cache line size of 32 is not supported
[    1.116699] ehci_hcd 0000:00:1d.7: irq 20, io mem 0x96605000
[    1.132018] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00
[    1.132093] usb usb2: configuration #1 chosen from 1 choice
[    1.132119] hub 2-0:1.0: USB hub found
[    1.132125] hub 2-0:1.0: 8 ports detected
[    1.132224] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    1.132244] uhci_hcd: USB Universal Host Controller Interface driver
[    1.132275] uhci_hcd 0000:00:1a.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    1.132282] uhci_hcd 0000:00:1a.0: setting latency timer to 64
[    1.132286] uhci_hcd 0000:00:1a.0: UHCI Host Controller
[    1.132328] uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 3
[    1.132365] uhci_hcd 0000:00:1a.0: irq 16, io base 0x000050c0
[    1.132443] usb usb3: configuration #1 chosen from 1 choice
[    1.132471] hub 3-0:1.0: USB hub found
[    1.132478] hub 3-0:1.0: 2 ports detected
[    1.132569] uhci_hcd 0000:00:1a.1: PCI INT B -> GSI 21 (level, low) -> IRQ 21
[    1.132576] uhci_hcd 0000:00:1a.1: setting latency timer to 64
[    1.132580] uhci_hcd 0000:00:1a.1: UHCI Host Controller
[    1.132628] uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus number 4
[    1.132664] uhci_hcd 0000:00:1a.1: irq 21, io base 0x000050a0
[    1.132743] usb usb4: configuration #1 chosen from 1 choice
[    1.132769] hub 4-0:1.0: USB hub found
[    1.132775] hub 4-0:1.0: 2 ports detected
[    1.132854] uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20
[    1.132861] uhci_hcd 0000:00:1d.0: setting latency timer to 64
[    1.132865] uhci_hcd 0000:00:1d.0: UHCI Host Controller
[    1.132909] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 5
[    1.132938] uhci_hcd 0000:00:1d.0: irq 20, io base 0x00005080
[    1.133016] usb usb5: configuration #1 chosen from 1 choice
[    1.133042] hub 5-0:1.0: USB hub found
[    1.133048] hub 5-0:1.0: 2 ports detected
[    1.133128] uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[    1.133135] uhci_hcd 0000:00:1d.1: setting latency timer to 64
[    1.133139] uhci_hcd 0000:00:1d.1: UHCI Host Controller
[    1.133184] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 6
[    1.133211] uhci_hcd 0000:00:1d.1: irq 19, io base 0x00005060
[    1.133293] usb usb6: configuration #1 chosen from 1 choice
[    1.133323] hub 6-0:1.0: USB hub found
[    1.133331] hub 6-0:1.0: 2 ports detected
[    1.133408] uhci_hcd 0000:00:1d.2: PCI INT D -> GSI 16 (level, low) -> IRQ 16
[    1.133416] uhci_hcd 0000:00:1d.2: setting latency timer to 64
[    1.133419] uhci_hcd 0000:00:1d.2: UHCI Host Controller
[    1.133459] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 7
[    1.133487] uhci_hcd 0000:00:1d.2: irq 16, io base 0x00005040
[    1.133568] usb usb7: configuration #1 chosen from 1 choice
[    1.133593] hub 7-0:1.0: USB hub found
[    1.133600] hub 7-0:1.0: 2 ports detected
[    1.133683] uhci_hcd 0000:00:1d.3: PCI INT C -> GSI 18 (level, low) -> IRQ 18
[    1.133689] uhci_hcd 0000:00:1d.3: setting latency timer to 64
[    1.133693] uhci_hcd 0000:00:1d.3: UHCI Host Controller
[    1.133735] uhci_hcd 0000:00:1d.3: new USB bus registered, assigned bus number 8
[    1.133772] uhci_hcd 0000:00:1d.3: irq 18, io base 0x00005020
[    1.133850] usb usb8: configuration #1 chosen from 1 choice
[    1.133875] hub 8-0:1.0: USB hub found
[    1.133882] hub 8-0:1.0: 2 ports detected
[    1.134016] PNP: PS/2 Controller [PNP0303:KBC,PNP0f13:MOUE] at 0x60,0x64 irq 1,12
[    1.153754] serio: i8042 KBD port at 0x60,0x64 irq 1
[    1.153760] serio: i8042 AUX port at 0x60,0x64 irq 12
[    1.153819] mice: PS/2 mouse device common for all mice
[    1.153951] rtc_cmos 00:04: RTC can wake from S4
[    1.153985] rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0
[    1.154018] rtc0: alarms up to one month, 242 bytes nvram, hpet irqs
[    1.154125] device-mapper: uevent: version 1.0.3
[    1.155098] device-mapper: ioctl: 4.14.0-ioctl (2008-04-23) initialised: dm-devel@redhat.com
[    1.155218] device-mapper: multipath: version 1.0.5 loaded
[    1.155221] device-mapper: multipath round-robin: version 1.0.0 loaded
[    1.155322] EISA: Probing bus 0 at eisa.0
[    1.155329] Cannot allocate resource for EISA slot 1
[    1.155331] Cannot allocate resource for EISA slot 2
[    1.155333] Cannot allocate resource for EISA slot 3
[    1.155335] Cannot allocate resource for EISA slot 4
[    1.155337] Cannot allocate resource for EISA slot 5
[    1.155352] EISA: Detected 0 cards.
[    1.155535] cpuidle: using governor ladder
[    1.155656] cpuidle: using governor menu
[    1.156168] TCP cubic registered
[    1.156326] NET: Registered protocol family 10
[    1.156796] lo: Disabled Privacy Extensions
[    1.157155] NET: Registered protocol family 17
[    1.157174] Bluetooth: L2CAP ver 2.13
[    1.157176] Bluetooth: L2CAP socket layer initialized
[    1.157179] Bluetooth: SCO (Voice Link) ver 0.6
[    1.157181] Bluetooth: SCO socket layer initialized
[    1.157221] Bluetooth: RFCOMM socket layer initialized
[    1.157228] Bluetooth: RFCOMM TTY layer initialized
[    1.157230] Bluetooth: RFCOMM ver 1.11
[    1.157847] Using IPI No-Shortcut mode
[    1.157914] PM: Resume from disk failed.
[    1.157926] registered taskstats version 1
[    1.158065]   Magic number: 14:811:110
[    1.158072] usbmon usbmon6: hash matches
[    1.158160] rtc_cmos 00:04: setting system clock to 2010-02-18 04:07:13 UTC (1266466033)
[    1.158164] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[    1.158166] EDD information not available.
[    1.169829] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input5
[    1.416111] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    1.431212] ata3: SATA link down (SStatus 0 SControl 300)
[    1.431545] usb 1-1: new high speed USB device using ehci_hcd and address 2
[    1.471767] ata1.00: ATA-8: WDC WD1600BEVT-00ZCT0, 11.01A11, max UDMA/133
[    1.471770] ata1.00: 312581808 sectors, multi 16: LBA48 NCQ (depth 0/32)
[    1.484969] ata1.00: configured for UDMA/133
[    1.485106] scsi 0:0:0:0: Direct-Access     ATA      WDC WD1600BEVT-0 11.0 PQ: 0 ANSI: 5
[    1.485216] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    1.485271] sd 0:0:0:0: [sda] 312581808 512-byte hardware sectors: (160 GB/149 GiB)
[    1.485287] sd 0:0:0:0: [sda] Write Protect is off
[    1.485289] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    1.485313] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    1.485407]  sda: sda1 sda2 < sda5 >
[    1.519704] sd 0:0:0:0: [sda] Attached SCSI disk
[    1.812382] usb 1-1: configuration #1 chosen from 1 choice
[    1.928061] usb 2-7: new high speed USB device using ehci_hcd and address 2
[    1.960093] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    1.984301] ata2.00: ATAPI: Optiarc DVD RW AD-7580S, FA01, max UDMA/100
[    2.016314] ata2.00: configured for UDMA/100
[    2.021353] scsi 1:0:0:0: CD-ROM            Optiarc  DVD RW AD-7580S  FA01 PQ: 0 ANSI: 5
[    2.037718] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
[    2.037721] Uniform CD-ROM driver Revision: 3.20
[    2.037794] sr 1:0:0:0: Attached scsi CD-ROM sr0
[    2.037836] sr 1:0:0:0: Attached scsi generic sg1 type 5
[    2.067806] usb 2-7: configuration #1 chosen from 1 choice
[    2.367198] ata4: SATA link down (SStatus 0 SControl 300)
[    2.367265] Freeing unused kernel memory: 528k freed
[    2.367591] Write protecting the kernel text: 4184k
[    2.367645] Write protecting the kernel read-only data: 1664k
[    2.624817] Initializing USB Mass Storage driver...
[    2.626551] scsi4 : SCSI emulation for USB Mass Storage devices
[    2.632339] usbcore: registered new interface driver usb-storage
[    2.632344] USB Mass Storage support registered.
[    2.632577] usb-storage: device found at 2
[    2.632579] usb-storage: waiting for device to settle before scanning
[    2.656372] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
[    2.656520] r8169 0000:04:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
[    2.656597] r8169 0000:04:00.0: setting latency timer to 64
[    2.657497] r8169 0000:04:00.0: irq 27 for MSI/MSI-X
[    2.658320] eth0: RTL8102e at 0xf802a000, 00:23:8b:02:86:e9, XID 34a00000 IRQ 27
[    3.131187] PM: Starting manual resume from disk
[    3.131191] PM: Resume from partition 8:5
[    3.131193] PM: Checking hibernation image.
[    3.131423] PM: Resume from disk failed.
[    3.135726] EXT3-fs: INFO: recovery required on readonly filesystem.
[    3.135731] EXT3-fs: write access will be enabled during recovery.
[    4.509891] kjournald starting.  Commit interval 5 seconds
[    4.509910] EXT3-fs: sda1: orphan cleanup on readonly fs
[    4.509916] ext3_orphan_cleanup: deleting unreferenced inode 827920
[    4.509941] ext3_orphan_cleanup: deleting unreferenced inode 827547
[    4.509949] ext3_orphan_cleanup: deleting unreferenced inode 827546
[    4.509955] ext3_orphan_cleanup: deleting unreferenced inode 827545
[    4.509961] ext3_orphan_cleanup: deleting unreferenced inode 827544
[    4.509976] ext3_orphan_cleanup: deleting unreferenced inode 827543
[    4.509982] ext3_orphan_cleanup: deleting unreferenced inode 827542
[    4.509992] ext3_orphan_cleanup: deleting unreferenced inode 827541
[    4.510001] ext3_orphan_cleanup: deleting unreferenced inode 827540
[    4.510007] ext3_orphan_cleanup: deleting unreferenced inode 827539
[    4.526495] ext3_orphan_cleanup: deleting unreferenced inode 2465843
[    4.526515] EXT3-fs: sda1: 11 orphan inodes deleted
[    4.526516] EXT3-fs: recovery complete.
[    4.532804] EXT3-fs: mounted filesystem with writeback data mode.
[    7.632407] usb-storage: device scan complete
[    7.634495] scsi 4:0:0:0: Direct-Access     Generic- Multi-Card       1.00 PQ: 0 ANSI: 0 CCS
[    7.635069] sd 4:0:0:0: Attached scsi generic sg2 type 0
[    7.636944] sd 4:0:0:0: [sdb] Attached SCSI removable disk
[   10.109953] udev: starting version 141
[   10.596589] cfg80211: Calling CRDA to update world regulatory domain
[   10.932819] cfg80211: World regulatory domain updated:
[   10.932823] 	(start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[   10.932826] 	(2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   10.932829] 	(2457000 KHz - 2482000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[   10.932831] 	(2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[   10.932834] 	(5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   10.932836] 	(5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   11.340807] input: PC Speaker as /devices/platform/pcspkr/input/input6
[   11.411852] iTCO_vendor_support: vendor-support=0
[   11.430430] Linux agpgart interface v0.103
[   11.433666] agpgart-intel 0000:00:00.0: Intel Mobile Intel® GM45 Express Chipset
[   11.434158] agpgart-intel 0000:00:00.0: detected 65532K stolen memory
[   11.437692] agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0x80000000
[   11.469953] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.05
[   11.470042] iTCO_wdt: Found a ICH9M TCO device (Version=2, TCOBASE=0x0460)
[   11.470106] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[   11.603147] rtl8187: 8187B chip detected.
[   11.674905] HDA Intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
[   11.674940] HDA Intel 0000:00:1b.0: setting latency timer to 64
[   11.721444] phy0: Selected rate control algorithm 'minstrel'
[   11.722186] phy0: hwaddr 00:17:c4:3e:ed:07, RTL8187BvE V0 + rtl8225z2
[   11.722210] usbcore: registered new interface driver rtl8187
[   12.027047] lp: driver loaded but no devices found
[   12.109336] Adding 5831552k swap on /dev/sda5.  Priority:-1 extents:1 across:5831552k 
[   12.158880] EXT3 FS on sda1, internal journal
[   12.262371] Synaptics Touchpad, model: 1, fw: 6.5, id: 0x1c0b1, caps: 0xa04751/0xa00000
[   12.331322] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input7
[   14.804812] vboxdrv: Trying to deactivate the NMI watchdog permanently...
[   14.804816] vboxdrv: Successfully done.
[   14.804818] vboxdrv: Found 2 processor cores.
[   14.804901] vboxdrv: fAsync=0 offMin=0x228 offMax=0x1ca4
[   14.804950] vboxdrv: TSC mode is 'synchronous', kernel timer mode is 'normal'.
[   14.804952] vboxdrv: Successfully loaded version 3.1.2 (interface 0x00100001).
[   16.003595] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[   16.003598] Bluetooth: BNEP filters: protocol multicast
[   16.024686] Bridge firewalling registered
[   17.088125] [drm] Initialized drm 1.1.0 20060810
[   17.112207] pci 0000:00:02.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[   17.112213] pci 0000:00:02.0: setting latency timer to 64
[   17.114240] pci 0000:00:02.0: irq 28 for MSI/MSI-X
[   17.131306] acpi device:04: registered as cooling_device2
[   17.131694] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:01/input/input8
[   17.131743] ACPI: Video Device [OVGA] (multi-head: yes  rom: no  post: no)
[   17.131796] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
[   17.511705] ppdev: user-space parallel port driver


Output:
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
Line 1: error: expected identifier or '(' before '[' token
Line 29: error: too many decimal points in number
Line 3: error: stray '@' in program
Line 78: error: too many decimal points in number
Line 92: error: too many decimal points in number
Line 98: error: invalid suffix "ubuntu7" on integer constant
Line 3: error: stray '#' in program
Line 46: error: invalid digit "9" in octal constant
Line 27: error: invalid digit "9" in octal constant
Line 46: error: invalid suffix "a0000" on integer constant
Line 46: error: invalid suffix "a7b5000" on integer constant
Line 27: error: invalid suffix "a7b5000" on integer constant
Line 46: error: invalid suffix "a7b8000" on integer constant
Line 27: error: invalid suffix "a7b8000" on integer constant
Line 46: error: invalid suffix "baa8000" on integer constant
Line 27: error: invalid suffix "baa8000" on integer constant
Line 46: error: invalid suffix "babf000" on integer constant
Line 27: error: invalid suffix "babf000" on integer constant
Line 46: error: invalid suffix "bb85000" on integer constant
Line 27: error: invalid suffix "bb85000" on integer constant
Line 46: error: invalid suffix "bbbf000" on integer constant
Line 27: error: invalid suffix "bbbf000" on integer constant
Line 46: error: invalid suffix "bbec000" on integer constant
Line 27: error: invalid suffix "bbec000" on integer constant
Line 46: error: invalid suffix "bbff000" on integer constant
Line 27: error: invalid suffix "bbff000" on integer constant
Line 46: error: invalid suffix "bc00000" on integer constant
Line 27: error: invalid suffix "bc00000" on integer constant
Line 46: error: invalid digit "8" in octal constant
Line 27: error: invalid suffix "f8000000" on integer constant
Line 46: error: invalid suffix "fc000000" on integer constant
Line 27: error: invalid suffix "fec00000" on integer constant
Line 46: error: invalid suffix "fec01000" on integer constant
Line 27: error: invalid suffix "fed10000" on integer constant
Line 46: error: invalid suffix "fed14000" on integer constant
Line 27: error: invalid suffix "fed18000" on integer constant
Line 46: error: invalid suffix "fed1a000" on integer constant
Line 27: error: invalid suffix "fed1c000" on integer constant
Line 46: error: invalid suffix "fed20000" on integer constant
Line 27: error: invalid suffix "fee00000" on integer constant
Line 46: error: invalid suffix "fee01000" on integer constant
Line 27: error: invalid suffix "fff00000" on integer constant
Line 23: error: invalid suffix "FFFF" on integer constant
Line 24: error: invalid suffix "C000000" on integer constant
Line 24: error: invalid suffix "BC00000" on integer constant
Line 24: error: invalid suffix "FFFE0000" on integer constant
Line 24: error: invalid suffix "FFFD8000" on integer constant
Line 45: error: invalid digit "9" in octal constant
Line 26: error: invalid digit "9" in octal constant
Line 45: error: invalid suffix "a0000" on integer constant
Line 45: error: invalid suffix "a7b5000" on integer constant
Line 26: error: invalid suffix "a7b5000" on integer constant
Line 45: error: invalid suffix "a7b8000" on integer constant
Line 26: error: invalid suffix "a7b8000" on integer constant
Line 45: error: invalid suffix "baa8000" on integer constant
Line 26: error: invalid suffix "baa8000" on integer constant
Line 45: error: invalid suffix "babf000" on integer constant
Line 26: error: invalid suffix "babf000" on integer constant
Line 45: error: invalid suffix "bb85000" on integer constant
Line 26: error: invalid suffix "bb85000" on integer constant
Line 45: error: invalid suffix "bbbf000" on integer constant
Line 26: error: invalid suffix "bbbf000" on integer constant
Line 45: error: invalid suffix "bbec000" on integer constant
Line 26: error: invalid suffix "bbec000" on integer constant
Line 45: error: invalid suffix "bbff000" on integer constant
Line 26: error: invalid suffix "bbff000" on integer constant
Line 45: error: invalid suffix "bc00000" on integer constant
Line 26: error: invalid suffix "bc00000" on integer constant
Line 45: error: invalid digit "8" in octal constant
Line 26: error: invalid suffix "f8000000" on integer constant
Line 45: error: invalid suffix "fc000000" on integer constant
Line 26: error: invalid suffix "fec00000" on integer constant
Line 45: error: invalid suffix "fec01000" on integer constant
Line 26: error: invalid suffix "fed10000" on integer constant
Line 45: error: invalid suffix "fed14000" on integer constant
Line 26: error: invalid suffix "fed18000" on integer constant
Line 45: error: invalid suffix "fed1a000" on integer constant
Line 26: error: invalid suffix "fed1c000" on integer constant
Line 45: error: invalid suffix "fed20000" on integer constant
Line 26: error: invalid suffix "fee00000" on integer constant
Line 45: error: invalid suffix "fee01000" on integer constant
Line 26: error: invalid suffix "fff00000" on integer constant
Line 53: error: invalid suffix "fe000" on integer constant
Line 45: error: invalid suffix "k" on integer constant
Line 45: error: invalid suffix "M" on integer constant
Line 29: error: invalid suffix "fe000" on integer constant
Line 45: error: invalid suffix "k" on integer constant
Line 50: error: invalid suffix "fe000" on integer constant
Line 80: error: stray '@' in program
Line 24: error: invalid suffix "b3000" on integer constant
Line 35: error: invalid suffix "fefb10" on integer constant
Line 38: error: invalid digit "8" in octal constant
Line 49: error: invalid suffix "f76b10" on integer constant
Line 33: error: invalid digit "8" in octal constant
Line 52: error: invalid suffix "fefb0f" on integer constant
Line 72: error: invalid digit "8" in octal constant
Line 83: error: invalid suffix "f76b0f" on integer constant
Line 26: error: invalid suffix "fe020" on integer constant
Line 26: error: invalid suffix "bbfe120" on integer constant
Line 26: error: invalid suffix "bbfd000" on integer constant
Line 35: error: invalid suffix "F4" on integer constant
Line 26: error: invalid suffix "bbef000" on integer constant
Line 35: error: exponent has no digits
Line 26: error: invalid suffix "bb92000" on integer constant
Line 26: error: invalid suffix "bbfc000" on integer constant
Line 35: error: invalid digit "8" in octal constant
Line 26: error: invalid suffix "bbfb000" on integer constant
Line 35: error: invalid suffix "C" on integer constant
Line 26: error: invalid suffix "bbfa000" on integer constant
Line 35: error: invalid suffix "C" on integer constant
Line 26: error: invalid suffix "bbf9000" on integer constant
Line 35: error: invalid suffix "A5" on integer constant
Line 26: error: invalid suffix "bbee000" on integer constant
Line 26: error: invalid suffix "bbed000" on integer constant
Line 35: error: invalid digit "8" in octal constant
Line 26: error: invalid suffix "bbec000" on integer constant
Line 15: error: invalid suffix "MB" on integer constant
Line 15: error: invalid suffix "MB" on integer constant
Line 37: error: invalid suffix "fe000" on integer constant
Line 30: error: invalid suffix "fe000" on integer constant
Line 44: error: invalid suffix "fe000" on integer constant
Line 32: error: invalid digit "8" in octal constant
Line 43: error: exponent has no digits
Line 64: error: invalid suffix "fe000" on integer constant
Line 104: error: stray '#' in program
Line 105: error: stray '#' in program
Line 106: error: stray '#' in program
Line 107: error: stray '#' in program
Line 34: error: invalid digit "8" in octal constant
Line 81: error: invalid digit "8" in octal constant
Line 108: error: stray '#' in program
Line 21: error: invalid digit "9" in octal constant
Line 68: error: invalid digit "9" in octal constant
Line 109: error: stray '#' in program
Line 21: error: invalid digit "8" in octal constant
Line 34: error: invalid digit "9" in octal constant
Line 68: error: invalid digit "8" in octal constant
Line 81: error: invalid digit "9" in octal constant
Line 110: error: stray '#' in program
Line 34: error: invalid digit "8" in octal constant
Line 81: error: invalid digit "8" in octal constant
Line 111: error: stray '#' in program
Line 21: error: invalid digit "8" in octal constant
Line 34: error: invalid suffix "f76b10" on integer constant
Line 68: error: invalid digit "8" in octal constant
Line 81: error: invalid suffix "f76b10" on integer constant
Line 112: error: stray '#' in program
Line 21: error: invalid digit "8" in octal constant
Line 34: error: invalid suffix "f000" on integer constant
Line 68: error: invalid digit "8" in octal constant
Line 81: error: invalid suffix "f000" on integer constant
Line 45: error: invalid digit "9" in octal constant
Line 64: error: invalid suffix "a0000" on integer constant
Line 45: error: invalid suffix "a0000" on integer constant
Line 46: error: invalid suffix "b4c" on integer constant
Line 60: error: invalid suffix "b7" on integer constant
Line 65: error: invalid suffix "a94" on integer constant
Line 70: error: invalid suffix "d72232e4e6a" on integer constant
Line 165: error: stray '#' in program
Line 36: error: invalid suffix "x25" on integer constant
Line 175: error: missing terminating ' character
Line 48: error: invalid suffix "fe" on integer constant
Line 57: error: invalid suffix "bc00" on integer constant
Line 23: error: invalid suffix "k" on integer constant
Line 32: error: invalid suffix "k" on integer constant
Line 52: error: invalid suffix "k" on integer constant
Line 71: error: invalid suffix "k" on integer constant
Line 88: error: invalid suffix "k" on integer constant
Line 100: error: invalid suffix "k" on integer constant
Line 111: error: invalid suffix "k" on integer constant
Line 32: error: invalid suffix "K" on integer constant
Line 49: error: invalid suffix "K" on integer constant
Line 30: error: invalid suffix "K" on integer constant
Line 24: warning: multi-character character constant
Line 206: error: stray '@' in program
Line 61: error: invalid suffix "GHz" on floating constant
Line 78: error: invalid suffix "d" on integer constant
Line 208: error: stray '#' in program
Line 32: error: invalid suffix "K" on integer constant
Line 49: error: invalid suffix "K" on integer constant
Line 30: error: invalid suffix "K" on integer constant
Line 214: error: stray '@' in program
Line 61: error: invalid suffix "GHz" on floating constant
Line 78: error: invalid suffix "d" on integer constant
Line 215: error: stray '#' in program
Line 215: error: stray '#' in program
Line 40: error: invalid suffix "bit" on integer constant
Line 40: error: invalid suffix "bit" on integer constant
Line 40: error: invalid suffix "bit" on integer constant
Line 27: error: invalid suffix "a.0" on integer constant
Line 27: error: invalid suffix "a.1" on integer constant
Line 27: error: invalid suffix "a.7" on integer constant
Line 40: error: invalid suffix "bit" on integer constant
Line 27: error: invalid suffix "a.7" on integer constant
Line 253: error: stray '#' in program
Line 27: error: invalid suffix "a.7" on integer constant
Line 254: error: stray '#' in program
Line 27: error: invalid suffix "b.0" on integer constant
Line 40: error: invalid suffix "bit" on integer constant
Line 27: error: invalid suffix "b.0" on integer constant
Line 256: error: stray '#' in program
Line 27: error: invalid suffix "b.0" on integer constant
Line 257: error: stray '#' in program
Line 27: error: invalid suffix "c.0" on integer constant
Line 258: error: stray '#' in program
Line 27: error: invalid suffix "c.0" on integer constant
Line 259: error: stray '#' in program
Line 27: error: invalid suffix "c.1" on integer constant
Line 260: error: stray '#' in program
Line 27: error: invalid suffix "c.1" on integer constant
Line 261: error: stray '#' in program
Line 27: error: invalid suffix "c.5" on integer constant
Line 262: error: stray '#' in program
Line 27: error: invalid suffix "c.5" on integer constant
Line 263: error: stray '#' in program
Line 27: error: invalid suffix "d.0" on integer constant
Line 27: error: invalid suffix "d.1" on integer constant
Line 27: error: invalid suffix "d.2" on integer constant
Line 27: error: invalid suffix "d.3" on integer constant
Line 27: error: invalid suffix "d.7" on integer constant
Line 40: error: invalid suffix "bit" on integer constant
Line 27: error: invalid suffix "d.7" on integer constant
Line 269: error: stray '#' in program
Line 27: error: invalid suffix "d.7" on integer constant
Line 270: error: stray '#' in program
Line 27: error: invalid suffix "f.2" on integer constant
Line 27: error: invalid suffix "f.2" on integer constant
Line 27: error: invalid suffix "f.2" on integer constant
Line 27: error: invalid suffix "f.2" on integer constant
Line 37: error: invalid suffix "c" on integer constant
Line 27: error: invalid suffix "f.2" on integer constant
Line 27: error: invalid suffix "f.2" on integer constant
Line 27: error: invalid suffix "f.3" on integer constant
Line 40: error: invalid suffix "bit" on integer constant
Line 27: error: invalid suffix "f.3" on integer constant
Line 27: error: invalid suffix "f.5" on integer constant
Line 27: error: invalid suffix "f.5" on integer constant
Line 27: error: invalid suffix "f.5" on integer constant
Line 27: error: invalid suffix "f.5" on integer constant
Line 37: error: invalid suffix "c" on integer constant
Line 27: error: invalid suffix "f.5" on integer constant
Line 27: error: invalid suffix "f.5" on integer constant
Line 27: error: invalid suffix "f.6" on integer constant
Line 40: error: invalid suffix "bit" on integer constant
Line 27: error: invalid suffix "c.0" on integer constant
Line 27: error: invalid suffix "c.0" on integer constant
Line 40: error: invalid suffix "bit" on integer constant
Line 27: error: invalid suffix "c.0" on integer constant
Line 40: error: invalid suffix "bit" on integer constant
Line 27: error: invalid suffix "c.1" on integer constant
Line 27: error: invalid suffix "c.1" on integer constant
Line 40: error: invalid suffix "bit" on integer constant
Line 27: error: invalid suffix "c.1" on integer constant
Line 40: error: invalid suffix "bit" on integer constant
Line 40: error: invalid suffix "bit" on integer constant
Line 40: error: invalid suffix "bit" on integer constant
Line 40: error: invalid suffix "bit" on integer constant
Line 297: error: stray '#' in program
Line 298: error: stray '#' in program
Line 27: error: invalid suffix "c.5" on integer constant
Line 27: error: invalid suffix "c.5" on integer constant
Line 40: error: invalid suffix "bit" on integer constant
Line 27: error: invalid suffix "c.5" on integer constant
Line 40: error: invalid suffix "bit" on integer constant
Line 27: error: exponent has no digits
Line 304: error: stray '\' in program
Line 305: error: stray '\' in program
Line 306: error: stray '\' in program
Line 307: error: stray '\' in program
Line 308: error: stray '\' in program
Line 39: error: invalid suffix "-0x164f" on integer constant
Line 71: error: invalid suffix "c.5" on integer constant
Line 27: error: invalid suffix "c.0" on integer constant
Line 27: error: invalid suffix "c.0" on integer constant
Line 27: error: invalid suffix "c.0" on integer constant
Line 27: error: invalid suffix "c.0" on integer constant
Line 27: error: invalid suffix "c.1" on integer constant
Line 27: error: invalid suffix "c.1" on integer constant
Line 27: error: invalid suffix "c.1" on integer constant
Line 27: error: invalid suffix "c.1" on integer constant
Line 27: error: invalid suffix "c.5" on integer constant
Line 27: error: invalid suffix "c.5" on integer constant
Line 27: error: invalid suffix "c.5" on integer constant
Line 27: error: invalid suffix "c.5" on integer constant
Line 27: error: exponent has no digits
Line 27: error: exponent has no digits
Line 27: error: exponent has no digits
Line 27: error: exponent has no digits
Line 27: error: invalid suffix "c.0" on integer constant
Line 27: error: invalid suffix "c.0" on integer constant
Line 27: error: invalid suffix "c.0" on integer constant
Line 27: error: invalid suffix "c.1" on integer constant
Line 27: error: invalid suffix "c.1" on integer constant
Line 27: error: invalid suffix "c.1" on integer constant
Line 27: error: invalid suffix "c.5" on integer constant
Line 27: error: invalid suffix "c.5" on integer constant
Line 27: error: exponent has no digits
Line 38: error: invalid suffix "k" on integer constant
Line 39: error: too many decimal points in number
Line 39: error: invalid suffix "c.0" on integer constant
Line 39: error: invalid suffix "c.0" on integer constant
Line 39: error: invalid suffix "c.1" on integer constant
Line 39: error: invalid suffix "c.1" on integer constant
Line 39: error: invalid suffix "c.5" on integer constant
Line 39: error: invalid suffix "c.5" on integer constant
Line 26: error: invalid suffix "bab4c18" on integer constant
Line 26: error: invalid suffix "bab2698" on integer constant
Line 35: error: invalid suffix "D" on integer constant
Line 26: error: invalid suffix "bab3e18" on integer constant
Line 35: error: invalid suffix "CF" on integer constant
Line 26: error: invalid suffix "bab4f18" on integer constant
Line 35: error: invalid digit "8" in octal constant
Line 22: warning: multi-character character constant
Line 22: warning: multi-character character constant
Line 32: error: invalid suffix "f.2" on integer constant
Line 32: error: invalid suffix "f.2" on integer constant
Line 32: error: invalid suffix "f.2" on integer constant
Line 32: error: invalid suffix "f.2" on integer constant
Line 32: error: invalid suffix "f.5" on integer constant
Line 32: error: invalid suffix "f.5" on integer constant
Line 32: error: invalid suffix "f.5" on integer constant
Line 42: error: too many decimal points in number
Line 33: warning: character constant too long for its type
Line 32: error: invalid suffix "a.7" on integer constant
Line 32: error: invalid suffix "a.7" on integer constant
Line 32: error: invalid suffix "a.7" on integer constant
Line 32: error: invalid suffix "a.7" on integer constant
Line 32: error: invalid suffix "a.7" on integer constant
Line 32: error: invalid suffix "a.7" on integer constant
Line 32: error: invalid suffix "a.7" on integer constant
Line 32: error: invalid suffix "a.7" on integer constant
Line 501: error: stray '#' in program
Line 32: error: invalid suffix "d.7" on integer constant
Line 32: error: invalid suffix "d.7" on integer constant
Line 32: error: invalid suffix "d.7" on integer constant
Line 32: error: invalid suffix "d.7" on integer constant
Line 32: error: invalid suffix "d.7" on integer constant
Line 32: error: invalid suffix "d.7" on integer constant
Line 32: error: invalid suffix "d.7" on integer constant
Line 32: error: invalid suffix "d.7" on integer constant
Line 512: error: stray '#' in program
Line 33: warning: multi-character character constant
Line 32: error: invalid suffix "a.0" on integer constant
Line 32: error: invalid suffix "a.0" on integer constant
Line 32: error: invalid suffix "a.0" on integer constant
Line 32: error: invalid suffix "a.0" on integer constant
Line 32: error: invalid suffix "a.0" on integer constant
Line 522: error: stray '#' in program
Line 32: error: invalid suffix "a.1" on integer constant
Line 32: error: invalid suffix "a.1" on integer constant
Line 32: error: invalid suffix "a.1" on integer constant
Line 32: error: invalid suffix "a.1" on integer constant
Line 32: error: invalid suffix "a.1" on integer constant
Line 530: error: stray '#' in program
Line 32: error: invalid suffix "d.0" on integer constant
Line 32: error: invalid suffix "d.0" on integer constant
Line 32: error: invalid suffix "d.0" on integer constant
Line 32: error: invalid suffix "d.0" on integer constant
Line 32: error: invalid suffix "d.0" on integer constant
Line 538: error: stray '#' in program
Line 32: error: invalid suffix "d.1" on integer constant
Line 32: error: invalid suffix "d.1" on integer constant
Line 32: error: invalid suffix "d.1" on integer constant
Line 32: error: invalid suffix "d.1" on integer constant
Line 32: error: invalid suffix "d.1" on integer constant
Line 546: error: stray '#' in program
Line 32: error: invalid suffix "d.2" on integer constant
Line 32: error: invalid suffix "d.2" on integer constant
Line 32: error: invalid suffix "d.2" on integer constant
Line 32: error: invalid suffix "d.2" on integer constant
Line 32: error: invalid suffix "d.2" on integer constant
Line 554: error: stray '#' in program
Line 32: error: invalid suffix "d.3" on integer constant
Line 32: error: invalid suffix "d.3" on integer constant
Line 32: error: invalid suffix "d.3" on integer constant
Line 32: error: invalid suffix "d.3" on integer constant
Line 32: error: invalid suffix "d.3" on integer constant
Line 562: error: stray '#' in program
Line 46: error: too many decimal points in number
Line 37: error: too many decimal points in number
Line 573: error: stray '@' in program
Line 49: error: too many decimal points in number
Line 61: error: too many decimal points in number
Line 46: error: invalid suffix "ZCT0" on integer constant
Line 54: error: invalid suffix "A11" on floating constant
Line 48: error: invalid suffix "a" on integer constant
Line 616: error: missing terminating ' character
Line 619: error: stray '#' in program
Line 49: error: invalid suffix "S" on integer constant
Line 66: error: invalid suffix "S" on integer constant
Line 37: error: invalid suffix "x" on integer constant
Line 41: error: invalid suffix "x" on integer constant
Line 629: error: stray '#' in program
Line 45: error: invalid suffix "k" on integer constant
Line 49: error: invalid suffix "k" on integer constant
Line 59: error: invalid suffix "k" on integer constant
Line 45: error: invalid suffix "LK" on floating constant
Line 51: error: invalid suffix "b" on integer constant
Line 68: error: invalid suffix "a00000" on integer constant
Line 674: error: stray '@' in program
Line 675: error: stray '@' in program
Line 676: error: stray '@' in program
Line 677: error: stray '@' in program
Line 678: error: stray '@' in program
Line 679: error: stray '@' in program
Line 683: error: stray '\302' in program
Line 683: error: stray '\256' in program
Line 52: error: invalid suffix "K" on integer constant
Line 59: error: invalid suffix "M" on integer constant
Line 685: error: stray '@' in program
Line 24: error: invalid suffix "B" on integer constant
Line 33: error: invalid suffix "b.0" on integer constant
Line 33: error: invalid suffix "b.0" on integer constant
Line 53: warning: character constant too long for its type
Line 37: error: exponent has no digits
Line 22: error: invalid suffix "k" on integer constant
Line 80: error: invalid suffix "k" on integer constant
Line 36: warning: character constant too long for its type
Line 72: warning: character constant too long for its type
Line 52: error: too many decimal points in number
Line 37: error: too many decimal points in number
Line 38: error: too many decimal points in number


Create a new paste based on this one


Comments: