[ create a new paste ] login | about

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

Plain Text, pasted on Mar 5:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
Initializing cgroup subsys cpuset
Initializing cgroup subsys cpu
Linux version 2.6.37-ARCH (tobias@T-POWA-LX) (gcc version 4.5.2 20110127 (prerelease) (GCC) ) #1 SMP PREEMPT Fri Feb 25 07:53:43 CET 2011
Command line: BOOT_IMAGE=/vmlinuz26 root=/dev/disk/by-uuid/69c7a380-dcf0-45bf-acdf-4c8b1a059d75 ro nolapic_timer nomodeset fastboot quiet
BIOS-provided physical RAM map:
 BIOS-e820: 0000000000000000 - 0000000000098400 (usable)
 BIOS-e820: 0000000000098400 - 00000000000a0000 (reserved)
 BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)
 BIOS-e820: 0000000000100000 - 00000000cfd81000 (usable)
 BIOS-e820: 00000000cfde0000 - 00000000cfde3000 (ACPI NVS)
 BIOS-e820: 00000000cfde3000 - 00000000cfdf0000 (ACPI data)
 BIOS-e820: 00000000cfdf0000 - 00000000cfe00000 (reserved)
 BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved)
 BIOS-e820: 00000000fec00000 - 0000000100000000 (reserved)
 BIOS-e820: 0000000100000000 - 0000000230000000 (usable)
NX (Execute Disable) protection: active
DMI 2.4 present.
DMI: Gigabyte Technology Co., Ltd. GA-MA790X-UD3P/GA-MA790X-UD3P, BIOS F7a 04/02/2010
e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
No AGP bridge found
last_pfn = 0x230000 max_arch_pfn = 0x400000000
MTRR default type: uncachable
MTRR fixed ranges enabled:
  00000-9FFFF write-back
  A0000-BFFFF uncachable
  C0000-C7FFF write-protect
  C8000-FFFFF uncachable
MTRR variable ranges enabled:
  0 base 000000000000 mask FFFF80000000 write-back
  1 base 000080000000 mask FFFFC0000000 write-back
  2 base 0000C0000000 mask FFFFF0000000 write-back
  3 base 0000CFE00000 mask FFFFFFE00000 uncachable
  4 base 000100000000 mask FFFF00000000 write-back
  5 base 000200000000 mask FFFFE0000000 write-back
  6 base 000220000000 mask FFFFF0000000 write-back
  7 disabled
TOM2: 0000000230000000 aka 8960M
x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
e820 update range: 00000000cfe00000 - 0000000100000000 (usable) ==> (reserved)
last_pfn = 0xcfd81 max_arch_pfn = 0x400000000
found SMP MP-table at [ffff8800000f56b0] f56b0
Scanning 0 areas for low memory corruption
initial memory mapped : 0 - 20000000
Using GB pages for direct mapping
init_memory_mapping: 0000000000000000-00000000cfd81000
 0000000000 - 00c0000000 page 1G
 00c0000000 - 00cfc00000 page 2M
 00cfc00000 - 00cfd81000 page 4k
kernel direct mapping tables up to cfd81000 @ 1fffd000-20000000
init_memory_mapping: 0000000100000000-0000000230000000
 0100000000 - 0200000000 page 1G
 0200000000 - 0230000000 page 2M
kernel direct mapping tables up to 230000000 @ cfd7f000-cfd81000
RAMDISK: 37e3b000 - 37ff0000
ACPI: RSDP 00000000000f70c0 00014 (v00 GBT   )
ACPI: RSDT 00000000cfde3000 0003C (v01 GBT    GBTUACPI 42302E31 GBTU 01010101)
ACPI: FACP 00000000cfde3040 00074 (v01 GBT    GBTUACPI 42302E31 GBTU 01010101)
ACPI: DSDT 00000000cfde30c0 0703B (v01 GBT    GBTUACPI 00001000 MSFT 03000000)
ACPI: FACS 00000000cfde0000 00040
ACPI: SSDT 00000000cfdea1c0 0088C (v01 PTLTD  POWERNOW 00000001  LTP 00000001)
ACPI: HPET 00000000cfdeaa80 00038 (v01 GBT    GBTUACPI 42302E31 GBTU 00000098)
ACPI: MCFG 00000000cfdeaac0 0003C (v01 GBT    GBTUACPI 42302E31 GBTU 01010101)
ACPI: TAMG 00000000cfdeab00 0039A (v01 GBT    GBT   B0 5455312E BG?? 53450101)
ACPI: APIC 00000000cfdea100 000BC (v01 GBT    GBTUACPI 42302E31 GBTU 01010101)
ACPI: Local APIC address 0xfee00000
 [ffffea0000000000-ffffea0007bfffff] PMD -> [ffff8800bc000000-ffff8800c31fffff] on node 0
Zone PFN ranges:
  DMA      0x00000010 -> 0x00001000
  DMA32    0x00001000 -> 0x00100000
  Normal   0x00100000 -> 0x00230000
Movable zone start PFN for each node
early_node_map[3] active PFN ranges
    0: 0x00000010 -> 0x00000098
    0: 0x00000100 -> 0x000cfd81
    0: 0x00100000 -> 0x00230000
On node 0 totalpages: 2096393
  DMA zone: 56 pages used for memmap
  DMA zone: 6 pages reserved
  DMA zone: 3914 pages, LIFO batch:0
  DMA32 zone: 14280 pages used for memmap
  DMA32 zone: 832953 pages, LIFO batch:31
  Normal zone: 17024 pages used for memmap
  Normal zone: 1228160 pages, LIFO batch:31
ACPI: PM-Timer IO Port: 0x4008
ACPI: Local APIC address 0xfee00000
ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] enabled)
ACPI: LAPIC (acpi_id[0x03] lapic_id[0x03] enabled)
ACPI: LAPIC (acpi_id[0x04] lapic_id[0x04] disabled)
ACPI: LAPIC (acpi_id[0x05] lapic_id[0x05] disabled)
ACPI: LAPIC (acpi_id[0x06] lapic_id[0x06] disabled)
ACPI: LAPIC (acpi_id[0x07] lapic_id[0x07] disabled)
ACPI: LAPIC_NMI (acpi_id[0x00] dfl dfl lint[0x1])
ACPI: LAPIC_NMI (acpi_id[0x01] dfl dfl lint[0x1])
ACPI: LAPIC_NMI (acpi_id[0x02] dfl dfl lint[0x1])
ACPI: LAPIC_NMI (acpi_id[0x03] dfl dfl lint[0x1])
ACPI: LAPIC_NMI (acpi_id[0x04] dfl dfl lint[0x1])
ACPI: LAPIC_NMI (acpi_id[0x05] dfl dfl lint[0x1])
ACPI: LAPIC_NMI (acpi_id[0x06] dfl dfl lint[0x1])
ACPI: LAPIC_NMI (acpi_id[0x07] dfl dfl lint[0x1])
ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
IOAPIC[0]: apic_id 2, version 33, address 0xfec00000, GSI 0-23
ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
ACPI: IRQ0 used by override.
ACPI: IRQ2 used by override.
ACPI: IRQ9 used by override.
Using ACPI (MADT) for SMP configuration information
ACPI: HPET id: 0x10b9a201 base: 0xfed00000
SMP: Allowing 8 CPUs, 4 hotplug CPUs
nr_irqs_gsi: 40
PM: Registered nosave memory: 0000000000098000 - 0000000000099000
PM: Registered nosave memory: 0000000000099000 - 00000000000a0000
PM: Registered nosave memory: 00000000000a0000 - 00000000000f0000
PM: Registered nosave memory: 00000000000f0000 - 0000000000100000
PM: Registered nosave memory: 00000000cfd81000 - 00000000cfde0000
PM: Registered nosave memory: 00000000cfde0000 - 00000000cfde3000
PM: Registered nosave memory: 00000000cfde3000 - 00000000cfdf0000
PM: Registered nosave memory: 00000000cfdf0000 - 00000000cfe00000
PM: Registered nosave memory: 00000000cfe00000 - 00000000e0000000
PM: Registered nosave memory: 00000000e0000000 - 00000000f0000000
PM: Registered nosave memory: 00000000f0000000 - 00000000fec00000
PM: Registered nosave memory: 00000000fec00000 - 0000000100000000
Allocating PCI resources starting at cfe00000 (gap: cfe00000:10200000)
Booting paravirtualized kernel on bare hardware
setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:8 nr_node_ids:1
PERCPU: Embedded 27 pages/cpu @ffff8800cfa00000 s81664 r8192 d20736 u262144
pcpu-alloc: s81664 r8192 d20736 u262144 alloc=1*2097152
pcpu-alloc: [0] 0 1 2 3 4 5 6 7 
Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 2065027
Kernel command line: BOOT_IMAGE=/vmlinuz26 root=/dev/disk/by-uuid/69c7a380-dcf0-45bf-acdf-4c8b1a059d75 ro nolapic_timer nomodeset fastboot quiet
PID hash table entries: 4096 (order: 3, 32768 bytes)
Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
Checking aperture...
No AGP bridge found
Node 0: aperture @ c4000000 size 32 MB
Aperture pointing to e820 RAM. Ignoring.
Your BIOS doesn't leave a aperture memory hole
Please enable the IOMMU option in the BIOS setup
This costs you 64 MB of RAM
Mapping aperture over 65536 KB of RAM @ c4000000
PM: Registered nosave memory: 00000000c4000000 - 00000000c8000000
Memory: 8114064k/9175040k available (3752k kernel code, 789468k absent, 271508k reserved, 2000k data, 516k init)
SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
Preemptable hierarchical RCU implementation.
	RCU-based detection of stalled CPUs is disabled.
	Verbose stalled-CPUs detection is disabled.
