ubuntuusers.de

OriginalKernel313

Autor:
czil
Datum:
28. Juni 2014 00:26
Code:
   1
   2
   3
   4
   5
   6
   7
   8
   9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  32
  33
  34
  35
  36
  37
  38
  39
  40
  41
  42
  43
  44
  45
  46
  47
  48
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  59
  60
  61
  62
  63
  64
  65
  66
  67
  68
  69
  70
  71
  72
  73
  74
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 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
[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Initializing cgroup subsys cpuacct
[    0.000000] Linux version 3.13.0-29-generic (buildd@toyol) (gcc version 4.8.2 (Ubuntu 4.8.2-19ubuntu1) ) #53-Ubuntu SMP Wed Jun 4 21:00:20 UTC 2014 (Ubuntu 3.13.0-29.53-generic 3.13.11.2)
[    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-3.13.0-29-generic root=UUID=3c855e3a-92a2-4535-b102-da0f2c5b466c ro quiet splash vt.handoff=7
[    0.000000] KERNEL supported cpus:
[    0.000000]   Intel GenuineIntel
[    0.000000]   AMD AuthenticAMD
[    0.000000]   Centaur CentaurHauls
[    0.000000] e820: BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009e7ff] usable
[    0.000000] BIOS-e820: [mem 0x000000000009f800-0x000000000009ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000cfedffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000cfee0000-0x00000000cfee2fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000cfee3000-0x00000000cfeeffff] ACPI data
[    0.000000] BIOS-e820: [mem 0x00000000cfef0000-0x00000000cfefffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000e3ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x00000001afffffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] SMBIOS 2.4 present.
[    0.000000] DMI: Gigabyte Technology Co., Ltd. EP45-DS3/EP45-DS3, BIOS F7 07/23/2008
[    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 = 0x1b0000 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-CFFFF write-protect
[    0.000000]   D0000-EFFFF uncachable
[    0.000000]   F0000-FFFFF write-through
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 000000000 mask F00000000 write-back
[    0.000000]   1 base 0E0000000 mask FE0000000 uncachable
[    0.000000]   2 base 0D0000000 mask FF0000000 uncachable
[    0.000000]   3 base 100000000 mask F00000000 write-back
[    0.000000]   4 base 1C0000000 mask FC0000000 uncachable
[    0.000000]   5 base 1B0000000 mask FF0000000 uncachable
[    0.000000]   6 base 0CFF00000 mask FFFF00000 uncachable
[    0.000000]   7 disabled
[    0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[    0.000000] original variable MTRRs
[    0.000000] reg 0, base: 0GB, range: 4GB, type WB
[    0.000000] reg 1, base: 3584MB, range: 512MB, type UC
[    0.000000] reg 2, base: 3328MB, range: 256MB, type UC
[    0.000000] reg 3, base: 4GB, range: 4GB, type WB
[    0.000000] reg 4, base: 7GB, range: 1GB, type UC
[    0.000000] reg 5, base: 6912MB, range: 256MB, type UC
[    0.000000] reg 6, base: 3327MB, range: 1MB, type UC
[    0.000000] total RAM covered: 6143M
[    0.000000] Found optimal setting for mtrr clean up
[    0.000000]  gran_size: 64K 	chunk_size: 2M 	num_reg: 7  	lose cover RAM: 0G
[    0.000000] New variable MTRRs
[    0.000000] reg 0, base: 0GB, range: 2GB, type WB
[    0.000000] reg 1, base: 2GB, range: 1GB, type WB
[    0.000000] reg 2, base: 3GB, range: 256MB, type WB
[    0.000000] reg 3, base: 3327MB, range: 1MB, type UC
[    0.000000] reg 4, base: 4GB, range: 2GB, type WB
[    0.000000] reg 5, base: 6GB, range: 512MB, type WB
[    0.000000] reg 6, base: 6656MB, range: 256MB, type WB
[    0.000000] e820: update [mem 0xcff00000-0xffffffff] usable ==> reserved
[    0.000000] e820: last_pfn = 0xcfee0 max_arch_pfn = 0x400000000
[    0.000000] found SMP MP-table at [mem 0x000f56c0-0x000f56cf] mapped at [ffff8800000f56c0]
[    0.000000] Scanning 1 areas for low memory corruption
[    0.000000] Base memory trampoline at [ffff880000098000] 98000 size 24576
[    0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
[    0.000000]  [mem 0x00000000-0x000fffff] page 4k
[    0.000000] BRK [0x01fde000, 0x01fdefff] PGTABLE
[    0.000000] BRK [0x01fdf000, 0x01fdffff] PGTABLE
[    0.000000] BRK [0x01fe0000, 0x01fe0fff] PGTABLE
[    0.000000] init_memory_mapping: [mem 0x1afe00000-0x1afffffff]
[    0.000000]  [mem 0x1afe00000-0x1afffffff] page 2M
[    0.000000] BRK [0x01fe1000, 0x01fe1fff] PGTABLE
[    0.000000] init_memory_mapping: [mem 0x1ac000000-0x1afdfffff]
[    0.000000]  [mem 0x1ac000000-0x1afdfffff] page 2M
[    0.000000] init_memory_mapping: [mem 0x180000000-0x1abffffff]
[    0.000000]  [mem 0x180000000-0x1abffffff] page 2M
[    0.000000] init_memory_mapping: [mem 0x00100000-0xcfedffff]
[    0.000000]  [mem 0x00100000-0x001fffff] page 4k
[    0.000000]  [mem 0x00200000-0xcfdfffff] page 2M
[    0.000000]  [mem 0xcfe00000-0xcfedffff] page 4k
[    0.000000] init_memory_mapping: [mem 0x100000000-0x17fffffff]
[    0.000000]  [mem 0x100000000-0x17fffffff] page 2M
[    0.000000] BRK [0x01fe2000, 0x01fe2fff] PGTABLE
[    0.000000] BRK [0x01fe3000, 0x01fe3fff] PGTABLE
[    0.000000] RAMDISK: [mem 0x35b84000-0x36db9fff]
[    0.000000] ACPI: RSDP 00000000000f70b0 000014 (v00 GBT   )
[    0.000000] ACPI: RSDT 00000000cfee3040 000038 (v01 GBT    GBTUACPI 42302E31 GBTU 01010101)
[    0.000000] ACPI: FACP 00000000cfee30c0 000074 (v01 GBT    GBTUACPI 42302E31 GBTU 01010101)
[    0.000000] ACPI: DSDT 00000000cfee3180 004C26 (v01 GBT    GBTUACPI 00001000 MSFT 0100000C)
[    0.000000] ACPI: FACS 00000000cfee0000 000040
[    0.000000] ACPI: HPET 00000000cfee7f00 000038 (v01 GBT    GBTUACPI 42302E31 GBTU 00000098)
[    0.000000] ACPI: MCFG 00000000cfee7f80 00003C (v01 GBT    GBTUACPI 42302E31 GBTU 01010101)
[    0.000000] ACPI: APIC 00000000cfee7e00 000084 (v01 GBT    GBTUACPI 42302E31 GBTU 01010101)
[    0.000000] ACPI: SSDT 00000000cfee8620 0003AB (v01  PmRef    CpuPm 00003000 INTL 20040311)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] No NUMA configuration found
[    0.000000] Faking a node at [mem 0x0000000000000000-0x00000001afffffff]
[    0.000000] Initmem setup node 0 [mem 0x00000000-0x1afffffff]
[    0.000000]   NODE_DATA [mem 0x1afff7000-0x1afffbfff]
[    0.000000]  [ffffea0000000000-ffffea0006bfffff] PMD -> [ffff8801a9600000-ffff8801af5fffff] on node 0
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x00001000-0x00ffffff]
[    0.000000]   DMA32    [mem 0x01000000-0xffffffff]
[    0.000000]   Normal   [mem 0x100000000-0x1afffffff]
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x00001000-0x0009dfff]
[    0.000000]   node   0: [mem 0x00100000-0xcfedffff]
[    0.000000]   node   0: [mem 0x100000000-0x1afffffff]
[    0.000000] On node 0 totalpages: 1572477
[    0.000000]   DMA zone: 64 pages used for memmap
[    0.000000]   DMA zone: 21 pages reserved
[    0.000000]   DMA zone: 3997 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 13244 pages used for memmap
[    0.000000]   DMA32 zone: 847584 pages, LIFO batch:31
[    0.000000]   Normal zone: 11264 pages used for memmap
[    0.000000]   Normal zone: 720896 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[0x02] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x03] disabled)
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] dfl dfl lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] dfl dfl lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] dfl dfl lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x03] dfl dfl 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] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[    0.000000] smpboot: Allowing 4 CPUs, 2 hotplug CPUs
[    0.000000] nr_irqs_gsi: 40
[    0.000000] PM: Registered nosave memory: [mem 0x0009e000-0x0009ffff]
[    0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000effff]
[    0.000000] PM: Registered nosave memory: [mem 0x000f0000-0x000fffff]
[    0.000000] PM: Registered nosave memory: [mem 0xcfee0000-0xcfee2fff]
[    0.000000] PM: Registered nosave memory: [mem 0xcfee3000-0xcfeeffff]
[    0.000000] PM: Registered nosave memory: [mem 0xcfef0000-0xcfefffff]
[    0.000000] PM: Registered nosave memory: [mem 0xcff00000-0xdfffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xe0000000-0xe3ffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xe4000000-0xfebfffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfec00000-0xffffffff]
[    0.000000] e820: [mem 0xe4000000-0xfebfffff] available for PCI devices
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] setup_percpu: NR_CPUS:256 nr_cpumask_bits:256 nr_cpu_ids:4 nr_node_ids:1
[    0.000000] PERCPU: Embedded 29 pages/cpu @ffff8801afc00000 s86336 r8192 d24256 u524288
[    0.000000] pcpu-alloc: s86336 r8192 d24256 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: 1547884
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-3.13.0-29-generic root=UUID=3c855e3a-92a2-4535-b102-da0f2c5b466c ro quiet splash vt.handoff=7
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] xsave: enabled xstate_bv 0x3, cntxt size 0x240
[    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: 6089800K/6289908K available (7356K kernel code, 1142K rwdata, 3396K rodata, 1332K init, 1440K bss, 200108K reserved)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[    0.000000] Hierarchical RCU implementation.
[    0.000000] 	RCU dyntick-idle grace-period acceleration is enabled.
[    0.000000] 	RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=4.
[    0.000000] 	Offload RCU callbacks from all CPUs
[    0.000000] 	Offload RCU callbacks from CPUs: 0-3.
[    0.000000] NR_IRQS:16640 nr_irqs:712 16
[    0.000000] Console: colour dummy device 80x25
[    0.000000] console [tty0] enabled
[    0.000000] allocated 25165824 bytes of page_cgroup
[    0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
[    0.000000] hpet clockevent registered
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] tsc: Detected 2999.740 MHz processor
[    0.004003] Calibrating delay loop (skipped), value calculated using timer frequency.. 5999.48 BogoMIPS (lpj=11998960)
[    0.004006] pid_max: default: 32768 minimum: 301
[    0.004033] Security Framework initialized
[    0.004055] AppArmor: AppArmor initialized
[    0.004056] Yama: becoming mindful.
[    0.008052] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
[    0.013503] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
[    0.016155] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes)
[    0.016166] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes)
[    0.016561] Initializing cgroup subsys memory
[    0.016570] Initializing cgroup subsys devices
[    0.016572] Initializing cgroup subsys freezer
[    0.016574] Initializing cgroup subsys blkio
[    0.016576] Initializing cgroup subsys perf_event
[    0.016578] Initializing cgroup subsys hugetlb
[    0.016602] CPU: Physical Processor ID: 0
[    0.016603] CPU: Processor Core ID: 0
[    0.016605] mce: CPU supports 6 MCE banks
[    0.016612] CPU0: Thermal monitoring enabled (TM2)
[    0.016619] Last level iTLB entries: 4KB 128, 2MB 4, 4MB 4
[    0.016619] Last level dTLB entries: 4KB 256, 2MB 0, 4MB 32
[    0.016619] tlb_flushall_shift: -1
[    0.016711] Freeing SMP alternatives memory: 32K (ffffffff81e6c000 - ffffffff81e74000)
[    0.017975] ACPI: Core revision 20131115
[    0.019356] ACPI: All ACPI Tables successfully acquired
[    0.020027] ftrace: allocating 28463 entries in 112 pages
[    0.028419] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.069367] smpboot: CPU0: Intel(R) Core(TM)2 Duo CPU     E8400  @ 3.00GHz (fam: 06, model: 17, stepping: 0a)
[    0.072000] Performance Events: PEBS fmt0+, 4-deep LBR, Core2 events, Intel PMU driver.
[    0.072000] ... version:                2
[    0.072000] ... bit width:              40
[    0.072000] ... generic registers:      2
[    0.072000] ... value mask:             000000ffffffffff
[    0.072000] ... max period:             000000007fffffff
[    0.072000] ... fixed-purpose events:   3
[    0.072000] ... event mask:             0000000700000003
[    0.072000] x86: Booting SMP configuration:
[    0.072000] .... node  #0, CPUs:      #1
[    0.084040] x86: Booted up 1 node, 2 CPUs
[    0.084044] smpboot: Total of 2 processors activated (11998.96 BogoMIPS)
[    0.084134] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.086773] devtmpfs: initialized
[    0.095302] EVM: security.selinux
[    0.095304] EVM: security.SMACK64
[    0.095305] EVM: security.ima
[    0.095306] EVM: security.capability
[    0.096020] PM: Registering ACPI NVS region [mem 0xcfee0000-0xcfee2fff] (12288 bytes)
[    0.096667] pinctrl core: initialized pinctrl subsystem
[    0.096667] regulator-dummy: no parameters
[    0.096667] RTC time: 22:23:59, date: 06/27/14
[    0.096667] NET: Registered protocol family 16
[    0.096667] cpuidle: using governor ladder
[    0.096667] cpuidle: using governor menu
[    0.096667] ACPI: bus type PCI registered
[    0.096667] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.096667] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xe0000000-0xe3ffffff] (base 0xe0000000)
[    0.096667] PCI: MMCONFIG at [mem 0xe0000000-0xe3ffffff] reserved in E820
[    0.099969] PCI: Using configuration type 1 for base access
[    0.100776] bio: create slab <bio-0> at 0
[    0.100776] ACPI: Added _OSI(Module Device)
[    0.100776] ACPI: Added _OSI(Processor Device)
[    0.100776] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.100776] ACPI: Added _OSI(Processor Aggregator Device)
[    0.104168] ACPI: SSDT 00000000cfee8000 00022A (v01  PmRef  Cpu0Ist 00003000 INTL 20040311)
[    0.104317] ACPI: Dynamic OEM Table Load:
[    0.104319] ACPI: SSDT           (null) 00022A (v01  PmRef  Cpu0Ist 00003000 INTL 20040311)
[    0.104392] ACPI: SSDT 00000000cfee84c0 000152 (v01  PmRef  Cpu1Ist 00003000 INTL 20040311)
[    0.104530] ACPI: Dynamic OEM Table Load:
[    0.104532] ACPI: SSDT           (null) 000152 (v01  PmRef  Cpu1Ist 00003000 INTL 20040311)
[    0.104644] ACPI: Interpreter enabled
[    0.104649] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20131115/hwxface-580)
[    0.104653] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20131115/hwxface-580)
[    0.104665] ACPI: (supports S0 S3 S4 S5)
[    0.104666] ACPI: Using IOAPIC for interrupt routing
[    0.104690] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.104788] ACPI: No dock devices found.
[    0.109510] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3f])
[    0.109515] acpi PNP0A03:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    0.109519] acpi PNP0A03:00: _OSC failed (AE_NOT_FOUND); disabling ASPM
[    0.109722] PCI host bridge to bus 0000:00
[    0.109725] pci_bus 0000:00: root bus resource [bus 00-3f]
[    0.109727] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7]
[    0.109729] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff]
[    0.109731] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
[    0.109733] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000dffff]
[    0.109734] pci_bus 0000:00: root bus resource [mem 0xcff00000-0xfebfffff]
[    0.109742] pci 0000:00:00.0: [8086:2e20] type 00 class 0x060000
[    0.109758] DMAR: Forcing write-buffer flush capability
[    0.109760] DMAR: Disabling IOMMU for graphics on this chipset
[    0.109827] pci 0000:00:01.0: [8086:2e21] type 01 class 0x060400
[    0.109858] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[    0.109938] pci 0000:00:1a.0: [8086:3a37] type 00 class 0x0c0300
[    0.109974] pci 0000:00:1a.0: reg 0x20: [io  0xe000-0xe01f]
[    0.110044] pci 0000:00:1a.0: System wakeup disabled by ACPI
[    0.110072] pci 0000:00:1a.1: [8086:3a38] type 00 class 0x0c0300
[    0.110108] pci 0000:00:1a.1: reg 0x20: [io  0xe100-0xe11f]
[    0.110176] pci 0000:00:1a.1: System wakeup disabled by ACPI
[    0.110205] pci 0000:00:1a.2: [8086:3a39] type 00 class 0x0c0300
[    0.110241] pci 0000:00:1a.2: reg 0x20: [io  0xe200-0xe21f]
[    0.110310] pci 0000:00:1a.2: System wakeup disabled by ACPI
[    0.110340] pci 0000:00:1a.7: [8086:3a3c] type 00 class 0x0c0320
[    0.110355] pci 0000:00:1a.7: reg 0x10: [mem 0xe9305000-0xe93053ff]
[    0.110454] pci 0000:00:1a.7: System wakeup disabled by ACPI
[    0.110485] pci 0000:00:1b.0: [8086:3a3e] type 00 class 0x040300
[    0.110498] pci 0000:00:1b.0: reg 0x10: [mem 0xe9300000-0xe9303fff 64bit]
[    0.110554] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    0.110598] pci 0000:00:1b.0: System wakeup disabled by ACPI
[    0.110625] pci 0000:00:1c.0: [8086:3a40] type 01 class 0x060400
[    0.110682] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.110727] pci 0000:00:1c.0: System wakeup disabled by ACPI
[    0.110757] pci 0000:00:1c.3: [8086:3a46] type 01 class 0x060400
[    0.110814] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
[    0.110859] pci 0000:00:1c.3: System wakeup disabled by ACPI
[    0.110887] pci 0000:00:1c.4: [8086:3a48] type 01 class 0x060400
[    0.110944] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
[    0.110989] pci 0000:00:1c.4: System wakeup disabled by ACPI
[    0.111016] pci 0000:00:1c.5: [8086:3a4a] type 01 class 0x060400
[    0.111073] pci 0000:00:1c.5: PME# supported from D0 D3hot D3cold
[    0.111117] pci 0000:00:1c.5: System wakeup disabled by ACPI
[    0.111146] pci 0000:00:1d.0: [8086:3a34] type 00 class 0x0c0300
[    0.111182] pci 0000:00:1d.0: reg 0x20: [io  0xe300-0xe31f]
[    0.111251] pci 0000:00:1d.0: System wakeup disabled by ACPI
[    0.111281] pci 0000:00:1d.1: [8086:3a35] type 00 class 0x0c0300
[    0.111316] pci 0000:00:1d.1: reg 0x20: [io  0xe400-0xe41f]
[    0.111385] pci 0000:00:1d.1: System wakeup disabled by ACPI
[    0.111413] pci 0000:00:1d.2: [8086:3a36] type 00 class 0x0c0300
[    0.111449] pci 0000:00:1d.2: reg 0x20: [io  0xe500-0xe51f]
[    0.111518] pci 0000:00:1d.2: System wakeup disabled by ACPI
[    0.111550] pci 0000:00:1d.7: [8086:3a3a] type 00 class 0x0c0320
[    0.111564] pci 0000:00:1d.7: reg 0x10: [mem 0xe9304000-0xe93043ff]
[    0.111663] pci 0000:00:1d.7: System wakeup disabled by ACPI
[    0.111690] pci 0000:00:1e.0: [8086:244e] type 01 class 0x060401
[    0.111766] pci 0000:00:1e.0: System wakeup disabled by ACPI
[    0.111795] pci 0000:00:1f.0: [8086:3a18] type 00 class 0x060100
[    0.111944] pci 0000:00:1f.2: [8086:3a22] type 00 class 0x010601
[    0.111960] pci 0000:00:1f.2: reg 0x10: [io  0xe600-0xe607]
[    0.111967] pci 0000:00:1f.2: reg 0x14: [io  0xe700-0xe703]
[    0.111973] pci 0000:00:1f.2: reg 0x18: [io  0xe800-0xe807]
[    0.111980] pci 0000:00:1f.2: reg 0x1c: [io  0xe900-0xe903]
[    0.111986] pci 0000:00:1f.2: reg 0x20: [io  0xea00-0xea1f]
[    0.111993] pci 0000:00:1f.2: reg 0x24: [mem 0xe9306000-0xe93067ff]
[    0.112039] pci 0000:00:1f.2: PME# supported from D3hot
[    0.112103] pci 0000:00:1f.3: [8086:3a30] type 00 class 0x0c0500
[    0.112116] pci 0000:00:1f.3: reg 0x10: [mem 0xe9307000-0xe93070ff 64bit]
[    0.112134] pci 0000:00:1f.3: reg 0x20: [io  0x0500-0x051f]
[    0.112236] pci 0000:01:00.0: [1002:95c5] type 00 class 0x030000
[    0.112248] pci 0000:01:00.0: reg 0x10: [mem 0xd0000000-0xdfffffff 64bit pref]
[    0.112257] pci 0000:01:00.0: reg 0x18: [mem 0xe5000000-0xe500ffff 64bit]
[    0.112264] pci 0000:01:00.0: reg 0x20: [io  0xa000-0xa0ff]
[    0.112275] pci 0000:01:00.0: reg 0x30: [mem 0x00000000-0x0001ffff pref]
[    0.112302] pci 0000:01:00.0: supports D1 D2
[    0.112334] pci 0000:01:00.1: [1002:aa28] type 00 class 0x040300
[    0.112346] pci 0000:01:00.1: reg 0x10: [mem 0xe5010000-0xe5013fff 64bit]
[    0.112395] pci 0000:01:00.1: supports D1 D2
[    0.112439] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.112442] pci 0000:00:01.0:   bridge window [io  0xa000-0xafff]
[    0.112444] pci 0000:00:01.0:   bridge window [mem 0xe4000000-0xe5ffffff]
[    0.112447] pci 0000:00:01.0:   bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
[    0.112488] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.112567] pci 0000:03:00.0: [197b:2368] type 00 class 0x010185
[    0.112594] pci 0000:03:00.0: reg 0x10: [io  0xb000-0xb007]
[    0.112607] pci 0000:03:00.0: reg 0x14: [io  0xb100-0xb103]
[    0.112619] pci 0000:03:00.0: reg 0x18: [io  0xb200-0xb207]
[    0.112632] pci 0000:03:00.0: reg 0x1c: [io  0xb300-0xb303]
[    0.112644] pci 0000:03:00.0: reg 0x20: [io  0xb400-0xb40f]
[    0.112750] pci 0000:03:00.0: disabling ASPM on pre-1.1 PCIe device.  You can enable it with 'pcie_aspm=force'
[    0.112759] pci 0000:00:1c.3: PCI bridge to [bus 03]
[    0.112762] pci 0000:00:1c.3:   bridge window [io  0xb000-0xbfff]
[    0.112765] pci 0000:00:1c.3:   bridge window [mem 0xe6000000-0xe6ffffff]
[    0.112824] pci 0000:04:00.0: [10ec:8168] type 00 class 0x020000
[    0.112839] pci 0000:04:00.0: reg 0x10: [io  0xc000-0xc0ff]
[    0.112864] pci 0000:04:00.0: reg 0x18: [mem 0xe9010000-0xe9010fff 64bit pref]
[    0.112880] pci 0000:04:00.0: reg 0x20: [mem 0xe9000000-0xe900ffff 64bit pref]
[    0.112891] pci 0000:04:00.0: reg 0x30: [mem 0x00000000-0x0000ffff pref]
[    0.112949] pci 0000:04:00.0: supports D1 D2
[    0.112951] pci 0000:04:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.120019] pci 0000:00:1c.4: PCI bridge to [bus 04]
[    0.120024] pci 0000:00:1c.4:   bridge window [io  0xc000-0xcfff]
[    0.120029] pci 0000:00:1c.4:   bridge window [mem 0xe7000000-0xe7ffffff]
[    0.120035] pci 0000:00:1c.4:   bridge window [mem 0xe9000000-0xe90fffff 64bit pref]
[    0.120107] pci 0000:05:00.0: [10ec:8168] type 00 class 0x020000
[    0.120125] pci 0000:05:00.0: reg 0x10: [io  0xd000-0xd0ff]
[    0.120153] pci 0000:05:00.0: reg 0x18: [mem 0xe9110000-0xe9110fff 64bit pref]
[    0.120176] pci 0000:05:00.0: reg 0x20: [mem 0xe9100000-0xe910ffff 64bit pref]
[    0.120187] pci 0000:05:00.0: reg 0x30: [mem 0x00000000-0x0000ffff pref]
[    0.120245] pci 0000:05:00.0: supports D1 D2
[    0.120246] pci 0000:05:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.128016] pci 0000:00:1c.5: PCI bridge to [bus 05]
[    0.128020] pci 0000:00:1c.5:   bridge window [io  0xd000-0xdfff]
[    0.128025] pci 0000:00:1c.5:   bridge window [mem 0xe8000000-0xe8ffffff]
[    0.128031] pci 0000:00:1c.5:   bridge window [mem 0xe9100000-0xe91fffff 64bit pref]
[    0.128088] pci 0000:06:07.0: [104c:8024] type 00 class 0x0c0010
[    0.128106] pci 0000:06:07.0: reg 0x10: [mem 0xe9204000-0xe92047ff]
[    0.128117] pci 0000:06:07.0: reg 0x14: [mem 0xe9200000-0xe9203fff]
[    0.128188] pci 0000:06:07.0: supports D1 D2
[    0.128190] pci 0000:06:07.0: PME# supported from D0 D1 D2 D3hot
[    0.128244] pci 0000:00:1e.0: PCI bridge to [bus 06] (subtractive decode)
[    0.128248] pci 0000:00:1e.0:   bridge window [mem 0xe9200000-0xe92fffff]
[    0.128253] pci 0000:00:1e.0:   bridge window [io  0x0000-0x0cf7] (subtractive decode)
[    0.128255] pci 0000:00:1e.0:   bridge window [io  0x0d00-0xffff] (subtractive decode)
[    0.128257] pci 0000:00:1e.0:   bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
[    0.128259] pci 0000:00:1e.0:   bridge window [mem 0x000c0000-0x000dffff] (subtractive decode)
[    0.128260] pci 0000:00:1e.0:   bridge window [mem 0xcff00000-0xfebfffff] (subtractive decode)
[    0.128704] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 9 *10 11 12 14 15)
[    0.128751] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 10 *11 12 14 15)
[    0.128798] ACPI: PCI Interrupt Link [LNKC] (IRQs *3 4 5 6 7 9 10 11 12 14 15)
[    0.128845] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 9 10 11 12 14 *15)
[    0.128891] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
[    0.128938] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 *9 10 11 12 14 15)
[    0.128984] ACPI: PCI Interrupt Link [LNK0] (IRQs 3 4 5 6 7 9 10 11 12 *14 15)
[    0.129031] ACPI: PCI Interrupt Link [LNK1] (IRQs 3 4 *5 6 7 9 10 11 12 14 15)
[    0.129114] ACPI: Enabled 1 GPEs in block 00 to 3F
[    0.129120] ACPI: \_SB_.PCI0: notify handler is installed
[    0.129151] Found 1 acpi root devices
[    0.129219] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
[    0.129219] vgaarb: loaded
[    0.129219] vgaarb: bridge control possible 0000:01:00.0
[    0.129219] SCSI subsystem initialized
[    0.129219] libata version 3.00 loaded.
[    0.129219] ACPI: bus type USB registered
[    0.129219] usbcore: registered new interface driver usbfs
[    0.129219] usbcore: registered new interface driver hub
[    0.129219] usbcore: registered new device driver usb
[    0.129219] PCI: Using ACPI for IRQ routing
[    0.129219] PCI: pci_cache_line_size set to 64 bytes
[    0.129219] e820: reserve RAM buffer [mem 0x0009e800-0x0009ffff]
[    0.129219] e820: reserve RAM buffer [mem 0xcfee0000-0xcfffffff]
[    0.129256] NetLabel: Initializing
[    0.129257] NetLabel:  domain hash size = 128
[    0.129258] NetLabel:  protocols = UNLABELED CIPSOv4
[    0.129271] NetLabel:  unlabeled traffic allowed by default
[    0.129280] HPET: 4 timers in total, 0 timers will be used for per-cpu timer
[    0.129280] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0
[    0.129280] hpet0: 4 comparators, 64-bit 14.318180 MHz counter
[    0.133010] Switched to clocksource hpet
[    0.137621] AppArmor: AppArmor Filesystem Enabled
[    0.137650] pnp: PnP ACPI init
[    0.137662] ACPI: bus type PNP registered
[    0.140257] system 00:00: [io  0x04d0-0x04d1] has been reserved
[    0.140260] system 00:00: [io  0x0290-0x029f] has been reserved
[    0.140263] system 00:00: [io  0x0800-0x087f] has been reserved
[    0.140264] system 00:00: [io  0x0290-0x0294] has been reserved
[    0.140266] system 00:00: [io  0x0880-0x088f] has been reserved
[    0.140270] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.140280] pnp 00:01: [dma 4]
[    0.140297] pnp 00:01: Plug and Play ACPI device, IDs PNP0200 (active)
[    0.140366] pnp 00:02: Plug and Play ACPI device, IDs PNP0103 (active)
[    0.140402] pnp 00:03: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.140425] pnp 00:04: Plug and Play ACPI device, IDs PNP0800 (active)
[    0.140450] pnp 00:05: Plug and Play ACPI device, IDs PNP0c04 (active)
[    0.140657] pnp 00:06: Plug and Play ACPI device, IDs PNP0501 (active)
[    0.140820] pnp 00:07: Plug and Play ACPI device, IDs PNP0400 (active)
[    0.140904] pnp 00:08: Plug and Play ACPI device, IDs PNP0303 (active)
[    0.140954] system 00:09: [io  0x0400-0x04bf] could not be reserved
[    0.140957] system 00:09: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.141128] system 00:0a: [mem 0xe0000000-0xe3ffffff] has been reserved
[    0.141131] system 00:0a: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.141279] system 00:0b: [mem 0x000d2000-0x000d3fff] has been reserved
[    0.141282] system 00:0b: [mem 0x000f0000-0x000f7fff] could not be reserved
[    0.141284] system 00:0b: [mem 0x000f8000-0x000fbfff] could not be reserved
[    0.141286] system 00:0b: [mem 0x000fc000-0x000fffff] could not be reserved
[    0.141288] system 00:0b: [mem 0xcfee0000-0xcfefffff] could not be reserved
[    0.141290] system 00:0b: [mem 0x00000000-0x0009ffff] could not be reserved
[    0.141292] system 00:0b: [mem 0x00100000-0xcfedffff] could not be reserved
[    0.141294] system 00:0b: [mem 0xfec00000-0xfec00fff] could not be reserved
[    0.141296] system 00:0b: [mem 0xfed10000-0xfed1dfff] has been reserved
[    0.141298] system 00:0b: [mem 0xfed20000-0xfed8ffff] has been reserved
[    0.141300] system 00:0b: [mem 0xfee00000-0xfee00fff] has been reserved
[    0.141302] system 00:0b: [mem 0xffb00000-0xffb7ffff] has been reserved
[    0.141304] system 00:0b: [mem 0xfff00000-0xffffffff] has been reserved
[    0.141306] system 00:0b: [mem 0x000e0000-0x000effff] has been reserved
[    0.141309] system 00:0b: Plug and Play ACPI device, IDs PNP0c01 (active)
[    0.141341] pnp 00:0c: Plug and Play ACPI device, IDs INT0800 (active)
[    0.141345] pnp: PnP ACPI: found 13 devices
[    0.141346] ACPI: bus type PNP unregistered
[    0.147481] pci 0000:00:1c.0: bridge window [io  0x1000-0x0fff] to [bus 02] add_size 1000
[    0.147484] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 02] add_size 200000
[    0.147486] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff] to [bus 02] add_size 200000
[    0.147493] pci 0000:00:1c.3: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 03] add_size 200000
[    0.147511] pci 0000:00:1c.0: res[14]=[mem 0x00100000-0x000fffff] get_res_add_size add_size 200000
[    0.147513] pci 0000:00:1c.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
[    0.147515] pci 0000:00:1c.3: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
[    0.147517] pci 0000:00:1c.0: res[13]=[io  0x1000-0x0fff] get_res_add_size add_size 1000
[    0.147521] pci 0000:00:1c.0: BAR 14: assigned [mem 0xe9400000-0xe95fffff]
[    0.147524] pci 0000:00:1c.0: BAR 15: assigned [mem 0xe9600000-0xe97fffff 64bit pref]
[    0.147527] pci 0000:00:1c.3: BAR 15: assigned [mem 0xe9800000-0xe99fffff 64bit pref]
[    0.147529] pci 0000:00:1c.0: BAR 13: assigned [io  0x1000-0x1fff]
[    0.147532] pci 0000:01:00.0: BAR 6: assigned [mem 0xe4000000-0xe401ffff pref]
[    0.147535] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.147537] pci 0000:00:01.0:   bridge window [io  0xa000-0xafff]
[    0.147540] pci 0000:00:01.0:   bridge window [mem 0xe4000000-0xe5ffffff]
[    0.147543] pci 0000:00:01.0:   bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
[    0.147546] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.147548] pci 0000:00:1c.0:   bridge window [io  0x1000-0x1fff]
[    0.147552] pci 0000:00:1c.0:   bridge window [mem 0xe9400000-0xe95fffff]
[    0.147555] pci 0000:00:1c.0:   bridge window [mem 0xe9600000-0xe97fffff 64bit pref]
[    0.147560] pci 0000:00:1c.3: PCI bridge to [bus 03]
[    0.147562] pci 0000:00:1c.3:   bridge window [io  0xb000-0xbfff]
[    0.147566] pci 0000:00:1c.3:   bridge window [mem 0xe6000000-0xe6ffffff]
[    0.147569] pci 0000:00:1c.3:   bridge window [mem 0xe9800000-0xe99fffff 64bit pref]
[    0.147575] pci 0000:04:00.0: BAR 6: assigned [mem 0xe9020000-0xe902ffff pref]
[    0.147576] pci 0000:00:1c.4: PCI bridge to [bus 04]
[    0.147579] pci 0000:00:1c.4:   bridge window [io  0xc000-0xcfff]
[    0.147583] pci 0000:00:1c.4:   bridge window [mem 0xe7000000-0xe7ffffff]
[    0.147586] pci 0000:00:1c.4:   bridge window [mem 0xe9000000-0xe90fffff 64bit pref]
[    0.147591] pci 0000:05:00.0: BAR 6: assigned [mem 0xe9120000-0xe912ffff pref]
[    0.147593] pci 0000:00:1c.5: PCI bridge to [bus 05]
[    0.147595] pci 0000:00:1c.5:   bridge window [io  0xd000-0xdfff]
[    0.147599] pci 0000:00:1c.5:   bridge window [mem 0xe8000000-0xe8ffffff]
[    0.147602] pci 0000:00:1c.5:   bridge window [mem 0xe9100000-0xe91fffff 64bit pref]
[    0.147607] pci 0000:00:1e.0: PCI bridge to [bus 06]
[    0.147611] pci 0000:00:1e.0:   bridge window [mem 0xe9200000-0xe92fffff]
[    0.147618] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7]
[    0.147620] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff]
[    0.147621] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
[    0.147623] pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000dffff]
[    0.147625] pci_bus 0000:00: resource 8 [mem 0xcff00000-0xfebfffff]
[    0.147627] pci_bus 0000:01: resource 0 [io  0xa000-0xafff]
[    0.147628] pci_bus 0000:01: resource 1 [mem 0xe4000000-0xe5ffffff]
[    0.147630] pci_bus 0000:01: resource 2 [mem 0xd0000000-0xdfffffff 64bit pref]
[    0.147632] pci_bus 0000:02: resource 0 [io  0x1000-0x1fff]
[    0.147634] pci_bus 0000:02: resource 1 [mem 0xe9400000-0xe95fffff]
[    0.147636] pci_bus 0000:02: resource 2 [mem 0xe9600000-0xe97fffff 64bit pref]
[    0.147638] pci_bus 0000:03: resource 0 [io  0xb000-0xbfff]
[    0.147639] pci_bus 0000:03: resource 1 [mem 0xe6000000-0xe6ffffff]
[    0.147641] pci_bus 0000:03: resource 2 [mem 0xe9800000-0xe99fffff 64bit pref]
[    0.147643] pci_bus 0000:04: resource 0 [io  0xc000-0xcfff]
[    0.147645] pci_bus 0000:04: resource 1 [mem 0xe7000000-0xe7ffffff]
[    0.147646] pci_bus 0000:04: resource 2 [mem 0xe9000000-0xe90fffff 64bit pref]
[    0.147648] pci_bus 0000:05: resource 0 [io  0xd000-0xdfff]
[    0.147650] pci_bus 0000:05: resource 1 [mem 0xe8000000-0xe8ffffff]
[    0.147652] pci_bus 0000:05: resource 2 [mem 0xe9100000-0xe91fffff 64bit pref]
[    0.147654] pci_bus 0000:06: resource 1 [mem 0xe9200000-0xe92fffff]
[    0.147655] pci_bus 0000:06: resource 4 [io  0x0000-0x0cf7]
[    0.147657] pci_bus 0000:06: resource 5 [io  0x0d00-0xffff]
[    0.147659] pci_bus 0000:06: resource 6 [mem 0x000a0000-0x000bffff]
[    0.147661] pci_bus 0000:06: resource 7 [mem 0x000c0000-0x000dffff]
[    0.147662] pci_bus 0000:06: resource 8 [mem 0xcff00000-0xfebfffff]
[    0.147691] NET: Registered protocol family 2
[    0.147837] TCP established hash table entries: 65536 (order: 7, 524288 bytes)
[    0.148015] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[    0.148217] TCP: Hash tables configured (established 65536 bind 65536)
[    0.148239] TCP: reno registered
[    0.148250] UDP hash table entries: 4096 (order: 5, 131072 bytes)
[    0.148287] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
[    0.148359] NET: Registered protocol family 1
[    0.149265] pci 0000:01:00.0: Boot video device
[    0.149277] PCI: CLS 32 bytes, default 64
[    0.149325] Trying to unpack rootfs image as initramfs...
[    0.429264] Freeing initrd memory: 18648K (ffff880035b84000 - ffff880036dba000)
[    0.429273] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.429276] software IO TLB [mem 0xcbee0000-0xcfee0000] (64MB) mapped at [ffff8800cbee0000-ffff8800cfedffff]
[    0.429498] microcode: CPU0 sig=0x1067a, pf=0x1, revision=0xa07
[    0.429505] microcode: CPU1 sig=0x1067a, pf=0x1, revision=0xa07
[    0.429571] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[    0.429572] Scanning for low memory corruption every 60 seconds
[    0.429827] Initialise system trusted keyring
[    0.429871] audit: initializing netlink socket (disabled)
[    0.429887] type=2000 audit(1403907839.428:1): initialized
[    0.454008] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    0.455302] zbud: loaded
[    0.455412] VFS: Disk quotas dquot_6.5.2
[    0.455452] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.455844] fuse init (API version 7.22)
[    0.455909] msgmni has been set to 11930
[    0.455957] Key type big_key registered
[    0.456261] Key type asymmetric registered
[    0.456263] Asymmetric key parser 'x509' registered
[    0.456291] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
[    0.456320] io scheduler noop registered
[    0.456322] io scheduler deadline registered (default)
[    0.456346] io scheduler cfq registered
[    0.456539] pcieport 0000:00:01.0: irq 40 for MSI/MSI-X
[    0.456640] pcieport 0000:00:1c.0: irq 41 for MSI/MSI-X
[    0.456745] pcieport 0000:00:1c.3: irq 42 for MSI/MSI-X
[    0.456852] pcieport 0000:00:1c.4: irq 43 for MSI/MSI-X
[    0.456956] pcieport 0000:00:1c.5: irq 44 for MSI/MSI-X
[    0.457017] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    0.457032] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    0.457065] vesafb: mode is 1400x1050x32, linelength=5632, pages=0
[    0.457066] vesafb: scrolling: redraw
[    0.457068] vesafb: Truecolor: size=0:8:8:8, shift=0:16:8:0
[    0.457424] vesafb: framebuffer at 0xd0000000, mapped to 0xffffc90004e80000, using 5824k, total 5824k
[    0.493072] Console: switching to colour frame buffer device 175x65
[    0.528466] fb0: VESA VGA frame buffer device
[    0.528488] intel_idle: does not run on family 6 model 23
[    0.528494] ipmi message handler version 39.2
[    0.528540] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input0
[    0.528544] ACPI: Power Button [PWRB]
[    0.528600] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[    0.528602] ACPI: Power Button [PWRF]
[    0.528645] tsc: Marking TSC unstable due to TSC halts in idle
[    0.528650] ACPI: acpi_idle registered with cpuidle
[    0.528745] GHES: HEST is not enabled!
[    0.528815] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    0.549156] 00:06: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    0.550339] Linux agpgart interface v0.103
[    0.551576] brd: module loaded
[    0.552191] loop: module loaded
[    0.552513] libphy: Fixed MDIO Bus: probed
[    0.552590] tun: Universal TUN/TAP device driver, 1.6
[    0.552591] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[    0.552622] PPP generic driver version 2.4.2
[    0.552656] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    0.552667] ehci-pci: EHCI PCI platform driver
[    0.552749] ehci-pci 0000:00:1a.7: EHCI Host Controller
[    0.552755] ehci-pci 0000:00:1a.7: new USB bus registered, assigned bus number 1
[    0.556667] ehci-pci 0000:00:1a.7: cache line size of 32 is not supported
[    0.556683] ehci-pci 0000:00:1a.7: irq 18, io mem 0xe9305000
[    0.568016] ehci-pci 0000:00:1a.7: USB 2.0 started, EHCI 1.00
[    0.568091] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    0.568094] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.568097] usb usb1: Product: EHCI Host Controller
[    0.568099] usb usb1: Manufacturer: Linux 3.13.0-29-generic ehci_hcd
[    0.568102] usb usb1: SerialNumber: 0000:00:1a.7
[    0.568208] hub 1-0:1.0: USB hub found
[    0.568216] hub 1-0:1.0: 6 ports detected
[    0.568397] ehci-pci 0000:00:1d.7: EHCI Host Controller
[    0.568402] ehci-pci 0000:00:1d.7: new USB bus registered, assigned bus number 2
[    0.572292] ehci-pci 0000:00:1d.7: cache line size of 32 is not supported
[    0.572303] ehci-pci 0000:00:1d.7: irq 23, io mem 0xe9304000
[    0.584014] ehci-pci 0000:00:1d.7: USB 2.0 started, EHCI 1.00
[    0.584061] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
[    0.584064] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.584067] usb usb2: Product: EHCI Host Controller
[    0.584070] usb usb2: Manufacturer: Linux 3.13.0-29-generic ehci_hcd
[    0.584072] usb usb2: SerialNumber: 0000:00:1d.7
[    0.584180] hub 2-0:1.0: USB hub found
[    0.584187] hub 2-0:1.0: 6 ports detected
[    0.584302] ehci-platform: EHCI generic platform driver
[    0.584308] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    0.584309] ohci-pci: OHCI PCI platform driver
[    0.584318] ohci-platform: OHCI generic platform driver
[    0.584325] uhci_hcd: USB Universal Host Controller Interface driver
[    0.584391] uhci_hcd 0000:00:1a.0: UHCI Host Controller
[    0.584395] uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 3
[    0.584422] uhci_hcd 0000:00:1a.0: irq 16, io base 0x0000e000
[    0.584463] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
[    0.584465] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.584467] usb usb3: Product: UHCI Host Controller
[    0.584469] usb usb3: Manufacturer: Linux 3.13.0-29-generic uhci_hcd
[    0.584470] usb usb3: SerialNumber: 0000:00:1a.0
[    0.584541] hub 3-0:1.0: USB hub found
[    0.584548] hub 3-0:1.0: 2 ports detected
[    0.584670] uhci_hcd 0000:00:1a.1: UHCI Host Controller
[    0.584676] uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus number 4
[    0.584702] uhci_hcd 0000:00:1a.1: irq 21, io base 0x0000e100
[    0.584745] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001
[    0.584747] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.584749] usb usb4: Product: UHCI Host Controller
[    0.584750] usb usb4: Manufacturer: Linux 3.13.0-29-generic uhci_hcd
[    0.584752] usb usb4: SerialNumber: 0000:00:1a.1
[    0.584820] hub 4-0:1.0: USB hub found
[    0.584827] hub 4-0:1.0: 2 ports detected
[    0.584950] uhci_hcd 0000:00:1a.2: UHCI Host Controller
[    0.584954] uhci_hcd 0000:00:1a.2: new USB bus registered, assigned bus number 5
[    0.584973] uhci_hcd 0000:00:1a.2: irq 18, io base 0x0000e200
[    0.585013] usb usb5: New USB device found, idVendor=1d6b, idProduct=0001
[    0.585015] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.585017] usb usb5: Product: UHCI Host Controller
[    0.585018] usb usb5: Manufacturer: Linux 3.13.0-29-generic uhci_hcd
[    0.585020] usb usb5: SerialNumber: 0000:00:1a.2
[    0.585088] hub 5-0:1.0: USB hub found
[    0.585094] hub 5-0:1.0: 2 ports detected
[    0.585220] uhci_hcd 0000:00:1d.0: UHCI Host Controller
[    0.585225] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 6
[    0.585244] uhci_hcd 0000:00:1d.0: irq 23, io base 0x0000e300
[    0.585283] usb usb6: New USB device found, idVendor=1d6b, idProduct=0001
[    0.585285] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.585287] usb usb6: Product: UHCI Host Controller
[    0.585289] usb usb6: Manufacturer: Linux 3.13.0-29-generic uhci_hcd
[    0.585290] usb usb6: SerialNumber: 0000:00:1d.0
[    0.585360] hub 6-0:1.0: USB hub found
[    0.585366] hub 6-0:1.0: 2 ports detected
[    0.585491] uhci_hcd 0000:00:1d.1: UHCI Host Controller
[    0.585495] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 7
[    0.585523] uhci_hcd 0000:00:1d.1: irq 19, io base 0x0000e400
[    0.585562] usb usb7: New USB device found, idVendor=1d6b, idProduct=0001
[    0.585564] usb usb7: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.585566] usb usb7: Product: UHCI Host Controller
[    0.585568] usb usb7: Manufacturer: Linux 3.13.0-29-generic uhci_hcd
[    0.585569] usb usb7: SerialNumber: 0000:00:1d.1
[    0.585639] hub 7-0:1.0: USB hub found
[    0.585645] hub 7-0:1.0: 2 ports detected
[    0.585766] uhci_hcd 0000:00:1d.2: UHCI Host Controller
[    0.585773] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 8
[    0.585793] uhci_hcd 0000:00:1d.2: irq 18, io base 0x0000e500
[    0.585833] usb usb8: New USB device found, idVendor=1d6b, idProduct=0001
[    0.585836] usb usb8: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.585837] usb usb8: Product: UHCI Host Controller
[    0.585839] usb usb8: Manufacturer: Linux 3.13.0-29-generic uhci_hcd
[    0.585841] usb usb8: SerialNumber: 0000:00:1d.2
[    0.585909] hub 8-0:1.0: USB hub found
[    0.585916] hub 8-0:1.0: 2 ports detected
[    0.586024] i8042: PNP: PS/2 Controller [PNP0303:PS2K] at 0x60,0x64 irq 1
[    0.586025] i8042: PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
[    0.586149] serio: i8042 KBD port at 0x60,0x64 irq 1
[    0.586223] mousedev: PS/2 mouse device common for all mice
[    0.586329] rtc_cmos 00:03: RTC can wake from S4
[    0.586428] rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0
[    0.586449] rtc_cmos 00:03: alarms up to one month, 242 bytes nvram, hpet irqs
[    0.586497] device-mapper: uevent: version 1.0.3
[    0.586544] device-mapper: ioctl: 4.27.0-ioctl (2013-10-30) initialised: dm-devel@redhat.com
[    0.586550] ledtrig-cpu: registered to indicate activity on CPUs
[    0.586631] TCP: cubic registered
[    0.586711] NET: Registered protocol family 10
[    0.586866] NET: Registered protocol family 17
[    0.586875] Key type dns_resolver registered
[    0.587050] Loading compiled-in X.509 certificates
[    0.587926] Loaded X.509 cert 'Magrathea: Glacier signing key: 6602cb36f1313bea01c4bda96567cfa723c970d8'
[    0.587937] registered taskstats version 1
[    0.590300] Key type trusted registered
[    0.591992] Key type encrypted registered
[    0.593746] AppArmor: AppArmor sha1 policy hashing enabled
[    0.593748] IMA: No TPM chip found, activating TPM-bypass!
[    0.594023] regulator-dummy: disabling
[    0.594056]   Magic number: 2:188:402
[    0.594094] pci 0000:03:00.0: hash matches
[    0.594154] rtc_cmos 00:03: setting system clock to 2014-06-27 22:24:00 UTC (1403907840)
[    0.594322] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[    0.594324] EDD information not available.
[    0.594345] PM: Hibernation image not present or could not be loaded.
[    0.595684] Freeing unused kernel memory: 1332K (ffffffff81d1f000 - ffffffff81e6c000)
[    0.595686] Write protecting the kernel read-only data: 12288k
[    0.597795] Freeing unused kernel memory: 824K (ffff880001732000 - ffff880001800000)
[    0.599420] Freeing unused kernel memory: 700K (ffff880001b51000 - ffff880001c00000)
[    0.610129] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input2
[    0.610410] systemd-udevd[101]: starting version 204
[    0.638647] scsi0 : pata_jmicron
[    0.638722] scsi1 : pata_jmicron
[    0.638752] ata1: PATA max UDMA/100 cmd 0xb000 ctl 0xb100 bmdma 0xb400 irq 19
[    0.638753] ata2: PATA max UDMA/100 cmd 0xb200 ctl 0xb300 bmdma 0xb408 irq 19
[    0.641430] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
[    0.641439] r8169 0000:04:00.0: can't disable ASPM; OS doesn't have ASPM control
[    0.641617] r8169 0000:04:00.0: irq 45 for MSI/MSI-X
[    0.641755] r8169 0000:04:00.0 eth0: RTL8168c/8111c at 0xffffc90000c7c000, 00:1f:d0:28:a9:8a, XID 1c4000c0 IRQ 45
[    0.641757] r8169 0000:04:00.0 eth0: jumbo features [frames: 6128 bytes, tx checksumming: ko]
[    0.641774] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
[    0.641782] r8169 0000:05:00.0: can't disable ASPM; OS doesn't have ASPM control
[    0.641944] r8169 0000:05:00.0: irq 46 for MSI/MSI-X
[    0.642303] r8169 0000:05:00.0 eth1: RTL8168c/8111c at 0xffffc90004e2a000, 00:1f:d0:28:a9:cb, XID 1c4000c0 IRQ 46
[    0.642306] r8169 0000:05:00.0 eth1: jumbo features [frames: 6128 bytes, tx checksumming: ko]
[    0.645585] ahci 0000:00:1f.2: version 3.0
[    0.645674] ahci 0000:00:1f.2: irq 47 for MSI/MSI-X
[    0.645711] ahci 0000:00:1f.2: SSS flag set, parallel bus scan disabled
[    0.645737] ahci 0000:00:1f.2: AHCI 0001.0200 32 slots 6 ports 3 Gbps 0x3f impl SATA mode
[    0.645740] ahci 0000:00:1f.2: flags: 64bit ncq sntf stag pm led clo pmp pio slum part ccc ems 
[    0.684628] scsi2 : ahci
[    0.684689] scsi3 : ahci
[    0.684735] scsi4 : ahci
[    0.684787] scsi5 : ahci
[    0.684839] scsi6 : ahci
[    0.684888] scsi7 : ahci
[    0.684923] ata3: SATA max UDMA/133 abar m2048@0xe9306000 port 0xe9306100 irq 47
[    0.684925] ata4: SATA max UDMA/133 abar m2048@0xe9306000 port 0xe9306180 irq 47
[    0.684927] ata5: SATA max UDMA/133 abar m2048@0xe9306000 port 0xe9306200 irq 47
[    0.684929] ata6: SATA max UDMA/133 abar m2048@0xe9306000 port 0xe9306280 irq 47
[    0.684931] ata7: SATA max UDMA/133 abar m2048@0xe9306000 port 0xe9306300 irq 47
[    0.684934] ata8: SATA max UDMA/133 abar m2048@0xe9306000 port 0xe9306380 irq 47
[    0.704049] firewire_ohci 0000:06:07.0: added OHCI v1.10 device as card 0, 4 IR + 8 IT contexts, quirks 0x2
[    0.800505] ata1.00: ATAPI: TSSTcorpCD/DVDW SH-S182D, SB04, max UDMA/33
[    0.816501] ata1.00: configured for UDMA/33
[    0.817894] scsi 0:0:0:0: CD-ROM            TSSTcorp CD/DVDW SH-S182D SB04 PQ: 0 ANSI: 5
[    0.823212] sr0: scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 cdda tray
[    0.823215] cdrom: Uniform CD-ROM driver Revision: 3.20
[    0.823329] sr 0:0:0:0: Attached scsi CD-ROM sr0
[    0.823394] sr 0:0:0:0: Attached scsi generic sg0 type 5
[    1.176020] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    1.177374] ata3.00: HPA detected: current 976771055, native 976773168
[    1.177379] ata3.00: ATA-8: ST3500320AS, SD15, max UDMA/133
[    1.177381] ata3.00: 976771055 sectors, multi 0: LBA48 NCQ (depth 31/32)
[    1.179111] ata3.00: configured for UDMA/133
[    1.179205] scsi 2:0:0:0: Direct-Access     ATA      ST3500320AS      SD15 PQ: 0 ANSI: 5
[    1.179340] sd 2:0:0:0: Attached scsi generic sg1 type 0
[    1.179351] sd 2:0:0:0: [sda] 976771055 512-byte logical blocks: (500 GB/465 GiB)
[    1.179401] sd 2:0:0:0: [sda] Write Protect is off
[    1.179403] sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    1.179427] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    1.204086] firewire_core 0000:06:07.0: created device fw0: GUID 002d734400001fd0, S400
[    1.218432]  sda: sda1 sda2 < sda5 > sda4
[    1.218739] sd 2:0:0:0: [sda] Attached SCSI disk
[    1.584026] usb 2-6: new high-speed USB device number 4 using ehci-pci
[    1.668017] ata4: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    1.668707] ata4.00: ATA-9: SanDisk SDSSDP064G, 3.1.0, max UDMA/133
[    1.668710] ata4.00: 123091920 sectors, multi 1: LBA48 NCQ (depth 31/32)
[    1.669568] ata4.00: configured for UDMA/133
[    1.669663] scsi 3:0:0:0: Direct-Access     ATA      SanDisk SDSSDP06 3.1. PQ: 0 ANSI: 5
[    1.669765] sd 3:0:0:0: Attached scsi generic sg2 type 0
[    1.669788] sd 3:0:0:0: [sdb] 123091920 512-byte logical blocks: (63.0 GB/58.6 GiB)
[    1.669882] sd 3:0:0:0: [sdb] Write Protect is off
[    1.669885] sd 3:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[    1.669913] sd 3:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    1.670684]  sdb: sdb1 sdb2 < sdb5 >
[    1.671014] sd 3:0:0:0: [sdb] Attached SCSI disk
[    1.716599] usb 2-6: New USB device found, idVendor=1a40, idProduct=0101
[    1.716603] usb 2-6: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[    1.716606] usb 2-6: Product: USB 2.0 Hub
[    1.716760] hub 2-6:1.0: USB hub found
[    1.716849] hub 2-6:1.0: 4 ports detected
[    1.956026] usb 4-1: new low-speed USB device number 2 using uhci_hcd
[    2.132735] usb 4-1: New USB device found, idVendor=046d, idProduct=c011
[    2.132739] usb 4-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    2.132741] usb 4-1: Product: USB-PS/2 Optical Mouse
[    2.132744] usb 4-1: Manufacturer: Logitech
[    2.138471] hidraw: raw HID events driver (C) Jiri Kosina
[    2.152934] usbcore: registered new interface driver usbhid
[    2.152935] usbhid: USB HID core driver
[    2.154253] input: Logitech USB-PS/2 Optical Mouse as /devices/pci0000:00/0000:00:1a.1/usb4/4-1/4-1:1.0/input/input3
[    2.154335] hid-generic 0003:046D:C011.0001: input,hidraw0: USB HID v1.10 Mouse [Logitech USB-PS/2 Optical Mouse] on usb-0000:00:1a.1-1/input0
[    2.160019] ata5: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    2.161168] ata5.00: ATAPI: HL-DT-STDVD-RAM GH22NS30, 1.01, max UDMA/100
[    2.162617] ata5.00: configured for UDMA/100
[    2.164092] scsi 4:0:0:0: CD-ROM            HL-DT-ST DVD-RAM GH22NS30 1.01 PQ: 0 ANSI: 5
[    2.166066] sr1: scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 cdda tray
[    2.166164] sr 4:0:0:0: Attached scsi CD-ROM sr1
[    2.166239] sr 4:0:0:0: Attached scsi generic sg3 type 5
[    2.372027] usb 7-1: new full-speed USB device number 2 using uhci_hcd
[    2.484018] ata6: SATA link down (SStatus 0 SControl 300)
[    2.566555] usb 7-1: New USB device found, idVendor=0a12, idProduct=100b
[    2.566559] usb 7-1: New USB device strings: Mfr=0, Product=2, SerialNumber=0
[    2.566561] usb 7-1: Product: CSR8510 A10
[    2.576161] input: CSR8510 A10 as /devices/pci0000:00/0000:00:1d.1/usb7/7-1/7-1:1.0/input/input4
[    2.576255] hid-generic 0003:0A12:100B.0002: input,hiddev0,hidraw1: USB HID v1.11 Keyboard [CSR8510 A10] on usb-0000:00:1d.1-1/input0
[    2.584017] input: CSR8510 A10 as /devices/pci0000:00/0000:00:1d.1/usb7/7-1/7-1:1.1/input/input5
[    2.584093] hid-generic 0003:0A12:100B.0003: input,hidraw2: USB HID v1.11 Mouse [CSR8510 A10] on usb-0000:00:1d.1-1/input1
[    2.824025] usb 7-2: new full-speed USB device number 3 using uhci_hcd
[    2.976017] ata7: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    2.976553] ata7.00: ATA-9: WDC WD10EZEX-00BN5A0, 01.01A01, max UDMA/133
[    2.976561] ata7.00: 1953525168 sectors, multi 0: LBA48 NCQ (depth 31/32), AA
[    2.977120] ata7.00: configured for UDMA/133
[    2.977207] scsi 6:0:0:0: Direct-Access     ATA      WDC WD10EZEX-00B 01.0 PQ: 0 ANSI: 5
[    2.977304] sd 6:0:0:0: Attached scsi generic sg4 type 0
[    2.977309] sd 6:0:0:0: [sdc] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
[    2.977311] sd 6:0:0:0: [sdc] 4096-byte physical blocks
[    2.977358] sd 6:0:0:0: [sdc] Write Protect is off
[    2.977360] sd 6:0:0:0: [sdc] Mode Sense: 00 3a 00 00
[    2.977380] sd 6:0:0:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    2.981555] usb 7-2: New USB device found, idVendor=1310, idProduct=0001
[    2.981559] usb 7-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    2.981562] usb 7-2: Product: SiW
[    2.981564] usb 7-2: Manufacturer: SiW
[    2.981567] usb 7-2: SerialNumber: B1900A0D0B00
[    2.998550]  sdc: unknown partition table
[    2.998717] sd 6:0:0:0: [sdc] Attached SCSI disk
[    3.468017] ata8: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    3.468735] ata8.00: ATA-8: WDC WD3200AAKS-75L9A0, 01.03E01, max UDMA/133
[    3.468738] ata8.00: 625142448 sectors, multi 0: LBA48 NCQ (depth 31/32), AA
[    3.470519] ata8.00: configured for UDMA/133
[    3.470599] scsi 7:0:0:0: Direct-Access     ATA      WDC WD3200AAKS-7 01.0 PQ: 0 ANSI: 5
[    3.470737] sd 7:0:0:0: Attached scsi generic sg5 type 0
[    3.470804] sd 7:0:0:0: [sdd] 625142448 512-byte logical blocks: (320 GB/298 GiB)
[    3.470884] sd 7:0:0:0: [sdd] Write Protect is off
[    3.470886] sd 7:0:0:0: [sdd] Mode Sense: 00 3a 00 00
[    3.470913] sd 7:0:0:0: [sdd] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    3.517479]  sdd: sdd1 sdd2 sdd3 sdd4
[    3.517773] sd 7:0:0:0: [sdd] Attached SCSI disk
[    3.687136] random: nonblocking pool is initialized
[    3.795239] EXT4-fs (sdb1): mounted filesystem with ordered data mode. Opts: (null)
[    4.154772] init: plymouth-upstart-bridge main process (177) terminated with status 1
[    4.154785] init: plymouth-upstart-bridge main process ended, respawning
[    4.160670] init: plymouth-upstart-bridge main process (187) terminated with status 1
[    4.160682] init: plymouth-upstart-bridge main process ended, respawning
[    4.162875] init: plymouth-upstart-bridge main process (190) terminated with status 1
[    4.162886] init: plymouth-upstart-bridge main process ended, respawning
[    4.166270] init: plymouth-upstart-bridge main process (191) terminated with status 1
[    4.166288] init: plymouth-upstart-bridge main process ended, respawning
[    4.169158] init: plymouth-upstart-bridge main process (193) terminated with status 1
[    4.169170] init: plymouth-upstart-bridge main process ended, respawning
[    4.170974] init: plymouth-upstart-bridge main process (195) terminated with status 1
[    4.170985] init: plymouth-upstart-bridge main process ended, respawning
[    4.173805] init: plymouth-upstart-bridge main process (196) terminated with status 1
[    4.173817] init: plymouth-upstart-bridge main process ended, respawning
[    4.359356] Adding 9871904k swap on /dev/sda5.  Priority:-1 extents:1 across:9871904k FS
[    4.365112] Adding 4118524k swap on /dev/sdd4.  Priority:-2 extents:1 across:4118524k FS
[    4.390499] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[    4.390505] IPv6: ADDRCONF(NETDEV_UP): eth1: link is not ready
[    4.477731] systemd-udevd[324]: starting version 204
[    4.538757] lp: driver loaded but no devices found
[    4.550005] ppdev: user-space parallel port driver
[    4.557579] parport_pc 00:07: reported by Plug and Play ACPI
[    4.557630] parport0: PC-style at 0x378, irq 7 [PCSPP,TRISTATE]
[    4.587296] EXT4-fs (sdb1): re-mounted. Opts: errors=remount-ro
[    4.644135] lp0: using parport0 (interrupt-driven).
[    4.686504] [drm] Initialized drm 1.1.0 20060810
[    4.698810] EXT4-fs (sdb5): mounted filesystem with ordered data mode. Opts: (null)
[    4.766176] ACPI Warning: 0x0000000000000428-0x000000000000042f SystemIO conflicts with Region \GP2C 1 (20131115/utaddress-251)
[    4.766183] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    4.766221] lpc_ich: Resource conflict(s) found affecting gpio_ich
[    4.776706] [drm] radeon kernel modesetting enabled.
[    4.776765] checking generic (d0000000 5b0000) vs hw (d0000000 10000000)
[    4.776767] fb: conflicting fb hw usage radeondrmfb vs VESA VGA - removing generic driver
[    4.776789] Console: switching to colour dummy device 80x25
[    4.777983] [drm] initializing kernel modesetting (RV620 0x1002:0x95C5 0x1043:0x01E2).
[    4.778000] [drm] register mmio base: 0xE5000000
[    4.778001] [drm] register mmio size: 65536
[    4.778091] ATOM BIOS: 95C5.10.79.0.1.AS11
[    4.778109] radeon 0000:01:00.0: VRAM: 512M 0x0000000000000000 - 0x000000001FFFFFFF (512M used)
[    4.778111] radeon 0000:01:00.0: GTT: 512M 0x0000000020000000 - 0x000000003FFFFFFF
[    4.778113] [drm] Detected VRAM RAM=512M, BAR=256M
[    4.778114] [drm] RAM width 64bits DDR
[    4.782849] [TTM] Zone  kernel: Available graphics memory: 3055668 kiB
[    4.782851] [TTM] Zone   dma32: Available graphics memory: 2097152 kiB
[    4.782852] [TTM] Initializing pool allocator
[    4.782856] [TTM] Initializing DMA pool allocator
[    4.782874] [drm] radeon: 512M of VRAM memory ready
[    4.782877] [drm] radeon: 512M of GTT memory ready.
[    4.782895] [drm] Loading RV620 Microcode
[    4.799502] EXT4-fs (sdc): mounted filesystem with ordered data mode. Opts: (null)
[    4.823761] [drm] GART: num cpu pages 131072, num gpu pages 131072
[    4.832139] [drm] enabling PCIE gen 2 link speeds, disable with radeon.pcie_gen2=0
[    4.859690] [drm] PCIE GART of 512M enabled (table at 0x0000000000040000).
[    4.859728] radeon 0000:01:00.0: WB enabled
[    4.859732] radeon 0000:01:00.0: fence driver on ring 0 use gpu addr 0x0000000020000c00 and cpu addr 0xffff880036a58c00
[    4.859734] radeon 0000:01:00.0: fence driver on ring 3 use gpu addr 0x0000000020000c0c and cpu addr 0xffff880036a58c0c
[    4.859736] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[    4.859737] [drm] Driver supports precise vblank timestamp query.
[    4.859755] radeon 0000:01:00.0: irq 48 for MSI/MSI-X
[    4.859766] radeon 0000:01:00.0: radeon: using MSI.
[    4.859790] [drm] radeon: irq initialized.
[    4.911937] [drm] ring test on 0 succeeded in 1 usecs
[    4.912097] [drm] ring test on 3 succeeded in 1 usecs
[    4.912432] [drm] Enabling audio 0 support
[    4.912448] [drm] ib test on ring 0 succeeded in 0 usecs
[    4.912460] [drm] ib test on ring 3 succeeded in 0 usecs
[    4.924778] [drm] Radeon Display Connectors
[    4.924781] [drm] Connector 0:
[    4.924782] [drm]   DIN-1
[    4.924783] [drm]   Encoders:
[    4.924784] [drm]     TV1: INTERNAL_KLDSCP_DAC2
[    4.924785] [drm] Connector 1:
[    4.924786] [drm]   VGA-1
[    4.924788] [drm]   DDC: 0x7e40 0x7e40 0x7e44 0x7e44 0x7e48 0x7e48 0x7e4c 0x7e4c
[    4.924789] [drm]   Encoders:
[    4.924790] [drm]     CRT1: INTERNAL_KLDSCP_DAC1
[    4.924791] [drm] Connector 2:
[    4.924792] [drm]   DVI-I-1
[    4.924793] [drm]   HPD1
[    4.924794] [drm]   DDC: 0x7e50 0x7e50 0x7e54 0x7e54 0x7e58 0x7e58 0x7e5c 0x7e5c
[    4.924795] [drm]   Encoders:
[    4.924797] [drm]     CRT2: INTERNAL_KLDSCP_DAC2
[    4.924798] [drm]     DFP1: INTERNAL_KLDSCP_LVTMA
[    4.924812] [drm] Internal thermal controller without fan control
[    4.924873] [drm] radeon: power management initialized
[    4.945849] EXT4-fs (sda1): mounting ext3 file system using the ext4 subsystem
[    4.978116] snd_hda_intel 0000:00:1b.0: irq 49 for MSI/MSI-X
[    4.980155] [drm] fb mappable at 0xD0141000
[    4.980157] [drm] vram apper at 0xD0000000
[    4.980158] [drm] size 8294400
[    4.980159] [drm] fb depth is 24
[    4.980160] [drm]    pitch is 7680
[    4.980357] fbcon: radeondrmfb (fb0) is primary device
[    4.993726] SKU: Nid=0x1d sku_cfg=0x4005e601
[    4.993726] SKU: port_connectivity=0x1
[    4.993727] SKU: enable_pcbeep=0x0
[    4.993727] SKU: check_sum=0x00000005
[    4.993728] SKU: customization=0x000000e6
[    4.993728] SKU: external_amp=0x0
[    4.993729] SKU: platform_type=0x0
[    4.993729] SKU: swap=0x0
[    4.993729] SKU: override=0x1
[    4.994190] autoconfig: line_outs=4 (0x14/0x15/0x16/0x17/0x0) type:line
[    4.994191]    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[    4.994191]    hp_outs=1 (0x1b/0x0/0x0/0x0/0x0)
[    4.994192]    mono: mono_out=0x0
[    4.994192]    dig-out=0x1e/0x0
[    4.994193]    inputs:
[    4.994194]      Rear Mic=0x18
[    4.994194]      Front Mic=0x19
[    4.994195]      Line=0x1a
[    4.994196]      CD=0x1c
[    4.994196]    dig-in=0x1f
[    4.994202] realtek: No valid SSID, checking pincfg 0x4005e601 for NID 0x1d
[    4.994202] realtek: Enabling init ASM_ID=0xe601 CODEC_ID=10ec0885
[    5.005813] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
[    5.160272] input: HDA Intel Front Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input13
[    5.162618] input: HDA Intel Line Out Side as /devices/pci0000:00/0000:00:1b.0/sound/card0/input12
[    5.163008] input: HDA Intel Line Out CLFE as /devices/pci0000:00/0000:00:1b.0/sound/card0/input11
[    5.163273] input: HDA Intel Line Out Surround as /devices/pci0000:00/0000:00:1b.0/sound/card0/input10
[    5.168342] input: HDA Intel Line Out Front as /devices/pci0000:00/0000:00:1b.0/sound/card0/input9
[    5.168732] input: HDA Intel Line as /devices/pci0000:00/0000:00:1b.0/sound/card0/input8
[    5.169172] input: HDA Intel Front Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input7
[    5.173648] input: HDA Intel Rear Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input6
[    5.188566] Console: switching to colour frame buffer device 240x67
[    5.192924] radeon 0000:01:00.0: fb0: radeondrmfb frame buffer device
[    5.192926] radeon 0000:01:00.0: registered panic notifier
[    5.193208] [drm] Initialized radeon 2.36.0 20080528 for 0000:01:00.0 on minor 0
[    5.193788] hda-intel 0000:01:00.1: Handle VGA-switcheroo audio client
[    5.193790] hda-intel 0000:01:00.1: Using LPIB position fix
[    5.193840] snd_hda_intel 0000:01:00.1: irq 50 for MSI/MSI-X
[    5.216719] hda-intel 0000:01:00.1: Enable sync_write for stable communication
[    5.248317] HDMI ATI/AMD: no speaker allocation for ELD
[    5.248736] input: HDA ATI HDMI HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input14
[    5.258059] Bluetooth: Core ver 2.17
[    5.259582] NET: Registered protocol family 31
[    5.259584] Bluetooth: HCI device and connection manager initialized
[    5.259593] Bluetooth: HCI socket layer initialized
[    5.259596] Bluetooth: L2CAP socket layer initialized
[    5.259600] Bluetooth: SCO socket layer initialized
[    5.281234] usbcore: registered new interface driver btusb
[    5.281681] init: patchram pre-start process (632) terminated with status 1
[    5.340083] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[    5.340086] Bluetooth: BNEP filters: protocol multicast
[    5.340097] Bluetooth: BNEP socket layer initialized
[    5.349880] type=1400 audit(1403907845.252:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/sbin/dhclient" pid=415 comm="apparmor_parser"
[    5.350029] type=1400 audit(1403907845.252:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=415 comm="apparmor_parser"
[    5.350147] type=1400 audit(1403907845.252:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=415 comm="apparmor_parser"
[    5.357434] type=1400 audit(1403907845.260:5): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/sbin/dhclient" pid=424 comm="apparmor_parser"
[    5.357533] type=1400 audit(1403907845.260:6): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=424 comm="apparmor_parser"
[    5.357621] type=1400 audit(1403907845.260:7): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=424 comm="apparmor_parser"
[    5.364799] Bluetooth: RFCOMM TTY layer initialized
[    5.364810] Bluetooth: RFCOMM socket layer initialized
[    5.364814] Bluetooth: RFCOMM ver 1.11
[    5.434689] init: avahi-cups-reload main process (683) terminated with status 1
[    5.873792] init: failsafe main process (741) killed by TERM signal
[    5.874210] gpio_ich: GPIO from 195 to 255 on gpio_ich
[    6.079617] type=1400 audit(1403907845.980:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/cups/backend/cups-pdf" pid=670 comm="apparmor_parser"
[    6.080961] type=1400 audit(1403907845.984:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/cupsd" pid=670 comm="apparmor_parser"
[    6.102762] init: samba-ad-dc main process (831) terminated with status 1
[    6.177024] type=1400 audit(1403907846.080:10): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/sbin/dhclient" pid=932 comm="apparmor_parser"
[    6.177030] type=1400 audit(1403907846.080:11): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=932 comm="apparmor_parser"
[    6.177034] type=1400 audit(1403907846.080:12): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=932 comm="apparmor_parser"
[    6.177416] type=1400 audit(1403907846.080:13): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=932 comm="apparmor_parser"
[    6.177419] type=1400 audit(1403907846.080:14): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=932 comm="apparmor_parser"
[    6.177612] type=1400 audit(1403907846.080:15): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=932 comm="apparmor_parser"
[    6.465296] r8169 0000:04:00.0 eth0: link down
[    6.465357] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[    6.465686] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[    6.477300] r8169 0000:05:00.0 eth1: link down
[    6.477317] r8169 0000:05:00.0 eth1: link down
[    6.477361] IPv6: ADDRCONF(NETDEV_UP): eth1: link is not ready
[    6.477710] IPv6: ADDRCONF(NETDEV_UP): eth1: link is not ready
[    6.575644] type=1400 audit(1403907846.476:16): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/freshclam" pid=939 comm="apparmor_parser"
[    6.977301] type=1400 audit(1403907846.880:17): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/cups-browsed" pid=1018 comm="apparmor_parser"
[    9.241611] r8169 0000:05:00.0 eth1: link up
[    9.241622] IPv6: ADDRCONF(NETDEV_CHANGE): eth1: link becomes ready
[   10.036348] init: alsa-restore main process (1128) terminated with status 99
[   10.650326] vboxdrv: module verification failed: signature and/or  required key missing - tainting kernel
[   10.652674] vboxdrv: Found 2 processor cores.
[   10.653485] vboxdrv: fAsync=0 offMin=0x252 offMax=0xf30
[   10.653562] vboxdrv: TSC mode is 'synchronous', kernel timer mode is 'normal'.
[   10.653563] vboxdrv: Successfully loaded version 4.3.12 (interface 0x001a0007).
[   10.867873] vboxpci: IOMMU not found (not registered)
[   10.976463] init: plymouth-upstart-bridge main process ended, respawning
[   14.193331] audit_printk_skb: 48 callbacks suppressed
[   14.193335] type=1400 audit(1403907854.096:34): apparmor="DENIED" operation="open" profile="/usr/lib/telepathy/mission-control-5" name="/etc/dconf/profile/gdm" pid=1904 comm="mission-control" requested_mask="r" denied_mask="r" fsuid=115 ouid=0
           CPU0       CPU1       
  0:         44          0   IO-APIC-edge      timer
  1:         66         69   IO-APIC-edge      i8042
  4:          2          2   IO-APIC-edge    
  7:          0          0   IO-APIC-edge      parport0
  8:          0          1   IO-APIC-edge      rtc0
  9:          0          0   IO-APIC-fasteoi   acpi
 16:          0          0   IO-APIC-fasteoi   uhci_hcd:usb3
 18:          0          2   IO-APIC-fasteoi   ehci_hcd:usb1, uhci_hcd:usb5, uhci_hcd:usb8
 19:        155        138   IO-APIC-fasteoi   uhci_hcd:usb7, pata_jmicron
 21:        258        260   IO-APIC-fasteoi   uhci_hcd:usb4
 23:         19         16   IO-APIC-fasteoi   ehci_hcd:usb2, uhci_hcd:usb6, firewire_ohci
 45:          0          0   PCI-MSI-edge      eth0
 46:        111         38   PCI-MSI-edge      eth1
 47:      19596      19666   PCI-MSI-edge      ahci
 48:        756        725   PCI-MSI-edge      radeon
 49:        450        467   PCI-MSI-edge      snd_hda_intel
 50:         99        101   PCI-MSI-edge      snd_hda_intel
NMI:         23         18   Non-maskable interrupts
LOC:       7664       7727   Local timer interrupts
SPU:          0          0   Spurious interrupts
PMI:         23         18   Performance monitoring interrupts
IWI:        611        788   IRQ work interrupts
RTR:          0          0   APIC ICR read retries
RES:      16768      15552   Rescheduling interrupts
CAL:        434        458   Function call interrupts
TLB:        810        712   TLB shootdowns
TRM:          0          0   Thermal event interrupts
THR:          0          0   Threshold APIC interrupts
MCE:          0          0   Machine check exceptions
MCP:          1          1   Machine check polls
ERR:          0
MIS:          0