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
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Linux version 3.9.0-rc2uvd+ (root@tux) (gcc version 4.6.3 (Gentoo 4.6.3 p1.6, pie-0.5.2) ) #2 SMP Tue Apr 9 20:15:58 CLST 2013
[    0.000000] Command line: BOOT_IMAGE=/vmlinuz-3.9.0-rc2uvd+ enc_root=/dev/sda lvm luks root=/dev/mapper/vg-root rootfstype=ext4 ipv6.disable=1 quiet root=/dev/mapper/vg-root rootfstype=ext4
[    0.000000] e820: BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009f7ff] usable
[    0.000000] BIOS-e820: [mem 0x000000000009f800-0x000000000009ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000a6a3efff] usable
[    0.000000] BIOS-e820: [mem 0x00000000a6a3f000-0x00000000a6abefff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000a6abf000-0x00000000a6ebefff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000a6ebf000-0x00000000a6ef5fff] ACPI data
[    0.000000] BIOS-e820: [mem 0x00000000a6ef6000-0x00000000a6efffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000a6f00000-0x00000000beffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fec10000-0x00000000fec10fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ffe00000-0x00000000ffffffff] reserved
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] SMBIOS 2.7 present.
[    0.000000] DMI: Hewlett-Packard HP Pavilion dm1 Notebook PC     /1611, BIOS F.03 12/20/2010
[    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] No AGP bridge found
[    0.000000] e820: last_pfn = 0xa6f00 max_arch_pfn = 0x400000000
[    0.000000] MTRR default type: uncachable
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-BFFFF uncachable
[    0.000000]   C0000-FFFFF write-through
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 000000000 mask F80000000 write-back
[    0.000000]   1 base 080000000 mask FE0000000 write-back
[    0.000000]   2 base 0A0000000 mask FF8000000 write-back
[    0.000000]   3 base 0A6EBD000 mask FFFFFF000 uncachable
[    0.000000]   4 base 0FFE00000 mask FFFE00000 write-protect
[    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 [mem 0x000fe1b0-0x000fe1bf] mapped at [ffff8800000fe1b0]
[    0.000000] Scanning 1 areas for low memory corruption
[    0.000000] Base memory trampoline at [ffff880000099000] 99000 size 24576
[    0.000000] Using GB pages for direct mapping
[    0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
[    0.000000]  [mem 0x00000000-0x000fffff] page 4k
[    0.000000] BRK [0x022c1000, 0x022c1fff] PGTABLE
[    0.000000] BRK [0x022c2000, 0x022c2fff] PGTABLE
[    0.000000] BRK [0x022c3000, 0x022c3fff] PGTABLE
[    0.000000] init_memory_mapping: [mem 0xa6800000-0xa69fffff]
[    0.000000]  [mem 0xa6800000-0xa69fffff] page 2M
[    0.000000] BRK [0x022c4000, 0x022c4fff] PGTABLE
[    0.000000] init_memory_mapping: [mem 0xa4000000-0xa67fffff]
[    0.000000]  [mem 0xa4000000-0xa67fffff] page 2M
[    0.000000] init_memory_mapping: [mem 0x80000000-0xa3ffffff]
[    0.000000]  [mem 0x80000000-0xa3ffffff] page 2M
[    0.000000] init_memory_mapping: [mem 0x00100000-0x7fffffff]
[    0.000000]  [mem 0x00100000-0x001fffff] page 4k
[    0.000000]  [mem 0x00200000-0x3fffffff] page 2M
[    0.000000]  [mem 0x40000000-0x7fffffff] page 1G
[    0.000000] init_memory_mapping: [mem 0xa6a00000-0xa6a3efff]
[    0.000000]  [mem 0xa6a00000-0xa6a3efff] page 4k
[    0.000000] BRK [0x022c5000, 0x022c5fff] PGTABLE
[    0.000000] init_memory_mapping: [mem 0xa6ef6000-0xa6efffff]
[    0.000000]  [mem 0xa6ef6000-0xa6efffff] page 4k
[    0.000000] RAMDISK: [mem 0x37c5c000-0x37e25fff]
[    0.000000] ACPI: RSDP 00000000000fe020 00024 (v02 HPQOEM)
[    0.000000] ACPI: XSDT 00000000a6ef5120 00064 (v01 HPQOEM SLIC-MPC 00000003      01000013)
[    0.000000] ACPI: FACP 00000000a6ef4000 000F4 (v04 HPQOEM SLIC-MPC 00000003 ACPI 00040000)
[    0.000000] ACPI: DSDT 00000000a6ee8000 08F30 (v01 HP     INSYDE   F0000000 ACPI 00040000)
[    0.000000] ACPI: FACS 00000000a6c96000 00040
[    0.000000] ACPI: HPET 00000000a6ef3000 00038 (v01 HP     INSYDE   00000001 ACPI 00040000)
[    0.000000] ACPI: APIC 00000000a6ef2000 00084 (v02 HP     INSYDE   00000001 ACPI 00040000)
[    0.000000] ACPI: MCFG 00000000a6ef1000 0003C (v01 HP     INSYDE   00000001 ACPI 00040000)
[    0.000000] ACPI: BOOT 00000000a6ee7000 00028 (v01 HP     INSYDE   00000001 ACPI 00040000)
[    0.000000] ACPI: SLIC 00000000a6ee6000 00176 (v01 HPQOEM SLIC-MPC 00000001 ACPI 00040000)
[    0.000000] ACPI: SSDT 00000000a6ee5000 003DE (v01 HP     INSYDE   00000001 AMD  00000001)
[    0.000000] ACPI: SSDT 00000000a6ee3000 012FA (v02 HP     INSYDE   00000001 MSFT 04000000)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] No NUMA configuration found
[    0.000000] Faking a node at [mem 0x0000000000000000-0x00000000a6efffff]
[    0.000000] Initmem setup node 0 [mem 0x00000000-0xa6efffff]
[    0.000000]   NODE_DATA [mem 0xa6efc000-0xa6efffff]
[    0.000000]  [ffffea0000000000-ffffea00029fffff] PMD -> [ffff8800a3800000-ffff8800a61fffff] on node 0
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x00001000-0x00ffffff]
[    0.000000]   DMA32    [mem 0x01000000-0xffffffff]
[    0.000000]   Normal   empty
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x00001000-0x0009efff]
[    0.000000]   node   0: [mem 0x00100000-0xa6a3efff]
[    0.000000]   node   0: [mem 0xa6ef6000-0xa6efffff]
[    0.000000] On node 0 totalpages: 682471
[    0.000000]   DMA zone: 64 pages used for memmap
[    0.000000]   DMA zone: 21 pages reserved
[    0.000000]   DMA zone: 3998 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 10620 pages used for memmap
[    0.000000]   DMA32 zone: 678473 pages, LIFO batch:31
[    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] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x00] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x00] 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: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[    0.000000] ACPI: IOAPIC (id[0x04] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 4, version 33, 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 low level)
[    0.000000] ACPI: IRQ0 used by override.
[    0.000000] ACPI: IRQ2 used by override.
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x43538210 base: 0xfed00000
[    0.000000] smpboot: Allowing 4 CPUs, 2 hotplug CPUs
[    0.000000] nr_irqs_gsi: 40
[    0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
[    0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000
[    0.000000] PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
[    0.000000] PM: Registered nosave memory: 00000000a6a3f000 - 00000000a6abf000
[    0.000000] PM: Registered nosave memory: 00000000a6abf000 - 00000000a6ebf000
[    0.000000] PM: Registered nosave memory: 00000000a6ebf000 - 00000000a6ef6000
[    0.000000] e820: [mem 0xbf000000-0xf7ffffff] available for PCI devices
[    0.000000] setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:4 nr_node_ids:1
[    0.000000] PERCPU: Embedded 27 pages/cpu @ffff8800a6800000 s80192 r8192 d22208 u524288
[    0.000000] pcpu-alloc: s80192 r8192 d22208 u524288 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 0 1 2 3 
[    0.000000] Built 1 zonelists in Node order, mobility grouping on.  Total pages: 671766
[    0.000000] Policy zone: DMA32
[    0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz-3.9.0-rc2uvd+ enc_root=/dev/sda lvm luks root=/dev/mapper/vg-root rootfstype=ext4 ipv6.disable=1 quiet root=/dev/mapper/vg-root rootfstype=ext4
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] __ex_table already sorted, skipping sort
[    0.000000] Checking aperture...
[    0.000000] No AGP bridge found
[    0.000000] Calgary: detecting Calgary via BIOS EBDA area
[    0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
[    0.000000] Memory: 2665132k/2735104k available (9710k kernel code, 5220k absent, 64752k reserved, 7577k data, 896k init)
[    0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[    0.000000] Hierarchical RCU implementation.
[    0.000000] 	RCU restricting CPUs from NR_CPUS=64 to nr_cpu_ids=4.
[    0.000000] NR_IRQS:4352 nr_irqs:712 16
[    0.000000] spurious 8259A interrupt: IRQ7.
[    0.000000] Console: colour VGA+ 80x25
[    0.000000] console [tty0] enabled
[    0.000000] hpet clockevent registered
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.001000] tsc: Detected 1596.117 MHz processor
[    0.000006] Calibrating delay loop (skipped), value calculated using timer frequency.. 3192.23 BogoMIPS (lpj=1596117)
[    0.000012] pid_max: default: 32768 minimum: 301
[    0.000057] Security Framework initialized
[    0.000064] SELinux:  Initializing.
[    0.000077] SELinux:  Starting in permissive mode
[    0.000621] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
[    0.003622] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
[    0.005102] Mount-cache hash table entries: 256
[    0.005504] Initializing cgroup subsys cpuacct
[    0.005512] Initializing cgroup subsys freezer
[    0.005558] tseg: 00a6f00000
[    0.005562] CPU: Physical Processor ID: 0
[    0.005564] CPU: Processor Core ID: 0
[    0.005567] mce: CPU supports 6 MCE banks
[    0.005583] Last level iTLB entries: 4KB 512, 2MB 8, 4MB 4
[    0.005583] Last level dTLB entries: 4KB 512, 2MB 8, 4MB 4
[    0.005583] tlb_flushall_shift: 5
[    0.005811] Freeing SMP alternatives: 32k freed
[    0.005832] ACPI: Core revision 20130117
[    0.012656] ACPI: All ACPI Tables successfully acquired
[    0.018852] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.028867] smpboot: CPU0: AMD E-350 Processor (fam: 14, model: 01, stepping: 00)
[    0.481728] APIC calibration not consistent with PM-Timer: 450ms instead of 100ms
[    0.481731] APIC delta adjusted to PM-Timer: 1246875 (5623316)
[    0.481757] Performance Events: AMD PMU driver.
[    0.481766] ... version:                0
[    0.481768] ... bit width:              48
[    0.481770] ... generic registers:      4
[    0.481773] ... value mask:             0000ffffffffffff
[    0.481775] ... max period:             00007fffffffffff
[    0.481777] ... fixed-purpose events:   0
[    0.481780] ... event mask:             000000000000000f
[    0.482179] MCE: In-kernel MCE decoding enabled.
[    0.482412] smpboot: Booting Node   0, Processors  #1
[    0.495598] Brought up 2 CPUs
[    0.495603] smpboot: Total of 2 processors activated (6384.46 BogoMIPS)
[    0.496550] devtmpfs: initialized
[    0.497354] PM: Registering ACPI NVS region [mem 0xa6abf000-0xa6ebefff] (4194304 bytes)
[    0.497866] RTC time: 23:18:34, date: 04/09/13
[    0.497974] NET: Registered protocol family 16
[    0.498608] kworker/u:0 (19) used greatest stack depth: 6664 bytes left
[    0.499607] kworker/u:0 (28) used greatest stack depth: 6456 bytes left
[    0.500242] ACPI: bus type PCI registered
[    0.500601] kworker/u:0 (31) used greatest stack depth: 6072 bytes left
[    0.500674] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
[    0.500680] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
[    0.504767] PCI: Using configuration type 1 for base access
[    0.514675] kworker/u:0 (101) used greatest stack depth: 5672 bytes left
[    0.556613] bio: create slab <bio-0> at 0
[    0.557234] ACPI: Added _OSI(Module Device)
[    0.557244] ACPI: Added _OSI(Processor Device)
[    0.557247] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.557251] ACPI: Added _OSI(Processor Aggregator Device)
[    0.559119] ACPI: EC: Look up EC in DSDT
[    0.561028] ACPI: Executed 1 blocks of module-level executable AML code
[    0.565505] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
[    0.569907] ACPI: Interpreter enabled
[    0.569932] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20130117/hwxface-568)
[    0.569943] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20130117/hwxface-568)
[    0.569968] ACPI: (supports S0 S3 S4 S5)
[    0.569972] ACPI: Using IOAPIC for interrupt routing
[    0.570600] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.619075] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.619548] acpi PNP0A08:00: Requesting ACPI _OSC control (0x1d)
[    0.620114] acpi PNP0A08:00: ACPI _OSC control (0x19) granted
[    0.620377] acpi PNP0A08:00: ignoring host bridge window [mem 0x000cc000-0x000cffff] (conflicts with Video ROM [mem 0x000c0000-0x000ce3ff])
[    0.620386] acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-3f] only partially covers this bridge
[    0.620742] PCI host bridge to bus 0000:00
[    0.620758] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.620764] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7]
[    0.620768] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff]
[    0.620773] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
[    0.620777] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000c3fff]
[    0.620781] pci_bus 0000:00: root bus resource [mem 0x000c4000-0x000c7fff]
[    0.620785] pci_bus 0000:00: root bus resource [mem 0x000c8000-0x000cbfff]
[    0.620789] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff]
[    0.620793] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff]
[    0.620797] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff]
[    0.620801] pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff]
[    0.620805] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e3fff]
[    0.620809] pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff]
[    0.620837] pci_bus 0000:00: root bus resource [mem 0x000e8000-0x000ebfff]
[    0.620842] pci_bus 0000:00: root bus resource [mem 0x000ec000-0x000effff]
[    0.620846] pci_bus 0000:00: root bus resource [mem 0xbf000000-0xf7ffffff]
[    0.620850] pci_bus 0000:00: root bus resource [mem 0xfc000000-0xffffffff]
[    0.620869] pci 0000:00:00.0: [1022:1510] type 00 class 0x060000
[    0.621373] pci 0000:00:01.0: [1002:9802] type 00 class 0x030000
[    0.621401] pci 0000:00:01.0: reg 10: [mem 0xc0000000-0xcfffffff pref]
[    0.621412] pci 0000:00:01.0: reg 14: [io  0x3000-0x30ff]
[    0.621423] pci 0000:00:01.0: reg 18: [mem 0xd0200000-0xd023ffff]
[    0.621492] pci 0000:00:01.0: supports D1 D2
[    0.621975] pci 0000:00:01.1: [1002:1314] type 00 class 0x040300
[    0.622003] pci 0000:00:01.1: reg 10: [mem 0xd0244000-0xd0247fff]
[    0.622085] pci 0000:00:01.1: supports D1 D2
[    0.622558] pci 0000:00:04.0: [1022:1512] type 01 class 0x060400
[    0.622654] pci 0000:00:04.0: PME# supported from D0 D3hot D3cold
[    0.622745] pci 0000:00:04.0: System wakeup disabled by ACPI
[    0.623030] pci 0000:00:05.0: [1022:1513] type 01 class 0x060400
[    0.623128] pci 0000:00:05.0: PME# supported from D0 D3hot D3cold
[    0.623207] pci 0000:00:05.0: System wakeup disabled by ACPI
[    0.623425] pci 0000:00:11.0: [1002:4391] type 00 class 0x010601
[    0.623455] pci 0000:00:11.0: reg 10: [io  0x3118-0x311f]
[    0.623470] pci 0000:00:11.0: reg 14: [io  0x3124-0x3127]
[    0.623484] pci 0000:00:11.0: reg 18: [io  0x3110-0x3117]
[    0.623498] pci 0000:00:11.0: reg 1c: [io  0x3120-0x3123]
[    0.623512] pci 0000:00:11.0: reg 20: [io  0x3100-0x310f]
[    0.623529] pci 0000:00:11.0: reg 24: [mem 0xd024e000-0xd024e3ff]
[    0.623908] pci 0000:00:12.0: [1002:4397] type 00 class 0x0c0310
[    0.623935] pci 0000:00:12.0: reg 10: [mem 0xd024d000-0xd024dfff]
[    0.627684] pci 0000:00:12.0: System wakeup disabled by ACPI
[    0.628142] pci 0000:00:12.2: [1002:4396] type 00 class 0x0c0320
[    0.628736] pci 0000:00:12.2: reg 10: [mem 0xd024c000-0xd024c0ff]
[    0.631609] pci 0000:00:12.2: supports D1 D2
[    0.631615] pci 0000:00:12.2: PME# supported from D0 D1 D2 D3hot
[    0.631716] pci 0000:00:12.2: System wakeup disabled by ACPI
[    0.631984] pci 0000:00:13.0: [1002:4397] type 00 class 0x0c0310
[    0.632006] pci 0000:00:13.0: reg 10: [mem 0xd024b000-0xd024bfff]
[    0.632261] pci 0000:00:13.2: [1002:4396] type 00 class 0x0c0320
[    0.632770] pci 0000:00:13.2: reg 10: [mem 0xd024a000-0xd024a0ff]
[    0.635645] pci 0000:00:13.2: supports D1 D2
[    0.635654] pci 0000:00:13.2: PME# supported from D0 D1 D2 D3hot
[    0.635949] pci 0000:00:14.0: [1002:4385] type 00 class 0x0c0500
[    0.636299] pci 0000:00:14.2: [1002:4383] type 00 class 0x040300
[    0.636342] pci 0000:00:14.2: reg 10: [mem 0xd0240000-0xd0243fff 64bit]
[    0.636439] pci 0000:00:14.2: PME# supported from D0 D3hot D3cold
[    0.636756] pci 0000:00:14.3: [1002:439d] type 00 class 0x060100
[    0.637238] pci 0000:00:14.4: [1002:4384] type 01 class 0x060401
[    0.637395] pci 0000:00:14.4: System wakeup disabled by ACPI
[    0.637621] pci 0000:00:16.0: [1002:4397] type 00 class 0x0c0310
[    0.637653] pci 0000:00:16.0: reg 10: [mem 0xd0249000-0xd0249fff]
[    0.638085] pci 0000:00:16.2: [1002:4396] type 00 class 0x0c0320
[    0.638618] pci 0000:00:16.2: reg 10: [mem 0xd0248000-0xd02480ff]
[    0.641454] pci 0000:00:16.2: supports D1 D2
[    0.641459] pci 0000:00:16.2: PME# supported from D0 D1 D2 D3hot
[    0.641952] pci 0000:00:18.0: [1022:1700] type 00 class 0x060000
[    0.642347] pci 0000:00:18.1: [1022:1701] type 00 class 0x060000
[    0.642688] pci 0000:00:18.2: [1022:1702] type 00 class 0x060000
[    0.643098] pci 0000:00:18.3: [1022:1703] type 00 class 0x060000
[    0.643315] pci 0000:00:18.4: [1022:1704] type 00 class 0x060000
[    0.643700] pci 0000:00:18.5: [1022:1718] type 00 class 0x060000
[    0.644034] pci 0000:00:18.6: [1022:1716] type 00 class 0x060000
[    0.644299] pci 0000:00:18.7: [1022:1719] type 00 class 0x060000
[    0.644897] pci 0000:01:00.0: [10ec:8168] type 00 class 0x020000
[    0.644927] pci 0000:01:00.0: reg 10: [io  0x2000-0x20ff]
[    0.644962] pci 0000:01:00.0: reg 18: [mem 0xd0004000-0xd0004fff 64bit pref]
[    0.644984] pci 0000:01:00.0: reg 20: [mem 0xd0000000-0xd0003fff 64bit pref]
[    0.645073] pci 0000:01:00.0: supports D1 D2
[    0.645077] pci 0000:01:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.647991] pci 0000:01:00.0: System wakeup disabled by ACPI
[    0.650913] pci 0000:00:04.0: PCI bridge to [bus 01]
[    0.650938] pci 0000:00:04.0:   bridge window [io  0x2000-0x2fff]
[    0.650952] pci 0000:00:04.0:   bridge window [mem 0xd0000000-0xd00fffff 64bit pref]
[    0.651449] pci 0000:02:00.0: [1814:539f] type 00 class 0x028000
[    0.651513] pci 0000:02:00.0: reg 10: [mem 0xd0100000-0xd010ffff]
[    0.654980] pci 0000:00:05.0: PCI bridge to [bus 02]
[    0.655000] pci 0000:00:05.0:   bridge window [mem 0xd0100000-0xd01fffff]
[    0.655556] pci 0000:00:14.4: PCI bridge to [bus 03] (subtractive decode)
[    0.655579] pci 0000:00:14.4:   bridge window [io  0x0000-0x0cf7] (subtractive decode)
[    0.655584] pci 0000:00:14.4:   bridge window [io  0x0d00-0xffff] (subtractive decode)
[    0.655589] pci 0000:00:14.4:   bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
[    0.655593] pci 0000:00:14.4:   bridge window [mem 0x000c0000-0x000c3fff] (subtractive decode)
[    0.655597] pci 0000:00:14.4:   bridge window [mem 0x000c4000-0x000c7fff] (subtractive decode)
[    0.655601] pci 0000:00:14.4:   bridge window [mem 0x000c8000-0x000cbfff] (subtractive decode)
[    0.655605] pci 0000:00:14.4:   bridge window [mem 0x000d0000-0x000d3fff] (subtractive decode)
[    0.655609] pci 0000:00:14.4:   bridge window [mem 0x000d4000-0x000d7fff] (subtractive decode)
[    0.655613] pci 0000:00:14.4:   bridge window [mem 0x000d8000-0x000dbfff] (subtractive decode)
[    0.655617] pci 0000:00:14.4:   bridge window [mem 0x000dc000-0x000dffff] (subtractive decode)
[    0.655621] pci 0000:00:14.4:   bridge window [mem 0x000e0000-0x000e3fff] (subtractive decode)
[    0.655625] pci 0000:00:14.4:   bridge window [mem 0x000e4000-0x000e7fff] (subtractive decode)
[    0.655629] pci 0000:00:14.4:   bridge window [mem 0x000e8000-0x000ebfff] (subtractive decode)
[    0.655633] pci 0000:00:14.4:   bridge window [mem 0x000ec000-0x000effff] (subtractive decode)
[    0.655637] pci 0000:00:14.4:   bridge window [mem 0xbf000000-0xf7ffffff] (subtractive decode)
[    0.655641] pci 0000:00:14.4:   bridge window [mem 0xfc000000-0xffffffff] (subtractive decode)
[    0.656512] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 7 10 11 12 14 15) *0
[    0.656668] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 7 10 11 12 14 15) *0
[    0.656821] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 7 10 11 12 14 15) *0
[    0.656955] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 7 10 11 12 14 15) *0
[    0.657065] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 7 10 11 12 14 15) *0
[    0.657154] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 7 10 11 12 14 15) *0
[    0.657244] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 7 10 11 12 14 15) *0
[    0.657332] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 7 10 11 12 14 15) *0
[    0.659743] acpi root: \_SB_.PCI0 notify handler is installed
[    0.659842] Found 1 acpi root devices
[    0.659937] ACPI: EC: GPE = 0x16, I/O: command/status = 0x66, data = 0x62
[    0.660485] ACPI: No dock devices found.
[    0.661527] vgaarb: device added: PCI:0000:00:01.0,decodes=io+mem,owns=io+mem,locks=none
[    0.661547] vgaarb: loaded
[    0.661550] vgaarb: bridge control possible 0000:00:01.0
[    0.662155] SCSI subsystem initialized
[    0.662167] ACPI: bus type ATA registered
[    0.662823] libata version 3.00 loaded.
[    0.662918] ACPI: bus type USB registered
[    0.663299] usbcore: registered new interface driver usbfs
[    0.663499] usbcore: registered new interface driver hub
[    0.663763] usbcore: registered new device driver usb
[    0.665951] wmi: Mapper loaded
[    0.666058] Advanced Linux Sound Architecture Driver Initialized.
[    0.666063] PCI: Using ACPI for IRQ routing
[    0.668702] PCI: pci_cache_line_size set to 64 bytes
[    0.668885] e820: reserve RAM buffer [mem 0x0009f800-0x0009ffff]
[    0.668889] e820: reserve RAM buffer [mem 0xa6a3f000-0xa7ffffff]
[    0.668892] e820: reserve RAM buffer [mem 0xa6f00000-0xa7ffffff]
[    0.670742] NetLabel: Initializing
[    0.670750] NetLabel:  domain hash size = 128
[    0.670753] NetLabel:  protocols = UNLABELED CIPSOv4
[    0.670773] NetLabel:  unlabeled traffic allowed by default
[    0.670814] cfg80211: Calling CRDA to update world regulatory domain
[    0.671313] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[    0.671321] hpet0: 3 comparators, 32-bit 14.318180 MHz counter
[    0.673387] Switching to clocksource hpet
[    0.686392] pnp: PnP ACPI init
[    0.686450] ACPI: bus type PNP registered
[    0.687089] system 00:00: [mem 0xfec00000-0xfec00fff] could not be reserved
[    0.687100] system 00:00: [mem 0xfee00000-0xfee00fff] has been reserved
[    0.687111] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.687832] pnp 00:01: Plug and Play ACPI device, IDs PNP0103 (active)
[    0.687981] pnp 00:02: [dma 4]
[    0.688387] pnp 00:02: Plug and Play ACPI device, IDs PNP0200 (active)
[    0.688889] pnp 00:03: Plug and Play ACPI device, IDs PNP0c04 (active)
[    0.689367] pnp 00:04: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.689633] pnp 00:05: Plug and Play ACPI device, IDs PNP0303 (active)
[    0.689762] pnp 00:06: Plug and Play ACPI device, IDs SYN1e3b SYN1e00 SYN0002 PNP0f13 (active)
[    0.690049] system 00:07: [io  0x0400-0x04cf] has been reserved
[    0.690059] system 00:07: [io  0x04d0-0x04d1] has been reserved
[    0.690064] system 00:07: [io  0x04d6] has been reserved
[    0.690069] system 00:07: [io  0x0680-0x06ff] has been reserved
[    0.690074] system 00:07: [io  0x077a] has been reserved
[    0.690079] system 00:07: [io  0x0c00-0x0c01] has been reserved
[    0.690083] system 00:07: [io  0x0c14] has been reserved
[    0.690087] system 00:07: [io  0x0c50-0x0c52] has been reserved
[    0.690091] system 00:07: [io  0x0c6c] has been reserved
[    0.690095] system 00:07: [io  0x0c6f] has been reserved
[    0.690110] system 00:07: [io  0x0cd0-0x0cdb] has been reserved
[    0.690121] system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.690597] system 00:08: [mem 0x000e0000-0x000fffff] could not be reserved
[    0.690609] system 00:08: [mem 0xffe00000-0xffffffff] has been reserved
[    0.690620] system 00:08: Plug and Play ACPI device, IDs PNP0c01 (active)
[    0.692275] pnp 00:09: Plug and Play ACPI device, IDs HPQ0004 (active)
[    0.692314] pnp: PnP ACPI: found 10 devices
[    0.692318] ACPI: bus type PNP unregistered
[    0.719110] pci 0000:00:04.0: PCI bridge to [bus 01]
[    0.719122] pci 0000:00:04.0:   bridge window [io  0x2000-0x2fff]
[    0.719134] pci 0000:00:04.0:   bridge window [mem 0xd0000000-0xd00fffff 64bit pref]
[    0.719143] pci 0000:00:05.0: PCI bridge to [bus 02]
[    0.719150] pci 0000:00:05.0:   bridge window [mem 0xd0100000-0xd01fffff]
[    0.719160] pci 0000:00:14.4: PCI bridge to [bus 03]
[    0.719407] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7]
[    0.719412] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff]
[    0.719416] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
[    0.719421] pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000c3fff]
[    0.719425] pci_bus 0000:00: resource 8 [mem 0x000c4000-0x000c7fff]
[    0.719429] pci_bus 0000:00: resource 9 [mem 0x000c8000-0x000cbfff]
[    0.719433] pci_bus 0000:00: resource 10 [mem 0x000d0000-0x000d3fff]
[    0.719437] pci_bus 0000:00: resource 11 [mem 0x000d4000-0x000d7fff]
[    0.719440] pci_bus 0000:00: resource 12 [mem 0x000d8000-0x000dbfff]
[    0.719444] pci_bus 0000:00: resource 13 [mem 0x000dc000-0x000dffff]
[    0.719448] pci_bus 0000:00: resource 14 [mem 0x000e0000-0x000e3fff]
[    0.719452] pci_bus 0000:00: resource 15 [mem 0x000e4000-0x000e7fff]
[    0.719456] pci_bus 0000:00: resource 16 [mem 0x000e8000-0x000ebfff]
[    0.719460] pci_bus 0000:00: resource 17 [mem 0x000ec000-0x000effff]
[    0.719464] pci_bus 0000:00: resource 18 [mem 0xbf000000-0xf7ffffff]
[    0.719468] pci_bus 0000:00: resource 19 [mem 0xfc000000-0xffffffff]
[    0.719472] pci_bus 0000:01: resource 0 [io  0x2000-0x2fff]
[    0.719476] pci_bus 0000:01: resource 2 [mem 0xd0000000-0xd00fffff 64bit pref]
[    0.719481] pci_bus 0000:02: resource 1 [mem 0xd0100000-0xd01fffff]
[    0.719512] pci_bus 0000:03: resource 4 [io  0x0000-0x0cf7]
[    0.719516] pci_bus 0000:03: resource 5 [io  0x0d00-0xffff]
[    0.719520] pci_bus 0000:03: resource 6 [mem 0x000a0000-0x000bffff]
[    0.719524] pci_bus 0000:03: resource 7 [mem 0x000c0000-0x000c3fff]
[    0.719528] pci_bus 0000:03: resource 8 [mem 0x000c4000-0x000c7fff]
[    0.719531] pci_bus 0000:03: resource 9 [mem 0x000c8000-0x000cbfff]
[    0.719535] pci_bus 0000:03: resource 10 [mem 0x000d0000-0x000d3fff]
[    0.719539] pci_bus 0000:03: resource 11 [mem 0x000d4000-0x000d7fff]
[    0.719543] pci_bus 0000:03: resource 12 [mem 0x000d8000-0x000dbfff]
[    0.719547] pci_bus 0000:03: resource 13 [mem 0x000dc000-0x000dffff]
[    0.719551] pci_bus 0000:03: resource 14 [mem 0x000e0000-0x000e3fff]
[    0.719555] pci_bus 0000:03: resource 15 [mem 0x000e4000-0x000e7fff]
[    0.719559] pci_bus 0000:03: resource 16 [mem 0x000e8000-0x000ebfff]
[    0.719562] pci_bus 0000:03: resource 17 [mem 0x000ec000-0x000effff]
[    0.719566] pci_bus 0000:03: resource 18 [mem 0xbf000000-0xf7ffffff]
[    0.719570] pci_bus 0000:03: resource 19 [mem 0xfc000000-0xffffffff]
[    0.719634] NET: Registered protocol family 2
[    0.719934] TCP established hash table entries: 32768 (order: 7, 524288 bytes)
[    0.720274] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)
[    0.720720] TCP: Hash tables configured (established 32768 bind 32768)
[    0.720841] TCP: reno registered
[    0.720874] UDP hash table entries: 2048 (order: 4, 65536 bytes)
[    0.720930] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
[    0.721131] NET: Registered protocol family 1
[    0.721564] RPC: Registered named UNIX socket transport module.
[    0.721574] RPC: Registered udp transport module.
[    0.721578] RPC: Registered tcp transport module.
[    0.721581] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    0.721602] pci 0000:00:01.0: Boot video device
[    0.784068] pci 0000:00:12.2: EHCI: BIOS handoff
[    0.858099] pci 0000:00:13.2: EHCI: BIOS handoff
[    0.932145] pci 0000:00:16.2: EHCI: BIOS handoff
[    0.944111] PCI: CLS 64 bytes, default 64
[    0.944214] Unpacking initramfs...
[    1.001349] Freeing initrd memory: 1832k freed
[    1.002875] Simple Boot Flag at 0x44 set to 0x1
[    1.003076] LVT offset 0 assigned for vector 0x400
[    1.003167] perf: AMD IBS detected (0x000000ff)
[    1.005261] microcode: CPU0: patch_level=0x05000028
[    1.005286] microcode: CPU1: patch_level=0x05000028
[    1.005655] kworker/u:0 (694) used greatest stack depth: 5664 bytes left
[    1.005716] microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
[    1.005721] Scanning for low memory corruption every 60 seconds
[    1.005906] sha1_ssse3: Using SSSE3 optimized SHA-1 implementation
[    1.007196] audit: initializing netlink socket (disabled)
[    1.007232] type=2000 audit(1365549514.548:1): initialized
[    1.051398] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    1.064889] VFS: Disk quotas dquot_6.5.2
[    1.065341] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    1.069513] NFS: Registering the id_resolver key type
[    1.069536] Key type id_resolver registered
[    1.069539] Key type id_legacy registered
[    1.069556] NTFS driver 2.1.30 [Flags: R/W].
[    1.070412] fuse init (API version 7.21)
[    1.071684] SGI XFS with ACLs, security attributes, realtime, large block/inode numbers, no debug enabled
[    1.073862] msgmni has been set to 5208
[    1.074229] SELinux:  Registering netfilter hooks
[    1.076004] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
[    1.076016] io scheduler noop registered
[    1.076019] io scheduler deadline registered
[    1.076044] io scheduler cfq registered (default)
[    1.077313] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    1.080828] ACPI: AC Adapter [AC] (on-line)
[    1.081459] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[    1.081474] ACPI: Power Button [PWRB]
[    1.082111] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input1
[    1.085394] ACPI: Lid Switch [LID]
[    1.085470] _handle_hotplug_event_root: Bus check notify on \_SB_.PCI0
[    1.085825] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
[    1.085840] ACPI: Power Button [PWRF]
[    1.104770] acpi device:01: registered as cooling_device0
[    1.104829] ACPI: Video Device [VGA] (multi-head: yes  rom: no  post: no)
[    1.105081] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input3
[    1.105486] ACPI: acpi_idle registered with cpuidle
[    1.124495] ACPI Warning: For \_TZ_.THRM._AL0: Return Package has no elements (empty) (20130117/nsprepkg-119)
[    1.124511] ACPI: [Package] has zero elements (ffff8800a2d6a900)
[    1.124609] ACPI: Invalid active0 threshold
[    1.138698] thermal LNXTHERM:00: registered as thermal_zone0
[    1.138708] ACPI: Thermal Zone [THRM] (68 C)
[    1.139357] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    1.143625] Non-volatile memory driver v1.3
[    1.143634] Linux agpgart interface v0.103
[    1.144459] [drm] Initialized drm 1.1.0 20060810
[    1.144610] [drm] radeon kernel modesetting enabled.
[    1.145893] [drm] initializing kernel modesetting (PALM 0x1002:0x9802 0x103C:0x1611).
[    1.145945] [drm] register mmio base: 0xD0200000
[    1.145948] [drm] register mmio size: 262144
[    1.146696] ATOM BIOS: HP
[    1.146819] radeon 0000:00:01.0: VRAM: 384M 0x0000000000000000 - 0x0000000017FFFFFF (384M used)
[    1.146824] radeon 0000:00:01.0: GTT: 512M 0x0000000018000000 - 0x0000000037FFFFFF
[    1.147029] [drm] Detected VRAM RAM=384M, BAR=256M
[    1.147038] [drm] RAM width 32bits DDR
[    1.147263] [TTM] Zone  kernel: Available graphics memory: 1333498 kiB
[    1.147271] [TTM] Initializing pool allocator
[    1.147280] [TTM] Initializing DMA pool allocator
[    1.147332] [drm] radeon: 384M of VRAM memory ready
[    1.147336] [drm] radeon: 512M of GTT memory ready.
[    1.147364] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
[    1.147366] [drm] Driver supports precise vblank timestamp query.
[    1.147465] radeon 0000:00:01.0: irq 40 for MSI/MSI-X
[    1.147484] radeon 0000:00:01.0: radeon: using MSI.
[    1.147527] [drm] radeon: irq initialized.
[    1.169279] [drm] GART: num cpu pages 131072, num gpu pages 131072
[    1.172193] [drm] Loading PALM Microcode
[    1.181375] ACPI: Battery Slot [BAT0] (battery present)
[    1.205775] [drm] PCIE GART of 512M enabled (table at 0x0000000000273000).
[    1.206030] radeon 0000:00:01.0: WB enabled
[    1.206037] radeon 0000:00:01.0: fence driver on ring 0 use gpu addr 0x0000000018000c00 and cpu addr 0xffff8800a26bdc00
[    1.206042] radeon 0000:00:01.0: fence driver on ring 3 use gpu addr 0x0000000018000c0c and cpu addr 0xffff8800a26bdc0c
[    1.226253] radeon 0000:00:01.0: fence driver on ring 5 use gpu addr 0x0000000000072118 and cpu addr 0xffffc90004f32118
[    1.242974] [drm] ring test on 0 succeeded in 1 usecs
[    1.243036] [drm] ring test on 3 succeeded in 1 usecs
[    1.278099] [drm] ring test on 5 succeeded in 1 usecs
[    1.278103] [drm] UVD initialized successfully.
[    1.278327] [drm] ib test on ring 0 succeeded in 0 usecs
[    1.278361] [drm] ib test on ring 3 succeeded in 0 usecs
[    1.279121] [drm] ib test on ring 5 succeeded
[    1.334122] [drm] radeon atom DIG backlight initialized
[    1.334140] [drm] Radeon Display Connectors
[    1.334146] [drm] Connector 0:
[    1.334151] [drm]   LVDS-1
[    1.334153] [drm]   HPD1
[    1.334158] [drm]   DDC: 0x6430 0x6430 0x6434 0x6434 0x6438 0x6438 0x643c 0x643c
[    1.334160] [drm]   Encoders:
[    1.334162] [drm]     LCD1: INTERNAL_UNIPHY
[    1.334165] [drm] Connector 1:
[    1.334168] [drm]   HDMI-A-1
[    1.334169] [drm]   HPD2
[    1.334173] [drm]   DDC: 0x6440 0x6440 0x6444 0x6444 0x6448 0x6448 0x644c 0x644c
[    1.334175] [drm]   Encoders:
[    1.334177] [drm]     DFP1: INTERNAL_UNIPHY
[    1.334179] [drm] Connector 2:
[    1.334181] [drm]   VGA-1
[    1.334185] [drm]   DDC: 0x64d8 0x64d8 0x64dc 0x64dc 0x64e0 0x64e0 0x64e4 0x64e4
[    1.334187] [drm]   Encoders:
[    1.334189] [drm]     CRT1: INTERNAL_KLDSCP_DAC1
[    1.334253] [drm] Internal thermal controller without fan control
[    1.334751] [drm] radeon: power management initialized
[    1.761699] [drm] fb mappable at 0xC0375000
[    1.761707] [drm] vram apper at 0xC0000000
[    1.761710] [drm] size 4325376
[    1.761712] [drm] fb depth is 24
[    1.761715] [drm]    pitch is 5632
[    1.762365] fbcon: radeondrmfb (fb0) is primary device
[    2.006529] tsc: Refined TSC clocksource calibration: 1596.003 MHz
[    2.006542] Switching to clocksource tsc
[    2.320774] Console: switching to colour frame buffer device 136x42
[    2.327691] radeon 0000:00:01.0: fb0: radeondrmfb frame buffer device
[    2.327695] radeon 0000:00:01.0: registered panic notifier
[    2.327723] [drm] Initialized radeon 2.30.0 20080528 for 0000:00:01.0 on minor 0
[    2.333069] loop: module loaded
[    2.333995] ahci 0000:00:11.0: version 3.0
[    2.334309] ahci 0000:00:11.0: AHCI 0001.0200 32 slots 1 ports 6 Gbps 0x1 impl SATA mode
[    2.334317] ahci 0000:00:11.0: flags: 64bit ncq sntf ilck pm led clo pmp pio slum part 
[    2.335330] scsi0 : ahci
[    2.335839] ata1: SATA max UDMA/133 abar m1024@0xd024e000 port 0xd024e100 irq 19
[    2.336400] tun: Universal TUN/TAP device driver, 1.6
[    2.336406] tun: (C) 1999-2004 Max Krasnyansky <[email protected]>
[    2.336690] e100: Intel(R) PRO/100 Network Driver, 3.5.24-k2-NAPI
[    2.336699] e100: Copyright(c) 1999-2006 Intel Corporation
[    2.336816] e1000: Intel(R) PRO/1000 Network Driver - version 7.3.21-k8-NAPI
[    2.336820] e1000: Copyright (c) 1999-2006 Intel Corporation.
[    2.337218] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
[    2.337647] r8169 0000:01:00.0: irq 41 for MSI/MSI-X
[    2.338263] r8169 0000:01:00.0 eth0: RTL8168e/8111e at 0xffffc9000067a000, 68:b5:99:e1:3f:08, XID 0c200000 IRQ 41
[    2.338273] r8169 0000:01:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
[    2.338562] PPP generic driver version 2.4.2
[    2.339222] PPP BSD Compression module registered
[    2.339232] PPP Deflate Compression module registered
[    2.339241] PPP MPPE Compression module registered
[    2.339245] NET: Registered protocol family 24
[    2.339267] ipw2100: Intel(R) PRO/Wireless 2100 Network Driver, git-1.2.2
[    2.339270] ipw2100: Copyright(c) 2003-2006 Intel Corporation
[    2.339392] ipw2200: Intel(R) PRO/Wireless 2200/2915 Network Driver, 1.2.2kdmprq
[    2.339395] ipw2200: Copyright(c) 2003-2006 Intel Corporation
[    2.339558] libipw: 802.11 data/management/control stack, git-1.1.13
[    2.339561] libipw: Copyright (C) 2004-2005 Intel Corporation <[email protected]>
[    2.339564] Intel(R) Wireless WiFi driver for Linux, in-tree:d
[    2.339566] Copyright(c) 2003-2013 Intel Corporation
[    2.339666] iwl4965: Intel(R) Wireless WiFi 4965 driver for Linux, in-tree:
[    2.339669] iwl4965: Copyright(c) 2003-2011 Intel Corporation
[    2.339875] iwl3945: Intel(R) PRO/Wireless 3945ABG/BG Network Connection driver for Linux, in-tree:s
[    2.339885] iwl3945: Copyright(c) 2003-2011 Intel Corporation
[    2.342699] phy0 -> rt2x00_set_chip: Info - Chipset detected - rt: 5390, rf: 5390, rev: 0502.
[    2.343084] cfg80211: Updating information on frequency 2412 MHz with regulatory rule:
[    2.343095] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (600 mBi, 2000 mBm)
[    2.343098] cfg80211: Updating information on frequency 2417 MHz with regulatory rule:
[    2.343102] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (600 mBi, 2000 mBm)
[    2.343105] cfg80211: Updating information on frequency 2422 MHz with regulatory rule:
[    2.343108] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (600 mBi, 2000 mBm)
[    2.343111] cfg80211: Updating information on frequency 2427 MHz with regulatory rule:
[    2.343114] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (600 mBi, 2000 mBm)
[    2.343116] cfg80211: Updating information on frequency 2432 MHz with regulatory rule:
[    2.343119] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (600 mBi, 2000 mBm)
[    2.343122] cfg80211: Updating information on frequency 2437 MHz with regulatory rule:
[    2.343125] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (600 mBi, 2000 mBm)
[    2.343127] cfg80211: Updating information on frequency 2442 MHz with regulatory rule:
[    2.343130] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (600 mBi, 2000 mBm)
[    2.343133] cfg80211: Updating information on frequency 2447 MHz with regulatory rule:
[    2.343136] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (600 mBi, 2000 mBm)
[    2.343138] cfg80211: Updating information on frequency 2452 MHz with regulatory rule:
[    2.343141] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (600 mBi, 2000 mBm)
[    2.343143] cfg80211: Updating information on frequency 2457 MHz with regulatory rule:
[    2.343146] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (600 mBi, 2000 mBm)
[    2.343149] cfg80211: Updating information on frequency 2462 MHz with regulatory rule:
[    2.343152] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (600 mBi, 2000 mBm)
[    2.343154] cfg80211: Updating information on frequency 2467 MHz with regulatory rule:
[    2.343157] cfg80211: 2457000 KHz - 2482000 KHz @ 40000 KHz), (600 mBi, 2000 mBm)
[    2.343160] cfg80211: Updating information on frequency 2472 MHz with regulatory rule:
[    2.343163] cfg80211: 2457000 KHz - 2482000 KHz @ 40000 KHz), (600 mBi, 2000 mBm)
[    2.343165] cfg80211: Updating information on frequency 2484 MHz with regulatory rule:
[    2.343168] cfg80211: 2474000 KHz - 2494000 KHz @ 20000 KHz), (600 mBi, 2000 mBm)
[    2.343650] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
[    2.347071] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    2.347082] ehci_hcd: block sizes: qh 104 qtd 96 itd 192 sitd 96
[    2.347097] ehci-pci: EHCI PCI platform driver
[    2.347361] ehci-pci 0000:00:12.2: setting latency timer to 64
[    2.347368] ehci-pci 0000:00:12.2: EHCI Host Controller
[    2.347549] ehci-pci 0000:00:12.2: new USB bus registered, assigned bus number 1
[    2.347567] QUIRK: Enable AMD PLL fix
[    2.347571] ehci-pci 0000:00:12.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
[    2.347636] ehci-pci 0000:00:12.2: debug port 1
[    2.347644] ehci-pci 0000:00:12.2: reset hcs_params 0x101505 dbg=1 cc=1 pcc=5 ordered !ppc ports=5
[    2.347650] ehci-pci 0000:00:12.2: reset hcc_params a072 thresh 7 uframes 256/512/1024
[    2.347685] ehci-pci 0000:00:12.2: reset command 0080002 (park)=0 ithresh=8 period=1024 Reset HALT
[    2.347695] ehci-pci 0000:00:12.2: MWI active
[    2.347699] ehci-pci 0000:00:12.2: supports USB remote wakeup
[    2.347740] ehci-pci 0000:00:12.2: irq 17, io mem 0xd024c000
[    2.347748] ehci-pci 0000:00:12.2: init command 0010005 (park)=0 ithresh=1 period=512 RUN
[    2.353789] ehci-pci 0000:00:12.2: USB 2.0 started, EHCI 1.00
[    2.353866] usb usb1: default language 0x0409
[    2.353879] usb usb1: udev 1, busnum 1, minor = 0
[    2.353884] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    2.353888] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.353893] usb usb1: Product: EHCI Host Controller
[    2.353897] usb usb1: Manufacturer: Linux 3.9.0-rc2uvd+ ehci_hcd
[    2.353900] usb usb1: SerialNumber: 0000:00:12.2
[    2.354585] usb usb1: usb_probe_device
[    2.354596] usb usb1: configuration #1 chosen from 1 choice
[    2.354622] usb usb1: adding 1-0:1.0 (config #1, interface 0)
[    2.354918] hub 1-0:1.0: usb_probe_interface
[    2.354929] hub 1-0:1.0: usb_probe_interface - got id
[    2.354939] hub 1-0:1.0: USB hub found
[    2.354957] hub 1-0:1.0: 5 ports detected
[    2.354960] hub 1-0:1.0: standalone hub
[    2.354964] hub 1-0:1.0: no power switching (usb 1.0)
[    2.354968] hub 1-0:1.0: individual port over-current protection
[    2.354972] hub 1-0:1.0: power on to power good time: 20ms
[    2.354979] hub 1-0:1.0: local power source is good
[    2.355224] hub 1-0:1.0: trying to enable port power on non-switchable hub
[    2.355616] ehci-pci 0000:00:13.2: setting latency timer to 64
[    2.355623] ehci-pci 0000:00:13.2: EHCI Host Controller
[    2.356127] ehci-pci 0000:00:13.2: new USB bus registered, assigned bus number 2
[    2.356147] ehci-pci 0000:00:13.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
[    2.356218] ehci-pci 0000:00:13.2: debug port 1
[    2.356227] ehci-pci 0000:00:13.2: reset hcs_params 0x101505 dbg=1 cc=1 pcc=5 ordered !ppc ports=5
[    2.356233] ehci-pci 0000:00:13.2: reset hcc_params a072 thresh 7 uframes 256/512/1024
[    2.356270] ehci-pci 0000:00:13.2: reset command 0080002 (park)=0 ithresh=8 period=1024 Reset HALT
[    2.356281] ehci-pci 0000:00:13.2: MWI active
[    2.356284] ehci-pci 0000:00:13.2: supports USB remote wakeup
[    2.356301] ehci-pci 0000:00:13.2: irq 17, io mem 0xd024a000
[    2.356310] ehci-pci 0000:00:13.2: init command 0010005 (park)=0 ithresh=1 period=512 RUN
[    2.361779] ehci-pci 0000:00:13.2: USB 2.0 started, EHCI 1.00
[    2.361854] usb usb2: default language 0x0409
[    2.361868] usb usb2: udev 1, busnum 2, minor = 128
[    2.361873] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
[    2.361877] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.361881] usb usb2: Product: EHCI Host Controller
[    2.361885] usb usb2: Manufacturer: Linux 3.9.0-rc2uvd+ ehci_hcd
[    2.361889] usb usb2: SerialNumber: 0000:00:13.2
[    2.362599] usb usb2: usb_probe_device
[    2.362611] usb usb2: configuration #1 chosen from 1 choice
[    2.362637] usb usb2: adding 2-0:1.0 (config #1, interface 0)
[    2.363001] hub 2-0:1.0: usb_probe_interface
[    2.363013] hub 2-0:1.0: usb_probe_interface - got id
[    2.363022] hub 2-0:1.0: USB hub found
[    2.363040] hub 2-0:1.0: 5 ports detected
[    2.363044] hub 2-0:1.0: standalone hub
[    2.363048] hub 2-0:1.0: no power switching (usb 1.0)
[    2.363051] hub 2-0:1.0: individual port over-current protection
[    2.363055] hub 2-0:1.0: power on to power good time: 20ms
[    2.363063] hub 2-0:1.0: local power source is good
[    2.363315] usb usb2: usb port1's DeviceRemovable is changed to 1 according to platform information.
[    2.363319] usb usb2: usb port2's DeviceRemovable is changed to 1 according to platform information.
[    2.363323] usb usb2: usb port3's DeviceRemovable is changed to 1 according to platform information.
[    2.363327] usb usb2: usb port4's DeviceRemovable is changed to 1 according to platform information.
[    2.363331] hub 2-0:1.0: trying to enable port power on non-switchable hub
[    2.363718] ehci-pci 0000:00:16.2: setting latency timer to 64
[    2.363725] ehci-pci 0000:00:16.2: EHCI Host Controller
[    2.364281] ehci-pci 0000:00:16.2: new USB bus registered, assigned bus number 3
[    2.364302] ehci-pci 0000:00:16.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
[    2.364373] ehci-pci 0000:00:16.2: debug port 1
[    2.364381] ehci-pci 0000:00:16.2: reset hcs_params 0x101404 dbg=1 cc=1 pcc=4 ordered !ppc ports=4
[    2.364388] ehci-pci 0000:00:16.2: reset hcc_params a072 thresh 7 uframes 256/512/1024
[    2.364423] ehci-pci 0000:00:16.2: reset command 0080002 (park)=0 ithresh=8 period=1024 Reset HALT
[    2.364434] ehci-pci 0000:00:16.2: MWI active
[    2.364437] ehci-pci 0000:00:16.2: supports USB remote wakeup
[    2.364456] ehci-pci 0000:00:16.2: irq 17, io mem 0xd0248000
[    2.364465] ehci-pci 0000:00:16.2: init command 0010005 (park)=0 ithresh=1 period=512 RUN
[    2.369789] ehci-pci 0000:00:16.2: USB 2.0 started, EHCI 1.00
[    2.369861] usb usb3: default language 0x0409
[    2.369902] usb usb3: udev 1, busnum 3, minor = 256
[    2.369907] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002
[    2.369912] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.369916] usb usb3: Product: EHCI Host Controller
[    2.369920] usb usb3: Manufacturer: Linux 3.9.0-rc2uvd+ ehci_hcd
[    2.369923] usb usb3: SerialNumber: 0000:00:16.2
[    2.370599] usb usb3: usb_probe_device
[    2.370611] usb usb3: configuration #1 chosen from 1 choice
[    2.370637] usb usb3: adding 3-0:1.0 (config #1, interface 0)
[    2.370997] hub 3-0:1.0: usb_probe_interface
[    2.371008] hub 3-0:1.0: usb_probe_interface - got id
[    2.371018] hub 3-0:1.0: USB hub found
[    2.371037] hub 3-0:1.0: 4 ports detected
[    2.371041] hub 3-0:1.0: standalone hub
[    2.371045] hub 3-0:1.0: no power switching (usb 1.0)
[    2.371048] hub 3-0:1.0: individual port over-current protection
[    2.371052] hub 3-0:1.0: power on to power good time: 20ms
[    2.371060] hub 3-0:1.0: local power source is good
[    2.371262] usb usb3: usb port1's DeviceRemovable is changed to 1 according to platform information.
[    2.371267] hub 3-0:1.0: trying to enable port power on non-switchable hub
[    2.371727] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    2.371737] ohci_hcd: block sizes: ed 80 td 96
[    2.372012] ohci_hcd 0000:00:12.0: setting latency timer to 64
[    2.372019] ohci_hcd 0000:00:12.0: OHCI Host Controller
[    2.372597] ohci_hcd 0000:00:12.0: new USB bus registered, assigned bus number 4
[    2.372622] ohci_hcd 0000:00:12.0: enabled AMD prefetch quirk
[    2.372704] ohci_hcd 0000:00:12.0: created debug files
[    2.372708] ohci_hcd 0000:00:12.0: supports USB remote wakeup
[    2.372765] ohci_hcd 0000:00:12.0: irq 18, io mem 0xd024d000
[    2.427837] ohci_hcd 0000:00:12.0: OHCI controller state
[    2.427866] ohci_hcd 0000:00:12.0: OHCI 1.0, NO legacy support registers, rh state running
[    2.427873] ohci_hcd 0000:00:12.0: control 0x283 RWC HCFS=operational CBSR=3
[    2.427879] ohci_hcd 0000:00:12.0: cmdstatus 0x00000 SOC=0
[    2.427886] ohci_hcd 0000:00:12.0: intrstatus 0x00000004 SF
[    2.427892] ohci_hcd 0000:00:12.0: intrenable 0x8000005a MIE RHSC UE RD WDH
[    2.427903] ohci_hcd 0000:00:12.0: hcca frame #0005
[    2.427910] ohci_hcd 0000:00:12.0: roothub.a 02001205 POTPGT=2 NOCP NPS NDP=5(5)
[    2.427915] ohci_hcd 0000:00:12.0: roothub.b 00000000 PPCM=0000 DR=0000
[    2.427920] ohci_hcd 0000:00:12.0: roothub.status 00008000 DRWE
[    2.427926] ohci_hcd 0000:00:12.0: roothub.portstatus [0] 0x00000100 PPS
[    2.427932] ohci_hcd 0000:00:12.0: roothub.portstatus [1] 0x00000100 PPS
[    2.427937] ohci_hcd 0000:00:12.0: roothub.portstatus [2] 0x00000100 PPS
[    2.427943] ohci_hcd 0000:00:12.0: roothub.portstatus [3] 0x00000100 PPS
[    2.427948] ohci_hcd 0000:00:12.0: roothub.portstatus [4] 0x00000100 PPS
[    2.427980] usb usb4: default language 0x0409
[    2.427992] usb usb4: udev 1, busnum 4, minor = 384
[    2.427997] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001
[    2.428001] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.428005] usb usb4: Product: OHCI Host Controller
[    2.428009] usb usb4: Manufacturer: Linux 3.9.0-rc2uvd+ ohci_hcd
[    2.428012] usb usb4: SerialNumber: 0000:00:12.0
[    2.428695] usb usb4: usb_probe_device
[    2.428707] usb usb4: configuration #1 chosen from 1 choice
[    2.428734] usb usb4: adding 4-0:1.0 (config #1, interface 0)
[    2.429108] hub 4-0:1.0: usb_probe_interface
[    2.429119] hub 4-0:1.0: usb_probe_interface - got id
[    2.429129] hub 4-0:1.0: USB hub found
[    2.429196] hub 4-0:1.0: 5 ports detected
[    2.429200] hub 4-0:1.0: standalone hub
[    2.429204] hub 4-0:1.0: no power switching (usb 1.0)
[    2.429207] hub 4-0:1.0: no over-current protection
[    2.429211] hub 4-0:1.0: power on to power good time: 4ms
[    2.429220] hub 4-0:1.0: local power source is good
[    2.429458] hub 4-0:1.0: trying to enable port power on non-switchable hub
[    2.429542] ehci-pci 0000:00:12.2: HS companion for 0000:00:12.0
[    2.429765] ohci_hcd 0000:00:13.0: setting latency timer to 64
[    2.429771] ohci_hcd 0000:00:13.0: OHCI Host Controller
[    2.430325] ohci_hcd 0000:00:13.0: new USB bus registered, assigned bus number 5
[    2.430353] ohci_hcd 0000:00:13.0: enabled AMD prefetch quirk
[    2.430440] ohci_hcd 0000:00:13.0: created debug files
[    2.430460] ohci_hcd 0000:00:13.0: irq 18, io mem 0xd024b000
[    2.454869] ehci-pci 0000:00:12.2: GetStatus port:1 status 001803 0  ACK POWER sig=j CSC CONNECT
[    2.454885] hub 1-0:1.0: port 1: status 0501 change 0001
[    2.454901] ehci-pci 0000:00:12.2: GetStatus port:3 status 001803 0  ACK POWER sig=j CSC CONNECT
[    2.454906] hub 1-0:1.0: port 3: status 0501 change 0001
[    2.462862] ehci-pci 0000:00:13.2: GetStatus port:1 status 001803 0  ACK POWER sig=j CSC CONNECT
[    2.462879] hub 2-0:1.0: port 1: status 0501 change 0001
[    2.462893] ehci-pci 0000:00:13.2: GetStatus port:2 status 001803 0  ACK POWER sig=j CSC CONNECT
[    2.462898] hub 2-0:1.0: port 2: status 0501 change 0001
[    2.470954] hub 3-0:1.0: state 7 ports 4 chg 0000 evt 0000
[    2.470999] hub 3-0:1.0: hub_suspend
[    2.471013] usb usb3: bus auto-suspend, wakeup 1
[    2.471019] ehci-pci 0000:00:16.2: suspend root hub
[    2.484883] ohci_hcd 0000:00:13.0: OHCI controller state
[    2.484912] ohci_hcd 0000:00:13.0: OHCI 1.0, NO legacy support registers, rh state running
[    2.484919] ohci_hcd 0000:00:13.0: control 0x083 HCFS=operational CBSR=3
[    2.484925] ohci_hcd 0000:00:13.0: cmdstatus 0x00000 SOC=0
[    2.484932] ohci_hcd 0000:00:13.0: intrstatus 0x00000004 SF
[    2.484938] ohci_hcd 0000:00:13.0: intrenable 0x8000005a MIE RHSC UE RD WDH
[    2.484949] ohci_hcd 0000:00:13.0: hcca frame #0005
[    2.484956] ohci_hcd 0000:00:13.0: roothub.a 02001205 POTPGT=2 NOCP NPS NDP=5(5)
[    2.484961] ohci_hcd 0000:00:13.0: roothub.b 00000000 PPCM=0000 DR=0000
[    2.484966] ohci_hcd 0000:00:13.0: roothub.status 00008000 DRWE
[    2.484972] ohci_hcd 0000:00:13.0: roothub.portstatus [0] 0x00000100 PPS
[    2.484978] ohci_hcd 0000:00:13.0: roothub.portstatus [1] 0x00000100 PPS
[    2.484983] ohci_hcd 0000:00:13.0: roothub.portstatus [2] 0x00000100 PPS
[    2.484989] ohci_hcd 0000:00:13.0: roothub.portstatus [3] 0x00000100 PPS
[    2.484994] ohci_hcd 0000:00:13.0: roothub.portstatus [4] 0x00000100 PPS
[    2.485027] usb usb5: default language 0x0409
[    2.485039] usb usb5: udev 1, busnum 5, minor = 512
[    2.485043] usb usb5: New USB device found, idVendor=1d6b, idProduct=0001
[    2.485047] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.485051] usb usb5: Product: OHCI Host Controller
[    2.485055] usb usb5: Manufacturer: Linux 3.9.0-rc2uvd+ ohci_hcd
[    2.485059] usb usb5: SerialNumber: 0000:00:13.0
[    2.485738] usb usb5: usb_probe_device
[    2.485750] usb usb5: configuration #1 chosen from 1 choice
[    2.485775] usb usb5: adding 5-0:1.0 (config #1, interface 0)
[    2.486146] hub 5-0:1.0: usb_probe_interface
[    2.486157] hub 5-0:1.0: usb_probe_interface - got id
[    2.486167] hub 5-0:1.0: USB hub found
[    2.486234] hub 5-0:1.0: 5 ports detected
[    2.486238] hub 5-0:1.0: standalone hub
[    2.486241] hub 5-0:1.0: no power switching (usb 1.0)
[    2.486244] hub 5-0:1.0: no over-current protection
[    2.486248] hub 5-0:1.0: power on to power good time: 4ms
[    2.486257] hub 5-0:1.0: local power source is good
[    2.486510] usb usb5: usb port1's DeviceRemovable is changed to 1 according to platform information.
[    2.486515] usb usb5: usb port2's DeviceRemovable is changed to 1 according to platform information.
[    2.486518] usb usb5: usb port3's DeviceRemovable is changed to 1 according to platform information.
[    2.486522] usb usb5: usb port4's DeviceRemovable is changed to 1 according to platform information.
[    2.486526] hub 5-0:1.0: trying to enable port power on non-switchable hub
[    2.486633] ehci-pci 0000:00:13.2: HS companion for 0000:00:13.0
[    2.486815] ohci_hcd 0000:00:16.0: setting latency timer to 64
[    2.486821] ohci_hcd 0000:00:16.0: OHCI Host Controller
[    2.487384] ohci_hcd 0000:00:16.0: new USB bus registered, assigned bus number 6
[    2.487412] ohci_hcd 0000:00:16.0: enabled AMD prefetch quirk
[    2.487514] ohci_hcd 0000:00:16.0: created debug files
[    2.487535] ohci_hcd 0000:00:16.0: irq 18, io mem 0xd0249000
[    2.529020] hub 4-0:1.0: state 7 ports 5 chg 0000 evt 0000
[    2.529066] hub 4-0:1.0: hub_suspend
[    2.529080] usb usb4: bus auto-suspend, wakeup 1
[    2.529134] ohci_hcd 0000:00:12.0: suspend root hub
[    2.541906] ohci_hcd 0000:00:16.0: OHCI controller state
[    2.541935] ohci_hcd 0000:00:16.0: OHCI 1.0, NO legacy support registers, rh state running
[    2.541943] ohci_hcd 0000:00:16.0: control 0x083 HCFS=operational CBSR=3
[    2.541949] ohci_hcd 0000:00:16.0: cmdstatus 0x00000 SOC=0
[    2.541955] ohci_hcd 0000:00:16.0: intrstatus 0x00000004 SF
[    2.541961] ohci_hcd 0000:00:16.0: intrenable 0x8000005a MIE RHSC UE RD WDH
[    2.541972] ohci_hcd 0000:00:16.0: hcca frame #0005
[    2.541979] ohci_hcd 0000:00:16.0: roothub.a 02001204 POTPGT=2 NOCP NPS NDP=4(4)
[    2.541984] ohci_hcd 0000:00:16.0: roothub.b 00000000 PPCM=0000 DR=0000
[    2.541989] ohci_hcd 0000:00:16.0: roothub.status 00008000 DRWE
[    2.541995] ohci_hcd 0000:00:16.0: roothub.portstatus [0] 0x00000100 PPS
[    2.542001] ohci_hcd 0000:00:16.0: roothub.portstatus [1] 0x00000100 PPS
[    2.542006] ohci_hcd 0000:00:16.0: roothub.portstatus [2] 0x00000100 PPS
[    2.542012] ohci_hcd 0000:00:16.0: roothub.portstatus [3] 0x00000100 PPS
[    2.542044] usb usb6: default language 0x0409
[    2.542056] usb usb6: udev 1, busnum 6, minor = 640
[    2.542061] usb usb6: New USB device found, idVendor=1d6b, idProduct=0001
[    2.542065] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.542069] usb usb6: Product: OHCI Host Controller
[    2.542073] usb usb6: Manufacturer: Linux 3.9.0-rc2uvd+ ohci_hcd
[    2.542076] usb usb6: SerialNumber: 0000:00:16.0
[    2.542761] usb usb6: usb_probe_device
[    2.542772] usb usb6: configuration #1 chosen from 1 choice
[    2.542798] usb usb6: adding 6-0:1.0 (config #1, interface 0)
[    2.543162] hub 6-0:1.0: usb_probe_interface
[    2.543173] hub 6-0:1.0: usb_probe_interface - got id
[    2.543182] hub 6-0:1.0: USB hub found
[    2.543249] hub 6-0:1.0: 4 ports detected
[    2.543253] hub 6-0:1.0: standalone hub
[    2.543257] hub 6-0:1.0: no power switching (usb 1.0)
[    2.543260] hub 6-0:1.0: no over-current protection
[    2.543264] hub 6-0:1.0: power on to power good time: 4ms
[    2.543273] hub 6-0:1.0: local power source is good
[    2.543477] usb usb6: usb port1's DeviceRemovable is changed to 1 according to platform information.
[    2.543482] hub 6-0:1.0: trying to enable port power on non-switchable hub
[    2.543569] ehci-pci 0000:00:16.2: HS companion for 0000:00:16.0
[    2.543930] uhci_hcd: USB Universal Host Controller Interface driver
[    2.544763] usbcore: registered new interface driver usblp
[    2.544773] Initializing USB Mass Storage driver...
[    2.545043] usbcore: registered new interface driver usb-storage
[    2.545052] USB Mass Storage support registered.
[    2.545347] i8042: PNP: PS/2 Controller [PNP0303:KBC0,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
[    2.553999] serio: i8042 KBD port at 0x60,0x64 irq 1
[    2.554018] serio: i8042 AUX port at 0x60,0x64 irq 12
[    2.554746] hub 1-0:1.0: state 7 ports 5 chg 000a evt 0000
[    2.554817] hub 1-0:1.0: port 1, status 0501, change 0000, 480 Mb/s
[    2.554996] mousedev: PS/2 mouse device common for all mice
[    2.556439] rtc_cmos 00:04: RTC can wake from S4
[    2.556863] rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0
[    2.556957] rtc_cmos 00:04: alarms up to one day, 114 bytes nvram, hpet irqs
[    2.557697] device-mapper: ioctl: 4.24.0-ioctl (2013-01-15) initialised: [email protected]
[    2.557977] cpuidle: using governor ladder
[    2.558044] cpuidle: using governor menu
[    2.558403] EFI Variables Facility v0.08 2004-May-17
[    2.558868] hidraw: raw HID events driver (C) Jiri Kosina
[    2.560948] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input4
[    2.563240] usbcore: registered new interface driver usbhid
[    2.563247] usbhid: USB HID core driver
[    2.564802] input: HP WMI hotkeys as /devices/virtual/input/input5
[    2.605960] ehci-pci 0000:00:12.2: port 1 reset complete, port enabled
[    2.605977] ehci-pci 0000:00:12.2: GetStatus port:1 status 001005 0  ACK POWER sig=se0 PE CONNECT
[    2.656999] usb 1-1: new high-speed USB device number 2 using ehci-pci
[    2.708055] ehci-pci 0000:00:12.2: port 1 reset complete, port enabled
[    2.708070] ehci-pci 0000:00:12.2: GetStatus port:1 status 001005 0  ACK POWER sig=se0 PE CONNECT
[    2.773696] usb 1-1: default language 0x0409
[    2.775578] usb 1-1: udev 2, busnum 1, minor = 1
[    2.775596] usb 1-1: New USB device found, idVendor=0930, idProduct=6544
[    2.775605] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    2.775613] usb 1-1: Product: DataTraveler SE9
[    2.775617] usb 1-1: Manufacturer: Kingston
[    2.775621] usb 1-1: SerialNumber: 5404A6F4E0A1CCA1C9022495
[    2.776400] usb 1-1: usb_probe_device
[    2.776412] usb 1-1: configuration #1 chosen from 1 choice
[    2.776627] usb 1-1: adding 1-1:1.0 (config #1, interface 0)
[    2.776910] usb-storage 1-1:1.0: usb_probe_interface
[    2.776919] usb-storage 1-1:1.0: usb_probe_interface - got id
[    2.777323] scsi1 : usb-storage 1-1:1.0
[    2.778002] hub 1-0:1.0: port 3, status 0501, change 0000, 480 Mb/s
[    2.796908] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    2.798673] ata1.00: ATA-8: Hitachi HTS723232A7A364, EC2OA60W, max UDMA/100
[    2.798689] ata1.00: 625142448 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
[    2.800759] ata1.00: configured for UDMA/100
[    2.801274] scsi 0:0:0:0: Direct-Access     ATA      Hitachi HTS72323 EC2O PQ: 0 ANSI: 5
[    2.802715] sd 0:0:0:0: [sda] 625142448 512-byte logical blocks: (320 GB/298 GiB)
[    2.802892] sd 0:0:0:0: [sda] Write Protect is off
[    2.802898] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    2.802932] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    2.802940] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    2.829131] ehci-pci 0000:00:12.2: port 3 reset complete, port enabled
[    2.829146] ehci-pci 0000:00:12.2: GetStatus port:3 status 001005 0  ACK POWER sig=se0 PE CONNECT
[    2.842629]  sda: unknown partition table
[    2.843445] sd 0:0:0:0: [sda] Attached SCSI disk
[    2.881149] usb 1-3: new high-speed USB device number 3 using ehci-pci
[    2.932150] ehci-pci 0000:00:12.2: port 3 reset complete, port enabled
[    2.932166] ehci-pci 0000:00:12.2: GetStatus port:3 status 001005 0  ACK POWER sig=se0 PE CONNECT
[    2.997955] usb 1-3: default language 0x0409
[    2.999068] usb 1-3: udev 3, busnum 1, minor = 2
[    2.999086] usb 1-3: New USB device found, idVendor=1058, idProduct=0748
[    2.999095] usb 1-3: New USB device strings: Mfr=1, Product=2, SerialNumber=5
[    2.999100] usb 1-3: Product: My Passport 0748
[    2.999104] usb 1-3: Manufacturer: Western Digital
[    2.999108] usb 1-3: SerialNumber: 575846314137323937323635
[    2.999785] usb 1-3: usb_probe_device
[    2.999796] usb 1-3: configuration #1 chosen from 1 choice
[    3.000219] usb 1-3: adding 1-3:1.0 (config #1, interface 0)
[    3.000742] usb-storage 1-3:1.0: usb_probe_interface
[    3.000754] usb-storage 1-3:1.0: usb_probe_interface - got id
[    3.001155] scsi2 : usb-storage 1-3:1.0
[    3.001872] hub 2-0:1.0: state 7 ports 5 chg 0006 evt 0000
[    3.001965] hub 2-0:1.0: port 1, status 0501, change 0000, 480 Mb/s
[    3.053223] ehci-pci 0000:00:13.2: port 1 reset complete, port enabled
[    3.053239] ehci-pci 0000:00:13.2: GetStatus port:1 status 001005 0  ACK POWER sig=se0 PE CONNECT
[    3.104259] usb 2-1: new high-speed USB device number 2 using ehci-pci
[    3.112948] msi_wmi: This machine doesn't have neither MSI-hotkeys nor backlight through WMI
[    3.115625] snd_hda_intel 0000:00:01.1: irq 42 for MSI/MSI-X
[    3.121024] snd_hda_intel 0000:00:14.2: setting latency timer to 64
[    3.153043] Netfilter messages via NETLINK v0.30.
[    3.153089] nf_conntrack version 0.5.0 (16384 buckets, 65536 max)
[    3.153512] ctnetlink v0.93: registering with nfnetlink.
[    3.153587] NF_TPROXY: Transparent proxy support initialized, version 4.1.0
[    3.153590] NF_TPROXY: Copyright (c) 2006-2007 BalaBit IT Ltd.
[    3.153610] ip_set: protocol 6
[    3.153620] IPVS: Registered protocols ()
[    3.153945] IPVS: Connection hash table configured (size=4096, memory=64Kbytes)
[    3.154079] IPVS: Creating netns size=1288 id=0
[    3.154104] IPVS: ipvs loaded.
[    3.154283] ip_tables: (C) 2000-2006 Netfilter Core Team
[    3.154357] TCP: cubic registered
[    3.154360] Initializing XFRM netlink socket
[    3.154366] IPv6: Loaded, but administratively disabled, reboot required to enable
[    3.154370] IPv6: ah6_init: can't add xfrm type
[    3.154372] IPv6: esp6_init: can't add xfrm type
[    3.154386] ip6_tables: (C) 2000-2006 Netfilter Core Team
[    3.154447] sit: IPv6 over IPv4 tunneling driver
[    3.155239] NET: Registered protocol family 17
[    3.155293] lib80211: common routines for IEEE802.11 drivers
[    3.155297] lib80211_crypt: registered algorithm 'NULL'
[    3.155300] lib80211_crypt: registered algorithm 'WEP'
[    3.155302] lib80211_crypt: registered algorithm 'CCMP'
[    3.155305] lib80211_crypt: registered algorithm 'TKIP'
[    3.155341] Key type dns_resolver registered
[    3.156132] ehci-pci 0000:00:13.2: port 1 reset complete, port enabled
[    3.156149] ehci-pci 0000:00:13.2: GetStatus port:1 status 001005 0  ACK POWER sig=se0 PE CONNECT
[    3.157708] PM: Hibernation image not present or could not be loaded.
[    3.157741] registered taskstats version 1
[    3.158510]   Magic number: 9:375:352
[    3.158650] console [netcon0] enabled
[    3.158653] netconsole: network logging started
[    3.158743] acpi-cpufreq: overriding BIOS provided _PSD data
[    3.159082] ALSA device list:
[    3.159086]   #0: HD-Audio Generic at 0xd0244000 irq 42
[    3.159089]   #1: HDA ATI SB at 0xd0240000 irq 16
[    3.160741] Freeing unused kernel memory: 896k freed
[    3.161302] Write protecting the kernel read-only data: 16384k
[    3.164310] Freeing unused kernel memory: 520k freed
[    3.173935] Freeing unused kernel memory: 1876k freed
[    3.196824] busybox (1123) used greatest stack depth: 5640 bytes left
[    3.265578] lvm (1145) used greatest stack depth: 5288 bytes left
[    3.340669] usb usb3: usb wakeup-resume
[    3.340689] usb usb3: usb auto-resume
[    3.340699] ehci-pci 0000:00:16.2: resume root hub
[    3.340722] hub 3-0:1.0: hub_resume
[    3.340739] ehci-pci 0000:00:16.2: GetStatus port:1 status 001803 0  ACK POWER sig=j CSC CONNECT
[    3.340749] hub 3-0:1.0: port 1: status 0501 change 0001
[    3.521655] psmouse serio1: synaptics: Touchpad model: 1, fw: 7.4, id: 0x1e0b1, caps: 0xd04773/0xe40000/0x5a0400, board id: 3655, fw id: 684465
[    3.573152] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input6
[    3.797761] scsi 1:0:0:0: Direct-Access     Kingston DataTraveler SE9 1.00 PQ: 0 ANSI: 4
[    3.799595] sd 1:0:0:0: Attached scsi generic sg1 type 0
[    3.800059] sd 1:0:0:0: [sdb] 15148608 512-byte logical blocks: (7.75 GB/7.22 GiB)
[    3.800799] sd 1:0:0:0: [sdb] Write Protect is off
[    3.800818] sd 1:0:0:0: [sdb] Mode Sense: 45 00 00 00
[    3.801420] sd 1:0:0:0: [sdb] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
[    3.806579]  sdb: sdb1
[    3.812837] sd 1:0:0:0: [sdb] Attached SCSI removable disk
[    4.006234] scsi 2:0:0:0: Direct-Access     WD       My Passport 0748 1015 PQ: 0 ANSI: 6
[    4.008030] sd 2:0:0:0: Attached scsi generic sg2 type 0
[    4.008641] sd 2:0:0:0: [sdc] 1953458176 512-byte logical blocks: (1.00 TB/931 GiB)
[    4.060831] ehci-pci 0000:00:12.2: port 3 reset complete, port enabled
[    4.060848] ehci-pci 0000:00:12.2: GetStatus port:3 status 001005 0  ACK POWER sig=se0 PE CONNECT
[    4.106171] usb 2-1: skipped 1 descriptor after configuration
[    4.106188] usb 2-1: skipped 5 descriptors after interface
[    4.106195] usb 2-1: skipped 1 descriptor after endpoint
[    4.106200] usb 2-1: skipped 15 descriptors after interface
[    4.107912] usb 2-1: default language 0x0409
[    4.111864] usb 1-3: reset high-speed USB device number 3 using ehci-pci
[    4.123925] usb 2-1: udev 2, busnum 2, minor = 129
[    4.123942] usb 2-1: New USB device found, idVendor=04f2, idProduct=b236
[    4.123950] usb 2-1: New USB device strings: Mfr=3, Product=1, SerialNumber=2
[    4.123955] usb 2-1: Product: CNFA033
[    4.123959] usb 2-1: Manufacturer: Chicony Electronics Co., Ltd.
[    4.123963] usb 2-1: SerialNumber: 0x0001
[    4.124753] usb 2-1: usb_probe_device
[    4.124765] usb 2-1: configuration #1 chosen from 1 choice
[    4.138436] usb 2-1: adding 2-1:1.0 (config #1, interface 0)
[    4.144346] usb 2-1: adding 2-1:1.1 (config #1, interface 1)
[    4.144896] hub 2-0:1.0: port 2, status 0501, change 0000, 480 Mb/s
[    4.162924] ehci-pci 0000:00:12.2: port 3 reset complete, port enabled
[    4.162939] ehci-pci 0000:00:12.2: GetStatus port:3 status 001005 0  ACK POWER sig=se0 PE CONNECT
[    4.236083] sd 2:0:0:0: [sdc] Write Protect is off
[    4.236103] sd 2:0:0:0: [sdc] Mode Sense: 47 00 10 08
[    4.237074] sd 2:0:0:0: [sdc] No Caching mode page present
[    4.237091] sd 2:0:0:0: [sdc] Assuming drive cache: write through
[    4.240919] sd 2:0:0:0: [sdc] No Caching mode page present
[    4.240931] sd 2:0:0:0: [sdc] Assuming drive cache: write through
[    4.278953] ehci-pci 0000:00:13.2: port 2 reset complete, port enabled
[    4.278975] ehci-pci 0000:00:13.2: GetStatus port:2 status 001005 0  ACK POWER sig=se0 PE CONNECT
[    4.329982] usb 2-2: new high-speed USB device number 3 using ehci-pci
[    4.383053] ehci-pci 0000:00:13.2: port 2 reset complete, port enabled
[    4.383068] ehci-pci 0000:00:13.2: GetStatus port:2 status 001005 0  ACK POWER sig=se0 PE CONNECT
[    4.454078] usb 2-2: default language 0x0409
[    4.459860] usb 2-2: udev 3, busnum 2, minor = 130
[    4.459872] usb 2-2: New USB device found, idVendor=0bda, idProduct=0138
[    4.459876] usb 2-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    4.459881] usb 2-2: Product: USB2.0-CRW
[    4.459885] usb 2-2: Manufacturer: Generic
[    4.459889] usb 2-2: SerialNumber: 20090516388200000
[    4.460574] usb 2-2: usb_probe_device
[    4.460587] usb 2-2: configuration #1 chosen from 1 choice
[    4.463075] usb 2-2: adding 2-2:1.0 (config #1, interface 0)
[    4.467246] usb-storage 2-2:1.0: usb_probe_interface
[    4.467262] usb-storage 2-2:1.0: usb_probe_interface - got id
[    4.467716] scsi3 : usb-storage 2-2:1.0
[    4.468407] hub 5-0:1.0: state 7 ports 5 chg 0000 evt 0000
[    4.468425] hub 6-0:1.0: state 7 ports 4 chg 0000 evt 0000
[    4.468432] hub 3-0:1.0: state 7 ports 4 chg 0002 evt 0000
[    4.468450] hub 3-0:1.0: port 1, status 0501, change 0000, 480 Mb/s
[    4.468474] hub 5-0:1.0: hub_suspend
[    4.468485] usb usb5: bus auto-suspend, wakeup 1
[    4.468492] ohci_hcd 0000:00:13.0: suspend root hub
[    4.468514] hub 6-0:1.0: hub_suspend
[    4.468519] usb usb6: bus auto-suspend, wakeup 1
[    4.468524] ohci_hcd 0000:00:16.0: suspend root hub
[    4.519104] ehci-pci 0000:00:16.2: port 1 full speed --> companion
[    4.519124] ehci-pci 0000:00:16.2: GetStatus port:1 status 003801 0  ACK POWER OWNER sig=j CONNECT
[    4.519158] hub 3-0:1.0: port_wait_reset: err = -16
[    4.519163] hub 3-0:1.0: port 1 not enabled, trying reset again...
[    4.519255] usb usb6: usb wakeup-resume
[    4.519268] usb usb6: usb auto-resume
[    4.525095] ohci_hcd 0000:00:16.0: wakeup root hub
[    4.574136] hub 6-0:1.0: hub_resume
[    4.574164] ohci_hcd 0000:00:16.0: GetStatus roothub.portstatus [0] = 0x00010101 CSC PPS CCS
[    4.574175] hub 6-0:1.0: port 1: status 0101 change 0001
[    4.720252] ehci-pci 0000:00:16.2: GetStatus port:1 status 003002 0  ACK POWER OWNER sig=se0 CSC
[    4.720294] hub 3-0:1.0: state 7 ports 4 chg 0000 evt 0002
[    4.720305] ehci-pci 0000:00:16.2: GetStatus port:1 status 003002 0  ACK POWER OWNER sig=se0 CSC
[    4.720314] hub 3-0:1.0: port 1, status 0100, change 0001, 12 Mb/s
[    4.824302] hub 3-0:1.0: debounce: port 1: total 100ms stable 100ms status 0x100
[    4.824327] hub 6-0:1.0: state 7 ports 4 chg 0002 evt 0000
[    4.824339] hub 6-0:1.0: port 1, status 0101, change 0000, 12 Mb/s
[    4.824396] hub 3-0:1.0: hub_suspend
[    4.824408] usb usb3: bus auto-suspend, wakeup 1
[    4.824413] ehci-pci 0000:00:16.2: suspend root hub
[    4.845314] ohci_hcd 0000:00:16.0: port[0] reset timeout, stat 00000111
[    4.896331] ohci_hcd 0000:00:16.0: GetStatus roothub.portstatus [0] = 0x00100103 PRSC PPS PES CCS
[    4.947363] usb 6-1: new full-speed USB device number 2 using ohci_hcd
[    4.974390] ohci_hcd 0000:00:16.0: port[0] reset timeout, stat 00000113
[    5.025406] ohci_hcd 0000:00:16.0: GetStatus roothub.portstatus [0] = 0x00100103 PRSC PPS PES CCS
[    5.112713] usb 6-1: default language 0x0409
[    5.118724] usb 6-1: udev 2, busnum 6, minor = 641
[    5.118740] usb 6-1: New USB device found, idVendor=148f, idProduct=2000
[    5.118745] usb 6-1: New USB device strings: Mfr=0, Product=2, SerialNumber=0
[    5.118749] usb 6-1: Product: CSR BS8510
[    5.119431] usb 6-1: usb_probe_device
[    5.119444] usb 6-1: configuration #1 chosen from 1 choice
[    5.120545] usb 6-1: adding 6-1:1.0 (config #1, interface 0)
[    5.121066] usb 6-1: adding 6-1:1.1 (config #1, interface 1)
[    5.121601] hub 6-0:1.0: state 7 ports 4 chg 0000 evt 0002
[    5.474885] scsi 3:0:0:0: Direct-Access     Generic- Multi-Card       1.00 PQ: 0 ANSI: 0 CCS
[    5.476705] sd 3:0:0:0: Attached scsi generic sg3 type 0
[    5.483549] sd 3:0:0:0: [sdd] Attached SCSI removable disk
[    6.966635]  sdc: sdc1
[    6.971141] sd 2:0:0:0: [sdc] No Caching mode page present
[    6.971158] sd 2:0:0:0: [sdc] Assuming drive cache: write through
[    6.971170] sd 2:0:0:0: [sdc] Attached SCSI disk
[   16.405384] bio: create slab <bio-1> at 1
[   25.464832] bio: create slab <bio-1> at 1
[   25.926472] bio: create slab <bio-1> at 1
[   25.927533] cryptsetup (1153) used greatest stack depth: 5104 bytes left
[   26.382116] lvm (1236) used greatest stack depth: 4736 bytes left
[   26.414383] EXT4-fs (dm-1): mounted filesystem with ordered data mode. Opts: (null)
[   26.414673] busybox (1256) used greatest stack depth: 4664 bytes left
[   27.231339] init-early.sh (1267) used greatest stack depth: 4528 bytes left
[   27.327497] mount (1276) used greatest stack depth: 4424 bytes left
[   28.180809] udevd[1380]: starting version 171
[   28.726421] udevadm (1383) used greatest stack depth: 4320 bytes left
[   28.988379] cfg80211: Updating information on frequency 2412 MHz with regulatory rule:
[   28.988388] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   28.988392] cfg80211: Updating information on frequency 2417 MHz with regulatory rule:
[   28.988395] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   28.988398] cfg80211: Updating information on frequency 2422 MHz with regulatory rule:
[   28.988402] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   28.988404] cfg80211: Updating information on frequency 2427 MHz with regulatory rule:
[   28.988407] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   28.988410] cfg80211: Updating information on frequency 2432 MHz with regulatory rule:
[   28.988413] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   28.988415] cfg80211: Updating information on frequency 2437 MHz with regulatory rule:
[   28.988418] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   28.988421] cfg80211: Updating information on frequency 2442 MHz with regulatory rule:
[   28.988424] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   28.988426] cfg80211: Updating information on frequency 2447 MHz with regulatory rule:
[   28.988429] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   28.988432] cfg80211: Updating information on frequency 2452 MHz with regulatory rule:
[   28.988435] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   28.988437] cfg80211: Updating information on frequency 2457 MHz with regulatory rule:
[   28.988440] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   28.988443] cfg80211: Updating information on frequency 2462 MHz with regulatory rule:
[   28.988446] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   28.988448] cfg80211: Updating information on frequency 2467 MHz with regulatory rule:
[   28.988451] cfg80211: 2457000 KHz - 2482000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   28.988454] cfg80211: Updating information on frequency 2472 MHz with regulatory rule:
[   28.988457] cfg80211: 2457000 KHz - 2482000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   28.988459] cfg80211: Updating information on frequency 2484 MHz with regulatory rule:
[   28.988462] cfg80211: 2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[   28.988467] cfg80211: World regulatory domain updated:
[   28.988470] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[   28.988473] cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   28.988476] cfg80211:   (2457000 KHz - 2482000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   28.988479] cfg80211:   (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[   28.988482] cfg80211:   (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   28.988485] cfg80211:   (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   30.128015] EXT4-fs (dm-1): re-mounted. Opts: (null)
[   30.364125] REISERFS (device dm-2): found reiserfs format "3.6" with standard journal
[   30.364159] REISERFS (device dm-2): using ordered data mode
[   30.364162] reiserfs: using flush barriers
[   30.370602] REISERFS (device dm-2): journal params: device dm-2, size 8192, journal first block 18, max trans len 1024, max batch 900, max commit age 30, max trans age 30
[   30.372141] REISERFS (device dm-2): checking transaction log (dm-2)
[   30.423972] REISERFS (device dm-2): Using r5 hash to sort names
[   30.461059] XFS (dm-3): osyncisdsync has no effect, option is deprecated.
[   30.502990] XFS (dm-3): Mounting Filesystem
[   30.750490] XFS (dm-3): Ending clean mount
[   30.793313] mount (2145) used greatest stack depth: 4232 bytes left
[   35.954935] phy0 -> rt2x00lib_request_firmware: Info - Loading firmware file 'rt2860.bin'.
[   35.987894] phy0 -> rt2x00lib_request_firmware: Info - Firmware detected - version: 0.34.
[   36.005458] phy0 -> rt2x00mac_conf_tx: Debug - Configured TX queue 0 - CWmin: 4, CWmax: 10, Aifs: 2, TXop: 0.
[   36.005501] phy0 -> rt2x00mac_conf_tx: Debug - Configured TX queue 1 - CWmin: 4, CWmax: 10, Aifs: 2, TXop: 0.
[   36.005511] phy0 -> rt2x00mac_conf_tx: Debug - Configured TX queue 2 - CWmin: 4, CWmax: 10, Aifs: 2, TXop: 0.
[   36.005521] phy0 -> rt2x00mac_conf_tx: Debug - Configured TX queue 3 - CWmin: 4, CWmax: 10, Aifs: 2, TXop: 0.
[   36.008750] ifconfig (2592) used greatest stack depth: 3784 bytes left
[   45.194785] r8169 0000:01:00.0 eth0: link down
[   49.884445] phy0 -> rt2x00mac_conf_tx: Debug - Configured TX queue 0 - CWmin: 4, CWmax: 10, Aifs: 2, TXop: 0.
[   49.884487] phy0 -> rt2x00mac_conf_tx: Debug - Configured TX queue 1 - CWmin: 4, CWmax: 10, Aifs: 2, TXop: 0.
[   49.884497] phy0 -> rt2x00mac_conf_tx: Debug - Configured TX queue 2 - CWmin: 4, CWmax: 10, Aifs: 2, TXop: 0.
[   49.884538] phy0 -> rt2x00mac_conf_tx: Debug - Configured TX queue 3 - CWmin: 4, CWmax: 10, Aifs: 2, TXop: 0.
[   50.091953] r8169 0000:01:00.0 eth0: link down
[   50.155389] phy0 -> rt2x00mac_conf_tx: Debug - Configured TX queue 0 - CWmin: 4, CWmax: 10, Aifs: 2, TXop: 0.
[   50.155432] phy0 -> rt2x00mac_conf_tx: Debug - Configured TX queue 1 - CWmin: 4, CWmax: 10, Aifs: 2, TXop: 0.
[   50.155442] phy0 -> rt2x00mac_conf_tx: Debug - Configured TX queue 2 - CWmin: 4, CWmax: 10, Aifs: 2, TXop: 0.
[   50.155483] phy0 -> rt2x00mac_conf_tx: Debug - Configured TX queue 3 - CWmin: 4, CWmax: 10, Aifs: 2, TXop: 0.
[   53.410486] wlan0: authenticate with 00:1d:cd:f6:41:74
[   53.413466] wlan0: send auth to 00:1d:cd:f6:41:74 (try 1/3)
[   53.415447] wlan0: authenticated
[   53.415496] rt2800pci 0000:02:00.0 wlan0: disabling HT/VHT due to WEP/TKIP use
[   53.415502] rt2800pci 0000:02:00.0 wlan0: disabling HT as WMM/QoS is not supported by the AP
[   53.415506] rt2800pci 0000:02:00.0 wlan0: disabling VHT as WMM/QoS is not supported by the AP
[   53.416358] wlan0: associate with 00:1d:cd:f6:41:74 (try 1/3)
[   53.419631] wlan0: RX AssocResp from 00:1d:cd:f6:41:74 (capab=0x411 status=0 aid=1)
[   53.419925] phy0 -> rt2x00mac_conf_tx: Debug - Configured TX queue 0 - CWmin: 4, CWmax: 10, Aifs: 2, TXop: 0.
[   53.419966] phy0 -> rt2x00mac_conf_tx: Debug - Configured TX queue 1 - CWmin: 4, CWmax: 10, Aifs: 2, TXop: 0.
[   53.419975] phy0 -> rt2x00mac_conf_tx: Debug - Configured TX queue 2 - CWmin: 4, CWmax: 10, Aifs: 2, TXop: 0.
[   53.419985] phy0 -> rt2x00mac_conf_tx: Debug - Configured TX queue 3 - CWmin: 4, CWmax: 10, Aifs: 2, TXop: 0.
[   53.420018] wlan0: associated
[  140.504001] hda-intel: IRQ timing workaround is activated for card #0. Suggest a bigger bdl_pos_adj.