NR_IRQS:2304
spurious 8259A interrupt: IRQ7.
Console: colour VGA+ 80x25
console [tty0] enabled
allocated 83886080 bytes of page_cgroup
please try 'cgroup_disable=memory' option if you don't want memory cgroups
hpet clockevent registered
Fast TSC calibration using PIT
Detected 3013.745 MHz processor.
Calibrating delay loop (skipped), value calculated using timer frequency.. 6029.63 BogoMIPS (lpj=10045816)
pid_max: default: 32768 minimum: 301
Security Framework initialized
AppArmor: AppArmor disabled by boot time parameter
Mount-cache hash table entries: 256
Initializing cgroup subsys ns
ns_cgroup deprecated: consider using the 'clone_children' flag without the ns_cgroup.
Initializing cgroup subsys cpuacct
Initializing cgroup subsys memory
Initializing cgroup subsys devices
Initializing cgroup subsys freezer
Initializing cgroup subsys net_cls
Initializing cgroup subsys blkio
tseg: 00cfe00000
CPU: Physical Processor ID: 0
CPU: Processor Core ID: 0
mce: CPU supports 6 MCE banks
using C1E aware idle routine
Performance Events: AMD PMU driver.
... version:                0
... bit width:              48
... generic registers:      4
... value mask:             0000ffffffffffff
... max period:             00007fffffffffff
... fixed-purpose events:   0
... event mask:             000000000000000f
ACPI: Core revision 20101013
Setting APIC routing to flat
..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
CPU0: AMD Phenom(tm) II X4 940 Processor stepping 02
Disabling APIC timer
System has AMD C1E enabled
Switch to broadcast mode on CPU0
NMI watchdog enabled, takes one hw-pmu counter.
Booting Node   0, Processors  #1
NMI watchdog enabled, takes one hw-pmu counter.
Switch to broadcast mode on CPU1
 #2
NMI watchdog enabled, takes one hw-pmu counter.
Switch to broadcast mode on CPU2
 #3
