[ create a new paste ] login | about

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

Plain Text, pasted on Sep 23:
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
[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Linux version 3.1.0-rc6-ga51d43c (root@backup) (gcc version 4.5.3 (CRUX) ) #1 SMP Fri Sep 23 16:07:05 EDT 2011
[    0.000000] BIOS-provided physical RAM map:
[    0.000000]  BIOS-e820: 0000000000000000 - 0000000000098c00 (usable)
[    0.000000]  BIOS-e820: 0000000000098c00 - 00000000000a0000 (reserved)
[    0.000000]  BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)
[    0.000000]  BIOS-e820: 0000000000100000 - 000000007fef0000 (usable)
[    0.000000]  BIOS-e820: 000000007fef0000 - 000000007fef3000 (ACPI NVS)
[    0.000000]  BIOS-e820: 000000007fef3000 - 000000007ff00000 (ACPI data)
[    0.000000]  BIOS-e820: 00000000fec00000 - 0000000100000000 (reserved)
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] DMI 2.2 present.
[    0.000000] DMI:    /MS-7101, BIOS 6.00 PG 02/16/2005
[    0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
[    0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
[    0.000000] last_pfn = 0x7fef0 max_arch_pfn = 0x1000000
[    0.000000] MTRR default type: uncachable
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-EFFFF uncachable
[    0.000000]   F0000-FFFFF write-through
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 000000000 mask F80000000 write-back
[    0.000000]   1 base 07FF00000 mask FFFF00000 uncachable
[    0.000000]   2 disabled
[    0.000000]   3 disabled
[    0.000000]   4 disabled
[    0.000000]   5 disabled
[    0.000000]   6 disabled
[    0.000000]   7 disabled
[    0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[    0.000000] found SMP MP-table at [c00f5190] f5190
[    0.000000] initial memory mapped : 0 - 02000000
[    0.000000] Base memory trampoline at [c0094000] 94000 size 16384
[    0.000000] init_memory_mapping: 0000000000000000-00000000379fe000
[    0.000000]  0000000000 - 0000200000 page 4k
[    0.000000]  0000200000 - 0037800000 page 2M
[    0.000000]  0037800000 - 00379fe000 page 4k
[    0.000000] kernel direct mapping tables up to 379fe000 @ 1ffa000-2000000
[    0.000000] ACPI: RSDP 000f8ce0 00014 (v00 IntelR)
[    0.000000] ACPI: RSDT 7fef3040 0002C (v01 IntelR AWRDACPI 42302E31 AWRD 00000000)
[    0.000000] ACPI: FACP 7fef30c0 00074 (v01 IntelR AWRDACPI 42302E31 AWRD 00000000)
[    0.000000] ACPI: DSDT 7fef3180 03BE8 (v01 INTELR AWRDACPI 00001000 MSFT 0100000E)
[    0.000000] ACPI: FACS 7fef0000 00040
[    0.000000] ACPI: APIC 7fef6dc0 00068 (v01 IntelR AWRDACPI 42302E31 AWRD 00000000)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] 1156MB HIGHMEM available.
[    0.000000] 889MB LOWMEM available.
[    0.000000]   mapped low ram: 0 - 379fe000
[    0.000000]   low ram: 0 - 379fe000
[    0.000000] Zone PFN ranges:
[    0.000000]   DMA      0x00000010 -> 0x00001000
[    0.000000]   Normal   0x00001000 -> 0x000379fe
[    0.000000]   HighMem  0x000379fe -> 0x0007fef0
[    0.000000] Movable zone start PFN for each node
[    0.000000] early_node_map[2] active PFN ranges
[    0.000000]     0: 0x00000010 -> 0x00000098
[    0.000000]     0: 0x00000100 -> 0x0007fef0
[    0.000000] On node 0 totalpages: 523896
[    0.000000] free_area_init_node: node 0, pgdat c1a10c00, node_mem_map f69fd200
[    0.000000]   DMA zone: 32 pages used for memmap
[    0.000000]   DMA zone: 0 pages reserved
[    0.000000]   DMA zone: 3944 pages, LIFO batch:0
[    0.000000]   Normal zone: 1748 pages used for memmap
[    0.000000]   Normal zone: 221994 pages, LIFO batch:31
[    0.000000]   HighMem zone: 2314 pages used for memmap
[    0.000000]   HighMem zone: 293864 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[0x00] lapic_id[0x00] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] disabled)
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.000000] ACPI: IRQ0 used by override.
[    0.000000] ACPI: IRQ2 used by override.
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] SMP: Allowing 2 CPUs, 1 hotplug CPUs
[    0.000000] nr_irqs_gsi: 40
[    0.000000] PM: Registered nosave memory: 0000000000098000 - 0000000000099000
[    0.000000] PM: Registered nosave memory: 0000000000099000 - 00000000000a0000
[    0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000f0000
[    0.000000] PM: Registered nosave memory: 00000000000f0000 - 0000000000100000
[    0.000000] Allocating PCI resources starting at 7ff00000 (gap: 7ff00000:7ed00000)
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] setup_percpu: NR_CPUS:32 nr_cpumask_bits:32 nr_cpu_ids:2 nr_node_ids:1
[    0.000000] PERCPU: Embedded 13 pages/cpu @f6600000 s32192 r0 d21056 u1048576
[    0.000000] pcpu-alloc: s32192 r0 d21056 u1048576 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 0 1 
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 519802
[    0.000000] Kernel command line: auto BOOT_IMAGE=CRUX-NOUVEAU ro root=900 rootfstype=ext4
[    0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes)
[    0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
[    0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
[    0.000000] Initializing CPU#0
[    0.000000] allocated 8384000 bytes of page_cgroup
[    0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
[    0.000000] Initializing HighMem for node 0 (000379fe:0007fef0)
[    0.000000] Memory: 2058508k/2096064k available (6642k kernel code, 37076k reserved, 3711k data, 452k init, 1184712k highmem)
[    0.000000] virtual kernel memory layout:
[    0.000000]     fixmap  : 0xffd36000 - 0xfffff000   (2852 kB)
[    0.000000]     pkmap   : 0xffa00000 - 0xffc00000   (2048 kB)
[    0.000000]     vmalloc : 0xf81fe000 - 0xff9fe000   ( 120 MB)
[    0.000000]     lowmem  : 0xc0000000 - 0xf79fe000   ( 889 MB)
[    0.000000]       .init : 0xc1a1d000 - 0xc1a8e000   ( 452 kB)
[    0.000000]       .data : 0xc167c880 - 0xc1a1c580   (3711 kB)
[    0.000000]       .text : 0xc1000000 - 0xc167c880   (6642 kB)
[    0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok.
[    0.000000] Hierarchical RCU implementation.
[    0.000000] 	RCU dyntick-idle grace-period acceleration is enabled.
[    0.000000] NR_IRQS:1280
[    0.000000] CPU 0 irqstacks, hard=f580a000 soft=f580c000
[    0.000000] Console: colour VGA+ 80x25
[    0.000000] console [tty0] enabled
[    0.000000] Fast TSC calibration using PIT
[    0.000000] Detected 3057.733 MHz processor.
[    0.008003] Calibrating delay loop (skipped), value calculated using timer frequency.. 6115.46 BogoMIPS (lpj=12230932)
[    0.008166] pid_max: default: 32768 minimum: 301
[    0.008311] Security Framework initialized
[    0.008394] SELinux:  Disabled at boot.
[    0.008499] Mount-cache hash table entries: 512
[    0.008905] Initializing cgroup subsys cpuacct
[    0.009008] Initializing cgroup subsys memory
[    0.009103] Initializing cgroup subsys devices
[    0.009183] Initializing cgroup subsys freezer
[    0.009262] Initializing cgroup subsys net_cls
[    0.009341] Initializing cgroup subsys blkio
[    0.009470] CPU0: Hyper-Threading is disabled
[    0.009551] mce: CPU supports 4 MCE banks
[    0.009641] CPU0: Thermal monitoring enabled (TM1)
[    0.009724] using mwait in idle threads.
[    0.009969] SMP alternatives: switching to UP code
[    0.018236] ACPI: Core revision 20110623
[    0.024096] Enabling APIC mode:  Flat.  Using 1 I/O APICs
[    0.024474] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.066740] CPU0: Intel(R) Celeron(R) CPU 3.06GHz stepping 09
[    0.068003] Performance Events: Netburst events, Netburst P4/Xeon PMU driver.
[    0.068003] ... version:                0
[    0.068003] ... bit width:              40
[    0.068003] ... generic registers:      18
[    0.068003] ... value mask:             000000ffffffffff
[    0.068003] ... max period:             0000007fffffffff
[    0.068003] ... fixed-purpose events:   0
[    0.068003] ... event mask:             000000000003ffff
[    0.068003] NMI watchdog enabled, takes one hw-pmu counter.
[    0.068003] Brought up 1 CPUs
[    0.068003] Total of 1 processors activated (6115.46 BogoMIPS).
[    0.068003] devtmpfs: initialized
[    0.068003] PM: Registering ACPI NVS region at 7fef0000 (12288 bytes)
[    0.068003] xor: automatically using best checksumming function: pIII_sse
[    0.084012]    pIII_sse  :  4611.000 MB/sec
[    0.084091] xor: using function: pIII_sse (4611.000 MB/sec)
[    0.084306] print_constraints: dummy: 
[    0.084484] NET: Registered protocol family 16
[    0.084749] ACPI: bus type pci registered
[    0.086318] PCI : PCI BIOS aera is rw and x. Use pci=nobios if you want it NX.
[    0.086423] PCI: PCI BIOS revision 2.10 entry at 0xfacd0, last bus=1
[    0.086505] PCI: Using configuration type 1 for base access
[    0.097313] bio: create slab <bio-0> at 0
[    0.164051] raid6: int32x1    723 MB/s
[    0.232081] raid6: int32x2    859 MB/s
[    0.300081] raid6: int32x4    914 MB/s
[    0.368127] raid6: int32x8    444 MB/s
[    0.436060] raid6: mmxx1     1879 MB/s
[    0.504053] raid6: mmxx2     2181 MB/s
[    0.572051] raid6: sse1x1    1082 MB/s
[    0.640083] raid6: sse1x2    1219 MB/s
[    0.708059] raid6: sse2x1    2197 MB/s
[    0.776076] raid6: sse2x2    2099 MB/s
[    0.776157] raid6: using algorithm sse2x1 (2197 MB/s)
[    0.776335] ACPI: Added _OSI(Module Device)
[    0.776416] ACPI: Added _OSI(Processor Device)
[    0.776495] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.776575] ACPI: Added _OSI(Processor Aggregator Device)
[    0.777425] ACPI: EC: Look up EC in DSDT
[    0.781202] ACPI: Interpreter enabled
[    0.781293] ACPI: (supports S0 S1 S4 S5)
[    0.781610] ACPI: Using IOAPIC for interrupt routing
[    0.787196] ACPI: No dock devices found.
[    0.787279] HEST: Table not found.
[    0.787358] PCI: Ignoring host bridge windows from ACPI; if necessary, use "pci=use_crs" and report a bug
[    0.787564] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.787834] pci_root PNP0A03:00: host bridge window [io  0x0000-0x0cf7] (ignored)
[    0.787839] pci_root PNP0A03:00: host bridge window [io  0x0d00-0xffff] (ignored)
[    0.787843] pci_root PNP0A03:00: host bridge window [mem 0x000a0000-0x000bffff] (ignored)
[    0.787846] pci_root PNP0A03:00: host bridge window [mem 0x000c0000-0x000dffff] (ignored)
[    0.787850] pci_root PNP0A03:00: host bridge window [mem 0x7ff00000-0xfebfffff] (ignored)
[    0.787869] pci 0000:00:00.0: [8086:2570] type 0 class 0x000600
[    0.787875] pci 0000:00:00.0: Enabling MCH 'Overflow' Device
[    0.787966] pci 0000:00:00.0: reg 10: [mem 0xd0000000-0xdfffffff pref]
[    0.788066] pci 0000:00:02.0: [8086:2572] type 0 class 0x000380
[    0.788084] pci 0000:00:02.0: reg 10: [mem 0xf0000000-0xf7ffffff pref]
[    0.788094] pci 0000:00:02.0: reg 14: [mem 0xfb000000-0xfb07ffff]
[    0.788103] pci 0000:00:02.0: reg 18: [io  0xe400-0xe407]
[    0.788166] pci 0000:00:06.0: [8086:2576] type 0 class 0x000880
[    0.788178] pci 0000:00:06.0: reg 10: [mem 0xfecf0000-0xfecf0fff]
[    0.788264] pci 0000:00:1d.0: [8086:24d2] type 0 class 0x000c03
[    0.788312] pci 0000:00:1d.0: reg 20: [io  0xe000-0xe01f]
[    0.788350] pci 0000:00:1d.1: [8086:24d4] type 0 class 0x000c03
[    0.788399] pci 0000:00:1d.1: reg 20: [io  0xe100-0xe11f]
[    0.788435] pci 0000:00:1d.2: [8086:24d7] type 0 class 0x000c03
[    0.788482] pci 0000:00:1d.2: reg 20: [io  0xe200-0xe21f]
[    0.788518] pci 0000:00:1d.3: [8086:24de] type 0 class 0x000c03
[    0.788566] pci 0000:00:1d.3: reg 20: [io  0xe300-0xe31f]
[    0.788609] pci 0000:00:1d.7: [8086:24dd] type 0 class 0x000c03
[    0.788630] pci 0000:00:1d.7: reg 10: [mem 0xfb080000-0xfb0803ff]
[    0.788709] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
[    0.788715] pci 0000:00:1d.7: PME# disabled
[    0.788733] pci 0000:00:1e.0: [8086:244e] type 1 class 0x000604
[    0.788779] pci 0000:00:1f.0: [8086:24d0] type 0 class 0x000601
[    0.788847] pci 0000:00:1f.0: Force enabled HPET at 0xfed00000
[    0.788871] pci 0000:00:1f.1: [8086:24db] type 0 class 0x000101
[    0.788886] pci 0000:00:1f.1: reg 10: [io  0x0000-0x0007]
[    0.788898] pci 0000:00:1f.1: reg 14: [io  0x0000-0x0003]
[    0.788908] pci 0000:00:1f.1: reg 18: [io  0x0000-0x0007]
[    0.788919] pci 0000:00:1f.1: reg 1c: [io  0x0000-0x0003]
[    0.788930] pci 0000:00:1f.1: reg 20: [io  0xf000-0xf00f]
[    0.788941] pci 0000:00:1f.1: reg 24: [mem 0x00000000-0x000003ff]
[    0.788969] pci 0000:00:1f.2: [8086:24d1] type 0 class 0x000101
[    0.788983] pci 0000:00:1f.2: reg 10: [io  0xe500-0xe507]
[    0.788993] pci 0000:00:1f.2: reg 14: [io  0xe600-0xe603]
[    0.789002] pci 0000:00:1f.2: reg 18: [io  0xe700-0xe707]
[    0.789012] pci 0000:00:1f.2: reg 1c: [io  0xe800-0xe803]
[    0.789022] pci 0000:00:1f.2: reg 20: [io  0xe900-0xe90f]
[    0.789056] pci 0000:00:1f.3: [8086:24d3] type 0 class 0x000c05
[    0.789104] pci 0000:00:1f.3: reg 20: [io  0x0500-0x051f]
[    0.789143] pci 0000:00:1f.5: [8086:24d5] type 0 class 0x000401
[    0.789161] pci 0000:00:1f.5: reg 10: [io  0xeb00-0xebff]
[    0.789171] pci 0000:00:1f.5: reg 14: [io  0xec00-0xec3f]
[    0.789181] pci 0000:00:1f.5: reg 18: [mem 0xfb081000-0xfb0811ff]
[    0.789191] pci 0000:00:1f.5: reg 1c: [mem 0xfb082000-0xfb0820ff]
[    0.789232] pci 0000:00:1f.5: PME# supported from D0 D3hot D3cold
[    0.789237] pci 0000:00:1f.5: PME# disabled
[    0.789273] pci 0000:01:00.0: [10de:0221] type 0 class 0x000300
[    0.789294] pci 0000:01:00.0: reg 10: [mem 0xf8000000-0xf8ffffff]
[    0.789305] pci 0000:01:00.0: reg 14: [mem 0xe0000000-0xefffffff pref]
[    0.789315] pci 0000:01:00.0: reg 18: [mem 0xf9000000-0xf9ffffff]
[    0.789347] pci 0000:01:00.0: reg 30: [mem 0x00000000-0x0001ffff pref]
[    0.789387] pci 0000:01:02.0: [9710:9805] type 0 class 0x000780
[    0.789402] pci 0000:01:02.0: reg 10: [io  0xd000-0xd007]
[    0.789413] pci 0000:01:02.0: reg 14: [io  0xd100-0xd107]
[    0.789423] pci 0000:01:02.0: reg 18: [io  0xd200-0xd207]
[    0.789434] pci 0000:01:02.0: reg 1c: [io  0xd300-0xd307]
[    0.789444] pci 0000:01:02.0: reg 20: [io  0xd400-0xd407]
[    0.789455] pci 0000:01:02.0: reg 24: [io  0xd500-0xd50f]
[    0.789496] pci 0000:01:0b.0: [10ec:8139] type 0 class 0x000200
[    0.789514] pci 0000:01:0b.0: reg 10: [io  0xd600-0xd6ff]
[    0.789524] pci 0000:01:0b.0: reg 14: [mem 0xfa020000-0xfa0200ff]
[    0.789565] pci 0000:01:0b.0: reg 30: [mem 0x00000000-0x0000ffff pref]
[    0.789585] pci 0000:01:0b.0: supports D1 D2
[    0.789588] pci 0000:01:0b.0: PME# supported from D1 D2 D3hot D3cold
[    0.789593] pci 0000:01:0b.0: PME# disabled
[    0.789624] pci 0000:00:1e.0: PCI bridge to [bus 01-01] (subtractive decode)
[    0.789712] pci 0000:00:1e.0:   bridge window [io  0xd000-0xdfff]
[    0.789718] pci 0000:00:1e.0:   bridge window [mem 0xf8000000-0xfaffffff]
[    0.789723] pci 0000:00:1e.0:   bridge window [mem 0xe0000000-0xefffffff pref]
[    0.789727] pci 0000:00:1e.0:   bridge window [io  0x0000-0xffff] (subtractive decode)
[    0.789730] pci 0000:00:1e.0:   bridge window [mem 0x00000000-0xfffffffff] (subtractive decode)
[    0.789741] pci_bus 0000:00: on NUMA node 0
[    0.789747] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[    0.789874] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.HUB0._PRT]
[    0.790096]  pci0000:00: Unable to request _OSC control (_OSC support mask: 0x1e)
[    0.798126] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 *7 9 10 11 12 14 15)
[    0.798904] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 7 *9 10 11 12 14 15)
[    0.799675] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 7 9 10 *11 12 14 15)
[    0.800466] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 7 9 10 *11 12 14 15)
[    0.801238] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 7 9 10 11 12 14 15) *0, disabled.
[    0.802132] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 7 9 10 11 12 14 15) *0, disabled.
[    0.803024] ACPI: PCI Interrupt Link [LNK0] (IRQs 3 4 5 7 9 10 11 12 14 15) *0, disabled.
[    0.803915] ACPI: PCI Interrupt Link [LNK1] (IRQs 3 4 5 7 9 *10 11 12 14 15)
[    0.804827] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
[    0.804936] vgaarb: loaded
[    0.805010] vgaarb: bridge control possible 0000:01:00.0
[    0.805252] SCSI subsystem initialized
[    0.805423] libata version 3.00 loaded.
[    0.805486] usbcore: registered new interface driver usbfs
[    0.805595] usbcore: registered new interface driver hub
[    0.805725] usbcore: registered new device driver usb
[    0.805983] wmi: Mapper loaded
[    0.806091] Advanced Linux Sound Architecture Driver Version 1.0.24.
[    0.806190] PCI: Using ACPI for IRQ routing
[    0.806272] PCI: pci_cache_line_size set to 64 bytes
[    0.806350] reserve RAM buffer: 0000000000098c00 - 000000000009ffff 
[    0.806354] reserve RAM buffer: 000000007fef0000 - 000000007fffffff 
[    0.806680] hpet clockevent registered
[    0.806687] HPET: 3 timers in total, 0 timers will be used for per-cpu timer
[    0.806779] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[    0.807066] hpet0: 3 comparators, 64-bit 14.318180 MHz counter
[    0.812119] Switching to clocksource hpet
[    0.815900] pnp: PnP ACPI init
[    0.816005] ACPI: bus type pnp registered
[    0.816005] Switched to NOHz mode on CPU #0
[    0.816208] pnp 00:00: [bus 00-ff]
[    0.816213] pnp 00:00: [io  0x0cf8-0x0cff]
[    0.816217] pnp 00:00: [io  0x0000-0x0cf7 window]
[    0.816220] pnp 00:00: [io  0x0d00-0xffff window]
[    0.816223] pnp 00:00: [mem 0x000a0000-0x000bffff window]
[    0.816226] pnp 00:00: [mem 0x000c0000-0x000dffff window]
[    0.816230] pnp 00:00: [mem 0x7ff00000-0xfebfffff window]
[    0.816304] pnp 00:00: Plug and Play ACPI device, IDs PNP0a03 (active)
[    0.816349] pnp 00:01: [io  0x0010-0x001f]
[    0.816353] pnp 00:01: [io  0x0022-0x003f]
[    0.816355] pnp 00:01: [io  0x0044-0x005f]
[    0.816358] pnp 00:01: [io  0x0062-0x0063]
[    0.816360] pnp 00:01: [io  0x0065-0x006f]
[    0.816363] pnp 00:01: [io  0x0074-0x007f]
[    0.816365] pnp 00:01: [io  0x0091-0x0093]
[    0.816368] pnp 00:01: [io  0x00a2-0x00bf]
[    0.816370] pnp 00:01: [io  0x00e0-0x00ef]
[    0.816373] pnp 00:01: [io  0x0b78-0x0b7b]
[    0.816376] pnp 00:01: [io  0x0f78-0x0f7b]
[    0.816378] pnp 00:01: [io  0x0a78-0x0a7b]
[    0.816381] pnp 00:01: [io  0x0e78-0x0e7b]
[    0.816383] pnp 00:01: [io  0x0bbc-0x0bbf]
[    0.816386] pnp 00:01: [io  0x0fbc-0x0fbf]
[    0.816388] pnp 00:01: [io  0x04d0-0x04d1]
[    0.816391] pnp 00:01: [io  0x0294-0x0297]
[    0.816483] system 00:01: [io  0x0b78-0x0b7b] has been reserved
[    0.825123] system 00:01: [io  0x0f78-0x0f7b] has been reserved
[    0.825207] system 00:01: [io  0x0a78-0x0a7b] has been reserved
[    0.825290] system 00:01: [io  0x0e78-0x0e7b] has been reserved
[    0.825372] system 00:01: [io  0x0bbc-0x0bbf] has been reserved
[    0.825455] system 00:01: [io  0x0fbc-0x0fbf] has been reserved
[    0.825538] system 00:01: [io  0x04d0-0x04d1] has been reserved
[    0.825620] system 00:01: [io  0x0294-0x0297] has been reserved
[    0.825705] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.825731] pnp 00:02: [dma 4]
[    0.825734] pnp 00:02: [io  0x0000-0x000f]
[    0.825737] pnp 00:02: [io  0x0080-0x0090]
[    0.825739] pnp 00:02: [io  0x0094-0x009f]
[    0.825742] pnp 00:02: [io  0x00c0-0x00df]
[    0.825782] pnp 00:02: Plug and Play ACPI device, IDs PNP0200 (active)
[    0.825802] pnp 00:03: [io  0x0070-0x0073]
[    0.825815] pnp 00:03: [irq 8]
[    0.825855] pnp 00:03: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.825871] pnp 00:04: [io  0x0061]
[    0.825907] pnp 00:04: Plug and Play ACPI device, IDs PNP0800 (active)
[    0.825923] pnp 00:05: [io  0x00f0-0x00ff]
[    0.825931] pnp 00:05: [irq 13]
[    0.825970] pnp 00:05: Plug and Play ACPI device, IDs PNP0c04 (active)
[    0.826139] pnp 00:06: [io  0x03f0-0x03f5]
[    0.826143] pnp 00:06: [io  0x03f7]
[    0.826151] pnp 00:06: [irq 6]
[    0.826154] pnp 00:06: [dma 2]
[    0.826223] pnp 00:06: Plug and Play ACPI device, IDs PNP0700 (active)
[    0.826439] pnp 00:07: [io  0x03f8-0x03ff]
[    0.826448] pnp 00:07: [irq 4]
[    0.826547] pnp 00:07: Plug and Play ACPI device, IDs PNP0501 (active)
[    0.826783] pnp 00:08: [io  0x02f8-0x02ff]
[    0.826794] pnp 00:08: [irq 3]
[    0.826884] pnp 00:08: Plug and Play ACPI device, IDs PNP0501 (active)
[    0.827265] pnp 00:09: [io  0x0278-0x027f]
[    0.827269] pnp 00:09: [io  0x0678-0x067b]
[    0.827278] pnp 00:09: [irq 5]
[    0.827362] pnp 00:09: Plug and Play ACPI device, IDs PNP0400 (active)
[    0.827512] pnp 00:0a: [irq 12]
[    0.827560] pnp 00:0a: Plug and Play ACPI device, IDs PNP0f13 (active)
[    0.827607] pnp 00:0b: [io  0x0060]
[    0.827611] pnp 00:0b: [io  0x0064]
[    0.827619] pnp 00:0b: [irq 1]
[    0.827673] pnp 00:0b: Plug and Play ACPI device, IDs PNP0303 PNP030b (active)
[    0.827736] pnp 00:0c: [io  0x0400-0x04bf]
[    0.827813] system 00:0c: [io  0x0400-0x04bf] has been reserved
[    0.827901] system 00:0c: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.827942] pnp 00:0d: [mem 0xffb80000-0xffbfffff]
[    0.827993] pnp 00:0d: Plug and Play ACPI device, IDs INT0800 (active)
[    0.828491] pnp 00:0e: [mem 0x000d1000-0x000d3fff]
[    0.828495] pnp 00:0e: [mem 0x000f0000-0x000f7fff]
[    0.828498] pnp 00:0e: [mem 0x000f8000-0x000fbfff]
[    0.828501] pnp 00:0e: [mem 0x000fc000-0x000fffff]
[    0.828504] pnp 00:0e: [mem 0x7fef0000-0x7fefffff]
[    0.828507] pnp 00:0e: [mem 0x00000000-0x0009ffff]
[    0.828510] pnp 00:0e: [mem 0x00100000-0x7feeffff]
[    0.828513] pnp 00:0e: [mem 0xfec00000-0xfec00fff]
[    0.828515] pnp 00:0e: [mem 0xfec01000-0xfed8ffff]
[    0.828518] pnp 00:0e: [mem 0xfee00000-0xfee00fff]
[    0.828521] pnp 00:0e: [mem 0xffb00000-0xffb7ffff]
[    0.828524] pnp 00:0e: [mem 0xfff00000-0xffffffff]
[    0.828527] pnp 00:0e: [mem 0x000e0000-0x000effff]
[    0.828637] system 00:0e: [mem 0x000d1000-0x000d3fff] has been reserved
[    0.828726] system 00:0e: [mem 0x000f0000-0x000f7fff] could not be reserved
[    0.828812] system 00:0e: [mem 0x000f8000-0x000fbfff] could not be reserved
[    0.828897] system 00:0e: [mem 0x000fc000-0x000fffff] could not be reserved
[    0.828983] system 00:0e: [mem 0x7fef0000-0x7fefffff] could not be reserved
[    0.829069] system 00:0e: [mem 0x00000000-0x0009ffff] could not be reserved
[    0.829154] system 00:0e: [mem 0x00100000-0x7feeffff] could not be reserved
[    0.829240] system 00:0e: [mem 0xfec00000-0xfec00fff] could not be reserved
[    0.829325] system 00:0e: [mem 0xfec01000-0xfed8ffff] could not be reserved
[    0.829410] system 00:0e: [mem 0xfee00000-0xfee00fff] has been reserved
[    0.829495] system 00:0e: [mem 0xffb00000-0xffb7ffff] has been reserved
[    0.829580] system 00:0e: [mem 0xfff00000-0xffffffff] has been reserved
[    0.829665] system 00:0e: [mem 0x000e0000-0x000effff] has been reserved
[    0.829750] system 00:0e: Plug and Play ACPI device, IDs PNP0c01 (active)
[    0.829764] pnp: PnP ACPI: found 15 devices
[    0.829843] ACPI: ACPI bus type pnp unregistered
[    0.829927] PnPBIOS: Disabled by ACPI PNP
[    0.867751] PCI: max bus depth: 1 pci_try_num: 2
[    0.867779] pci 0000:00:1f.1: BAR 5: assigned [mem 0x80000000-0x800003ff]
[    0.867871] pci 0000:00:1f.1: BAR 5: set to [mem 0x80000000-0x800003ff] (PCI address [0x80000000-0x800003ff])
[    0.867985] pci 0000:01:00.0: BAR 6: assigned [mem 0xfa000000-0xfa01ffff pref]
[    0.868112] pci 0000:01:0b.0: BAR 6: assigned [mem 0xfa030000-0xfa03ffff pref]
[    0.868215] pci 0000:00:1e.0: PCI bridge to [bus 01-01]
[    0.868298] pci 0000:00:1e.0:   bridge window [io  0xd000-0xdfff]
[    0.868383] pci 0000:00:1e.0:   bridge window [mem 0xf8000000-0xfaffffff]
[    0.868469] pci 0000:00:1e.0:   bridge window [mem 0xe0000000-0xefffffff pref]
[    0.868586] pci 0000:00:1e.0: setting latency timer to 64
[    0.868592] pci_bus 0000:00: resource 0 [io  0x0000-0xffff]
[    0.868595] pci_bus 0000:00: resource 1 [mem 0x00000000-0xfffffffff]
[    0.868599] pci_bus 0000:01: resource 0 [io  0xd000-0xdfff]
[    0.868602] pci_bus 0000:01: resource 1 [mem 0xf8000000-0xfaffffff]
[    0.868605] pci_bus 0000:01: resource 2 [mem 0xe0000000-0xefffffff pref]
[    0.868608] pci_bus 0000:01: resource 4 [io  0x0000-0xffff]
[    0.868610] pci_bus 0000:01: resource 5 [mem 0x00000000-0xfffffffff]
[    0.868676] NET: Registered protocol family 2
[    0.868855] IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
[    0.869318] TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
[    0.870047] TCP bind hash table entries: 65536 (order: 7, 524288 bytes)
[    0.870456] TCP: Hash tables configured (established 131072 bind 65536)
[    0.870546] TCP reno registered
[    0.870627] UDP hash table entries: 512 (order: 2, 16384 bytes)
[    0.870722] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
[    0.870988] NET: Registered protocol family 1
[    0.871209] pci 0000:01:00.0: Boot video device
[    0.871219] PCI: CLS 32 bytes, default 64
[    0.871353] kvm: no hardware support
[    0.871856] audit: initializing netlink socket (disabled)
[    0.871951] type=2000 audit(1316818716.868:1): initialized
[    0.907690] highmem bounce pool size: 64 pages
[    0.907778] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    0.916922] VFS: Disk quotas dquot_6.5.2
[    0.917084] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[    0.917495] DLM installed
[    0.917703] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    0.917884] NTFS driver 2.1.30 [Flags: R/W].
[    0.917996] fuse init (API version 7.17)
[    0.918189] msgmni has been set to 1706
[    0.918683] alg: No test for stdrng (krng)
[    0.918826] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
[    0.918931] io scheduler noop registered
[    0.919008] io scheduler deadline registered
[    0.919101] io scheduler cfq registered (default)
[    0.919338] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    0.919454] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    0.919668] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input0
[    0.919777] ACPI: Power Button [PWRB]
[    0.919953] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[    0.920099] ACPI: Power Button [PWRF]
[    0.920256] ACPI: Fan [FAN] (on)
[    0.920379] ACPI: acpi_idle registered with cpuidle
[    0.922657] thermal LNXTHERM:00: registered as thermal_zone0
[    0.922742] ACPI: Thermal Zone [THRM] (42 C)
[    0.922838] ERST: Table is not found!
[    0.922939] isapnp: Scanning for PnP cards...
[    1.276993] isapnp: No Plug & Play device found
[    1.277234] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    1.297641] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[    1.318073] serial8250: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
[    1.338833] 00:07: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[    1.359348] 00:08: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
[    1.359849] Non-volatile memory driver v1.3
[    1.360112] ppdev: user-space parallel port driver
[    1.360196] Linux agpgart interface v0.103
[    1.360345] agpgart-intel 0000:00:00.0: Intel 865 Chipset
[    1.360457] agpgart-intel 0000:00:00.0: detected gtt size: 131072K total, 131072K mappable
[    1.360676] agpgart-intel 0000:00:00.0: detected 1024K stolen memory
[    1.360918] agpgart-intel 0000:00:00.0: AGP aperture is 128M @ 0xf0000000
[    1.361093] [drm] Initialized drm 1.1.0 20060810
[    1.361270] i915 0000:00:02.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    1.361359] i915 0000:00:02.0: setting latency timer to 64
[    1.372867] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
[    1.372955] [drm] Driver supports precise vblank timestamp query.
[    1.373045] i915 0000:00:02.0: BAR 6: can't assign [??? 0x00000000 flags 0x0] (bogus alignment)
[    1.373150] [drm] failed to find VBIOS tables
[    1.630998] [drm] initialized overlay support
[    1.803053] Console: switching to colour frame buffer device 128x48
[    1.806414] fb0: inteldrmfb frame buffer device
[    1.806447] drm: registered panic notifier
[    1.806493] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
[    1.806632] nouveau 0000:01:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    1.808904] [drm] nouveau 0000:01:00.0: Detected an NV40 generation card (0x04a100a1)
[    1.812046] [drm] nouveau 0000:01:00.0: Attempting to load BIOS image from PRAMIN
[    1.933901] [drm] nouveau 0000:01:00.0: ... appears to be valid
[    1.933951] [drm] nouveau 0000:01:00.0: BIT BIOS found
[    1.933993] [drm] nouveau 0000:01:00.0: Bios version 05.44.a2.10
[    1.934040] [drm] nouveau 0000:01:00.0: TMDS table version 1.1
[    1.934084] [drm] nouveau 0000:01:00.0: Found Display Configuration Block version 3.0
[    1.934140] [drm] nouveau 0000:01:00.0: Raw DCB entry 0: 01000300 00000028
[    1.934191] [drm] nouveau 0000:01:00.0: Raw DCB entry 1: 02011310 00000028
[    1.934240] [drm] nouveau 0000:01:00.0: Raw DCB entry 2: 01011312 00000000
[    1.934290] [drm] nouveau 0000:01:00.0: Raw DCB entry 3: 020223f1 00c0c080
[    1.934341] [drm] nouveau 0000:01:00.0: DCB connector table: VHER 0x30 5 7 2
[    1.934392] [drm] nouveau 0000:01:00.0:   0: 0x00000000: type 0x00 idx 0 tag 0xff
[    1.934445] [drm] nouveau 0000:01:00.0:   1: 0x00002230: type 0x30 idx 1 tag 0x08
[    1.934498] [drm] nouveau 0000:01:00.0:   2: 0x00000110: type 0x10 idx 2 tag 0xff
[    1.934551] [drm] nouveau 0000:01:00.0:   3: 0x00000111: type 0x11 idx 3 tag 0xff
[    1.934604] [drm] nouveau 0000:01:00.0:   4: 0x00000113: type 0x13 idx 4 tag 0xff
[    1.934667] [drm] nouveau 0000:01:00.0: Parsing VBIOS init table 0 at offset 0xDEB0
[    1.937079] [drm] nouveau 0000:01:00.0: Parsing VBIOS init table 1 at offset 0xE19E
[    1.951858] [drm] nouveau 0000:01:00.0: Parsing VBIOS init table 2 at offset 0xE6D8
[    1.953524] [drm] nouveau 0000:01:00.0: Parsing VBIOS init table 3 at offset 0xE835
[    1.956250] [drm] nouveau 0000:01:00.0: Parsing VBIOS init table 4 at offset 0xE9BE
[    1.957824] [drm] nouveau 0000:01:00.0: mem timing table length unknown: 14
[    1.959455] Refined TSC clocksource calibration: 3057.954 MHz.
[    1.980631] [drm] nouveau 0000:01:00.0: 1 available performance level(s)
[    1.982229] [drm] nouveau 0000:01:00.0: 0: core 350MHz shader 350MHz memory 532MHz fanspeed 100%
[    1.983856] [drm] nouveau 0000:01:00.0: c: core 200MHz memory 265MHz
[    1.985799] [TTM] Zone  kernel: Available graphics memory: 436898 kiB.
[    1.987436] [TTM] Zone highmem: Available graphics memory: 1029254 kiB.
[    1.989090] [TTM] Initializing pool allocator.
[    1.990718] [drm] nouveau 0000:01:00.0: Detected 512MiB VRAM
[    1.992522] [drm] nouveau 0000:01:00.0: 128 MiB GART (aperture)
[    1.994269] [drm] nouveau 0000:01:00.0: Saving VGA fonts
[    2.101050] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
[    2.102586] [drm] No driver support for vblank timestamp query.
[    2.104119] Switching to clocksource tsc
[    2.105661] [drm] nouveau 0000:01:00.0: Setting dpms mode 3 on vga encoder (output 0)
[    2.107218] [drm] nouveau 0000:01:00.0: Setting dpms mode 3 on vga encoder (output 1)
[    2.108775] [drm] nouveau 0000:01:00.0: Setting dpms mode 3 on tmds encoder (output 2)
[    2.110292] [drm] nouveau 0000:01:00.0: Setting dpms mode 3 on TV encoder (output 3)
[    2.381264] [drm] nouveau 0000:01:00.0: allocated 1680x1050 fb: 0x49000, bo f4c9ce00
[    2.382853] fbcon: nouveaufb (fb1) is primary device
[    2.384368] fbcon: Remapping primary device, fb1, to tty 1-63
[    2.396793] [drm] nouveau 0000:01:00.0: Setting dpms mode 0 on vga encoder (output 0)
[    2.396799] [drm] nouveau 0000:01:00.0: Output VGA-2 is running on CRTC 0 using output A
[    2.407710] [drm] nouveau 0000:01:00.0: Setting dpms mode 0 on vga encoder (output 1)
[    2.407716] [drm] nouveau 0000:01:00.0: Output DVI-I-1 is running on CRTC 1 using output B
[    2.494126] [drm] nouveau 0000:01:00.0: GPU lockup - switching to software fbcon
[    9.453105] fb1: nouveaufb frame buffer device
[    9.453401] [drm] Initialized nouveau 0.0.16 20090420 for 0000:01:00.0 on minor 1
[    9.453949] parport_pc 00:09: reported by Plug and Play ACPI
[    9.454328] parport0: PC-style at 0x278, irq 5 [PCSPP,TRISTATE]
[    9.548380] parport_pc 0000:01:02.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
[    9.548822] PCI parallel port detected: 9710:9805, I/O at 0xd000(0xd100), IRQ 17
[    9.548858] parport1: PC-style at 0xd000 (0xd100), irq 17 [PCSPP,TRISTATE]
[    9.663809] FDC 0 is a post-1991 82077
[    9.666298] loop: module loaded
[    9.666528] Loading iSCSI transport class v2.0-870.
[    9.667005] bnx2fc: Broadcom NetXtreme II FCoE Driver bnx2fc v1.0.4 (Jun 23, 2011)
[    9.667543] libcxgbi:libcxgbi_init_module: tag itt 0x1fff, 13 bits, age 0xf, 4 bits.
[    9.668044] libcxgbi:ddp_setup_host_page_size: system PAGE 4096, ddp idx 0.
[    9.684456] Chelsio T3 iSCSI Driver cxgb3i v2.0.0 (Jun. 2010)
[    9.700965] iscsi: registered transport (cxgb3i)
[    9.717192] Chelsio T4 iSCSI Driver cxgb4i v0.9.1 (Aug. 2010)
[    9.733594] iscsi: registered transport (cxgb4i)
[    9.749668] Broadcom NetXtreme II iSCSI Driver bnx2i v2.7.0.3 (Jun 15, 2011)
[    9.766197] iscsi: registered transport (bnx2i)
[    9.782546] ata_piix 0000:00:1f.1: version 2.13
[    9.782571] ata_piix 0000:00:1f.1: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[    9.799410] ata_piix 0000:00:1f.1: setting latency timer to 64
[    9.799859] scsi0 : ata_piix
[    9.816644] scsi1 : ata_piix
[    9.834128] ata1: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0xf000 irq 14
[    9.851072] ata2: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0xf008 irq 15
[    9.867989] ata_piix 0000:00:1f.2: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[    9.885191] ata_piix 0000:00:1f.2: MAP [ P0 -- P1 -- ]
[    9.902491] ata_piix 0000:00:1f.2: setting latency timer to 64
[    9.902862] scsi2 : ata_piix
[    9.920158] scsi3 : ata_piix
[    9.937925] ata3: SATA max UDMA/133 cmd 0xe500 ctl 0xe600 bmdma 0xe900 irq 18
[    9.955378] ata4: SATA max UDMA/133 cmd 0xe700 ctl 0xe800 bmdma 0xe908 irq 18
[    9.972953] cnic: Broadcom NetXtreme II CNIC Driver cnic v2.5.7 (July 20, 2011)
[    9.990979] 8139cp: 8139cp: 10/100 PCI Ethernet driver v1.3 (Mar 22, 2004)
[   10.009044] 8139cp 0000:01:0b.0: This (id 10ec:8139 rev 10) is not an 8139C+ compatible chip, use 8139too
[   10.027997] 8139too: 8139too Fast Ethernet driver 0.9.28
[   10.047217] ata1.01: ATA-6: WDC WD800BB-55JHC0, 05.01C05, max UDMA/100
[   10.066348] ata1.01: 156301488 sectors, multi 16: LBA 
[   10.086002] 8139too 0000:01:0b.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23
[   10.106672] 8139too 0000:01:0b.0: eth0: RealTek RTL8139 at 0xd600, 00:16:17:3c:85:76, IRQ 23
[   10.126440] ata2.00: ATA-6: WDC WD2500JB-00EVA0, 15.05R15, max UDMA/100
[   10.146615] ata2.00: 488397168 sectors, multi 16: LBA48 
[   10.167000] ata1.01: configured for UDMA/100
[   10.186862] scsi 0:0:1:0: Direct-Access     ATA      WDC WD800BB-55JH 05.0 PQ: 0 ANSI: 5
[   10.206982] tun: Universal TUN/TAP device driver, 1.6
[   10.226910] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[   10.247266] ata2.01: ATA-5: WDC WD800BB-00CAA1, 17.07W17, max UDMA/100
[   10.267525] ata2.01: 156301488 sectors, multi 16: LBA 
[   10.287656] ata4.00: ATA-8: WDC WD15EARS-00MVWB0, 51.0AB51, max UDMA/133
[   10.307906] ata4.00: 2930277168 sectors, multi 16: LBA48 NCQ (depth 0/32)
[   10.328405] ata3.00: ATA-8: WDC WD15EARS-00MVWB0, 51.0AB51, max UDMA/133
[   10.349081] ata3.00: 2930277168 sectors, multi 16: LBA48 NCQ (depth 0/32)
[   10.370106] sd 0:0:1:0: Attached scsi generic sg0 type 0
[   10.390709] sd 0:0:1:0: [sda] 156301488 512-byte logical blocks: (80.0 GB/74.5 GiB)
[   10.411535] sd 0:0:1:0: [sda] Write Protect is off
[   10.431988] sd 0:0:1:0: [sda] Mode Sense: 00 3a 00 00
[   10.432347] Solarflare NET driver v3.1
[   10.453442] sd 0:0:1:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   10.474570] ata2.00: configured for UDMA/100
[   10.496305] ata3.00: configured for UDMA/133
[   10.517649] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[   10.539483] ehci_hcd 0000:00:1d.7: PCI INT D -> GSI 23 (level, low) -> IRQ 23
[   10.561122] ata4.00: configured for UDMA/133
[   10.582240] ata2.01: configured for UDMA/100
[   10.603099]  sda: sda1 sda2
[   10.623778] scsi 1:0:0:0: Direct-Access     ATA      WDC WD2500JB-00E 15.0 PQ: 0 ANSI: 5
[   10.644929] ehci_hcd 0000:00:1d.7: setting latency timer to 64
[   10.644935] ehci_hcd 0000:00:1d.7: EHCI Host Controller
[   10.666541] sd 0:0:1:0: [sda] Attached SCSI disk
[   10.687587] sd 1:0:0:0: Attached scsi generic sg1 type 0
[   10.708297] ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 1
[   10.729328] sd 1:0:0:0: [sdb] 488397168 512-byte logical blocks: (250 GB/232 GiB)
[   10.750735] scsi 1:0:1:0: Direct-Access     ATA      WDC WD800BB-00CA 17.0 PQ: 0 ANSI: 5
[   10.775706] ehci_hcd 0000:00:1d.7: cache line size of 32 is not supported
[   10.775738] ehci_hcd 0000:00:1d.7: irq 23, io mem 0xfb080000
[   10.800990] sd 1:0:0:0: [sdb] Write Protect is off
[   10.821772] sd 1:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[   10.822004] sd 1:0:1:0: [sdc] 156301488 512-byte logical blocks: (80.0 GB/74.5 GiB)
[   10.843276] sd 1:0:1:0: Attached scsi generic sg2 type 0
[   10.864674] sd 1:0:1:0: [sdc] Write Protect is off
[   10.885610] sd 1:0:1:0: [sdc] Mode Sense: 00 3a 00 00
[   10.885619] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00
[   10.906563] sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   10.928149] scsi 2:0:0:0: Direct-Access     ATA      WDC WD15EARS-00M 51.0 PQ: 0 ANSI: 5
[   10.949633] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[   10.971037] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   10.992260] usb usb1: Product: EHCI Host Controller
[   11.013479] usb usb1: Manufacturer: Linux 3.1.0-rc6-ga51d43c ehci_hcd
[   11.034832] usb usb1: SerialNumber: 0000:00:1d.7
[   11.055826] sd 1:0:1:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   11.077381] sd 2:0:0:0: [sdd] 2930277168 512-byte logical blocks: (1.50 TB/1.36 TiB)
[   11.099003] sd 2:0:0:0: Attached scsi generic sg3 type 0
[   11.121011] sd 2:0:0:0: [sdd] Write Protect is off
[   11.142327] sd 2:0:0:0: [sdd] Mode Sense: 00 3a 00 00
[   11.142897] scsi 3:0:0:0: Direct-Access     ATA      WDC WD15EARS-00M 51.0 PQ: 0 ANSI: 5
[   11.164844]  sdb: sdb1 sdb2
[   11.186657] sd 2:0:0:0: [sdd] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   11.209144] sd 3:0:0:0: [sde] 2930277168 512-byte logical blocks: (1.50 TB/1.36 TiB)
[   11.231642] sd 3:0:0:0: Attached scsi generic sg4 type 0
[   11.254080]  sdc: sdc1 sdc2
[   11.276753] sd 1:0:0:0: [sdb] Attached SCSI disk
[   11.299427] sd 3:0:0:0: [sde] Write Protect is off
[   11.321629] sd 3:0:0:0: [sde] Mode Sense: 00 3a 00 00
[   11.322622] sd 1:0:1:0: [sdc] Attached SCSI disk
[   11.344643] sd 3:0:0:0: [sde] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   11.367131] hub 1-0:1.0: USB hub found
[   11.389458] hub 1-0:1.0: 8 ports detected
[   11.411318] uhci_hcd: USB Universal Host Controller Interface driver
[   11.433443] uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[   11.455283] uhci_hcd 0000:00:1d.0: setting latency timer to 64
[   11.455288] uhci_hcd 0000:00:1d.0: UHCI Host Controller
[   11.477048] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
[   11.498866] uhci_hcd 0000:00:1d.0: irq 16, io base 0x0000e000
[   11.520440] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001
[   11.542024] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   11.563686] usb usb2: Product: UHCI Host Controller
[   11.584951] usb usb2: Manufacturer: Linux 3.1.0-rc6-ga51d43c uhci_hcd
[   11.606430] usb usb2: SerialNumber: 0000:00:1d.0
[   11.627876] hub 2-0:1.0: USB hub found
[   11.649233] hub 2-0:1.0: 2 ports detected
[   11.670385] uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[   11.691802] uhci_hcd 0000:00:1d.1: setting latency timer to 64
[   11.691807] uhci_hcd 0000:00:1d.1: UHCI Host Controller
[   11.713164] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 3
[   11.734686] uhci_hcd 0000:00:1d.1: irq 19, io base 0x0000e100
[   11.755933] usb 1-2: new high speed USB device number 2 using ehci_hcd
[   11.776866]  sdd: sdd1 sdd2
[   11.797783] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
[   11.818837] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   11.839804] usb usb3: Product: UHCI Host Controller
[   11.860283] usb usb3: Manufacturer: Linux 3.1.0-rc6-ga51d43c uhci_hcd
[   11.881222] usb usb3: SerialNumber: 0000:00:1d.1
[   11.902211]  sde: sde1 sde2
[   11.923347] sd 2:0:0:0: [sdd] Attached SCSI disk
[   11.944075] hub 3-0:1.0: USB hub found
[   11.965131] sd 3:0:0:0: [sde] Attached SCSI disk
[   11.986052] hub 3-0:1.0: 2 ports detected
[   12.006755] uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
[   12.027519] uhci_hcd 0000:00:1d.2: setting latency timer to 64
[   12.027524] uhci_hcd 0000:00:1d.2: UHCI Host Controller
[   12.048343] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 4
[   12.069100] uhci_hcd 0000:00:1d.2: irq 18, io base 0x0000e200
[   12.089795] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001
[   12.110241] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   12.130646] usb usb4: Product: UHCI Host Controller
[   12.150623] usb usb4: Manufacturer: Linux 3.1.0-rc6-ga51d43c uhci_hcd
[   12.170801] usb usb4: SerialNumber: 0000:00:1d.2
[   12.190873] hub 4-0:1.0: USB hub found
[   12.210763] hub 4-0:1.0: 2 ports detected
[   12.230784] uhci_hcd 0000:00:1d.3: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[   12.250762] uhci_hcd 0000:00:1d.3: setting latency timer to 64
[   12.250767] uhci_hcd 0000:00:1d.3: UHCI Host Controller
[   12.270784] uhci_hcd 0000:00:1d.3: new USB bus registered, assigned bus number 5
[   12.290470] uhci_hcd 0000:00:1d.3: irq 16, io base 0x0000e300
[   12.309971] usb usb5: New USB device found, idVendor=1d6b, idProduct=0001
[   12.329576] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   12.348924] usb usb5: Product: UHCI Host Controller
[   12.368037] usb usb5: Manufacturer: Linux 3.1.0-rc6-ga51d43c uhci_hcd
[   12.387468] usb usb5: SerialNumber: 0000:00:1d.3
[   12.406531] usb 1-2: New USB device found, idVendor=4971, idProduct=cb01
[   12.425600] usb 1-2: New USB device strings: Mfr=2, Product=3, SerialNumber=4
[   12.444806] usb 1-2: Product: USB Mass Storage Device 
[   12.463858] usb 1-2: Manufacturer: Genesyslogic
[   12.482625] usb 1-2: SerialNumber: 0904100025
[   12.501299] hub 5-0:1.0: USB hub found
[   12.519665] hub 5-0:1.0: 2 ports detected
[   12.537861] usbcore: registered new interface driver uas
[   12.555941] Initializing USB Mass Storage driver...
[   12.573868] usbcore: registered new interface driver usb-storage
[   12.592072] USB Mass Storage support registered.
[   12.610443] usbcore: registered new interface driver appledisplay
[   12.628922] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
[   12.649908] serio: i8042 KBD port at 0x60,0x64 irq 1
[   12.668281] serio: i8042 AUX port at 0x60,0x64 irq 12
[   12.686882] mousedev: PS/2 mouse device common for all mice
[   12.705203] scsi4 : usb-storage 1-2:1.0
[   12.723926] input: PC Speaker as /devices/platform/pcspkr/input/input2
[   12.742377] rtc_cmos 00:03: RTC can wake from S4
[   12.760923] rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0
[   12.779686] rtc0: alarms up to one month, 242 bytes nvram, hpet irqs
[   12.798185] i801_smbus 0000:00:1f.3: PCI INT B -> GSI 17 (level, low) -> IRQ 17
[   12.816685] Linux media interface: v0.10
[   12.835186] lirc_dev: IR Remote Control driver registered, major 248 
[   12.853919] Linux video capture interface: v2.00
[   12.872515] i2c-core: driver [tuner] using legacy suspend method
[   12.891102] i2c-core: driver [tuner] using legacy resume method
[   12.909960] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input3
[   12.929140] i2c-core: driver [msp3400] using legacy suspend method
[   12.948144] i2c-core: driver [msp3400] using legacy resume method
[   12.967090] bttv: driver version 0.9.19 loaded
[   12.985845] bttv: using 8 buffers with 2080k (520 pages) each for capture
[   13.005279] usb 1-5: new high speed USB device number 4 using ehci_hcd
[   13.024048] saa7130/34: v4l2 driver version 0, 2, 17 loaded
[   13.043078] cx88/0: cx2388x v4l2 driver version 0.0.9 loaded
[   13.062151] cx2388x alsa driver version 0.0.9 loaded
[   13.081113] usbcore: registered new interface driver em28xx
[   13.099636] em28xx driver loaded
[   13.118541] Em28xx: Initialized (Em28xx Audio Extension) extension
[   13.137565] usbcore: registered new interface driver poseidon
[   13.156353] cx231xx v4l2 driver loaded.
[   13.175335] usbcore: registered new interface driver cx231xx
[   13.194498] cx231xx: Cx231xx Audio Extension initialized
[   13.213669] ivtv: Start initialization, version 1.4.3
[   13.232620] ivtv: End initialization
[   13.251605] cx18:  Start initialization, version 1.5.1
[   13.270689] cx18:  End initialization
[   13.289443] cx18-alsa: module loading...
[   13.308089] cx23885 driver version 0.0.3 loaded
[   13.326940] au0828 driver loaded
[   13.345632] usbcore: registered new interface driver au0828
[   13.364188] saa7164 driver loaded
[   13.382663] : you must load the snd-miro driver first!
[   13.401453] bt878: AUDIO driver version 0.0.0 loaded
[   13.420447] md: raid1 personality registered for level 1
[   13.439193] md: raid6 personality registered for level 6
[   13.457620] md: raid5 personality registered for level 5
[   13.475941] md: raid4 personality registered for level 4
[   13.494351] device-mapper: ioctl: 4.21.0-ioctl (2011-07-06) initialised: dm-devel@redhat.com
[   13.512849] cpuidle: using governor ladder
[   13.531285] cpuidle: using governor menu
[   13.549563] usb 1-5: New USB device found, idVendor=0781, idProduct=5150
[   13.567856] usb 1-5: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[   13.586200] usb 1-5: Product: Cruzer Mini
[   13.604203] usb 1-5: Manufacturer: SanDisk Corporation
[   13.622283] usb 1-5: SerialNumber: SNDK5023A525CC608703
[   13.640160] usbcore: registered new interface driver usbhid
[   13.658181] usbhid: USB HID core driver
[   13.679322] Error: Driver 'pcspkr' is already registered, aborting...
[   13.697992] snd_intel8x0 0000:00:1f.5: PCI INT B -> GSI 17 (level, low) -> IRQ 17
[   13.716757] snd_intel8x0 0000:00:1f.5: setting latency timer to 64
[   13.716814] scsi5 : usb-storage 1-5:1.0
[   13.737583] scsi 4:0:0:0: Direct-Access     ST980815 A                0811 PQ: 0 ANSI: 0
[   13.757738] sd 4:0:0:0: Attached scsi generic sg5 type 0
[   13.776835] sd 4:0:0:0: [sdf] 156301488 512-byte logical blocks: (80.0 GB/74.5 GiB)
[   13.797066] sd 4:0:0:0: [sdf] Test WP failed, assume Write Enabled
[   13.816815] sd 4:0:0:0: [sdf] Cache data unavailable
[   13.835323] sd 4:0:0:0: [sdf] Assuming drive cache: write through
[   13.853832] usb 1-7: new high speed USB device number 5 using ehci_hcd
[   13.874312] sd 4:0:0:0: [sdf] Test WP failed, assume Write Enabled
[   13.894314] sd 4:0:0:0: [sdf] Cache data unavailable
[   13.912911] sd 4:0:0:0: [sdf] Assuming drive cache: write through
[   14.036676] usb 1-7: New USB device found, idVendor=0a48, idProduct=3220
[   14.055231] usb 1-7: New USB device strings: Mfr=2, Product=3, SerialNumber=4
[   14.073682] usb 1-7: Product: MEDIA BAY USB2.0
[   14.092181] usb 1-7: Manufacturer: IOI 
[   14.110376] usb 1-7: SerialNumber: 00059
[   14.128393] intel8x0_measure_ac97_clock: measured 134917 usecs (6487 samples)
[   14.146583] intel8x0: clocking to 48000
[   14.164728]  sdf: sdf1
[   14.183708] usbcore: registered new interface driver snd-usb-audio
[   14.201980] ALSA device list:
[   14.220000]   #0: Dummy 1
[   14.237561]   #1: Loopback 1
[   14.255179]   #2: Virtual MIDI Card 1
[   14.272527]   #3: Intel ICH5 with ALC655 at irq 17
[   14.290013] scsi6 : usb-storage 1-7:1.0
[   14.308515] TCP cubic registered
[   14.325895] NET: Registered protocol family 10
[   14.344190] sd 4:0:0:0: [sdf] Test WP failed, assume Write Enabled
[   14.361558] Mobile IPv6
[   14.378723] NET: Registered protocol family 17
[   14.396739] sctp: Hash tables configured (established 65536 bind 65536)
[   14.414114] Registering the dns_resolver key type
[   14.431451] Using IPI No-Shortcut mode
[   14.448856] sd 4:0:0:0: [sdf] Cache data unavailable
[   14.465938] sd 4:0:0:0: [sdf] Assuming drive cache: write through
[   14.482996] sd 4:0:0:0: [sdf] Attached SCSI disk
[   14.500070] PM: Hibernation image not present or could not be loaded.
[   14.500089] registered taskstats version 1
[   14.522327] rtc_cmos 00:03: setting system clock to 2011-09-23 22:58:50 UTC (1316818730)
[   14.539629] saa7134 ALSA driver for DMA sound loaded
[   14.557118] saa7134 ALSA: no saa7134 cards found
[   14.574681] ondemand governor failed, too long transition latency of HW, fallback to performance governor
[   14.592844] p4-clockmod: P4/Xeon(TM) CPU On-Demand Clock Modulation available
[   14.611202] Initializing network drop monitor service
[   14.629513] usb 3-1: new full speed USB device number 2 using uhci_hcd
[   14.732831] scsi 5:0:0:0: Direct-Access     SanDisk  Cruzer Mini      0.2  PQ: 0 ANSI: 2
[   14.752854] sd 5:0:0:0: Attached scsi generic sg6 type 0
[   14.771708] sd 5:0:0:0: [sdg] 2001888 512-byte logical blocks: (1.02 GB/977 MiB)
[   14.790940] sd 5:0:0:0: [sdg] Write Protect is off
[   14.809661] sd 5:0:0:0: [sdg] Mode Sense: 03 00 00 00
[   14.810440] sd 5:0:0:0: [sdg] No Caching mode page present
[   14.829343] sd 5:0:0:0: [sdg] Assuming drive cache: write through
[   14.851187] sd 5:0:0:0: [sdg] No Caching mode page present
[   14.869999] sd 5:0:0:0: [sdg] Assuming drive cache: write through
[   14.889607]  sdg: sdg1
[   14.910936] sd 5:0:0:0: [sdg] No Caching mode page present
[   14.929646] sd 5:0:0:0: [sdg] Assuming drive cache: write through
[   14.948393] sd 5:0:0:0: [sdg] Attached SCSI removable disk
[   15.008775] usb 3-1: New USB device found, idVendor=1532, idProduct=010e
[   15.027611] usb 3-1: New USB device strings: Mfr=1, Product=1, SerialNumber=0
[   15.046508] usb 3-1: Product: Razer BlackWidow
[   15.065370] usb 3-1: Manufacturer: Razer BlackWidow
[   15.090158] input: Razer BlackWidow Razer BlackWidow as /devices/pci0000:00/0000:00:1d.1/usb3/3-1/3-1:1.0/input/input4
[   15.109920] generic-usb 0003:1532:010E.0001: input,hidraw0: USB HID v1.11 Keyboard [Razer BlackWidow Razer BlackWidow] on usb-0000:00:1d.1-1/input0
[   15.133921] input: Razer BlackWidow Razer BlackWidow as /devices/pci0000:00/0000:00:1d.1/usb3/3-1/3-1:1.1/input/input5
[   15.154370] generic-usb 0003:1532:010E.0002: input,hidraw1: USB HID v1.11 Device [Razer BlackWidow Razer BlackWidow] on usb-0000:00:1d.1-1/input1
[   15.179900] input: Razer BlackWidow Razer BlackWidow as /devices/pci0000:00/0000:00:1d.1/usb3/3-1/3-1:1.2/input/input6
[   15.201237] generic-usb 0003:1532:010E.0003: input,hidraw2: USB HID v1.11 Mouse [Razer BlackWidow Razer BlackWidow] on usb-0000:00:1d.1-1/input2
[   15.305456] scsi 6:0:0:0: Direct-Access     Generic  STORAGE DEVICE   0113 PQ: 0 ANSI: 0
[   15.328331] scsi 6:0:0:1: Direct-Access     Generic  STORAGE DEVICE   0113 PQ: 0 ANSI: 0
[   15.350828] scsi 6:0:0:2: Direct-Access     Generic  STORAGE DEVICE   0113 PQ: 0 ANSI: 0
[   15.373078] scsi 6:0:0:3: Direct-Access     Generic  STORAGE DEVICE   0113 PQ: 0 ANSI: 0
[   15.395410] sd 6:0:0:0: Attached scsi generic sg7 type 0
[   15.416706] sd 6:0:0:1: Attached scsi generic sg8 type 0
[   15.438178] sd 6:0:0:2: Attached scsi generic sg9 type 0
[   15.459147] sd 6:0:0:3: Attached scsi generic sg10 type 0
[   15.489437] sd 6:0:0:2: [sdj] Attached SCSI removable disk
[   15.511189] sd 6:0:0:0: [sdh] Attached SCSI removable disk
[   15.532315] sd 6:0:0:1: [sdi] Attached SCSI removable disk
[   15.552256] input: ImPS/2 Generic Wheel Mouse as /devices/platform/i8042/serio1/input/input7
[   15.573446] sd 6:0:0:3: [sdk] Attached SCSI removable disk
[   15.593737] md: Waiting for all devices to be available before autodetect
[   15.613944] md: If you don't use raid, use raid=noautodetect
[   15.634643] md: Autodetecting RAID arrays.
[   15.679645] md: invalid raid superblock magic on sda1
[   15.699997] md: sda1 does not have a valid v0.90 superblock, not importing!
[   15.735243] md: invalid raid superblock magic on sdb2
[   15.755898] md: sdb2 does not have a valid v0.90 superblock, not importing!
[   15.812164] md: invalid raid superblock magic on sdd2
[   15.833276] md: sdd2 does not have a valid v0.90 superblock, not importing!
[   15.884854] md: invalid raid superblock magic on sde2
[   15.906152] md: sde2 does not have a valid v0.90 superblock, not importing!
[   15.927790] md: Scanned 5 and added 1 devices.
[   15.949097] md: autorun ...
[   15.970369] md: considering sdc1 ...
[   15.991451] md:  adding sdc1 ...
[   16.012202] md: created md0
[   16.033033] md: bind<sdc1>
[   16.053846] md: running: <sdc1>
[   16.074412] bio: create slab <bio-1> at 1
[   16.094951] md/raid1:md0: active with 1 out of 2 mirrors
[   16.115681] md0: detected capacity change from 0 to 79249408000
[   16.136531] md: ... autorun DONE.
[   16.176033]  md0:
[   16.219652] EXT4-fs (md0): mounted filesystem with ordered data mode. Opts: (null)
[   16.240192] VFS: Mounted root (ext4 filesystem) readonly on device 9:0.
[   16.260700] Freeing unused kernel memory: 452k freed
[   16.281140] Write protecting the kernel text: 6644k
[   16.301295] Write protecting the kernel read-only data: 2936k
[   16.321285] NX-protecting the kernel data: 5644k
[   17.065694] udevd[85]: starting version 173
[   18.397564] md: bind<sdd2>
[   18.430616] md: bind<sde2>
[   18.473952] md: bind<sda1>
[   18.496838] md/raid1:md127: active with 2 out of 2 mirrors
[   18.517634] md127: detected capacity change from 0 to 1498800419840
[   18.542762] md/raid1:md126: active with 1 out of 2 mirrors
[   18.562879] md126: detected capacity change from 0 to 79248475648
[   18.588623]  md127: unknown partition table
[   18.609214]  md126: unknown partition table
[   19.567070] EXT4-fs (md0): re-mounted. Opts: (null)
[   19.700760] EXT4-fs (md0): re-mounted. Opts: (null)
[   19.873991] EXT4-fs (md0): re-mounted. Opts: (null)
[   19.953407] Adding 755048k swap on /dev/sdc2.  Priority:-1 extents:1 across:755048k 



Create a new paste based on this one


Comments: