ubuntuusers.de

dmesg

Autor:
Zadolux
Datum:
2. Dezember 2017 21:02
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
[    0.000000] random: get_random_bytes called from start_kernel+0x35/0x41e with crng_init=0
[    0.000000] Linux version 4.13.0-17-generic (buildd@lcy01-amd64-016) (gcc version 7.2.0 (Ubuntu 7.2.0-8ubuntu3)) #20-Ubuntu SMP Mon Nov 6 10:03:21 UTC 2017 (Ubuntu 4.13.0-17.20-generic 4.13.8)
[    0.000000] KERNEL supported cpus:
[    0.000000]   Intel GenuineIntel
[    0.000000]   AMD AuthenticAMD
[    0.000000]   NSC Geode by NSC
[    0.000000]   Cyrix CyrixInstead
[    0.000000]   Centaur CentaurHauls
[    0.000000]   Transmeta GenuineTMx86
[    0.000000]   Transmeta TransmetaCPU
[    0.000000]   UMC UMC UMC UMC
[    0.000000] x86/fpu: x87 FPU will use FXSAVE
[    0.000000] e820: BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009efff] usable
[    0.000000] BIOS-e820: [mem 0x000000000009f000-0x000000000009ffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000df65a7ff] usable
[    0.000000] BIOS-e820: [mem 0x00000000df65a800-0x00000000dfffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec0ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed18000-0x00000000fed1bfff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed20000-0x00000000fed8ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000feda0000-0x00000000feda5fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee0ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ffe00000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000011fffffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] random: fast init done
[    0.000000] SMBIOS 2.4 present.
[    0.000000] DMI: Dell Inc. Latitude D630                   /0KU184, BIOS A17 01/04/2010
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] e820: last_pfn = 0x120000 max_arch_pfn = 0x1000000
[    0.000000] MTRR default type: uncachable
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-BFFFF uncachable
[    0.000000]   C0000-CFFFF write-protect
[    0.000000]   D0000-EFFFF uncachable
[    0.000000]   F0000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 000000000 mask F80000000 write-back
[    0.000000]   1 base 080000000 mask FC0000000 write-back
[    0.000000]   2 base 0C0000000 mask FE0000000 write-back
[    0.000000]   3 base 100000000 mask FE0000000 write-back
[    0.000000]   4 base 0DF800000 mask FFF800000 uncachable
[    0.000000]   5 base 0DF700000 mask FFFF00000 uncachable
[    0.000000]   6 disabled
[    0.000000]   7 disabled
[    0.000000] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WC  UC- WT  
[    0.000000] total RAM covered: 4087M
[    0.000000] Found optimal setting for mtrr clean up
[    0.000000]  gran_size: 64K 	chunk_size: 1G 	num_reg: 5  	lose cover RAM: 0G
[    0.000000] e820: update [mem 0xdf700000-0xffffffff] usable ==> reserved
[    0.000000] Scanning 1 areas for low memory corruption
[    0.000000] initial memory mapped: [mem 0x00000000-0x153fffff]
[    0.000000] Base memory trampoline at [c009b000] 9b000 size 16384
[    0.000000] BRK [0x14f0a000, 0x14f0afff] PGTABLE
[    0.000000] BRK [0x14f0b000, 0x14f0bfff] PGTABLE
[    0.000000] RAMDISK: [mem 0x321e1000-0x350e7fff]
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x00000000000FBB10 000024 (v02 DELL  )
[    0.000000] ACPI: XSDT 0x00000000DF65D200 00005C (v01 DELL   M08      27DA0104 ASL  00000061)
[    0.000000] ACPI: FACP 0x00000000DF65D09C 0000F4 (v04 DELL   M08      27DA0104 ASL  00000061)
[    0.000000] ACPI: DSDT 0x00000000DF65D800 006114 (v02 INT430 SYSFexxx 00001001 INTL 20050624)
[    0.000000] ACPI: FACS 0x00000000DF66C000 000040
[    0.000000] ACPI: FACS 0x00000000DF66C000 000040
[    0.000000] ACPI: HPET 0x00000000DF65D300 000038 (v01 DELL   M08      00000001 ASL  00000061)
[    0.000000] ACPI: APIC 0x00000000DF65D400 000068 (v01 DELL   M08      27DA0104 ASL  00000047)
[    0.000000] ACPI: ASF! 0x00000000DF65D000 00007E (v32 DELL   M08      27DA0104 ASL  00000061)
[    0.000000] ACPI: MCFG 0x00000000DF65D3C0 00003E (v16 DELL   M08      27DA0104 ASL  00000061)
[    0.000000] ACPI: TCPA 0x00000000DF65D700 000032 (v01                 00000000 ASL  00000000)
[    0.000000] ACPI: SSDT 0x00000000DF65B9BC 0004CC (v01 PmRef  CpuPm    00003000 INTL 20050624)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] 3716MB HIGHMEM available.
[    0.000000] 891MB LOWMEM available.
[    0.000000]   mapped low ram: 0 - 37bfe000
[    0.000000]   low ram: 0 - 37bfe000
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.000000]   Normal   [mem 0x0000000001000000-0x0000000037bfdfff]
[    0.000000]   HighMem  [mem 0x0000000037bfe000-0x000000011fffffff]
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000000001000-0x000000000009efff]
[    0.000000]   node   0: [mem 0x0000000000100000-0x00000000df659fff]
[    0.000000]   node   0: [mem 0x0000000100000000-0x000000011fffffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000011fffffff]
[    0.000000] On node 0 totalpages: 1046008
[    0.000000]   DMA zone: 40 pages used for memmap
[    0.000000]   DMA zone: 0 pages reserved
[    0.000000]   DMA zone: 3998 pages, LIFO batch:0
[    0.000000]   Normal zone: 2190 pages used for memmap
[    0.000000]   Normal zone: 224254 pages, LIFO batch:31
[    0.000000]   HighMem zone: 817756 pages, LIFO batch:31
[    0.000000] Using APIC driver default
[    0.000000] Reserving Intel graphics memory at 0x00000000df800000-0x00000000dfffffff
[    0.000000] ACPI: PM-Timer IO Port: 0x1008
[    0.000000] ACPI: Local APIC address 0xfee00000
[    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] 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: 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 2 CPUs, 0 hotplug CPUs
[    0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.000000] PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
[    0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000fffff]
[    0.000000] e820: [mem 0xe0000000-0xf7ffffff] available for PCI devices
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[    0.000000] setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:2 nr_node_ids:1
[    0.000000] percpu: Embedded 24 pages/cpu @f53cb000 s65676 r0 d32628 u98304
[    0.000000] pcpu-alloc: s65676 r0 d32628 u98304 alloc=24*4096
[    0.000000] pcpu-alloc: [0] 0 [0] 1 
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 1043778
[    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-4.13.0-17-generic root=UUID=7998469d-4b0b-4d4f-a0ea-b0377945604f ro splash quiet vt.handoff=7
[    0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes)
[    0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
[    0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
[    0.000000] microcode: microcode updated early to revision 0xba, date = 2010-10-03
[    0.000000] Initializing CPU#0
[    0.000000] Initializing HighMem for node 0 (00037bfe:00120000)
[    0.000000] Initializing Movable for node 0 (00000000:00000000)
[    0.000000] Memory: 4078432K/4184032K available (8475K kernel code, 888K rwdata, 3324K rodata, 1060K init, 852K bss, 105600K reserved, 0K cma-reserved, 3271024K highmem)
[    0.000000] virtual kernel memory layout:
                   fixmap  : 0xfff0d000 - 0xfffff000   ( 968 kB)
                   pkmap   : 0xffc00000 - 0xffe00000   (2048 kB)
                   vmalloc : 0xf83fe000 - 0xffbfe000   ( 120 MB)
                   lowmem  : 0xc0000000 - 0xf7bfe000   ( 891 MB)
                     .init : 0xd4c79000 - 0xd4d82000   (1060 kB)
                     .data : 0xd4846e36 - 0xd4c66240   (4221 kB)
                     .text : 0xd4000000 - 0xd4846e36   (8475 kB)
[    0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok.
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
[    0.000000] ftrace: allocating 36776 entries in 72 pages
[    0.000000] Hierarchical RCU implementation.
[    0.000000] 	RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=2.
[    0.000000] 	Tasks RCU enabled.
[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=2
[    0.000000] NR_IRQS: 2304, nr_irqs: 440, preallocated irqs: 16
[    0.000000] CPU 0 irqstacks, hard=f1cc8000 soft=f1cca000
[    0.000000] vt handoff: transparent VT on vt#7
[    0.000000] Console: colour dummy device 80x25
[    0.000000] console [tty0] enabled
[    0.000000] allocated 4194304 bytes of page_ext
[    0.000000] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
[    0.000000] hpet clockevent registered
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.004000] tsc: Detected 1994.446 MHz processor
[    0.004000] Calibrating delay loop (skipped), value calculated using timer frequency.. 3988.89 BogoMIPS (lpj=7977784)
[    0.004000] pid_max: default: 32768 minimum: 301
[    0.004000] ACPI: Core revision 20170531
[    0.011100] ACPI: 2 ACPI AML tables successfully acquired and loaded
[    0.011139] Security Framework initialized
[    0.011142] Yama: becoming mindful.
[    0.011173] AppArmor: AppArmor initialized
[    0.011228] Mount-cache hash table entries: 2048 (order: 1, 8192 bytes)
[    0.011234] Mountpoint-cache hash table entries: 2048 (order: 1, 8192 bytes)
[    0.011546] CPU: Physical Processor ID: 0
[    0.011547] CPU: Processor Core ID: 0
[    0.011556] mce: CPU supports 6 MCE banks
[    0.011564] CPU0: Thermal monitoring enabled (TM2)
[    0.011568] process: using mwait in idle threads
[    0.011576] Last level iTLB entries: 4KB 128, 2MB 4, 4MB 4
[    0.011577] Last level dTLB entries: 4KB 256, 2MB 0, 4MB 32, 1GB 0
[    0.011839] Freeing SMP alternatives memory: 32K
[    0.015710] smpboot: Max logical packages: 1
[    0.015714] Enabling APIC mode:  Flat.  Using 1 I/O APICs
[    0.016201] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.056000] smpboot: CPU0: Intel(R) Core(TM)2 Duo CPU     T7300  @ 2.00GHz (family: 0x6, model: 0xf, stepping: 0xb)
[    0.056000] Performance Events: PEBS fmt0+, Core2 events, Intel PMU driver.
[    0.056000] core: PEBS disabled due to CPU errata
[    0.056000] ... version:                2
[    0.056000] ... bit width:              40
[    0.056000] ... generic registers:      2
[    0.056000] ... value mask:             000000ffffffffff
[    0.056000] ... max period:             000000007fffffff
[    0.056000] ... fixed-purpose events:   3
[    0.056000] ... event mask:             0000000700000003
[    0.056000] Hierarchical SRCU implementation.
[    0.056000] smp: Bringing up secondary CPUs ...
[    0.056000] CPU 1 irqstacks, hard=f1566000 soft=f1568000
[    0.056000] x86: Booting SMP configuration:
[    0.056000] .... node  #0, CPUs:      #1
[    0.004000] Initializing CPU#1
[    0.058109] smp: Brought up 1 node, 2 CPUs
[    0.058109] smpboot: Total of 2 processors activated (7977.78 BogoMIPS)
[    0.060083] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.060329] devtmpfs: initialized
[    0.060445] evm: security.selinux
[    0.060446] evm: security.SMACK64
[    0.060447] evm: security.SMACK64EXEC
[    0.060448] evm: security.SMACK64TRANSMUTE
[    0.060449] evm: security.SMACK64MMAP
[    0.060449] evm: security.ima
[    0.060450] evm: security.capability
[    0.060674] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.060678] futex hash table entries: 512 (order: 3, 32768 bytes)
[    0.060748] pinctrl core: initialized pinctrl subsystem
[    0.060883] RTC time: 19:44:07, date: 12/02/17
[    0.060987] NET: Registered protocol family 16
[    0.061312] EISA bus registered
[    0.061328] cpuidle: using governor ladder
[    0.061328] cpuidle: using governor menu
[    0.061328] PCCT header not found.
[    0.061328] ACPI: bus type PCI registered
[    0.061328] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.061328] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
[    0.061328] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
[    0.061328] PCI: Using MMCONFIG for extended config space
[    0.061328] PCI: Using configuration type 1 for base access
[    0.064042] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[    0.064134] ACPI: Added _OSI(Module Device)
[    0.064136] ACPI: Added _OSI(Processor Device)
[    0.064137] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.064138] ACPI: Added _OSI(Processor Aggregator Device)
[    0.080121] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[    0.084793] ACPI: Dynamic OEM Table Load:
[    0.084800] ACPI: SSDT 0x00000000F1CF2A80 000043 (v01 LMPWR  DELLLOM  00001001 INTL 20050624)
[    0.085172] ACPI: Dynamic OEM Table Load:
[    0.085178] ACPI: SSDT 0x00000000F1516400 000286 (v01 PmRef  Cpu0Ist  00003000 INTL 20050624)
[    0.085427] ACPI: Dynamic OEM Table Load:
[    0.085433] ACPI: SSDT 0x00000000F1C0B000 0005E5 (v01 PmRef  Cpu0Cst  00003001 INTL 20050624)
[    0.085952] ACPI: Dynamic OEM Table Load:
[    0.085958] ACPI: SSDT 0x00000000F1554A00 0000C4 (v01 PmRef  Cpu1Ist  00003000 INTL 20050624)
[    0.086118] ACPI: Dynamic OEM Table Load:
[    0.086124] ACPI: SSDT 0x00000000F1CED840 000085 (v01 PmRef  Cpu1Cst  00003000 INTL 20050624)
[    0.086654] ACPI: Interpreter enabled
[    0.086681] ACPI: (supports S0 S3 S4 S5)
[    0.086683] ACPI: Using IOAPIC for interrupt routing
[    0.086714] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.087069] ACPI: GPE 0x1C active on init
[    0.087080] ACPI: Enabled 13 GPEs in block 00 to 1F
[    0.143739] acpi PNP0C15:00: ACPI dock station (docks/bays count: 1)
[    0.171486] acpi LNXIOBAY:00: ACPI dock station (docks/bays count: 2)
[    0.173792] acpi LNXIOBAY:01: ACPI dock station (docks/bays count: 3)
[    0.202808] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.202814] acpi PNP0A03:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    0.202820] acpi PNP0A03:00: _OSC failed (AE_NOT_FOUND); disabling ASPM
[    0.202824] acpi PNP0A03:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-3f] only partially covers this bridge
[    0.212344] PCI host bridge to bus 0000:00
[    0.212347] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    0.212349] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.212352] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.212354] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000dffff window]
[    0.212356] pci_bus 0000:00: root bus resource [mem 0xe0000000-0xf7ffffff window]
[    0.212358] pci_bus 0000:00: root bus resource [mem 0xfc000000-0xfebfffff window]
[    0.212360] pci_bus 0000:00: root bus resource [mem 0xfec10000-0xfecfffff window]
[    0.212362] pci_bus 0000:00: root bus resource [mem 0xfed1c000-0xfed1ffff window]
[    0.212363] pci_bus 0000:00: root bus resource [mem 0xfed90000-0xfed9ffff window]
[    0.212365] pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfed44fff window]
[    0.212367] pci_bus 0000:00: root bus resource [mem 0xfeda7000-0xfedfffff window]
[    0.212369] pci_bus 0000:00: root bus resource [mem 0xfee10000-0xff9fffff window]
[    0.212371] pci_bus 0000:00: root bus resource [mem 0xffc00000-0xffdfffff window]
[    0.212373] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.212384] pci 0000:00:00.0: [8086:2a00] type 00 class 0x060000
[    0.212529] pci 0000:00:02.0: [8086:2a02] type 00 class 0x030000
[    0.212545] pci 0000:00:02.0: reg 0x10: [mem 0xf6e00000-0xf6efffff 64bit]
[    0.212553] pci 0000:00:02.0: reg 0x18: [mem 0xe0000000-0xefffffff 64bit pref]
[    0.212559] pci 0000:00:02.0: reg 0x20: [io  0xeff8-0xefff]
[    0.212695] pci 0000:00:02.1: [8086:2a03] type 00 class 0x038000
[    0.212709] pci 0000:00:02.1: reg 0x10: [mem 0xf6f00000-0xf6ffffff 64bit]
[    0.212897] pci 0000:00:1a.0: [8086:2834] type 00 class 0x0c0300
[    0.212961] pci 0000:00:1a.0: reg 0x20: [io  0x6f20-0x6f3f]
[    0.213108] pci 0000:00:1a.1: [8086:2835] type 00 class 0x0c0300
[    0.213173] pci 0000:00:1a.1: reg 0x20: [io  0x6f00-0x6f1f]
[    0.213334] pci 0000:00:1a.7: [8086:283a] type 00 class 0x0c0320
[    0.213362] pci 0000:00:1a.7: reg 0x10: [mem 0xfed1c400-0xfed1c7ff]
[    0.213468] pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold
[    0.213599] pci 0000:00:1b.0: [8086:284b] type 00 class 0x040300
[    0.213633] pci 0000:00:1b.0: reg 0x10: [mem 0xf6dfc000-0xf6dfffff 64bit]
[    0.213753] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    0.213893] pci 0000:00:1c.0: [8086:283f] type 01 class 0x060400
[    0.214021] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.214164] pci 0000:00:1c.1: [8086:2841] type 01 class 0x060400
[    0.214292] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[    0.214442] pci 0000:00:1c.5: [8086:2849] type 01 class 0x060400
[    0.214569] pci 0000:00:1c.5: PME# supported from D0 D3hot D3cold
[    0.214709] pci 0000:00:1d.0: [8086:2830] type 00 class 0x0c0300
[    0.214774] pci 0000:00:1d.0: reg 0x20: [io  0x6f80-0x6f9f]
[    0.214922] pci 0000:00:1d.1: [8086:2831] type 00 class 0x0c0300
[    0.214987] pci 0000:00:1d.1: reg 0x20: [io  0x6f60-0x6f7f]
[    0.215137] pci 0000:00:1d.2: [8086:2832] type 00 class 0x0c0300
[    0.215202] pci 0000:00:1d.2: reg 0x20: [io  0x6f40-0x6f5f]
[    0.215363] pci 0000:00:1d.7: [8086:2836] type 00 class 0x0c0320
[    0.215391] pci 0000:00:1d.7: reg 0x10: [mem 0xfed1c000-0xfed1c3ff]
[    0.215498] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
[    0.215624] pci 0000:00:1e.0: [8086:2448] type 01 class 0x060401
[    0.215829] pci 0000:00:1f.0: [8086:2815] type 00 class 0x060100
[    0.215955] pci 0000:00:1f.0: quirk: [io  0x1000-0x107f] claimed by ICH6 ACPI/GPIO/TCO
[    0.215961] pci 0000:00:1f.0: quirk: [io  0x1080-0x10bf] claimed by ICH6 GPIO
[    0.215965] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 1 PIO at 0900 (mask 007f)
[    0.215971] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 3 PIO at 0c80 (mask 003f)
[    0.216121] pci 0000:00:1f.1: [8086:2850] type 00 class 0x01018a
[    0.216145] pci 0000:00:1f.1: reg 0x10: [io  0x01f0-0x01f7]
[    0.216157] pci 0000:00:1f.1: reg 0x14: [io  0x03f4-0x03f7]
[    0.216169] pci 0000:00:1f.1: reg 0x18: [io  0x0170-0x0177]
[    0.216181] pci 0000:00:1f.1: reg 0x1c: [io  0x0374-0x0377]
[    0.216193] pci 0000:00:1f.1: reg 0x20: [io  0x6fa0-0x6faf]
[    0.216220] pci 0000:00:1f.1: legacy IDE quirk: reg 0x10: [io  0x01f0-0x01f7]
[    0.216222] pci 0000:00:1f.1: legacy IDE quirk: reg 0x14: [io  0x03f6]
[    0.216224] pci 0000:00:1f.1: legacy IDE quirk: reg 0x18: [io  0x0170-0x0177]
[    0.216226] pci 0000:00:1f.1: legacy IDE quirk: reg 0x1c: [io  0x0376]
[    0.216353] pci 0000:00:1f.2: [8086:2829] type 00 class 0x010601
[    0.216382] pci 0000:00:1f.2: reg 0x10: [io  0x6eb0-0x6eb7]
[    0.216395] pci 0000:00:1f.2: reg 0x14: [io  0x6eb8-0x6ebb]
[    0.216407] pci 0000:00:1f.2: reg 0x18: [io  0x6ec0-0x6ec7]
[    0.216419] pci 0000:00:1f.2: reg 0x1c: [io  0x6ec8-0x6ecb]
[    0.216431] pci 0000:00:1f.2: reg 0x20: [io  0x6ee0-0x6eff]
[    0.216443] pci 0000:00:1f.2: reg 0x24: [mem 0xf6dfb800-0xf6dfbfff]
[    0.216507] pci 0000:00:1f.2: PME# supported from D3hot
[    0.216630] pci 0000:00:1f.3: [8086:283e] type 00 class 0x0c0500
[    0.216654] pci 0000:00:1f.3: reg 0x10: [mem 0xf6dfb700-0xf6dfb7ff]
[    0.216697] pci 0000:00:1f.3: reg 0x20: [io  0x10c0-0x10df]
[    0.216906] pci 0000:00:1c.0: PCI bridge to [bus 0b]
[    0.217094] pci 0000:0c:00.0: [8086:4222] type 00 class 0x028000
[    0.217194] pci 0000:0c:00.0: reg 0x10: [mem 0xf6cff000-0xf6cfffff]
[    0.217650] pci 0000:0c:00.0: PME# supported from D0 D3hot D3cold
[    0.217808] pci 0000:0c:00.0: disabling ASPM on pre-1.1 PCIe device.  You can enable it with 'pcie_aspm=force'
[    0.217846] pci 0000:00:1c.1: PCI bridge to [bus 0c]
[    0.217855] pci 0000:00:1c.1:   bridge window [mem 0xf6c00000-0xf6cfffff]
[    0.217978] pci 0000:09:00.0: [14e4:1673] type 00 class 0x020000
[    0.218032] pci 0000:09:00.0: reg 0x10: [mem 0xf6bf0000-0xf6bfffff 64bit]
[    0.218244] pci 0000:09:00.0: PME# supported from D3hot D3cold
[    0.228034] pci 0000:00:1c.5: PCI bridge to [bus 09]
[    0.228042] pci 0000:00:1c.5:   bridge window [mem 0xf6b00000-0xf6bfffff]
[    0.228194] pci 0000:00:1e.0: PCI bridge to [bus 03] (subtractive decode)
[    0.228208] pci 0000:00:1e.0:   bridge window [io  0x0000-0x0cf7 window] (subtractive decode)
[    0.228210] pci 0000:00:1e.0:   bridge window [io  0x0d00-0xffff window] (subtractive decode)
[    0.228212] pci 0000:00:1e.0:   bridge window [mem 0x000a0000-0x000bffff window] (subtractive decode)
[    0.228214] pci 0000:00:1e.0:   bridge window [mem 0x000d0000-0x000dffff window] (subtractive decode)
[    0.228216] pci 0000:00:1e.0:   bridge window [mem 0xe0000000-0xf7ffffff window] (subtractive decode)
[    0.228218] pci 0000:00:1e.0:   bridge window [mem 0xfc000000-0xfebfffff window] (subtractive decode)
[    0.228220] pci 0000:00:1e.0:   bridge window [mem 0xfec10000-0xfecfffff window] (subtractive decode)
[    0.228222] pci 0000:00:1e.0:   bridge window [mem 0xfed1c000-0xfed1ffff window] (subtractive decode)
[    0.228224] pci 0000:00:1e.0:   bridge window [mem 0xfed90000-0xfed9ffff window] (subtractive decode)
[    0.228226] pci 0000:00:1e.0:   bridge window [mem 0xfed40000-0xfed44fff window] (subtractive decode)
[    0.228228] pci 0000:00:1e.0:   bridge window [mem 0xfeda7000-0xfedfffff window] (subtractive decode)
[    0.228229] pci 0000:00:1e.0:   bridge window [mem 0xfee10000-0xff9fffff window] (subtractive decode)
[    0.228231] pci 0000:00:1e.0:   bridge window [mem 0xffc00000-0xffdfffff window] (subtractive decode)
[    0.228264] pci_bus 0000:00: on NUMA node 0
[    0.250255] ACPI: PCI Interrupt Link [LNKA] (IRQs 9 10 *11)
[    0.250366] ACPI: PCI Interrupt Link [LNKB] (IRQs *5 7)
[    0.250475] ACPI: PCI Interrupt Link [LNKC] (IRQs 9 *10 11)
[    0.250570] ACPI: PCI Interrupt Link [LNKD] (IRQs 5 7 9 10 11) *0, disabled.
[    0.250682] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 9 *10 11 12 14 15)
[    0.250794] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 *9 10 11 12 14 15)
[    0.250907] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 *7 9 10 11 12 14 15)
[    0.251005] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
[    0.252169] SCSI subsystem initialized
[    0.252205] libata version 3.00 loaded.
[    0.252205] pci 0000:00:02.0: vgaarb: setting as boot VGA device
[    0.252205] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    0.252205] pci 0000:00:02.0: vgaarb: bridge control possible
[    0.252205] vgaarb: loaded
[    0.252205] ACPI: bus type USB registered
[    0.252205] usbcore: registered new interface driver usbfs
[    0.252205] usbcore: registered new interface driver hub
[    0.252205] usbcore: registered new device driver usb
[    0.252205] EDAC MC: Ver: 3.0.0
[    0.252205] PCI: Using ACPI for IRQ routing
[    0.252477] PCI: pci_cache_line_size set to 64 bytes
[    0.252559] e820: reserve RAM buffer [mem 0x0009f000-0x0009ffff]
[    0.252561] e820: reserve RAM buffer [mem 0xdf65a800-0xdfffffff]
[    0.252689] NetLabel: Initializing
[    0.252690] NetLabel:  domain hash size = 128
[    0.252691] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    0.252708] NetLabel:  unlabeled traffic allowed by default
[    0.252733] HPET: 3 timers in total, 0 timers will be used for per-cpu timer
[    0.252733] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[    0.252733] hpet0: 3 comparators, 64-bit 14.318180 MHz counter
[    0.256029] clocksource: Switched to clocksource hpet
[    0.274942] VFS: Disk quotas dquot_6.6.0
[    0.274965] VFS: Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[    0.275112] AppArmor: AppArmor Filesystem Enabled
[    0.275191] pnp: PnP ACPI init
[    0.275304] pnp 00:00: Plug and Play ACPI device, IDs PNP0f13 (active)
[    0.275355] pnp 00:01: Plug and Play ACPI device, IDs PNP0303 (active)
[    0.275405] pnp 00:02: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.275487] system 00:03: [io  0x0c80-0x0caf] has been reserved
[    0.275490] system 00:03: [io  0x0cc0-0x0cff] could not be reserved
[    0.275494] system 00:03: Plug and Play ACPI device, IDs PNP0c01 (active)
[    0.275595] system 00:04: [mem 0xfed00000-0xfed003ff] has been reserved
[    0.275599] system 00:04: Plug and Play ACPI device, IDs PNP0103 PNP0c01 (active)
[    0.282215] pnp 00:05: Plug and Play ACPI device, IDs PNP0501 (active)
[    0.389498] system 00:06: [io  0x0cb0-0x0cbb] has been reserved
[    0.389501] system 00:06: [mem 0xfed40000-0xfed44fff] has been reserved
[    0.389505] system 00:06: Plug and Play ACPI device, IDs PNP0c01 (active)
[    0.393839] pnp 00:07: disabling [io  0x1000-0x1005] because it overlaps 0000:00:1f.0 BAR 13 [io  0x1000-0x107f]
[    0.393842] pnp 00:07: disabling [io  0x1008-0x100f] because it overlaps 0000:00:1f.0 BAR 13 [io  0x1000-0x107f]
[    0.393877] system 00:07: [io  0x0900-0x097f] has been reserved
[    0.393880] system 00:07: [io  0x04d0-0x04d1] has been reserved
[    0.393884] system 00:07: Plug and Play ACPI device, IDs PNP0c01 (active)
[    0.393916] pnp 00:08: disabling [io  0x1006-0x1007] because it overlaps 0000:00:1f.0 BAR 13 [io  0x1000-0x107f]
[    0.393919] pnp 00:08: disabling [io  0x100a-0x1059] because it overlaps 0000:00:1f.0 BAR 13 [io  0x1000-0x107f]
[    0.393921] pnp 00:08: disabling [io  0x1060-0x107f] because it overlaps 0000:00:1f.0 BAR 13 [io  0x1000-0x107f]
[    0.393923] pnp 00:08: disabling [io  0x1010-0x102f] because it overlaps 0000:00:1f.0 BAR 13 [io  0x1000-0x107f]
[    0.393960] system 00:08: [io  0xf400-0xf4fe] has been reserved
[    0.393963] system 00:08: [io  0x1080-0x10bf] has been reserved
[    0.393965] system 00:08: [io  0x10c0-0x10df] has been reserved
[    0.393968] system 00:08: [io  0x0809] has been reserved
[    0.393971] system 00:08: Plug and Play ACPI device, IDs PNP0c01 (active)
[    0.406710] system 00:09: [mem 0x00000000-0x0009efff] could not be reserved
[    0.406713] system 00:09: [mem 0x0009f000-0x0009ffff] could not be reserved
[    0.406716] system 00:09: [mem 0x000c0000-0x000cffff] could not be reserved
[    0.406718] system 00:09: [mem 0x000e0000-0x000fffff] could not be reserved
[    0.406721] system 00:09: [mem 0x00100000-0xdf65a7ff] could not be reserved
[    0.406723] system 00:09: [mem 0xdf65a800-0xdf6fffff] has been reserved
[    0.406726] system 00:09: [mem 0xdf700000-0xdf7fffff] has been reserved
[    0.406728] system 00:09: [mem 0xdf700000-0xdfefffff] could not be reserved
[    0.406730] system 00:09: [mem 0xffe00000-0xffffffff] has been reserved
[    0.406733] system 00:09: [mem 0xffa00000-0xffbfffff] has been reserved
[    0.406735] system 00:09: [mem 0xfec00000-0xfec0ffff] could not be reserved
[    0.406737] system 00:09: [mem 0xfee00000-0xfee0ffff] has been reserved
[    0.406740] system 00:09: [mem 0xfed20000-0xfed3ffff] has been reserved
[    0.406742] system 00:09: [mem 0xfed45000-0xfed8ffff] has been reserved
[    0.406744] system 00:09: [mem 0xfeda0000-0xfeda3fff] has been reserved
[    0.406747] system 00:09: [mem 0xfeda4000-0xfeda4fff] has been reserved
[    0.406749] system 00:09: [mem 0xfeda5000-0xfeda5fff] has been reserved
[    0.406751] system 00:09: [mem 0xfeda6000-0xfeda6fff] has been reserved
[    0.406753] system 00:09: [mem 0xfed18000-0xfed1bfff] has been reserved
[    0.406755] system 00:09: [mem 0xf8000000-0xfbffffff] has been reserved
[    0.406759] system 00:09: Plug and Play ACPI device, IDs PNP0c01 (active)
[    0.406821] pnp: PnP ACPI: found 10 devices
[    0.406824] PnPBIOS: Disabled by ACPI PNP
[    0.444453] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.444473] pci 0000:00:1c.0: bridge window [io  0x1000-0x0fff] to [bus 0b] add_size 1000
[    0.444477] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 0b] add_size 200000 add_align 100000
[    0.444480] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff] to [bus 0b] add_size 200000 add_align 100000
[    0.444492] pci 0000:00:1c.1: bridge window [io  0x1000-0x0fff] to [bus 0c] add_size 1000
[    0.444495] pci 0000:00:1c.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 0c] add_size 200000 add_align 100000
[    0.444507] pci 0000:00:1c.5: bridge window [io  0x1000-0x0fff] to [bus 09] add_size 1000
[    0.444510] pci 0000:00:1c.5: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 09] add_size 200000 add_align 100000
[    0.444532] pci 0000:00:1c.0: BAR 14: assigned [mem 0xf0000000-0xf01fffff]
[    0.444543] pci 0000:00:1c.0: BAR 15: assigned [mem 0xf0200000-0xf03fffff 64bit pref]
[    0.444552] pci 0000:00:1c.1: BAR 15: assigned [mem 0xf0400000-0xf05fffff 64bit pref]
[    0.444561] pci 0000:00:1c.5: BAR 15: assigned [mem 0xf0600000-0xf07fffff 64bit pref]
[    0.444564] pci 0000:00:1c.0: BAR 13: assigned [io  0x2000-0x2fff]
[    0.444567] pci 0000:00:1c.1: BAR 13: assigned [io  0x3000-0x3fff]
[    0.444570] pci 0000:00:1c.5: BAR 13: assigned [io  0x4000-0x4fff]
[    0.444574] pci 0000:00:1c.0: PCI bridge to [bus 0b]
[    0.444578] pci 0000:00:1c.0:   bridge window [io  0x2000-0x2fff]
[    0.444585] pci 0000:00:1c.0:   bridge window [mem 0xf0000000-0xf01fffff]
[    0.444589] pci 0000:00:1c.0:   bridge window [mem 0xf0200000-0xf03fffff 64bit pref]
[    0.444597] pci 0000:00:1c.1: PCI bridge to [bus 0c]
[    0.444601] pci 0000:00:1c.1:   bridge window [io  0x3000-0x3fff]
[    0.444607] pci 0000:00:1c.1:   bridge window [mem 0xf6c00000-0xf6cfffff]
[    0.444612] pci 0000:00:1c.1:   bridge window [mem 0xf0400000-0xf05fffff 64bit pref]
[    0.444619] pci 0000:00:1c.5: PCI bridge to [bus 09]
[    0.444623] pci 0000:00:1c.5:   bridge window [io  0x4000-0x4fff]
[    0.444629] pci 0000:00:1c.5:   bridge window [mem 0xf6b00000-0xf6bfffff]
[    0.444634] pci 0000:00:1c.5:   bridge window [mem 0xf0600000-0xf07fffff 64bit pref]
[    0.444642] pci 0000:00:1e.0: PCI bridge to [bus 03]
[    0.444657] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
[    0.444659] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
[    0.444661] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[    0.444664] pci_bus 0000:00: resource 7 [mem 0x000d0000-0x000dffff window]
[    0.444665] pci_bus 0000:00: resource 8 [mem 0xe0000000-0xf7ffffff window]
[    0.444667] pci_bus 0000:00: resource 9 [mem 0xfc000000-0xfebfffff window]
[    0.444669] pci_bus 0000:00: resource 10 [mem 0xfec10000-0xfecfffff window]
[    0.444671] pci_bus 0000:00: resource 11 [mem 0xfed1c000-0xfed1ffff window]
[    0.444673] pci_bus 0000:00: resource 12 [mem 0xfed90000-0xfed9ffff window]
[    0.444675] pci_bus 0000:00: resource 13 [mem 0xfed40000-0xfed44fff window]
[    0.444677] pci_bus 0000:00: resource 14 [mem 0xfeda7000-0xfedfffff window]
[    0.444679] pci_bus 0000:00: resource 15 [mem 0xfee10000-0xff9fffff window]
[    0.444681] pci_bus 0000:00: resource 16 [mem 0xffc00000-0xffdfffff window]
[    0.444683] pci_bus 0000:0b: resource 0 [io  0x2000-0x2fff]
[    0.444685] pci_bus 0000:0b: resource 1 [mem 0xf0000000-0xf01fffff]
[    0.444687] pci_bus 0000:0b: resource 2 [mem 0xf0200000-0xf03fffff 64bit pref]
[    0.444689] pci_bus 0000:0c: resource 0 [io  0x3000-0x3fff]
[    0.444691] pci_bus 0000:0c: resource 1 [mem 0xf6c00000-0xf6cfffff]
[    0.444693] pci_bus 0000:0c: resource 2 [mem 0xf0400000-0xf05fffff 64bit pref]
[    0.444695] pci_bus 0000:09: resource 0 [io  0x4000-0x4fff]
[    0.444697] pci_bus 0000:09: resource 1 [mem 0xf6b00000-0xf6bfffff]
[    0.444699] pci_bus 0000:09: resource 2 [mem 0xf0600000-0xf07fffff 64bit pref]
[    0.444701] pci_bus 0000:03: resource 4 [io  0x0000-0x0cf7 window]
[    0.444703] pci_bus 0000:03: resource 5 [io  0x0d00-0xffff window]
[    0.444705] pci_bus 0000:03: resource 6 [mem 0x000a0000-0x000bffff window]
[    0.444707] pci_bus 0000:03: resource 7 [mem 0x000d0000-0x000dffff window]
[    0.444709] pci_bus 0000:03: resource 8 [mem 0xe0000000-0xf7ffffff window]
[    0.444711] pci_bus 0000:03: resource 9 [mem 0xfc000000-0xfebfffff window]
[    0.444713] pci_bus 0000:03: resource 10 [mem 0xfec10000-0xfecfffff window]
[    0.444715] pci_bus 0000:03: resource 11 [mem 0xfed1c000-0xfed1ffff window]
[    0.444717] pci_bus 0000:03: resource 12 [mem 0xfed90000-0xfed9ffff window]
[    0.444719] pci_bus 0000:03: resource 13 [mem 0xfed40000-0xfed44fff window]
[    0.444721] pci_bus 0000:03: resource 14 [mem 0xfeda7000-0xfedfffff window]
[    0.444723] pci_bus 0000:03: resource 15 [mem 0xfee10000-0xff9fffff window]
[    0.444725] pci_bus 0000:03: resource 16 [mem 0xffc00000-0xffdfffff window]
[    0.444851] NET: Registered protocol family 2
[    0.445067] TCP established hash table entries: 8192 (order: 3, 32768 bytes)
[    0.445084] TCP bind hash table entries: 8192 (order: 4, 65536 bytes)
[    0.445111] TCP: Hash tables configured (established 8192 bind 8192)
[    0.445153] UDP hash table entries: 512 (order: 2, 16384 bytes)
[    0.445161] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
[    0.445206] NET: Registered protocol family 1
[    0.445223] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    0.447922] PCI: CLS 64 bytes, default 64
[    0.447973] Unpacking initramfs...
[    1.553615] Freeing initrd memory: 48156K
[    1.553922] Scanning for low memory corruption every 60 seconds
[    1.554349] audit: initializing netlink subsys (disabled)
[    1.554430] audit: type=2000 audit(1512243848.554:1): state=initialized audit_enabled=0 res=1
[    1.554823] Initialise system trusted keyrings
[    1.554836] Key type blacklist registered
[    1.554882] workingset: timestamp_bits=14 max_order=20 bucket_order=6
[    1.557130] zbud: loaded
[    1.557567] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    1.557815] fuse init (API version 7.26)
[    1.559835] Key type asymmetric registered
[    1.559836] Asymmetric key parser 'x509' registered
[    1.559850] bounce: pool size: 64 pages
[    1.559865] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247)
[    1.559905] io scheduler noop registered
[    1.559906] io scheduler deadline registered
[    1.559985] io scheduler cfq registered (default)
[    1.561312] vesafb: mode is 1024x768x32, linelength=4096, pages=0
[    1.561313] vesafb: scrolling: redraw
[    1.561315] vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    1.561330] pmd_set_huge: Cannot satisfy [mem 0xe0000000-0xe0200000] with a huge-page mapping due to MTRR override.
[    1.561348] vesafb: framebuffer at 0xe0000000, mapped to 0xf8600000, using 3072k, total 3072k
[    1.561470] Console: switching to colour frame buffer device 128x48
[    1.561495] fb0: VESA VGA frame buffer device
[    1.561516] intel_idle: does not run on family 6 model 15
[    1.561649] ACPI: AC Adapter [AC] (off-line)
[    1.562166] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input0
[    1.563262] ACPI: Lid Switch [LID]
[    1.563318] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
[    1.563339] ACPI: Power Button [PBTN]
[    1.563390] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input2
[    1.563402] ACPI: Sleep Button [SBTN]
[    1.563529] Monitor-Mwait will be used to enter C-1 state
[    1.563535] Monitor-Mwait will be used to enter C-2 state
[    1.563539] Monitor-Mwait will be used to enter C-3 state
[    1.563542] tsc: Marking TSC unstable due to TSC halts in idle
[    1.568847] (NULL device *): hwmon_device_register() is deprecated. Please convert the driver to use hwmon_device_register_with_info().
[    1.570263] thermal LNXTHERM:00: registered as thermal_zone0
[    1.570264] ACPI: Thermal Zone [THM] (71 C)
[    1.570299] GHES: HEST is not enabled!
[    1.570414] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    1.584100] isapnp: Scanning for PnP cards...
[    1.593537] 00:05: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    1.600253] Linux agpgart interface v0.103
[    1.608933] ACPI: Battery Slot [BAT0] (battery present)
[    1.608975] ACPI: Battery Slot [BAT1] (battery absent)
[    1.636896] loop: module loaded
[    1.637075] ata_piix 0000:00:1f.1: version 2.13
[    1.638033] scsi host0: ata_piix
[    1.638142] scsi host1: ata_piix
[    1.638191] ata1: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0x6fa0 irq 14
[    1.638193] ata2: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0x6fa8 irq 15
[    1.638297] libphy: Fixed MDIO Bus: probed
[    1.638298] tun: Universal TUN/TAP device driver, 1.6
[    1.638344] PPP generic driver version 2.4.2
[    1.638399] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    1.638402] ehci-pci: EHCI PCI platform driver
[    1.638638] ehci-pci 0000:00:1a.7: EHCI Host Controller
[    1.638645] ehci-pci 0000:00:1a.7: new USB bus registered, assigned bus number 1
[    1.638660] ehci-pci 0000:00:1a.7: debug port 1
[    1.642559] ehci-pci 0000:00:1a.7: cache line size of 64 is not supported
[    1.642572] ehci-pci 0000:00:1a.7: irq 22, io mem 0xfed1c400
[    1.642746] ata2: port disabled--ignoring
[    1.656045] ehci-pci 0000:00:1a.7: USB 2.0 started, EHCI 1.00
[    1.656102] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    1.656105] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.656107] usb usb1: Product: EHCI Host Controller
[    1.656109] usb usb1: Manufacturer: Linux 4.13.0-17-generic ehci_hcd
[    1.656110] usb usb1: SerialNumber: 0000:00:1a.7
[    1.656253] hub 1-0:1.0: USB hub found
[    1.656262] hub 1-0:1.0: 4 ports detected
[    1.656652] ehci-pci 0000:00:1d.7: EHCI Host Controller
[    1.656658] ehci-pci 0000:00:1d.7: new USB bus registered, assigned bus number 2
[    1.656672] ehci-pci 0000:00:1d.7: debug port 1
[    1.660593] ehci-pci 0000:00:1d.7: cache line size of 64 is not supported
[    1.660605] ehci-pci 0000:00:1d.7: irq 20, io mem 0xfed1c000
[    1.676041] ehci-pci 0000:00:1d.7: USB 2.0 started, EHCI 1.00
[    1.676103] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
[    1.676106] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.676107] usb usb2: Product: EHCI Host Controller
[    1.676109] usb usb2: Manufacturer: Linux 4.13.0-17-generic ehci_hcd
[    1.676111] usb usb2: SerialNumber: 0000:00:1d.7
[    1.676248] hub 2-0:1.0: USB hub found
[    1.676255] hub 2-0:1.0: 6 ports detected
[    1.676477] ehci-platform: EHCI generic platform driver
[    1.676492] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    1.676495] ohci-pci: OHCI PCI platform driver
[    1.676509] ohci-platform: OHCI generic platform driver
[    1.676518] uhci_hcd: USB Universal Host Controller Interface driver
[    1.676719] uhci_hcd 0000:00:1a.0: UHCI Host Controller
[    1.676725] uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 3
[    1.676732] uhci_hcd 0000:00:1a.0: detected 2 ports
[    1.676755] uhci_hcd 0000:00:1a.0: irq 20, io base 0x00006f20
[    1.676816] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
[    1.676818] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.676820] usb usb3: Product: UHCI Host Controller
[    1.676822] usb usb3: Manufacturer: Linux 4.13.0-17-generic uhci_hcd
[    1.676823] usb usb3: SerialNumber: 0000:00:1a.0
[    1.676957] hub 3-0:1.0: USB hub found
[    1.676965] hub 3-0:1.0: 2 ports detected
[    1.677288] uhci_hcd 0000:00:1a.1: UHCI Host Controller
[    1.677294] uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus number 4
[    1.677302] uhci_hcd 0000:00:1a.1: detected 2 ports
[    1.677334] uhci_hcd 0000:00:1a.1: irq 21, io base 0x00006f00
[    1.677392] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001
[    1.677394] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.677396] usb usb4: Product: UHCI Host Controller
[    1.677397] usb usb4: Manufacturer: Linux 4.13.0-17-generic uhci_hcd
[    1.677399] usb usb4: SerialNumber: 0000:00:1a.1
[    1.677532] hub 4-0:1.0: USB hub found
[    1.677540] hub 4-0:1.0: 2 ports detected
[    1.677851] uhci_hcd 0000:00:1d.0: UHCI Host Controller
[    1.677857] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 5
[    1.677865] uhci_hcd 0000:00:1d.0: detected 2 ports
[    1.677887] uhci_hcd 0000:00:1d.0: irq 20, io base 0x00006f80
[    1.677948] usb usb5: New USB device found, idVendor=1d6b, idProduct=0001
[    1.677951] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.677952] usb usb5: Product: UHCI Host Controller
[    1.677954] usb usb5: Manufacturer: Linux 4.13.0-17-generic uhci_hcd
[    1.677956] usb usb5: SerialNumber: 0000:00:1d.0
[    1.678084] hub 5-0:1.0: USB hub found
[    1.678093] hub 5-0:1.0: 2 ports detected
[    1.678403] uhci_hcd 0000:00:1d.1: UHCI Host Controller
[    1.678409] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 6
[    1.678416] uhci_hcd 0000:00:1d.1: detected 2 ports
[    1.678439] uhci_hcd 0000:00:1d.1: irq 21, io base 0x00006f60
[    1.678499] usb usb6: New USB device found, idVendor=1d6b, idProduct=0001
[    1.678501] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.678503] usb usb6: Product: UHCI Host Controller
[    1.678505] usb usb6: Manufacturer: Linux 4.13.0-17-generic uhci_hcd
[    1.678506] usb usb6: SerialNumber: 0000:00:1d.1
[    1.678630] hub 6-0:1.0: USB hub found
[    1.678638] hub 6-0:1.0: 2 ports detected
[    1.678949] uhci_hcd 0000:00:1d.2: UHCI Host Controller
[    1.678955] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 7
[    1.678963] uhci_hcd 0000:00:1d.2: detected 2 ports
[    1.678987] uhci_hcd 0000:00:1d.2: irq 22, io base 0x00006f40
[    1.679045] usb usb7: New USB device found, idVendor=1d6b, idProduct=0001
[    1.679047] usb usb7: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.679049] usb usb7: Product: UHCI Host Controller
[    1.679051] usb usb7: Manufacturer: Linux 4.13.0-17-generic uhci_hcd
[    1.679052] usb usb7: SerialNumber: 0000:00:1d.2
[    1.679177] hub 7-0:1.0: USB hub found
[    1.679184] hub 7-0:1.0: 2 ports detected
[    1.679380] i8042: PNP: PS/2 Controller [PNP0303:KBC,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
[    1.683128] serio: i8042 KBD port at 0x60,0x64 irq 1
[    1.683133] serio: i8042 AUX port at 0x60,0x64 irq 12
[    1.683284] mousedev: PS/2 mouse device common for all mice
[    1.683459] rtc_cmos 00:02: RTC can wake from S4
[    1.683629] rtc_cmos 00:02: rtc core: registered rtc_cmos as rtc0
[    1.683660] rtc_cmos 00:02: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[    1.683669] i2c /dev entries driver
[    1.683742] device-mapper: uevent: version 1.0.3
[    1.683824] device-mapper: ioctl: 4.37.0-ioctl (2017-09-20) initialised: dm-devel@redhat.com
[    1.683852] platform eisa.0: Probing EISA bus 0
[    1.683855] platform eisa.0: EISA: Cannot allocate resource for mainboard
[    1.683857] platform eisa.0: Cannot allocate resource for EISA slot 1
[    1.683859] platform eisa.0: Cannot allocate resource for EISA slot 2
[    1.683860] platform eisa.0: Cannot allocate resource for EISA slot 3
[    1.683862] platform eisa.0: Cannot allocate resource for EISA slot 4
[    1.683864] platform eisa.0: Cannot allocate resource for EISA slot 5
[    1.683866] platform eisa.0: Cannot allocate resource for EISA slot 6
[    1.683868] platform eisa.0: Cannot allocate resource for EISA slot 7
[    1.683870] platform eisa.0: Cannot allocate resource for EISA slot 8
[    1.683871] platform eisa.0: EISA: Detected 0 cards
[    1.683877] cpufreq_nforce2: No nForce2 chipset
[    1.687156] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input3
[    1.722398] ledtrig-cpu: registered to indicate activity on CPUs
[    1.722735] NET: Registered protocol family 10
[    1.727926] Segment Routing with IPv6
[    1.727955] NET: Registered protocol family 17
[    1.727966] Key type dns_resolver registered
[    1.810253] microcode: sig=0x6fb, pf=0x80, revision=0xba
[    1.810361] microcode: Microcode Update Driver: v2.2.
[    1.810366] Using IPI No-Shortcut mode
[    1.810515] registered taskstats version 1
[    1.810527] Loading compiled-in X.509 certificates
[    1.817702] Loaded X.509 cert 'Build time autogenerated kernel key: 95657fba6041cf9b7b287bb0e3d7e292a4003c24'
[    1.817719] zswap: loaded using pool lzo/zbud
[    1.822190] Key type big_key registered
[    1.822194] Key type trusted registered
[    1.824393] Key type encrypted registered
[    1.824396] AppArmor: AppArmor sha1 policy hashing enabled
[    1.824400] ima: No TPM chip found, activating TPM-bypass! (rc=-19)
[    1.824421] evm: HMAC attrs: 0x1
[    1.824763]   Magic number: 13:885:747
[    1.824887] rtc_cmos 00:02: setting system clock to 2017-12-02 19:44:09 UTC (1512243849)
[    1.828417] ata1.00: ATAPI: HL-DT-ST DVD+/-RW GSA-T21N, A100, max UDMA/33
[    1.852289] ata1.00: configured for UDMA/33
[    1.854116] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[    1.854117] EDD information not available.
[    1.854167] PM: Hibernation image not present or could not be loaded.
[    1.896899] isapnp: No Plug & Play device found
[    1.900684] scsi 0:0:0:0: CD-ROM            HL-DT-ST DVD+-RW GSA-T21N A100 PQ: 0 ANSI: 5
[    1.927455] sr 0:0:0:0: [sr0] scsi3-mmc drive: 24x/24x writer cd/rw xa/form2 cdda tray
[    1.927458] cdrom: Uniform CD-ROM driver Revision: 3.20
[    1.927733] sr 0:0:0:0: Attached scsi CD-ROM sr0
[    1.927882] sr 0:0:0:0: Attached scsi generic sg0 type 5
[    1.930955] Freeing unused kernel memory: 1060K
[    1.931032] Write protecting the kernel text: 8476k
[    1.931193] Write protecting the kernel read-only data: 3332k
[    1.931194] NX-protecting the kernel data: 5860k
[    1.931456] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    2.072253] wmi_bus wmi_bus-PNP0C14:00: WQBC data block query control method not found
[    2.085090] pps_core: LinuxPPS API ver. 1 registered
[    2.085091] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    2.090476] PTP clock support registered
[    2.100932] tg3.c:v3.137 (May 11, 2014)
[    2.115108] ahci 0000:00:1f.2: version 3.0
[    2.115484] ahci 0000:00:1f.2: AHCI 0001.0100 32 slots 3 ports 3 Gbps 0x5 impl SATA mode
[    2.115487] ahci 0000:00:1f.2: flags: 64bit ncq sntf pm led clo pio slum part ccc ems 
[    2.133932] tg3 0000:09:00.0 eth0: Tigon3 [partno(BCM95755m) rev a002] (PCI Express) MAC address 00:1c:23:21:36:d0
[    2.133936] tg3 0000:09:00.0 eth0: attached PHY is 5755 (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[0])
[    2.133938] tg3 0000:09:00.0 eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[1]
[    2.133941] tg3 0000:09:00.0 eth0: dma_rwctrl[76180000] dma_mask[64-bit]
[    2.172093] usb 6-2: new low-speed USB device number 2 using uhci_hcd
[    2.179144] scsi host2: ahci
[    2.183196] scsi host3: ahci
[    2.183336] scsi host4: ahci
[    2.183409] ata3: SATA max UDMA/133 abar m2048@0xf6dfb800 port 0xf6dfb900 irq 24
[    2.183411] ata4: DUMMY
[    2.183414] ata5: SATA max UDMA/133 abar m2048@0xf6dfb800 port 0xf6dfba00 irq 24
[    2.183828] pci 0000:00:00.0: Intel 965GM Chipset
[    2.183849] pci 0000:00:00.0: detected gtt size: 524288K total, 262144K mappable
[    2.184818] pci 0000:00:00.0: detected 8192K stolen memory
[    2.184997] [drm] Memory usable by graphics device = 512M
[    2.185002] checking generic (e0000000 300000) vs hw (e0000000 10000000)
[    2.185003] fb: switching to inteldrmfb from VESA VGA
[    2.185039] Console: switching to colour dummy device 80x25
[    2.185179] [drm] Replacing VGA console driver
[    2.202238] tg3 0000:09:00.0 enp9s0: renamed from eth0
[    2.274014] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[    2.274016] [drm] Driver supports precise vblank timestamp query.
[    2.276861] i915 0000:00:02.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=io+mem:owns=io+mem
[    2.358129] usb 6-2: New USB device found, idVendor=1d57, idProduct=ffa4
[    2.358132] usb 6-2: New USB device strings: Mfr=0, Product=2, SerialNumber=0
[    2.358134] usb 6-2: Product: 2.4G Receiver
[    2.371577] hidraw: raw HID events driver (C) Jiri Kosina
[    2.414010] [drm] RC6 disabled, disabling runtime PM support
[    2.414023] [drm] initialized overlay support
[    2.414486] [drm] Initialized i915 1.6.0 20170619 for 0000:00:02.0 on minor 0
[    2.414756] ACPI: Video Device [VID1] (multi-head: yes  rom: no  post: no)
[    2.415145] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A03:00/LNXVIDEO:01/input/input6
[    2.415363] [Firmware Bug]: Duplicate ACPI video bus devices for the same VGA controller, please try module parameter "video.allow_duplicates=1"if the current driver doesn't work.
[    2.420688] usbcore: registered new interface driver usbhid
[    2.420689] usbhid: USB HID core driver
[    2.427167] input: 2.4G Receiver as /devices/pci0000:00/0000:00:1d.1/usb6/6-2/6-2:1.0/0003:1D57:FFA4.0001/input/input7
[    2.484526] hid-generic 0003:1D57:FFA4.0001: input,hiddev0,hidraw0: USB HID v1.10 Mouse [2.4G Receiver] on usb-0000:00:1d.1-2/input0
[    2.485306] input: 2.4G Receiver as /devices/pci0000:00/0000:00:1d.1/usb6/6-2/6-2:1.1/0003:1D57:FFA4.0002/input/input8
[    2.498437] ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    2.500800] ata3.00: ATA-9: KingDian S200 60GB, P0921A, max UDMA/133
[    2.500804] ata3.00: 117231408 sectors, multi 1: LBA48 NCQ (depth 31/32), AA
[    2.504731] ata5: SATA link down (SStatus 0 SControl 300)
[    2.509255] ata3.00: configured for UDMA/133
[    2.509557] scsi 2:0:0:0: Direct-Access     ATA      KingDian S200 60 1A   PQ: 0 ANSI: 5
[    2.540409] sd 2:0:0:0: Attached scsi generic sg1 type 0
[    2.540494] sd 2:0:0:0: [sda] 117231408 512-byte logical blocks: (60.0 GB/55.9 GiB)
[    2.540512] sd 2:0:0:0: [sda] Write Protect is off
[    2.540515] sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    2.540544] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    2.541066]  sda: sda1
[    2.541876] sd 2:0:0:0: [sda] Attached SCSI disk
[    2.544255] hid-generic 0003:1D57:FFA4.0002: input,hidraw1: USB HID v1.10 Keyboard [2.4G Receiver] on usb-0000:00:1d.1-2/input1
[    2.556143] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x397f5f24fa0, max_idle_ns: 881590506094 ns
[    2.972124] usb 7-1: new full-speed USB device number 2 using uhci_hcd
[    3.134191] usb 7-1: New USB device found, idVendor=0b97, idProduct=7761
[    3.134195] usb 7-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    3.136278] hub 7-1:1.0: USB hub found
[    3.138201] hub 7-1:1.0: 4 ports detected
[    3.436168] usb 7-1.2: new full-speed USB device number 3 using uhci_hcd
[    3.468359] input: AlpsPS/2 ALPS DualPoint Stick as /devices/platform/i8042/serio1/input/input9
[    3.489279] input: AlpsPS/2 ALPS DualPoint TouchPad as /devices/platform/i8042/serio1/input/input5
[    3.566200] usb 7-1.2: New USB device found, idVendor=0b97, idProduct=7772
[    3.566204] usb 7-1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    3.566207] usb 7-1.2: Product: O2Micro CCID SC Reader
[    3.566210] usb 7-1.2: Manufacturer: O2
[   12.508276] [drm:drm_atomic_helper_commit_cleanup_done [drm_kms_helper]] *ERROR* [CRTC:30:pipe A] flip_done timed out
[   12.612224] vblank wait timed out on crtc 0
[   12.612261] ------------[ cut here ]------------
[   12.612293] WARNING: CPU: 1 PID: 100 at /build/linux-2JtliJ/linux-4.13.0/drivers/gpu/drm/drm_vblank.c:1090 drm_wait_one_vblank+0x1a1/0x1b0 [drm]
[   12.612295] Modules linked in: hid_generic usbhid hid i915 psmouse i2c_algo_bit drm_kms_helper ahci libahci pata_acpi tg3 ptp pps_core syscopyarea sysfillrect sysimgblt wmi fb_sys_fops drm video
[   12.612320] CPU: 1 PID: 100 Comm: kworker/u4:5 Not tainted 4.13.0-17-generic #20-Ubuntu
[   12.612325] Hardware name: Dell Inc. Latitude D630                   /0KU184, BIOS A17 01/04/2010
[   12.612335] Workqueue: events_unbound async_run_entry_fn
[   12.612340] task: f0c6a700 task.stack: f0e7e000
[   12.612365] EIP: drm_wait_one_vblank+0x1a1/0x1b0 [drm]
[   12.612367] EFLAGS: 00010292 CPU: 1
[   12.612369] EAX: 0000001f EBX: f4c94000 ECX: 00000306 EDX: 00000000
[   12.612372] ESI: 00000000 EDI: 00000000 EBP: f0e7fc34 ESP: f0e7fbfc
[   12.612374]  DS: 007b ES: 007b FS: 00d8 GS: 00e0 SS: 0068
[   12.612376] CR0: 80050033 CR2: bf8e4ffc CR3: 14d8d000 CR4: 000006f0
[   12.612379] Call Trace:
[   12.612389]  ? wait_woken+0x70/0x70
[   12.612486]  intel_get_load_detect_pipe+0x5d5/0x640 [i915]
[   12.612543]  intel_tv_detect+0x113/0x460 [i915]
[   12.612592]  ? intel_tv_get_modes+0x1f0/0x1f0 [i915]
[   12.612600]  drm_helper_probe_detect+0x42/0x80 [drm_kms_helper]
[   12.612608]  drm_helper_probe_single_connector_modes+0xbc/0x670 [drm_kms_helper]
[   12.612617]  drm_setup_crtcs+0x62/0x950 [drm_kms_helper]
[   12.612621]  ? __mutex_lock.isra.2+0x1d8/0x470
[   12.612630]  drm_fb_helper_initial_config+0x69/0x3f0 [drm_kms_helper]
[   12.612633]  ? pick_next_task_fair+0x136/0x5d0
[   12.612636]  ? __switch_to+0xab/0x390
[   12.612683]  intel_fbdev_initial_config+0x16/0x30 [i915]
[   12.612686]  async_run_entry_fn+0x35/0x140
[   12.612689]  process_one_work+0x1a0/0x390
[   12.612692]  worker_thread+0x37/0x440
[   12.612695]  kthread+0xf3/0x110
[   12.612697]  ? process_one_work+0x390/0x390
[   12.612700]  ? kthread_create_on_node+0x20/0x20
[   12.612702]  ? kthread_create_on_node+0x20/0x20
[   12.612705]  ret_from_fork+0x19/0x24
[   12.612707] Code: 00 00 00 e9 e4 fe ff ff e8 ed 9f b3 db 8b 45 d0 8d 55 dc e8 12 af b7 db 85 ff 0f 85 ee fe ff ff 56 68 b0 e2 54 f8 e8 8c 6f b9 db <0f> ff 58 5a e9 da fe ff ff 8d b6 00 00 00 00 66 66 66 66 90 55
[   12.612742] ---[ end trace 02b017f7ca964bef ]---
[   12.704286] fbcon: inteldrmfb (fb0) is primary device
[   12.704403] Console: switching to colour frame buffer device 160x50
[   12.704439] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
[   12.813210] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
[   13.003765] ip_tables: (C) 2000-2006 Netfilter Core Team
[   13.009210] systemd[1]: systemd 234 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN2 +IDN default-hierarchy=hybrid)
[   13.009368] systemd[1]: Detected architecture x86.
[   13.009680] systemd[1]: Set hostname to <WO-PC-DELL>.
[   13.151990] systemd[1]: Created slice System Slice.
[   13.152873] systemd[1]: Mounting Kernel Debug File System...
[   13.153830] systemd[1]: Mounting Huge Pages File System...
[   13.153872] systemd[1]: Reached target Swap.
[   13.154510] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[   13.154602] systemd[1]: Listening on Syslog Socket.
[   13.154679] systemd[1]: Listening on udev Control Socket.
[   13.196672] lp: driver loaded but no devices found
[   13.215452] ppdev: user-space parallel port driver
[   13.322770] EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro
[   13.356785] systemd-journald[234]: Received request to flush runtime journal from PID 1
[   13.595230] audit: type=1400 audit(1512243861.270:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/sbin/dhclient" pid=342 comm="apparmor_parser"
[   13.595235] audit: type=1400 audit(1512243861.270:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=342 comm="apparmor_parser"
[   13.595238] audit: type=1400 audit(1512243861.270:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-helper" pid=342 comm="apparmor_parser"
[   13.595241] audit: type=1400 audit(1512243861.270:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=342 comm="apparmor_parser"
[   13.600476] audit: type=1400 audit(1512243861.275:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="libreoffice-oopslash" pid=345 comm="apparmor_parser"
[   13.605345] audit: type=1400 audit(1512243861.280:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="libreoffice-senddoc" pid=346 comm="apparmor_parser"
[   13.617565] audit: type=1400 audit(1512243861.292:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="libreoffice-soffice" pid=347 comm="apparmor_parser"
[   13.632396] audit: type=1400 audit(1512243861.307:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/evince" pid=343 comm="apparmor_parser"
[   13.632401] audit: type=1400 audit(1512243861.307:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/evince//sanitized_helper" pid=343 comm="apparmor_parser"
[   13.632404] audit: type=1400 audit(1512243861.307:11): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/evince-previewer" pid=343 comm="apparmor_parser"
[   14.316261] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[   14.540844] iwl3945: Intel(R) PRO/Wireless 3945ABG/BG Network Connection driver for Linux, in-tree:s
[   14.540846] iwl3945: Copyright(c) 2003-2011 Intel Corporation
[   14.540846] iwl3945: hw_scan is disabled
[   14.540902] iwl3945 0000:0c:00.0: can't disable ASPM; OS doesn't have ASPM control
[   14.642967] dcdbas dcdbas: Dell Systems Management Base Driver (version 5.6.0-3.2)
[   14.662855] IPv6: ADDRCONF(NETDEV_UP): enp9s0: link is not ready
[   14.716889] iwl3945 0000:0c:00.0: Tunable channels: 13 802.11bg, 23 802.11a channels
[   14.716893] iwl3945 0000:0c:00.0: Detected Intel Wireless WiFi Link 3945ABG
[   14.717392] IPv6: ADDRCONF(NETDEV_UP): enp9s0: link is not ready
[   14.790814] ieee80211 phy0: Selected rate control algorithm 'iwl-3945-rs'
[   14.820731] dell_wmi: Detected Dell WMI interface version 1
[   14.820823] input: Dell WMI hotkeys as /devices/platform/PNP0C14:00/wmi_bus/wmi_bus-PNP0C14:00/9DBB5994-A997-11DA-B012-B622A1EF5492/input/input10
[   15.017064] snd_hda_codec_idt hdaudioC0D0: autoconfig for STAC9205: line_outs=1 (0xd/0x0/0x0/0x0/0x0) type:speaker
[   15.017068] snd_hda_codec_idt hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[   15.017070] snd_hda_codec_idt hdaudioC0D0:    hp_outs=1 (0xa/0x0/0x0/0x0/0x0)
[   15.017072] snd_hda_codec_idt hdaudioC0D0:    mono: mono_out=0x0
[   15.017074] snd_hda_codec_idt hdaudioC0D0:    dig-out=0x21/0x0
[   15.017075] snd_hda_codec_idt hdaudioC0D0:    inputs:
[   15.017078] snd_hda_codec_idt hdaudioC0D0:      Internal Mic=0xc
[   15.017080] snd_hda_codec_idt hdaudioC0D0:      Mic=0xb
[   15.031011] input: HDA Intel Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input11
[   15.031117] input: HDA Intel Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input12
[   15.121462] dell_laptop: Using i8042 filter function for receiving events
[   15.138289] kvm: disabled by bios
[   15.172202] kvm: disabled by bios
[   15.192667] intel_powerclamp: No package C-state available
[   15.237382] intel_powerclamp: No package C-state available
[   15.265495] gpio_ich: GPIO from 462 to 511 on gpio_ich
[   15.305475] iwl3945 0000:0c:00.0 wlp12s0: renamed from wlan0
[   15.355085] leds dell::kbd_backlight: Setting an LED's brightness failed (-5)
[   15.355757] IPv6: ADDRCONF(NETDEV_UP): wlp12s0: link is not ready
[   15.361519] iwl3945 0000:0c:00.0: loaded firmware version 15.32.2.9
[   15.453206] IPv6: ADDRCONF(NETDEV_UP): wlp12s0: link is not ready
[   15.502394] IPv6: ADDRCONF(NETDEV_UP): wlp12s0: link is not ready
[   22.144239] wlp12s0: authenticate with 58:ef:68:a6:1e:13
[   22.147084] wlp12s0: send auth to 58:ef:68:a6:1e:13 (try 1/3)
[   22.151481] wlp12s0: authenticated
[   22.156029] wlp12s0: associate with 58:ef:68:a6:1e:13 (try 1/3)
[   22.323767] wlp12s0: RX AssocResp from 58:ef:68:a6:1e:13 (capab=0x411 status=0 aid=7)
[   22.338316] wlp12s0: associated
[   22.338430] IPv6: ADDRCONF(NETDEV_CHANGE): wlp12s0: link becomes ready
[   22.365235] iwl3945 0000:0c:00.0: Enabling power save might cause firmware crashes
[   23.772228] [drm:drm_atomic_helper_commit_cleanup_done [drm_kms_helper]] *ERROR* [CRTC:30:pipe A] flip_done timed out
[   23.876228] vblank wait timed out on crtc 0
[   23.876307] ------------[ cut here ]------------
[   23.876355] WARNING: CPU: 0 PID: 339 at /build/linux-2JtliJ/linux-4.13.0/drivers/gpu/drm/drm_vblank.c:1090 drm_wait_one_vblank+0x1a1/0x1b0 [drm]
[   23.876357] Modules linked in: ccm gpio_ich coretemp dell_rbtn dell_laptop kvm dell_smm_hwmon snd_hda_codec_idt snd_hda_codec_generic snd_hda_intel irqbypass snd_hda_codec snd_hda_core snd_hwdep arc4 snd_pcm snd_seq_midi snd_seq_midi_event dell_wmi dell_smbios input_leds dcdbas sparse_keymap wmi_bmof serio_raw joydev iwl3945 snd_rawmidi iwlegacy snd_seq snd_seq_device mac80211 snd_timer cfg80211 lpc_ich snd soundcore shpchp mac_hid parport_pc ppdev lp parport ip_tables x_tables autofs4 hid_generic usbhid hid i915 psmouse i2c_algo_bit drm_kms_helper ahci libahci pata_acpi tg3 ptp pps_core syscopyarea sysfillrect sysimgblt wmi fb_sys_fops drm video
[   23.876466] CPU: 0 PID: 339 Comm: plymouthd Tainted: G        W       4.13.0-17-generic #20-Ubuntu
[   23.876474] Hardware name: Dell Inc. Latitude D630                   /0KU184, BIOS A17 01/04/2010
[   23.876481] task: f16bd7c0 task.stack: f4f18000
[   23.876519] EIP: drm_wait_one_vblank+0x1a1/0x1b0 [drm]
[   23.876522] EFLAGS: 00010282 CPU: 0
[   23.876526] EAX: 0000001f EBX: f4c94000 ECX: f53d5380 EDX: f53ce8cc
[   23.876529] ESI: 00000000 EDI: 00000000 EBP: f4f19b80 ESP: f4f19b48
[   23.876533]  DS: 007b ES: 007b FS: 00d8 GS: 00e0 SS: 0068
[   23.876537] CR0: 80050033 CR2: 01d8c0d4 CR3: 30fbc720 CR4: 000006f0
[   23.876540] Call Trace:
[   23.876559]  ? wait_woken+0x70/0x70
[   23.876672]  intel_get_load_detect_pipe+0x5d5/0x640 [i915]
[   23.876776]  intel_tv_detect+0x113/0x460 [i915]
[   23.876892]  ? intel_tv_get_modes+0x1f0/0x1f0 [i915]
[   23.876921]  drm_helper_probe_detect+0x42/0x80 [drm_kms_helper]
[   23.876943]  drm_helper_probe_single_connector_modes+0xbc/0x670 [drm_kms_helper]
[   23.877041]  ? intel_atomic_commit_tail+0xdc0/0xdc0 [i915]
[   23.877081]  ? drm_object_property_get_value+0x55/0x80 [drm]
[   23.877123]  drm_mode_getconnector+0x114/0x2c0 [drm]
[   23.877164]  ? drm_mode_connector_property_set_ioctl+0x60/0x60 [drm]
[   23.877197]  drm_ioctl_kernel+0x52/0xa0 [drm]
[   23.877230]  drm_ioctl+0x2c4/0x370 [drm]
[   23.877269]  ? drm_mode_connector_property_set_ioctl+0x60/0x60 [drm]
[   23.877283]  ? page_add_new_anon_rmap+0x72/0xa0
[   23.877291]  ? lru_cache_add_active_or_unevictable+0x31/0x90
[   23.877299]  ? __kunmap_atomic+0x5b/0x80
[   23.877308]  ? handle_mm_fault+0x332/0xe70
[   23.877341]  ? drm_version+0x80/0x80 [drm]
[   23.877349]  do_vfs_ioctl+0x90/0x670
[   23.877358]  SyS_ioctl+0x58/0x70
[   23.877367]  do_fast_syscall_32+0x71/0x150
[   23.877378]  entry_SYSENTER_32+0x4e/0x7c
[   23.877383] EIP: 0xb7f9ecf9
[   23.877386] EFLAGS: 00000292 CPU: 0
[   23.877390] EAX: ffffffda EBX: 00000009 ECX: c05064a7 EDX: bfeb4de8
[   23.877393] ESI: 00000001 EDI: c05064a7 EBP: 00000009 ESP: bfeb4d68
[   23.877396]  DS: 007b ES: 007b FS: 0000 GS: 0033 SS: 007b
[   23.877400] Code: 00 00 00 e9 e4 fe ff ff e8 ed 9f b3 db 8b 45 d0 8d 55 dc e8 12 af b7 db 85 ff 0f 85 ee fe ff ff 56 68 b0 e2 54 f8 e8 8c 6f b9 db <0f> ff 58 5a e9 da fe ff ff 8d b6 00 00 00 00 66 66 66 66 90 55
[   23.877497] ---[ end trace 02b017f7ca964bf0 ]---
[   37.084260] [drm:drm_atomic_helper_commit_cleanup_done [drm_kms_helper]] *ERROR* [CRTC:30:pipe A] flip_done timed out
[   37.192091] vblank wait timed out on crtc 0
[   37.192173] ------------[ cut here ]------------
[   37.192221] WARNING: CPU: 0 PID: 1832 at /build/linux-2JtliJ/linux-4.13.0/drivers/gpu/drm/drm_vblank.c:1090 drm_wait_one_vblank+0x1a1/0x1b0 [drm]
[   37.192223] Modules linked in: ccm gpio_ich coretemp dell_rbtn dell_laptop kvm dell_smm_hwmon snd_hda_codec_idt snd_hda_codec_generic snd_hda_intel irqbypass snd_hda_codec snd_hda_core snd_hwdep arc4 snd_pcm snd_seq_midi snd_seq_midi_event dell_wmi dell_smbios input_leds dcdbas sparse_keymap wmi_bmof serio_raw joydev iwl3945 snd_rawmidi iwlegacy snd_seq snd_seq_device mac80211 snd_timer cfg80211 lpc_ich snd soundcore shpchp mac_hid parport_pc ppdev lp parport ip_tables x_tables autofs4 hid_generic usbhid hid i915 psmouse i2c_algo_bit drm_kms_helper ahci libahci pata_acpi tg3 ptp pps_core syscopyarea sysfillrect sysimgblt wmi fb_sys_fops drm video
[   37.192332] CPU: 0 PID: 1832 Comm: gnome-shell Tainted: G        W       4.13.0-17-generic #20-Ubuntu
[   37.192340] Hardware name: Dell Inc. Latitude D630                   /0KU184, BIOS A17 01/04/2010
[   37.192346] task: f23f9380 task.stack: f3c42000
[   37.192384] EIP: drm_wait_one_vblank+0x1a1/0x1b0 [drm]
[   37.192387] EFLAGS: 00010282 CPU: 0
[   37.192391] EAX: 0000001f EBX: f4c94000 ECX: f53d5380 EDX: f53ce8cc
[   37.192395] ESI: 00000000 EDI: 00000000 EBP: f3c43b80 ESP: f3c43b48
[   37.192398]  DS: 007b ES: 007b FS: 00d8 GS: 00e0 SS: 0068
[   37.192402] CR0: 80050033 CR2: 09176828 CR3: 2f51e440 CR4: 000006f0
[   37.192406] Call Trace:
[   37.192424]  ? wait_woken+0x70/0x70
[   37.192536]  intel_get_load_detect_pipe+0x5d5/0x640 [i915]
[   37.192639]  intel_tv_detect+0x113/0x460 [i915]
[   37.192743]  ? intel_tv_get_modes+0x1f0/0x1f0 [i915]
[   37.192770]  drm_helper_probe_detect+0x42/0x80 [drm_kms_helper]
[   37.192791]  drm_helper_probe_single_connector_modes+0xbc/0x670 [drm_kms_helper]
[   37.192888]  ? intel_atomic_commit_tail+0xdc0/0xdc0 [i915]
[   37.192927]  ? drm_object_property_get_value+0x55/0x80 [drm]
[   37.192968]  drm_mode_getconnector+0x114/0x2c0 [drm]
[   37.193009]  ? drm_mode_connector_property_set_ioctl+0x60/0x60 [drm]
[   37.193043]  drm_ioctl_kernel+0x52/0xa0 [drm]
[   37.193076]  drm_ioctl+0x2c4/0x370 [drm]
[   37.193115]  ? drm_mode_connector_property_set_ioctl+0x60/0x60 [drm]
[   37.193128]  ? __check_object_size+0x8d/0x130
[   37.193161]  ? drm_version+0x80/0x80 [drm]
[   37.193169]  do_vfs_ioctl+0x90/0x670
[   37.193178]  ? call_rcu_sched+0x14/0x20
[   37.193185]  SyS_ioctl+0x58/0x70
[   37.193194]  do_fast_syscall_32+0x71/0x150
[   37.193205]  entry_SYSENTER_32+0x4e/0x7c
[   37.193210] EIP: 0xb7f5bcf9
[   37.193213] EFLAGS: 00200292 CPU: 0
[   37.193216] EAX: ffffffda EBX: 00000009 ECX: c05064a7 EDX: bff34da8
[   37.193219] ESI: 00000001 EDI: c05064a7 EBP: 00000009 ESP: bff34d28
[   37.193223]  DS: 007b ES: 007b FS: 0000 GS: 0033 SS: 007b
[   37.193227] Code: 00 00 00 e9 e4 fe ff ff e8 ed 9f b3 db 8b 45 d0 8d 55 dc e8 12 af b7 db 85 ff 0f 85 ee fe ff ff 56 68 b0 e2 54 f8 e8 8c 6f b9 db <0f> ff 58 5a e9 da fe ff ff 8d b6 00 00 00 00 66 66 66 66 90 55
[   37.193323] ---[ end trace 02b017f7ca964bf1 ]---
[   48.873773] random: crng init done
[   60.380384] [drm:drm_atomic_helper_commit_cleanup_done [drm_kms_helper]] *ERROR* [CRTC:35:pipe B] flip_done timed out
[   60.481074] vblank wait timed out on crtc 1
[   60.481152] ------------[ cut here ]------------
[   60.481199] WARNING: CPU: 1 PID: 2707 at /build/linux-2JtliJ/linux-4.13.0/drivers/gpu/drm/drm_vblank.c:1090 drm_wait_one_vblank+0x1a1/0x1b0 [drm]
[   60.481201] Modules linked in: ccm gpio_ich coretemp dell_rbtn dell_laptop kvm dell_smm_hwmon snd_hda_codec_idt snd_hda_codec_generic snd_hda_intel irqbypass snd_hda_codec snd_hda_core snd_hwdep arc4 snd_pcm snd_seq_midi snd_seq_midi_event dell_wmi dell_smbios input_leds dcdbas sparse_keymap wmi_bmof serio_raw joydev iwl3945 snd_rawmidi iwlegacy snd_seq snd_seq_device mac80211 snd_timer cfg80211 lpc_ich snd soundcore shpchp mac_hid parport_pc ppdev lp parport ip_tables x_tables autofs4 hid_generic usbhid hid i915 psmouse i2c_algo_bit drm_kms_helper ahci libahci pata_acpi tg3 ptp pps_core syscopyarea sysfillrect sysimgblt wmi fb_sys_fops drm video
[   60.481310] CPU: 1 PID: 2707 Comm: gnome-shell Tainted: G        W       4.13.0-17-generic #20-Ubuntu
[   60.481319] Hardware name: Dell Inc. Latitude D630                   /0KU184, BIOS A17 01/04/2010
[   60.481325] task: f049e180 task.stack: f016a000
[   60.481363] EIP: drm_wait_one_vblank+0x1a1/0x1b0 [drm]
[   60.481366] EFLAGS: 00010282 CPU: 1
[   60.481370] EAX: 0000001f EBX: f4c94000 ECX: f53ed380 EDX: f53e68cc
[   60.481374] ESI: 00000001 EDI: 00000000 EBP: f016bb80 ESP: f016bb48
[   60.481377]  DS: 007b ES: 007b FS: 00d8 GS: 00e0 SS: 0068
[   60.481381] CR0: 80050033 CR2: b6b8e580 CR3: 34e82440 CR4: 000006f0
[   60.481385] Call Trace:
[   60.481403]  ? wait_woken+0x70/0x70
[   60.481516]  intel_get_load_detect_pipe+0x5d5/0x640 [i915]
[   60.481619]  intel_tv_detect+0x113/0x460 [i915]
[   60.481724]  ? intel_tv_get_modes+0x1f0/0x1f0 [i915]
[   60.481750]  drm_helper_probe_detect+0x42/0x80 [drm_kms_helper]
[   60.481770]  drm_helper_probe_single_connector_modes+0xbc/0x670 [drm_kms_helper]
[   60.481868]  ? intel_atomic_commit_tail+0xdc0/0xdc0 [i915]
[   60.481910]  ? drm_object_property_get_value+0x55/0x80 [drm]
[   60.481952]  drm_mode_getconnector+0x114/0x2c0 [drm]
[   60.481993]  ? drm_mode_connector_property_set_ioctl+0x60/0x60 [drm]
[   60.482027]  drm_ioctl_kernel+0x52/0xa0 [drm]
[   60.482060]  drm_ioctl+0x2c4/0x370 [drm]
[   60.482099]  ? drm_mode_connector_property_set_ioctl+0x60/0x60 [drm]
[   60.482113]  ? __check_object_size+0x8d/0x130
[   60.482146]  ? drm_version+0x80/0x80 [drm]
[   60.482154]  do_vfs_ioctl+0x90/0x670
[   60.482163]  ? call_rcu_sched+0x14/0x20
[   60.482171]  SyS_ioctl+0x58/0x70
[   60.482180]  do_fast_syscall_32+0x71/0x150
[   60.482190]  entry_SYSENTER_32+0x4e/0x7c
[   60.482195] EIP: 0xb7fc4cf9
[   60.482198] EFLAGS: 00200296 CPU: 1
[   60.482202] EAX: ffffffda EBX: 00000008 ECX: c05064a7 EDX: bfa0d4c8
[   60.482205] ESI: 00000001 EDI: c05064a7 EBP: 00000008 ESP: bfa0d448
[   60.482208]  DS: 007b ES: 007b FS: 0000 GS: 0033 SS: 007b
[   60.482213] Code: 00 00 00 e9 e4 fe ff ff e8 ed 9f b3 db 8b 45 d0 8d 55 dc e8 12 af b7 db 85 ff 0f 85 ee fe ff ff 56 68 b0 e2 54 f8 e8 8c 6f b9 db <0f> ff 58 5a e9 da fe ff ff 8d b6 00 00 00 00 66 66 66 66 90 55
[   60.482309] ---[ end trace 02b017f7ca964bf2 ]---
[   63.170310] rfkill: input handler disabled
[   64.758273] kauditd_printk_skb: 12 callbacks suppressed
[   64.758275] audit: type=1400 audit(1512243912.433:24): apparmor="DENIED" operation="connect" profile="/usr/sbin/cupsd" name="/run/nslcd/socket" pid=373 comm="cupsd" requested_mask="w" denied_mask="w" fsuid=0 ouid=0