NMI watchdog enabled, takes one hw-pmu counter.
Switch to broadcast mode on CPU3
Brought up 4 CPUs
Total of 4 processors activated (24119.57 BogoMIPS).
devtmpfs: initialized
NET: Registered protocol family 16
node 0 link 0: io port [c000, ffff]
TOM: 00000000d0000000 aka 3328M
Fam 10h mmconf [e0000000, e00fffff]
node 0 link 0: mmio [a0000, bffff]
node 0 link 0: mmio [d0000000, dfffffff]
node 0 link 0: mmio [f0000000, fe02ffff]
node 0 link 0: mmio [e0000000, e03fffff] ==> [e0100000, e03fffff]
TOM2: 0000000230000000 aka 8960M
bus: [00, 03] on node 0 link 0
bus: 00 index 0 [io  0x0000-0xffff]
bus: 00 index 1 [mem 0x000a0000-0x000bffff]
bus: 00 index 2 [mem 0xd0000000-0xdfffffff]
bus: 00 index 3 [mem 0xe0400000-0xffffffff]
bus: 00 index 4 [mem 0xe0100000-0xe03fffff]
bus: 00 index 5 [mem 0x230000000-0xfcffffffff]
ACPI: bus type pci registered
PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
PCI: Using configuration type 1 for base access
bio: create slab <bio-0> at 0
ACPI: EC: Look up EC in DSDT
ACPI: Interpreter enabled
ACPI: (supports S0 S3 S4 S5)
ACPI: Using IOAPIC for interrupt routing
ACPI Exception: AE_NOT_FOUND, Evaluating _PRW (20101013/scan-723)
ACPI Exception: AE_NOT_FOUND, Evaluating _PRW (20101013/scan-723)
ACPI Exception: AE_NOT_FOUND, Evaluating _PRW (20101013/scan-723)
ACPI Exception: AE_NOT_FOUND, Evaluating _PRW (20101013/scan-723)
ACPI: No dock devices found.
PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
pci_root PNP0A03:00: host bridge window [io  0x0000-0x0cf7]
pci_root PNP0A03:00: host bridge window [io  0x0d00-0xffff]
pci_root PNP0A03:00: host bridge window [mem 0x000a0000-0x000bffff]
pci_root PNP0A03:00: host bridge window [mem 0x000c0000-0x000dffff]
pci_root PNP0A03:00: host bridge window [mem 0xcff00000-0xfebfffff]
pci 0000:00:00.0: [1002:5958] type 0 class 0x000600
pci 0000:00:00.0: reg 1c: [mem 0xe0000000-0xffffffff 64bit]
pci 0000:00:02.0: [1002:5978] type 1 class 0x000604
pci 0000:00:02.0: PME# supported from D0 D3hot D3cold
pci 0000:00:02.0: PME# disabled
pci 0000:00:0a.0: [1002:597f] type 1 class 0x000604
pci 0000:00:0a.0: PME# supported from D0 D3hot D3cold
pci 0000:00:0a.0: PME# disabled
pci 0000:00:11.0: [1002:4391] type 0 class 0x000106
pci 0000:00:11.0: reg 10: [io  0xff00-0xff07]
pci 0000:00:11.0: reg 14: [io  0xfe00-0xfe03]
pci 0000:00:11.0: reg 18: [io  0xfd00-0xfd07]
pci 0000:00:11.0: reg 1c: [io  0xfc00-0xfc03]
pci 0000:00:11.0: reg 20: [io  0xfb00-0xfb0f]
pci 0000:00:11.0: reg 24: [mem 0xfe02f000-0xfe02f3ff]
pci 0000:00:12.0: [1002:4397] type 0 class 0x000c03
pci 0000:00:12.0: reg 10: [mem 0xfe02e000-0xfe02efff]
pci 0000:00:12.1: [1002:4398] type 0 class 0x000c03
pci 0000:00:12.1: reg 10: [mem 0xfe02d000-0xfe02dfff]
pci 0000:00:12.2: [1002:4396] type 0 class 0x000c03
pci 0000:00:12.2: reg 10: [mem 0xfe02c000-0xfe02c0ff]
pci 0000:00:12.2: supports D1 D2
pci 0000:00:12.2: PME# supported from D0 D1 D2 D3hot
pci 0000:00:12.2: PME# disabled
pci 0000:00:13.0: [1002:4397] type 0 class 0x000c03
pci 0000:00:13.0: reg 10: [mem 0xfe02b000-0xfe02bfff]
pci 0000:00:13.1: [1002:4398] type 0 class 0x000c03
pci 0000:00:13.1: reg 10: [mem 0xfe02a000-0xfe02afff]
pci 0000:00:13.2: [1002:4396] type 0 class 0x000c03
pci 0000:00:13.2: reg 10: [mem 0xfe029000-0xfe0290ff]
pci 0000:00:13.2: supports D1 D2
pci 0000:00:13.2: PME# supported from D0 D1 D2 D3hot
pci 0000:00:13.2: PME# disabled
pci 0000:00:14.0: [1002:4385] type 0 class 0x000c05
pci 0000:00:14.1: [1002:439c] type 0 class 0x000101
pci 0000:00:14.1: reg 10: [io  0x0000-0x0007]
pci 0000:00:14.1: reg 14: [io  0x0000-0x0003]
pci 0000:00:14.1: reg 18: [io  0x0000-0x0007]
pci 0000:00:14.1: reg 1c: [io  0x0000-0x0003]
pci 0000:00:14.1: reg 20: [io  0xfa00-0xfa0f]
pci 0000:00:14.2: [1002:4383] type 0 class 0x000403
pci 0000:00:14.2: reg 10: [mem 0xfe024000-0xfe027fff 64bit]
pci 0000:00:14.2: PME# supported from D0 D3hot D3cold
pci 0000:00:14.2: PME# disabled
pci 0000:00:14.3: [1002:439d] type 0 class 0x000601
pci 0000:00:14.4: [1002:4384] type 1 class 0x000604
pci 0000:00:14.5: [1002:4399] type 0 class 0x000c03
pci 0000:00:14.5: reg 10: [mem 0xfe028000-0xfe028fff]
pci 0000:00:18.0: [1022:1200] type 0 class 0x000600
pci 0000:00:18.1: [1022:1201] type 0 class 0x000600
pci 0000:00:18.2: [1022:1202] type 0 class 0x000600
pci 0000:00:18.3: [1022:1203] type 0 class 0x000600
pci 0000:00:18.4: [1022:1204] type 0 class 0x000600
pci 0000:01:00.0: [1002:9440] type 0 class 0x000300
pci 0000:01:00.0: reg 10: [mem 0xd0000000-0xdfffffff 64bit pref]
pci 0000:01:00.0: reg 18: [mem 0xfdfe0000-0xfdfeffff 64bit]
pci 0000:01:00.0: reg 20: [io  0xee00-0xeeff]
pci 0000:01:00.0: reg 30: [mem 0x00000000-0x0001ffff pref]
pci 0000:01:00.0: supports D1 D2
pci 0000:01:00.1: [1002:aa30] type 0 class 0x000403
pci 0000:01:00.1: reg 10: [mem 0xfdffc000-0xfdffffff 64bit]
pci 0000:01:00.1: supports D1 D2
pci 0000:00:02.0: PCI bridge to [bus 01-01]
pci 0000:00:02.0:   bridge window [io  0xe000-0xefff]
pci 0000:00:02.0:   bridge window [mem 0xfdf00000-0xfdffffff]
pci 0000:00:02.0:   bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
pci 0000:02:00.0: [10ec:8168] type 0 class 0x000200
pci 0000:02:00.0: reg 10: [io  0xde00-0xdeff]
pci 0000:02:00.0: reg 18: [mem 0xfdbff000-0xfdbfffff 64bit pref]
pci 0000:02:00.0: reg 20: [mem 0xfdbe0000-0xfdbeffff 64bit pref]
pci 0000:02:00.0: reg 30: [mem 0x00000000-0x0000ffff pref]
pci 0000:02:00.0: supports D1 D2
pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
pci 0000:02:00.0: PME# disabled
pci 0000:00:0a.0: PCI bridge to [bus 02-02]
pci 0000:00:0a.0:   bridge window [io  0xd000-0xdfff]
pci 0000:00:0a.0:   bridge window [mem 0xfde00000-0xfdefffff]
pci 0000:00:0a.0:   bridge window [mem 0xfdb00000-0xfdbfffff 64bit pref]
pci 0000:03:0e.0: [104c:8024] type 0 class 0x000c00
pci 0000:03:0e.0: reg 10: [mem 0xfddff000-0xfddff7ff]
pci 0000:03:0e.0: reg 14: [mem 0xfddf8000-0xfddfbfff]
pci 0000:03:0e.0: supports D1 D2
pci 0000:03:0e.0: PME# supported from D0 D1 D2 D3hot
pci 0000:03:0e.0: PME# disabled
pci 0000:00:14.4: PCI bridge to [bus 03-03] (subtractive decode)
pci 0000:00:14.4:   bridge window [io  0xc000-0xcfff]
pci 0000:00:14.4:   bridge window [mem 0xfdd00000-0xfddfffff]
pci 0000:00:14.4:   bridge window [mem 0xfdc00000-0xfdcfffff pref]
pci 0000:00:14.4:   bridge window [io  0x0000-0x0cf7] (subtractive decode)
pci 0000:00:14.4:   bridge window [io  0x0d00-0xffff] (subtractive decode)
pci 0000:00:14.4:   bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
pci 0000:00:14.4:   bridge window [mem 0x000c0000-0x000dffff] (subtractive decode)
pci 0000:00:14.4:   bridge window [mem 0xcff00000-0xfebfffff] (subtractive decode)
pci_bus 0000:00: on NUMA node 0
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P2P_._PRT]
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCE2._PRT]
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCEA._PRT]
ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 11) *0, disabled.
ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 10 11) *0, disabled.
ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 10 11) *0, disabled.
ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 10 11) *0, disabled.
ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 10 11) *0, disabled.
ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 11) *0, disabled.
ACPI: PCI Interrupt Link [LNK0] (IRQs 3 4 5 6 7 10 11) *0, disabled.
ACPI: PCI Interrupt Link [LNK1] (IRQs 3 4 5 6 7 10 11) *0, disabled.
HEST: Table is not found!
vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
vgaarb: loaded
PCI: Using ACPI for IRQ routing
PCI: pci_cache_line_size set to 64 bytes
pci 0000:00:00.0: no compatible bridge window for [mem 0xe0000000-0xffffffff 64bit]
reserve RAM buffer: 0000000000098400 - 000000000009ffff 
reserve RAM buffer: 00000000cfd81000 - 00000000cfffffff 
NetLabel: Initializing
NetLabel:  domain hash size = 128
NetLabel:  protocols = UNLABELED CIPSOv4
NetLabel:  unlabeled traffic allowed by default
hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0
hpet0: 4 comparators, 32-bit 14.318180 MHz counter
Switching to clocksource tsc
pnp: PnP ACPI init
ACPI: bus type pnp registered
pnp 00:00: [bus 00-ff]
pnp 00:00: [io  0x0cf8-0x0cff]
pnp 00:00: [io  0x0000-0x0cf7 window]
pnp 00:00: [io  0x0d00-0xffff window]
pnp 00:00: [mem 0x000a0000-0x000bffff window]
pnp 00:00: [mem 0x000c0000-0x000dffff window]
pnp 00:00: [mem 0xcff00000-0xfebfffff window]
pnp 00:00: Plug and Play ACPI device, IDs PNP0a03 (active)
pnp 00:01: [io  0x0010-0x001f]
pnp 00:01: [io  0x0022-0x003f]
pnp 00:01: [io  0x0044-0x005f]
pnp 00:01: [io  0x0062-0x0063]
pnp 00:01: [io  0x0065-0x006f]
pnp 00:01: [io  0x0074-0x007f]
pnp 00:01: [io  0x0091-0x0093]
pnp 00:01: [io  0x00a2-0x00bf]
pnp 00:01: [io  0x00e0-0x00ef]
pnp 00:01: [io  0x04d0-0x04d1]
pnp 00:01: [io  0x0220-0x0225]
pnp 00:01: [io  0x0290-0x0294]
pnp 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
pnp 00:02: [io  0x4100-0x411f]
pnp 00:02: [io  0x0228-0x022f]
pnp 00:02: [io  0x040b]
pnp 00:02: [io  0x04d6]
pnp 00:02: [io  0x0c00-0x0c01]
pnp 00:02: [io  0x0c14]
pnp 00:02: [io  0x0c50-0x0c52]
pnp 00:02: [io  0x0c6c-0x0c6d]
pnp 00:02: [io  0x0c6f]
pnp 00:02: [io  0x0cd0-0x0cd1]
pnp 00:02: [io  0x0cd2-0x0cd3]
pnp 00:02: [io  0x0cd4-0x0cdf]
pnp 00:02: [io  0x4000-0x40fe]
pnp 00:02: [io  0x4210-0x4217]
pnp 00:02: [io  0x0b00-0x0b0f]
pnp 00:02: [io  0x0b10-0x0b1f]
pnp 00:02: [io  0x0b20-0x0b3f]
pnp 00:02: [mem 0x00000000-0x00000fff window]
pnp 00:02: [mem 0xfee00400-0xfee00fff window]
pnp 00:02: disabling [mem 0x00000000-0x00000fff window] because it overlaps 0000:00:00.0 BAR 3 [mem 0x00000000-0x1fffffff 64bit]
pnp 00:02: disabling [mem 0x00000000-0x00000fff window disabled] because it overlaps 0000:01:00.0 BAR 6 [mem 0x00000000-0x0001ffff pref]
pnp 00:02: disabling [mem 0x00000000-0x00000fff window disabled] because it overlaps 0000:02:00.0 BAR 6 [mem 0x00000000-0x0000ffff pref]
pnp 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
pnp 00:03: [dma 4]
pnp 00:03: [io  0x0000-0x000f]
pnp 00:03: [io  0x0080-0x0090]
pnp 00:03: [io  0x0094-0x009f]
pnp 00:03: [io  0x00c0-0x00df]
pnp 00:03: Plug and Play ACPI device, IDs PNP0200 (active)
pnp 00:04: [irq 0 disabled]
pnp 00:04: [irq 8]
pnp 00:04: [mem 0xfed00000-0xfed003ff]
pnp 00:04: Plug and Play ACPI device, IDs PNP0103 (active)
pnp 00:05: [io  0x0070-0x0073]
pnp 00:05: Plug and Play ACPI device, IDs PNP0b00 (active)
pnp 00:06: [io  0x0061]
pnp 00:06: Plug and Play ACPI device, IDs PNP0800 (active)
pnp 00:07: [io  0x00f0-0x00ff]
pnp 00:07: [irq 13]
pnp 00:07: Plug and Play ACPI device, IDs PNP0c04 (active)
pnp 00:08: [mem 0xe0000000-0xefffffff]
pnp 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
pnp 00:09: [mem 0x000d4400-0x000d7fff]
pnp 00:09: [mem 0x000f0000-0x000f7fff]
pnp 00:09: [mem 0x000f8000-0x000fbfff]
pnp 00:09: [mem 0x000fc000-0x000fffff]
pnp 00:09: [mem 0xcfde0000-0xcfdeffff]
pnp 00:09: [mem 0xffff0000-0xffffffff]
pnp 00:09: [mem 0x00000000-0x0009ffff]
pnp 00:09: [mem 0x00100000-0xcfddffff]
pnp 00:09: [mem 0xcfdf0000-0xcfdfffff]
pnp 00:09: [mem 0xcfe00000-0xcfefffff]
pnp 00:09: [mem 0xfec00000-0xfec00fff]
pnp 00:09: [mem 0xfee00000-0xfee00fff]
pnp 00:09: [mem 0xfff80000-0xfffeffff]
pnp 00:09: disabling [mem 0x000d4400-0x000d7fff] because it overlaps 0000:00:00.0 BAR 3 [mem 0x00000000-0x1fffffff 64bit]
pnp 00:09: disabling [mem 0x000f0000-0x000f7fff] because it overlaps 0000:00:00.0 BAR 3 [mem 0x00000000-0x1fffffff 64bit]
pnp 00:09: disabling [mem 0x000f8000-0x000fbfff] because it overlaps 0000:00:00.0 BAR 3 [mem 0x00000000-0x1fffffff 64bit]
pnp 00:09: disabling [mem 0x000fc000-0x000fffff] because it overlaps 0000:00:00.0 BAR 3 [mem 0x00000000-0x1fffffff 64bit]
pnp 00:09: disabling [mem 0x00000000-0x0009ffff] because it overlaps 0000:00:00.0 BAR 3 [mem 0x00000000-0x1fffffff 64bit]
pnp 00:09: disabling [mem 0x00100000-0xcfddffff] because it overlaps 0000:00:00.0 BAR 3 [mem 0x00000000-0x1fffffff 64bit]
pnp 00:09: Plug and Play ACPI device, IDs PNP0c01 (active)
pnp: PnP ACPI: found 10 devices
ACPI: ACPI bus type pnp unregistered
system 00:01: [io  0x04d0-0x04d1] has been reserved
system 00:01: [io  0x0220-0x0225] has been reserved
system 00:01: [io  0x0290-0x0294] has been reserved
system 00:02: [io  0x4100-0x411f] has been reserved
system 00:02: [io  0x0228-0x022f] has been reserved
system 00:02: [io  0x040b] has been reserved
system 00:02: [io  0x04d6] has been reserved
system 00:02: [io  0x0c00-0x0c01] has been reserved
system 00:02: [io  0x0c14] has been reserved
system 00:02: [io  0x0c50-0x0c52] has been reserved
system 00:02: [io  0x0c6c-0x0c6d] has been reserved
system 00:02: [io  0x0c6f] has been reserved
system 00:02: [io  0x0cd0-0x0cd1] has been reserved
system 00:02: [io  0x0cd2-0x0cd3] has been reserved
system 00:02: [io  0x0cd4-0x0cdf] has been reserved
system 00:02: [io  0x4000-0x40fe] has been reserved
system 00:02: [io  0x4210-0x4217] has been reserved
system 00:02: [io  0x0b00-0x0b0f] has been reserved
system 00:02: [io  0x0b10-0x0b1f] has been reserved
system 00:02: [io  0x0b20-0x0b3f] has been reserved
system 00:02: [mem 0xfee00400-0xfee00fff window] has been reserved
system 00:08: [mem 0xe0000000-0xefffffff] has been reserved
system 00:09: [mem 0xcfde0000-0xcfdeffff] could not be reserved
system 00:09: [mem 0xffff0000-0xffffffff] has been reserved
system 00:09: [mem 0xcfdf0000-0xcfdfffff] has been reserved
system 00:09: [mem 0xcfe00000-0xcfefffff] could not be reserved
system 00:09: [mem 0xfec00000-0xfec00fff] could not be reserved
system 00:09: [mem 0xfee00000-0xfee00fff] could not be reserved
system 00:09: [mem 0xfff80000-0xfffeffff] has been reserved
pci 0000:01:00.0: BAR 6: assigned [mem 0xfdf00000-0xfdf1ffff pref]
pci 0000:00:02.0: PCI bridge to [bus 01-01]
pci 0000:00:02.0:   bridge window [io  0xe000-0xefff]
pci 0000:00:02.0:   bridge window [mem 0xfdf00000-0xfdffffff]
pci 0000:00:02.0:   bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
pci 0000:02:00.0: BAR 6: assigned [mem 0xfdb00000-0xfdb0ffff pref]
pci 0000:00:0a.0: PCI bridge to [bus 02-02]
pci 0000:00:0a.0:   bridge window [io  0xd000-0xdfff]
pci 0000:00:0a.0:   bridge window [mem 0xfde00000-0xfdefffff]
pci 0000:00:0a.0:   bridge window [mem 0xfdb00000-0xfdbfffff 64bit pref]
pci 0000:00:14.4: PCI bridge to [bus 03-03]
pci 0000:00:14.4:   bridge window [io  0xc000-0xcfff]
pci 0000:00:14.4:   bridge window [mem 0xfdd00000-0xfddfffff]
pci 0000:00:14.4:   bridge window [mem 0xfdc00000-0xfdcfffff pref]
pci 0000:00:02.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
pci 0000:00:02.0: setting latency timer to 64
pci 0000:00:0a.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
pci 0000:00:0a.0: setting latency timer to 64
pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7]
pci_bus 0000:00: resource 5 [io  0x0d00-0xffff]
pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000dffff]
pci_bus 0000:00: resource 8 [mem 0xcff00000-0xfebfffff]
pci_bus 0000:01: resource 0 [io  0xe000-0xefff]
pci_bus 0000:01: resource 1 [mem 0xfdf00000-0xfdffffff]
pci_bus 0000:01: resource 2 [mem 0xd0000000-0xdfffffff 64bit pref]
pci_bus 0000:02: resource 0 [io  0xd000-0xdfff]
pci_bus 0000:02: resource 1 [mem 0xfde00000-0xfdefffff]
pci_bus 0000:02: resource 2 [mem 0xfdb00000-0xfdbfffff 64bit pref]
pci_bus 0000:03: resource 0 [io  0xc000-0xcfff]
pci_bus 0000:03: resource 1 [mem 0xfdd00000-0xfddfffff]
pci_bus 0000:03: resource 2 [mem 0xfdc00000-0xfdcfffff pref]
pci_bus 0000:03: resource 4 [io  0x0000-0x0cf7]
pci_bus 0000:03: resource 5 [io  0x0d00-0xffff]
pci_bus 0000:03: resource 6 [mem 0x000a0000-0x000bffff]
pci_bus 0000:03: resource 7 [mem 0x000c0000-0x000dffff]
pci_bus 0000:03: resource 8 [mem 0xcff00000-0xfebfffff]
NET: Registered protocol family 2
IP route cache hash table entries: 262144 (order: 9, 2097152 bytes)
TCP established hash table entries: 262144 (order: 10, 4194304 bytes)
TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
TCP: Hash tables configured (established 262144 bind 65536)
TCP reno registered
UDP hash table entries: 4096 (order: 5, 131072 bytes)
UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
NET: Registered protocol family 1
pci 0000:01:00.0: Boot video device
PCI: CLS 64 bytes, default 64
Unpacking initramfs...
Freeing initrd memory: 1748k freed
PCI-DMA: Disabling AGP.
PCI-DMA: aperture base @ c4000000 size 65536 KB
PCI-DMA: using GART IOMMU.
PCI-DMA: Reserving 64MB of IOMMU area in the AGP aperture
Scanning for low memory corruption every 60 seconds
audit: initializing netlink socket (disabled)
type=2000 audit(1299342801.843:1): initialized
HugeTLB registered 2 MB page size, pre-allocated 0 pages
VFS: Disk quotas dquot_6.5.2
Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
msgmni has been set to 15980
Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
io scheduler noop registered
io scheduler deadline registered
io scheduler cfq registered (default)
ERST: Table is not found!
Linux agpgart interface v0.103
Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
PNP: No PS/2 controller found. Probing ports directly.
Failed to disable AUX port, but continuing anyway... Is this a SiS?
If AUX port is really absent please use the 'i8042.noaux' option.
Clockevents: could not switch to one-shot mode:
Clockevents: could not switch to one-shot mode:
Clockevents: could not switch to one-shot mode:
Clockevents: could not switch to one-shot mode: lapic is not functional.
 lapic is not functional.
 lapic is not functional.
Could not switch to high resolution mode on CPU 0
Could not switch to high resolution mode on CPU 1
Could not switch to high resolution mode on CPU 2
 lapic is not functional.
Could not switch to high resolution mode on CPU 3
serio: i8042 KBD port at 0x60,0x64 irq 1
mice: PS/2 mouse device common for all mice
rtc_cmos 00:05: RTC can wake from S4
rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0
rtc0: alarms up to one month, 242 bytes nvram, hpet irqs
cpuidle: using governor ladder
cpuidle: using governor menu
TCP cubic registered
NET: Registered protocol family 17
Registering the dns_resolver key type
PM: Hibernation image not present or could not be loaded.
registered taskstats version 1
rtc_cmos 00:05: setting system clock to 2011-03-05 16:33:22 UTC (1299342802)
Initalizing network drop monitor service
Freeing unused kernel memory: 516k freed
udev[44]: starting version 166
SCSI subsystem initialized
libata version 3.00 loaded.
pata_acpi 0000:00:14.1: PCI INT A -> GSI 16 (level, low) -> IRQ 16
scsi0 : pata_atiixp
scsi1 : pata_atiixp
ata1: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0xfa00 irq 14
ata2: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0xfa08 irq 15
ahci 0000:00:11.0: version 3.0
ahci 0000:00:11.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
ahci 0000:00:11.0: AHCI 0001.0100 32 slots 6 ports 3 Gbps 0x3f impl SATA mode
ahci 0000:00:11.0: flags: 64bit ncq sntf ilck pm led clo pmp pio slum part ccc 
scsi2 : ahci
scsi3 : ahci
scsi4 : ahci
scsi5 : ahci
scsi6 : ahci
scsi7 : ahci
ata3: SATA max UDMA/133 irq_stat 0x00400000, PHY RDY changed irq 22
ata4: SATA max UDMA/133 abar m1024@0xfe02f000 port 0xfe02f180 irq 22
ata5: SATA max UDMA/133 abar m1024@0xfe02f000 port 0xfe02f200 irq 22
ata6: SATA max UDMA/133 abar m1024@0xfe02f000 port 0xfe02f280 irq 22
ata7: SATA max UDMA/133 abar m1024@0xfe02f000 port 0xfe02f300 irq 22
ata8: SATA max UDMA/133 abar m1024@0xfe02f000 port 0xfe02f380 irq 22
ata1.01: NODEV after polling detection
ata1.00: ATAPI: HP  DVD Writer 640, QS12, max UDMA/33
ata1.00: configured for UDMA/33
scsi 0:0:0:0: CD-ROM            HP       DVD Writer 640c  QS12 PQ: 0 ANSI: 5
ata7: SATA link down (SStatus 0 SControl 300)
ata8: softreset failed (device not ready)
ata8: applying SB600 PMP SRST workaround and retrying
ata4: softreset failed (device not ready)
ata4: applying SB600 PMP SRST workaround and retrying
ata5: softreset failed (device not ready)
ata5: applying SB600 PMP SRST workaround and retrying
ata6: softreset failed (device not ready)
ata6: applying SB600 PMP SRST workaround and retrying
ata8: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
ata5: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
ata4: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
ata8.00: ATA-7: ST3250823AS, 3.03, max UDMA/100
ata8.00: 488397168 sectors, multi 0: LBA48 
ata5.00: ATA-7: ST3500820AS, SD04, max UDMA/133
ata5.00: 976773168 sectors, multi 0: LBA48 NCQ (depth 31/32)
ata4.00: ATA-8: WDC WD1001FALS-00J7B1, 05.00K05, max UDMA/133
ata4.00: 1953525168 sectors, multi 0: LBA48 NCQ (depth 31/32), AA
ata8.00: configured for UDMA/100
ata4.00: configured for UDMA/133
ata5.00: configured for UDMA/133
ata6: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
ata6.00: ATA-7: SAMSUNG HD103SI, 1AG01118, max UDMA7
ata6.00: 1953525168 sectors, multi 0: LBA48 NCQ (depth 31/32), AA
ata6.00: configured for UDMA/133
ata3: softreset failed (device not ready)
ata3: applying SB600 PMP SRST workaround and retrying
ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
ata3.00: ATA-8: Corsair CSSD-F60GB2, 1.1, max UDMA/133
ata3.00: 117231408 sectors, multi 1: LBA48 NCQ (depth 31/32), AA
ata3.00: configured for UDMA/133
scsi 2:0:0:0: Direct-Access     ATA      Corsair CSSD-F60 1.1  PQ: 0 ANSI: 5
scsi 3:0:0:0: Direct-Access     ATA      WDC WD1001FALS-0 05.0 PQ: 0 ANSI: 5
scsi 4:0:0:0: Direct-Access     ATA      ST3500820AS      SD04 PQ: 0 ANSI: 5
scsi 5:0:0:0: Direct-Access     ATA      SAMSUNG HD103SI  1AG0 PQ: 0 ANSI: 5
scsi 7:0:0:0: Direct-Access     ATA      ST3250823AS      3.03 PQ: 0 ANSI: 5
sd 2:0:0:0: [sda] 117231408 512-byte logical blocks: (60.0 GB/55.8 GiB)
sd 2:0:0:0: [sda] Write Protect is off
sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00
sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
sd 3:0:0:0: [sdb] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
sd 4:0:0:0: [sdc] 976773168 512-byte logical blocks: (500 GB/465 GiB)
sd 3:0:0:0: [sdb] Write Protect is off
sd 3:0:0:0: [sdb] Mode Sense: 00 3a 00 00
sd 4:0:0:0: [sdc] Write Protect is off
sd 4:0:0:0: [sdc] Mode Sense: 00 3a 00 00
sd 3:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
sd 5:0:0:0: [sdd] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
sd 4:0:0:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
sd 5:0:0:0: [sdd] Write Protect is off
sd 5:0:0:0: [sdd] Mode Sense: 00 3a 00 00
sd 5:0:0:0: [sdd] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
sd 7:0:0:0: [sde] 488397168 512-byte logical blocks: (250 GB/232 GiB)
 sda: sda1 sda2 sda3 sda4
sd 7:0:0:0: [sde] Write Protect is off
sd 7:0:0:0: [sde] Mode Sense: 00 3a 00 00
sd 7:0:0:0: [sde] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
sd 2:0:0:0: [sda] Attached SCSI disk
sr0: scsi3-mmc drive: 40x/40x writer cd/rw xa/form2 cdda tray
cdrom: Uniform CD-ROM driver Revision: 3.20
sr 0:0:0:0: Attached scsi CD-ROM sr0
 sdd: sdd1
sd 5:0:0:0: [sdd] Attached SCSI disk
 sde: sde1
sd 7:0:0:0: [sde] Attached SCSI disk
 sdc: sdc1
sd 4:0:0:0: [sdc] Attached SCSI disk
 sdb: sdb1 sdb2 < sdb5 sdb6 > sdb3
sd 3:0:0:0: [sdb] Attached SCSI disk
EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null)
udev[632]: starting version 166
fglrx: module license 'Proprietary. (C) 2002 - ATI Technologies, Starnberg, GERMANY' taints kernel.
Disabling lock debugging due to kernel taint
pci_hotplug: PCI Hot Plug PCI Core version: 0.5
shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
input: PC Speaker as /devices/platform/pcspkr/input/input0
MCE: In-kernel MCE decoding enabled.
EDAC MC: Ver: 2.1.0 Feb 25 2011
ACPI: acpi_idle registered with cpuidle
ACPI: processor limited to max C-state 1
input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input1
ACPI: Power Button [PWRB]
sr 0:0:0:0: Attached scsi generic sg0 type 5
sd 2:0:0:0: Attached scsi generic sg1 type 0
sd 3:0:0:0: Attached scsi generic sg2 type 0
usbcore: registered new interface driver usbfs
[fglrx] Maximum main memory to use for locked dma buffers: 7757 MBytes.
[fglrx]   vendor: 1002 device: 9440 count: 1
usbcore: registered new interface driver hub
usbcore: registered new device driver usb
[fglrx] ioport: bar 4, base 0xee00, size: 0x100
pci 0000:01:00.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
pci 0000:01:00.0: setting latency timer to 64
[fglrx] Kernel PAT support is enabled
[fglrx] module loaded - fglrx 8.82.8 [Jan 26 2011] with 1 minors
sd 4:0:0:0: Attached scsi generic sg3 type 0
sd 5:0:0:0: Attached scsi generic sg4 type 0
sd 7:0:0:0: Attached scsi generic sg5 type 0
input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
ACPI: Power Button [PWRF]
wmi: Mapper loaded
ACPI: resource piix4_smbus [io  0x0b00-0x0b07] conflicts with ACPI region SOR1 [mem 0x00000b00-0x00000b0f 64bit pref]
ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
ehci_hcd 0000:00:12.2: PCI INT B -> GSI 17 (level, low) -> IRQ 17
ehci_hcd 0000:00:12.2: EHCI Host Controller
ehci_hcd 0000:00:12.2: new USB bus registered, assigned bus number 1
EDAC amd64_edac:  Ver: 3.3.0 Feb 25 2011
ehci_hcd 0000:00:12.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
ehci_hcd 0000:00:12.2: applying AMD SB600/SB700 USB freeze workaround
ehci_hcd 0000:00:12.2: debug port 1
ehci_hcd 0000:00:12.2: irq 17, io mem 0xfe02c000
r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
r8169 0000:02:00.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
r8169 0000:02:00.0: setting latency timer to 64
r8169 0000:02:00.0: irq 40 for MSI/MSI-X
r8169 0000:02:00.0: eth0: RTL8168c/8111c at 0xffffc90000050000, 00:24:1d:72:6b:75, XID 1c4000c0 IRQ 40
ehci_hcd 0000:00:12.2: USB 2.0 started, EHCI 1.00
hub 1-0:1.0: USB hub found
hub 1-0:1.0: 6 ports detected
ehci_hcd 0000:00:13.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19
ehci_hcd 0000:00:13.2: EHCI Host Controller
ehci_hcd 0000:00:13.2: new USB bus registered, assigned bus number 2
ehci_hcd 0000:00:13.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
ehci_hcd 0000:00:13.2: applying AMD SB600/SB700 USB freeze workaround
ehci_hcd 0000:00:13.2: debug port 1
ehci_hcd 0000:00:13.2: irq 19, io mem 0xfe029000
it87: Found IT8720F chip at 0x228, revision 8
it87: Routing internal VCCH to in7
it87: Beeping is supported
ehci_hcd 0000:00:13.2: USB 2.0 started, EHCI 1.00
hub 2-0:1.0: USB hub found
hub 2-0:1.0: 6 ports detected
EDAC amd64: This node reports that Memory ECC is currently disabled, set F3x44[22] (0000:00:18.3).
EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
 Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
 (Note that use of the override may cause unknown side effects.)
amd64_edac: probe of 0000:00:18.2 failed with error -22
HDA Intel 0000:00:14.2: PCI INT A -> GSI 16 (level, low) -> IRQ 16
powernow-k8: Found 1 AMD Phenom(tm) II X4 940 Processor (4 cpu cores) (version 2.20.00)
powernow-k8:    0 : pstate 0 (3000 MHz)
powernow-k8:    1 : pstate 1 (2300 MHz)
powernow-k8:    2 : pstate 2 (1800 MHz)
powernow-k8:    3 : pstate 3 (800 MHz)
ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
firewire_ohci 0000:03:0e.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
vboxdrv: Found 4 processor cores.
VBoxDrv: dbg - g_abExecMemory=ffffffffa06c0d40
vboxdrv: fAsync=0 offMin=0x3c3 offMax=0x1851
vboxdrv: TSC mode is 'synchronous', kernel timer mode is 'normal'.
vboxdrv: Successfully loaded version 4.0.4_OSE (interface 0x00160000).
ohci_hcd 0000:00:12.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
ohci_hcd 0000:00:12.0: OHCI Host Controller
ohci_hcd 0000:00:12.0: new USB bus registered, assigned bus number 3
HDA Intel 0000:01:00.1: PCI INT B -> GSI 19 (level, low) -> IRQ 19
HDA Intel 0000:01:00.1: irq 41 for MSI/MSI-X
HDA Intel 0000:01:00.1: setting latency timer to 64
ohci_hcd 0000:00:12.0: irq 16, io mem 0xfe02e000
firewire_ohci: Added fw-ohci device 0000:03:0e.0, OHCI v1.10, 4 IR + 8 IT contexts, quirks 0x2
usbcore: registered new interface driver cdc_acm
cdc_acm: v0.26:USB Abstract Control Model driver for USB modems and ISDN adapters
attempt to access beyond end of device
sdb2: rw=0, want=4, limit=2
EXT4-fs (sdb2): unable to read superblock
usbcore: registered new interface driver usbserial
USB Serial support registered for generic
usbcore: registered new interface driver usbserial_generic
usbserial: USB Serial Driver core
USB Serial support registered for FTDI USB Serial Device
usbcore: registered new interface driver ftdi_sio
ftdi_sio: v1.6.0:USB FTDI Serial Converters Driver
hub 3-0:1.0: USB hub found
hub 3-0:1.0: 3 ports detected
ohci_hcd 0000:00:12.1: PCI INT A -> GSI 16 (level, low) -> IRQ 16
ohci_hcd 0000:00:12.1: OHCI Host Controller
ohci_hcd 0000:00:12.1: new USB bus registered, assigned bus number 4
ohci_hcd 0000:00:12.1: irq 16, io mem 0xfe02d000
fuse init (API version 7.15)
hub 4-0:1.0: USB hub found
hub 4-0:1.0: 3 ports detected
ohci_hcd 0000:00:13.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
ohci_hcd 0000:00:13.0: OHCI Host Controller
ohci_hcd 0000:00:13.0: new USB bus registered, assigned bus number 5
ohci_hcd 0000:00:13.0: irq 18, io mem 0xfe02b000
hub 5-0:1.0: USB hub found
hub 5-0:1.0: 3 ports detected
ohci_hcd 0000:00:13.1: PCI INT A -> GSI 18 (level, low) -> IRQ 18
ohci_hcd 0000:00:13.1: OHCI Host Controller
ohci_hcd 0000:00:13.1: new USB bus registered, assigned bus number 6
ohci_hcd 0000:00:13.1: irq 18, io mem 0xfe02a000
hub 6-0:1.0: USB hub found
hub 6-0:1.0: 3 ports detected
ohci_hcd 0000:00:14.5: PCI INT C -> GSI 18 (level, low) -> IRQ 18
ohci_hcd 0000:00:14.5: OHCI Host Controller
ohci_hcd 0000:00:14.5: new USB bus registered, assigned bus number 7
ohci_hcd 0000:00:14.5: irq 18, io mem 0xfe028000
EXT4-fs (sdb5): warning: maximal mount count reached, running e2fsck is recommended
hub 7-0:1.0: USB hub found
hub 7-0:1.0: 2 ports detected
EXT4-fs (sde1): warning: maximal mount count reached, running e2fsck is recommended
EXT4-fs (sde1): mounted filesystem with ordered data mode. Opts: (null)
EXT4-fs (sdb5): mounted filesystem with ordered data mode. Opts: (null)
EXT4-fs (sda2): re-mounted. Opts: discard
firewire_core: created device fw0: GUID 001b98f50000241d, S400
EXT4-fs (sda2): re-mounted. Opts: discard
EXT4-fs (sda3): mounted filesystem with ordered data mode. Opts: discard
usb 4-3: new full speed USB device using ohci_hcd and address 2
EXT4-fs (sdb1): mounted filesystem with ordered data mode. Opts: (null)
EXT4-fs (sdd1): warning: maximal mount count reached, running e2fsck is recommended
EXT4-fs (sdd1): mounted filesystem with ordered data mode. Opts: (null)
Adding 10239996k swap on /dev/sdb3.  Priority:-1 extents:1 across:10239996k 
usb 5-3: new full speed USB device using ohci_hcd and address 2
usbcore: registered new interface driver snd-usb-audio
hub 5-3:1.0: USB hub found
hub 5-3:1.0: 4 ports detected
usb 6-2: new low speed USB device using ohci_hcd and address 2
input: Logitech USB-PS/2 Optical Mouse as /devices/pci0000:00/0000:00:13.1/usb6/6-2/6-2:1.0/input/input3
generic-usb 0003:046D:C051.0001: input,hidraw0: USB HID v1.10 Mouse [Logitech USB-PS/2 Optical Mouse] on usb-0000:00:13.1-2/input0
usbcore: registered new interface driver usbhid
usbhid: USB HID core driver
usb 6-3: new full speed USB device using ohci_hcd and address 3
input: Xbox 360 Wireless Receiver as /devices/pci0000:00/0000:00:13.1/usb6/6-3/6-3:1.0/input/input4
input: Xbox 360 Wireless Receiver as /devices/pci0000:00/0000:00:13.1/usb6/6-3/6-3:1.2/input/input5
input: Xbox 360 Wireless Receiver as /devices/pci0000:00/0000:00:13.1/usb6/6-3/6-3:1.4/input/input6
input: Xbox 360 Wireless Receiver as /devices/pci0000:00/0000:00:13.1/usb6/6-3/6-3:1.6/input/input7
usbcore: registered new interface driver xpad
xpad: X-Box pad driver
usb 5-3.1: new low speed USB device using ohci_hcd and address 3
input: G15 Gaming Keyboard as /devices/pci0000:00/0000:00:13.0/usb5/5-3/5-3.1/5-3.1:1.0/input/input8
generic-usb 0003:046D:C226.0002: input,hidraw1: USB HID v1.10 Keyboard [G15 Gaming Keyboard] on usb-0000:00:13.0-3.1/input0
input: G15 Gaming Keyboard as /devices/pci0000:00/0000:00:13.0/usb5/5-3/5-3.1/5-3.1:1.1/input/input9
generic-usb 0003:046D:C226.0003: input,hiddev0,hidraw2: USB HID v1.10 Device [G15 Gaming Keyboard] on usb-0000:00:13.0-3.1/input1
usb 5-3.4: new full speed USB device using ohci_hcd and address 4
input: G15 GamePanel LCD as /devices/pci0000:00/0000:00:13.0/usb5/5-3/5-3.4/5-3.4:1.0/input/input10
generic-usb 0003:046D:C227.0004: input,hiddev0,hidraw3: USB HID v1.11 Keypad [G15 GamePanel LCD] on usb-0000:00:13.0-3.4/input0
r8169 0000:02:00.0: eth0: link up
r8169 0000:02:00.0: eth0: link up
fglrx_pci 0000:01:00.0: irq 42 for MSI/MSI-X
[fglrx] Firegl kernel thread PID: 4313
[fglrx] Firegl kernel thread PID: 4314
[fglrx] Firegl kernel thread PID: 4315
[fglrx] IRQ 42 Enabled
[fglrx] Gart USWC size:1280 M.
[fglrx] Gart cacheable size:508 M.
[fglrx] Reserved FB block: Shared offset:0, size:1000000 
[fglrx] Reserved FB block: Unshared offset:fbfd000, size:403000 
[fglrx] Reserved FB block: Unshared offset:3fffb000, size:5000 
NET: Registered protocol family 10
lo: Disabled Privacy Extensions
eth0: no IPv6 routers present
PM: Syncing filesystems ... done.
PM: Preparing system for mem sleep
Freezing user space processes ... (elapsed 0.01 seconds) done.
Freezing remaining freezable tasks ... (elapsed 0.01 seconds) done.
PM: Entering mem sleep
Suspending console(s) (use no_console_suspend to debug)
sd 7:0:0:0: [sde] Synchronizing SCSI cache
sd 5:0:0:0: [sdd] Synchronizing SCSI cache
sd 7:0:0:0: [sde] Stopping disk
sd 4:0:0:0: [sdc] Synchronizing SCSI cache
sd 5:0:0:0: [sdd] Stopping disk
sd 3:0:0:0: [sdb] Synchronizing SCSI cache
sd 2:0:0:0: [sda] Synchronizing SCSI cache
sd 3:0:0:0: [sdb] Stopping disk
ACPI handle has no context!
ohci_hcd 0000:00:14.5: PCI INT C disabled
[fglrx] IRQ 42 Disabled
[fglrx] Preparing suspend fglrx in kernel.
sd 4:0:0:0: [sdc] Stopping disk
ehci_hcd 0000:00:13.2: PCI INT B disabled
ehci_hcd 0000:00:12.2: PCI INT B disabled
ohci_hcd 0000:00:12.0: PCI INT A disabled
sd 2:0:0:0: [sda] Stopping disk
ohci_hcd 0000:00:12.1: PCI INT A disabled
ohci_hcd 0000:00:13.0: PCI INT A disabled
HDA Intel 0000:00:14.2: PCI INT A disabled
HDA Intel 0000:01:00.1: PCI INT B disabled
ACPI handle has no context!
ohci_hcd 0000:00:13.1: PCI INT A disabled
[fglrx] Suspending fglrx in kernel completed.
[fglrx] Power down the ASIC .
ahci 0000:00:11.0: PCI INT A disabled
PM: suspend of devices complete after 716.358 msecs
r8169 0000:02:00.0: PME# enabled
pci 0000:00:0a.0: wake-up capability enabled by ACPI
PM: late suspend of devices complete after 40.079 msecs
ACPI: Preparing to enter system sleep state S3
PM: Saving platform NVS memory
Disabling non-boot CPUs ...
CPU 1 is now offline
CPU 2 is now offline
CPU 3 is now offline
SMP alternatives: switching to UP code
Back to C!
PM: Restoring platform NVS memory
PCI-DMA: Resuming GART IOMMU
PCI-DMA: Restoring GART aperture settings
Enabling non-boot CPUs ...
SMP alternatives: switching to SMP code
Booting Node 0 Processor 1 APIC 0x1
Switch to broadcast mode on CPU1
Clockevents: could not switch to one-shot mode: lapic is not functional.
Could not switch to high resolution mode on CPU 1
NMI watchdog enabled, takes one hw-pmu counter.
CPU1 is up
Booting Node 0 Processor 2 APIC 0x2
Switch to broadcast mode on CPU2
Clockevents: could not switch to one-shot mode: lapic is not functional.
Could not switch to high resolution mode on CPU 2
NMI watchdog enabled, takes one hw-pmu counter.
CPU2 is up
Booting Node 0 Processor 3 APIC 0x3
Switch to broadcast mode on CPU3
Clockevents: could not switch to one-shot mode: lapic is not functional.
Could not switch to high resolution mode on CPU 3
NMI watchdog enabled, takes one hw-pmu counter.
CPU3 is up
ACPI: Waking up from system sleep state S3
pci 0000:00:00.0: restoring config space at offset 0x3 (was 0x0, writing 0x2000)
ahci 0000:00:11.0: restoring config space at offset 0xf (was 0x100, writing 0x10b)
ehci_hcd 0000:00:12.2: BAR 0: set to [mem 0xfe02c000-0xfe02c0ff] (PCI address [0xfe02c000-0xfe02c0ff])
ehci_hcd 0000:00:12.2: restoring config space at offset 0x1 (was 0x2b00000, writing 0x2b00012)
ehci_hcd 0000:00:13.2: BAR 0: set to [mem 0xfe029000-0xfe0290ff] (PCI address [0xfe029000-0xfe0290ff])
ehci_hcd 0000:00:13.2: restoring config space at offset 0x1 (was 0x2b00000, writing 0x2b00012)
HDA Intel 0000:00:14.2: restoring config space at offset 0xf (was 0x100, writing 0x5)
HDA Intel 0000:00:14.2: restoring config space at offset 0x3 (was 0x0, writing 0x2010)
fglrx_pci 0000:01:00.0: restoring config space at offset 0xf (was 0x1ff, writing 0x10a)
fglrx_pci 0000:01:00.0: restoring config space at offset 0x8 (was 0x1, writing 0xee01)
fglrx_pci 0000:01:00.0: restoring config space at offset 0x6 (was 0x4, writing 0xfdfe0004)
fglrx_pci 0000:01:00.0: restoring config space at offset 0x4 (was 0xc, writing 0xd000000c)
fglrx_pci 0000:01:00.0: restoring config space at offset 0x3 (was 0x800000, writing 0x800010)
fglrx_pci 0000:01:00.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100403)
HDA Intel 0000:01:00.1: restoring config space at offset 0xf (was 0x2ff, writing 0x20a)
HDA Intel 0000:01:00.1: restoring config space at offset 0x4 (was 0x4, writing 0xfdffc004)
HDA Intel 0000:01:00.1: restoring config space at offset 0x3 (was 0x800000, writing 0x800010)
HDA Intel 0000:01:00.1: restoring config space at offset 0x1 (was 0x100000, writing 0x100002)
r8169 0000:02:00.0: restoring config space at offset 0x1 (was 0x100007, writing 0x100407)
PM: early resume of devices complete after 25.001 msecs
pci 0000:00:02.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
pci 0000:00:02.0: setting latency timer to 64
pci 0000:00:0a.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
pci 0000:00:0a.0: setting latency timer to 64
ohci_hcd 0000:00:12.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
ohci_hcd 0000:00:12.1: PCI INT A -> GSI 16 (level, low) -> IRQ 16
ahci 0000:00:11.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
ehci_hcd 0000:00:12.2: PCI INT B -> GSI 17 (level, low) -> IRQ 17
ohci_hcd 0000:00:13.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
ohci_hcd 0000:00:13.1: PCI INT A -> GSI 18 (level, low) -> IRQ 18
ehci_hcd 0000:00:13.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19
HDA Intel 0000:00:14.2: PCI INT A -> GSI 16 (level, low) -> IRQ 16
ohci_hcd 0000:00:14.5: PCI INT C -> GSI 18 (level, low) -> IRQ 18
HDA Intel 0000:01:00.1: PCI INT B -> GSI 19 (level, low) -> IRQ 19
pci 0000:00:0a.0: wake-up capability disabled by ACPI
HDA Intel 0000:01:00.1: setting latency timer to 64
r8169 0000:02:00.0: PME# disabled
fglrx_pci 0000:01:00.0: setting latency timer to 64
HDA Intel 0000:01:00.1: irq 41 for MSI/MSI-X
sd 2:0:0:0: [sda] Starting disk
sd 3:0:0:0: [sdb] Starting disk
sd 4:0:0:0: [sdc] Starting disk
sd 5:0:0:0: [sdd] Starting disk
sd 7:0:0:0: [sde] Starting disk
r8169 0000:02:00.0: eth0: link down
firewire_core: skipped bus generations, destroying all nodes
[fglrx] Power up the ASIC
[fglrx] Preparing resume fglrx in kernel.
[fglrx] Resuming fglrx in kernel completed.
[fglrx] IRQ 42 Enabled
ata1.01: NODEV after polling detection
ata1.00: ACPI cmd ef/03:0c:00:00:00:a0 (SET FEATURES) filtered out
ata1.00: ACPI cmd ef/03:42:00:00:00:a0 (SET FEATURES) filtered out
ata1.00: configured for UDMA/33
ata7: SATA link down (SStatus 0 SControl 300)
ata3: softreset failed (device not ready)
ata3: applying SB600 PMP SRST workaround and retrying
firewire_core: rediscovered device fw0
ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
ata3.00: configured for UDMA/133
r8169 0000:02:00.0: eth0: link up
ata8: softreset failed (device not ready)
ata8: applying SB600 PMP SRST workaround and retrying
ata8: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
ata8.00: configured for UDMA/100
ata5: softreset failed (device not ready)
ata5: applying SB600 PMP SRST workaround and retrying
ata6: softreset failed (device not ready)
ata6: applying SB600 PMP SRST workaround and retrying
ata5: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
ata5.00: configured for UDMA/133
ata6: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
ata6.00: configured for UDMA/133
ata4: softreset failed (device not ready)
ata4: softreset failed (device not ready)
ata4: applying SB600 PMP SRST workaround and retrying
ata4: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
ata4.00: n_sectors mismatch 1953525168 != 1953523055
ata4.00: old n_sectors matches native, probably late HPA lock, will try to unlock HPA
ata4.00: revalidation failed (errno=-5)
ata4: softreset failed (device not ready)
ata4: applying SB600 PMP SRST workaround and retrying
ata4: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
ata4.00: configured for UDMA/133
PM: resume of devices complete after 16353.010 msecs
input: Xbox 360 Wireless Receiver as /devices/pci0000:00/0000:00:13.1/usb6/6-3/6-3:1.0/input/input11
input: Xbox 360 Wireless Receiver as /devices/pci0000:00/0000:00:13.1/usb6/6-3/6-3:1.2/input/input12
input: Xbox 360 Wireless Receiver as /devices/pci0000:00/0000:00:13.1/usb6/6-3/6-3:1.4/input/input13
input: Xbox 360 Wireless Receiver as /devices/pci0000:00/0000:00:13.1/usb6/6-3/6-3:1.6/input/input14
PM: Finishing wakeup.
Restarting tasks ... done.
PM: Syncing filesystems ... done.
PM: Preparing system for mem sleep
Freezing user space processes ... (elapsed 0.01 seconds) done.
Freezing remaining freezable tasks ... (elapsed 0.01 seconds) done.
PM: Entering mem sleep
Suspending console(s) (use no_console_suspend to debug)
sd 7:0:0:0: [sde] Synchronizing SCSI cache
sd 5:0:0:0: [sdd] Synchronizing SCSI cache
sd 4:0:0:0: [sdc] Synchronizing SCSI cache
sd 3:0:0:0: [sdb] Synchronizing SCSI cache
sd 2:0:0:0: [sda] Synchronizing SCSI cache
sd 5:0:0:0: [sdd] Stopping disk
sd 3:0:0:0: [sdb] Stopping disk
sd 7:0:0:0: [sde] Stopping disk
HDA Intel 0000:01:00.1: PCI INT B disabled
ACPI handle has no context!
ohci_hcd 0000:00:14.5: PCI INT C disabled
ACPI handle has no context!
ehci_hcd 0000:00:13.2: PCI INT B disabled
[fglrx] IRQ 42 Disabled
[fglrx] Preparing suspend fglrx in kernel.
ehci_hcd 0000:00:12.2: PCI INT B disabled
sd 4:0:0:0: [sdc] Stopping disk
ohci_hcd 0000:00:12.0: PCI INT A disabled
sd 2:0:0:0: [sda] Stopping disk
ohci_hcd 0000:00:12.1: PCI INT A disabled
ohci_hcd 0000:00:13.0: PCI INT A disabled
ohci_hcd 0000:00:13.1: PCI INT A disabled
HDA Intel 0000:00:14.2: PCI INT A disabled
[fglrx] Suspending fglrx in kernel completed.
[fglrx] Power down the ASIC .
ahci 0000:00:11.0: PCI INT A disabled
PM: suspend of devices complete after 1129.674 msecs
r8169 0000:02:00.0: PME# enabled
pci 0000:00:0a.0: wake-up capability enabled by ACPI
PM: late suspend of devices complete after 40.081 msecs
ACPI: Preparing to enter system sleep state S3
PM: Saving platform NVS memory
Disabling non-boot CPUs ...
CPU 1 is now offline
CPU 2 is now offline
CPU 3 is now offline
SMP alternatives: switching to UP code
Back to C!
PM: Restoring platform NVS memory
PCI-DMA: Resuming GART IOMMU
PCI-DMA: Restoring GART aperture settings
Enabling non-boot CPUs ...
SMP alternatives: switching to SMP code
Booting Node 0 Processor 1 APIC 0x1
Switch to broadcast mode on CPU1
Clockevents: could not switch to one-shot mode: lapic is not functional.
Could not switch to high resolution mode on CPU 1
NMI watchdog enabled, takes one hw-pmu counter.
CPU1 is up
Booting Node 0 Processor 2 APIC 0x2
Switch to broadcast mode on CPU2
Clockevents: could not switch to one-shot mode: lapic is not functional.
Could not switch to high resolution mode on CPU 2
NMI watchdog enabled, takes one hw-pmu counter.
CPU2 is up
Booting Node 0 Processor 3 APIC 0x3
Switch to broadcast mode on CPU3
Clockevents: could not switch to one-shot mode: lapic is not functional.
Could not switch to high resolution mode on CPU 3
NMI watchdog enabled, takes one hw-pmu counter.
CPU3 is up
ACPI: Waking up from system sleep state S3
pci 0000:00:00.0: restoring config space at offset 0x3 (was 0x0, writing 0x2000)
pci 0000:00:02.0: restoring config space at offset 0x7 (was 0xe1e1, writing 0x2000e1e1)
ahci 0000:00:11.0: restoring config space at offset 0xf (was 0x100, writing 0x10b)
ehci_hcd 0000:00:12.2: BAR 0: set to [mem 0xfe02c000-0xfe02c0ff] (PCI address [0xfe02c000-0xfe02c0ff])
ehci_hcd 0000:00:12.2: restoring config space at offset 0x1 (was 0x2b00000, writing 0x2b00012)
ehci_hcd 0000:00:13.2: BAR 0: set to [mem 0xfe029000-0xfe0290ff] (PCI address [0xfe029000-0xfe0290ff])
ehci_hcd 0000:00:13.2: restoring config space at offset 0x1 (was 0x2b00000, writing 0x2b00012)
HDA Intel 0000:00:14.2: restoring config space at offset 0xf (was 0x100, writing 0x5)
HDA Intel 0000:00:14.2: restoring config space at offset 0x3 (was 0x0, writing 0x2010)
fglrx_pci 0000:01:00.0: restoring config space at offset 0xf (was 0x1ff, writing 0x10a)
fglrx_pci 0000:01:00.0: restoring config space at offset 0x8 (was 0x1, writing 0xee01)
fglrx_pci 0000:01:00.0: restoring config space at offset 0x6 (was 0x4, writing 0xfdfe0004)
fglrx_pci 0000:01:00.0: restoring config space at offset 0x4 (was 0xc, writing 0xd000000c)
fglrx_pci 0000:01:00.0: restoring config space at offset 0x3 (was 0x800000, writing 0x800010)
fglrx_pci 0000:01:00.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100403)
HDA Intel 0000:01:00.1: restoring config space at offset 0xf (was 0x2ff, writing 0x20a)
HDA Intel 0000:01:00.1: restoring config space at offset 0x4 (was 0x4, writing 0xfdffc004)
HDA Intel 0000:01:00.1: restoring config space at offset 0x3 (was 0x800000, writing 0x800010)
HDA Intel 0000:01:00.1: restoring config space at offset 0x1 (was 0x100000, writing 0x100002)
r8169 0000:02:00.0: restoring config space at offset 0x1 (was 0x100007, writing 0x100407)
PM: early resume of devices complete after 24.992 msecs
pci 0000:00:02.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
pci 0000:00:02.0: setting latency timer to 64
pci 0000:00:0a.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
pci 0000:00:0a.0: setting latency timer to 64
ohci_hcd 0000:00:12.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
ohci_hcd 0000:00:12.1: PCI INT A -> GSI 16 (level, low) -> IRQ 16
ahci 0000:00:11.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
HDA Intel 0000:01:00.1: PCI INT B -> GSI 19 (level, low) -> IRQ 19
HDA Intel 0000:01:00.1: setting latency timer to 64
fglrx_pci 0000:01:00.0: setting latency timer to 64
HDA Intel 0000:01:00.1: irq 41 for MSI/MSI-X
sd 2:0:0:0: [sda] Starting disk
sd 3:0:0:0: [sdb] Starting disk
sd 4:0:0:0: [sdc] Starting disk
sd 5:0:0:0: [sdd] Starting disk
sd 7:0:0:0: [sde] Starting disk
ehci_hcd 0000:00:12.2: PCI INT B -> GSI 17 (level, low) -> IRQ 17
ohci_hcd 0000:00:13.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
ohci_hcd 0000:00:13.1: PCI INT A -> GSI 18 (level, low) -> IRQ 18
ehci_hcd 0000:00:13.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19
ohci_hcd 0000:00:14.5: PCI INT C -> GSI 18 (level, low) -> IRQ 18
pci 0000:00:0a.0: wake-up capability disabled by ACPI
r8169 0000:02:00.0: PME# disabled
HDA Intel 0000:00:14.2: PCI INT A -> GSI 16 (level, low) -> IRQ 16
r8169 0000:02:00.0: eth0: link down
firewire_core: skipped bus generations, destroying all nodes
[fglrx] Power up the ASIC
[fglrx] Preparing resume fglrx in kernel.
[fglrx] Resuming fglrx in kernel completed.
[fglrx] IRQ 42 Enabled
ata1.01: NODEV after polling detection
ata1.00: ACPI cmd ef/03:0c:00:00:00:a0 (SET FEATURES) filtered out
ata1.00: ACPI cmd ef/03:42:00:00:00:a0 (SET FEATURES) filtered out
ata1.00: configured for UDMA/33
ata7: SATA link down (SStatus 0 SControl 300)
ata3: softreset failed (device not ready)
ata3: applying SB600 PMP SRST workaround and retrying
firewire_core: rediscovered device fw0
ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
ata3.00: configured for UDMA/133
r8169 0000:02:00.0: eth0: link up
ata8: softreset failed (device not ready)
ata8: applying SB600 PMP SRST workaround and retrying
ata8: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
ata8.00: configured for UDMA/100
ata5: softreset failed (device not ready)
ata5: applying SB600 PMP SRST workaround and retrying
ata6: softreset failed (device not ready)
ata6: applying SB600 PMP SRST workaround and retrying
ata5: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
ata5.00: configured for UDMA/133
ata6: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
ata6.00: configured for UDMA/133
ata4: softreset failed (device not ready)
ata4: softreset failed (device not ready)
ata4: applying SB600 PMP SRST workaround and retrying
ata4: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
ata4.00: configured for UDMA/133
PM: resume of devices complete after 10716.088 msecs
input: Xbox 360 Wireless Receiver as /devices/pci0000:00/0000:00:13.1/usb6/6-3/6-3:1.0/input/input15
input: Xbox 360 Wireless Receiver as /devices/pci0000:00/0000:00:13.1/usb6/6-3/6-3:1.2/input/input16
input: Xbox 360 Wireless Receiver as /devices/pci0000:00/0000:00:13.1/usb6/6-3/6-3:1.4/input/input17
input: Xbox 360 Wireless Receiver as /devices/pci0000:00/0000:00:13.1/usb6/6-3/6-3:1.6/input/input18
PM: Finishing wakeup.
Restarting tasks ... done.
lo: Disabled Privacy Extensions
chromium-sandbo (5905): /proc/5903/oom_adj is deprecated, please use /proc/5903/oom_score_adj instead.
device-mapper: uevent: version 1.0.3
device-mapper: ioctl: 4.18.0-ioctl (2010-06-29) initialised: dm-devel@redhat.com


Create a new paste based on this one


Comments: