ubuntuusers.de

Unbenannt

Datum:
19. Mai 2012 19:28
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
## Laptop
[    0.000000] 	RCU dyntick-idle grace-period acceleration is enabled.
[    0.000000] NR_IRQS:16640 nr_irqs:512 16
[    0.000000] vt handoff: transparent VT on vt#7
[    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] Fast TSC calibration failed
[    0.000000] TSC: Using PIT calibration value
[    0.000000] Detected 2532.566 MHz processor.
[    0.016008] Calibrating delay loop (skipped), value calculated using timer frequency.. 5065.13 BogoMIPS (lpj=10130264)
[    0.016013] pid_max: default: 32768 minimum: 301
[    0.016051] Security Framework initialized
[    0.016091] AppArmor: AppArmor initialized
[    0.016093] Yama: becoming mindful.
[    0.016617] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
[    0.024275] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
[    0.027225] Mount-cache hash table entries: 256
[    0.027501] Initializing cgroup subsys cpuacct
[    0.027509] Initializing cgroup subsys memory
[    0.027530] Initializing cgroup subsys devices
[    0.027532] Initializing cgroup subsys freezer
[    0.027535] Initializing cgroup subsys blkio
[    0.027548] Initializing cgroup subsys perf_event
[    0.027598] CPU: Physical Processor ID: 0
[    0.027599] CPU: Processor Core ID: 0
[    0.027603] mce: CPU supports 6 MCE banks
[    0.027616] CPU0: Thermal monitoring enabled (TM2)
[    0.027624] using mwait in idle threads.
[    0.030492] ftrace: allocating 27050 entries in 107 pages
[    0.032119] ExtINT not setup in hardware but reported by MP table
[    0.032369] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=0 pin2=0
[    0.074857] CPU0: Intel(R) Core(TM)2 Duo CPU     P8700  @ 2.53GHz stepping 0a
[    0.180021] Performance Events: PEBS fmt0+, Core2 events, Intel PMU driver.
[    0.180029] ... version:                2
[    0.180030] ... bit width:              40
[    0.180032] ... generic registers:      2
[    0.180033] ... value mask:             000000ffffffffff
[    0.180035] ... max period:             000000007fffffff
[    0.180037] ... fixed-purpose events:   3
[    0.180038] ... event mask:             0000000700000003
[    0.180258] NMI watchdog enabled, takes one hw-pmu counter.
[    0.180379] Booting Node   0, Processors  #1 Ok.
[    0.180382] smpboot cpu 1: start_ip = 9a000
[    0.272054] NMI watchdog enabled, takes one hw-pmu counter.
[    0.272104] Brought up 2 CPUs
[    0.272107] Total of 2 processors activated (10130.66 BogoMIPS).
[    0.274067] devtmpfs: initialized
[    0.274067] EVM: security.selinux
[    0.274067] EVM: security.SMACK64
[    0.274067] EVM: security.capability
[    0.274067] PM: Registering ACPI NVS region at bffb8000 (32768 bytes)
[    0.274067] PM: Registering ACPI NVS region at bffce000 (204800 bytes)
[    0.276624] print_constraints: dummy: 
[    0.276650] RTC time: 16:27:30, date: 05/19/12
[    0.276684] NET: Registered protocol family 16
[    0.276768] Trying to unpack rootfs image as initramfs...
[    0.276886] PCI: Using configuration type 1 for base access
[    0.277889] bio: create slab <bio-0> at 0
[    0.277961] ACPI: Interpreter disabled.
[    0.278033] vgaarb: loaded
[    0.278128] i2c-core: driver [aat2870] using legacy suspend method
[    0.278129] i2c-core: driver [aat2870] using legacy resume method
[    0.278193] SCSI subsystem initialized
[    0.278225] libata version 3.00 loaded.
[    0.278274] usbcore: registered new interface driver usbfs
[    0.278285] usbcore: registered new interface driver hub
[    0.278311] usbcore: registered new device driver usb
[    0.278395] PCI: Probing PCI hardware
[    0.278398] PCI: Probing PCI hardware (bus 00)
[    0.278436] pci 0000:00:00.0: [1039:0671] type 0 class 0x000600
[    0.278488] pci 0000:00:01.0: [1039:0004] type 1 class 0x000604
[    0.278562] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[    0.278567] pci 0000:00:01.0: PME# disabled
[    0.278589] pci 0000:00:02.0: [1039:0968] type 0 class 0x000601
[    0.278669] pci 0000:00:02.5: [1039:5513] type 0 class 0x000101
[    0.278718] pci 0000:00:02.5: reg 20: [io  0xffe0-0xffef]
[    0.278758] pci 0000:00:02.5: PME# supported from D3cold
[    0.278762] pci 0000:00:02.5: PME# disabled
[    0.278777] pci 0000:00:03.0: [1039:7001] type 0 class 0x000c03
[    0.278790] pci 0000:00:03.0: reg 10: [mem 0xf9fff000-0xf9ffffff]
[    0.278850] pci 0000:00:03.1: [1039:7001] type 0 class 0x000c03
[    0.278863] pci 0000:00:03.1: reg 10: [mem 0xf9ffe000-0xf9ffefff]
[    0.278925] pci 0000:00:03.3: [1039:7002] type 0 class 0x000c03
[    0.278941] pci 0000:00:03.3: reg 10: [mem 0xf9ffd000-0xf9ffdfff]
[    0.279006] pci 0000:00:03.3: PME# supported from D0 D3hot D3cold
[    0.279010] pci 0000:00:03.3: PME# disabled
[    0.279029] pci 0000:00:04.0: [1039:0191] type 0 class 0x000200
[    0.279045] pci 0000:00:04.0: reg 10: [mem 0xf9ffcc00-0xf9ffcc7f]
[    0.279054] pci 0000:00:04.0: reg 14: [io  0xcc00-0xcc7f]
[    0.279113] pci 0000:00:04.0: supports D1 D2
[    0.279115] pci 0000:00:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.279119] pci 0000:00:04.0: PME# disabled
[    0.279137] pci 0000:00:05.0: [1039:1183] type 0 class 0x000101
[    0.279153] pci 0000:00:05.0: reg 10: [io  0xc800-0xc807]
[    0.279162] pci 0000:00:05.0: reg 14: [io  0xc400-0xc403]
[    0.279171] pci 0000:00:05.0: reg 18: [io  0xc000-0xc007]
[    0.279180] pci 0000:00:05.0: reg 1c: [io  0xbc00-0xbc03]
[    0.279189] pci 0000:00:05.0: reg 20: [io  0xb800-0xb80f]
[    0.279197] pci 0000:00:05.0: reg 24: [io  0xb400-0xb47f]
[    0.279231] pci 0000:00:05.0: PME# supported from D3cold
[    0.279235] pci 0000:00:05.0: PME# disabled
[    0.279255] pci 0000:00:06.0: [1039:000a] type 1 class 0x000604
[    0.279332] pci 0000:00:06.0: PME# supported from D0 D3hot D3cold
[    0.279336] pci 0000:00:06.0: PME# disabled
[    0.279364] pci 0000:00:07.0: [1039:000a] type 1 class 0x000604
[    0.279442] pci 0000:00:07.0: PME# supported from D0 D3hot D3cold
[    0.279447] pci 0000:00:07.0: PME# disabled
[    0.279478] pci 0000:00:0f.0: [1039:7502] type 0 class 0x000403
[    0.279494] pci 0000:00:0f.0: reg 10: [mem 0xf9ff4000-0xf9ff7fff]
[    0.279561] pci 0000:00:0f.0: PME# supported from D0 D3hot D3cold
[    0.279566] pci 0000:00:0f.0: PME# disabled
[    0.279649] pci 0000:01:00.0: [10de:0652] type 0 class 0x000300
[    0.279664] pci 0000:01:00.0: reg 10: [mem 0xfc000000-0xfcffffff]
[    0.279682] pci 0000:01:00.0: reg 14: [mem 0xd0000000-0xdfffffff 64bit pref]
[    0.279699] pci 0000:01:00.0: reg 1c: [mem 0xfa000000-0xfbffffff 64bit]
[    0.279711] pci 0000:01:00.0: reg 24: [io  0xdc00-0xdc7f]
[    0.279723] pci 0000:01:00.0: reg 30: [mem 0xfde80000-0xfdefffff pref]
[    0.284034] pci 0000:00:01.0: PCI bridge to [bus 01-01]
[    0.284041] pci 0000:00:01.0:   bridge window [io  0xd000-0xdfff]
[    0.284045] pci 0000:00:01.0:   bridge window [mem 0xfa000000-0xfdefffff]
[    0.284051] pci 0000:00:01.0:   bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
[    0.284124] pci 0000:02:00.0: [168c:002a] type 0 class 0x000280
[    0.284152] pci 0000:02:00.0: reg 10: [mem 0xfdff0000-0xfdffffff 64bit]
[    0.284298] pci 0000:02:00.0: supports D1
[    0.284300] pci 0000:02:00.0: PME# supported from D0 D1 D3hot
[    0.284306] pci 0000:02:00.0: PME# disabled
[    0.284328] pci 0000:02:00.0: disabling ASPM on pre-1.1 PCIe device.  You can enable it with 'pcie_aspm=force'
[    0.284339] pci 0000:00:06.0: PCI bridge to [bus 02-02]
[    0.284347] pci 0000:00:06.0:   bridge window [mem 0xfdf00000-0xfdffffff]
[    0.284400] pci 0000:00:07.0: PCI bridge to [bus 03-06]
[    0.284406] pci 0000:00:07.0:   bridge window [io  0xe000-0xefff]
[    0.284410] pci 0000:00:07.0:   bridge window [mem 0xfe000000-0xfebfffff]
[    0.284416] pci 0000:00:07.0:   bridge window [mem 0xf6000000-0xf8ffffff 64bit pref]
[    0.284827] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
[    0.284953] pci 0000:00:02.0: default IRQ router [1039:0968]
[    0.284962] PCI: pci_cache_line_size set to 64 bytes
[    0.285024] reserve RAM buffer: 000000000009fc00 - 000000000009ffff 
[    0.285027] reserve RAM buffer: 00000000bffb8000 - 00000000bfffffff 
[    0.285140] NetLabel: Initializing
[    0.285142] NetLabel:  domain hash size = 128
[    0.285143] NetLabel:  protocols = UNLABELED CIPSOv4
[    0.285157] NetLabel:  unlabeled traffic allowed by default
[    0.295950] AppArmor: AppArmor Filesystem Enabled
[    0.296001] pnp: PnP ACPI: disabled
[    0.298130] PCI: max bus depth: 1 pci_try_num: 2
[    0.298181] pci 0000:00:01.0: PCI bridge to [bus 01-01]
[    0.298185] pci 0000:00:01.0:   bridge window [io  0xd000-0xdfff]
[    0.298191] pci 0000:00:01.0:   bridge window [mem 0xfa000000-0xfdefffff]
[    0.298195] pci 0000:00:01.0:   bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
[    0.298202] pci 0000:00:06.0: PCI bridge to [bus 02-02]
[    0.298207] pci 0000:00:06.0:   bridge window [mem 0xfdf00000-0xfdffffff]
[    0.298215] pci 0000:00:07.0: PCI bridge to [bus 03-06]
[    0.298218] pci 0000:00:07.0:   bridge window [io  0xe000-0xefff]
[    0.298223] pci 0000:00:07.0:   bridge window [mem 0xfe000000-0xfebfffff]
[    0.298227] pci 0000:00:07.0:   bridge window [mem 0xf6000000-0xf8ffffff 64bit pref]
[    0.298245] pci 0000:00:01.0: setting latency timer to 64
[    0.298253] pci 0000:00:06.0: setting latency timer to 64
[    0.298262] pci 0000:00:07.0: setting latency timer to 64
[    0.298266] pci_bus 0000:00: resource 0 [io  0x0000-0xffff]
[    0.298269] pci_bus 0000:00: resource 1 [mem 0x00000000-0xfffffffff]
[    0.298271] pci_bus 0000:01: resource 0 [io  0xd000-0xdfff]
[    0.298274] pci_bus 0000:01: resource 1 [mem 0xfa000000-0xfdefffff]
[    0.298277] pci_bus 0000:01: resource 2 [mem 0xd0000000-0xdfffffff 64bit pref]
[    0.298281] pci_bus 0000:02: resource 1 [mem 0xfdf00000-0xfdffffff]
[    0.298284] pci_bus 0000:03: resource 0 [io  0xe000-0xefff]
[    0.298286] pci_bus 0000:03: resource 1 [mem 0xfe000000-0xfebfffff]
[    0.298290] pci_bus 0000:03: resource 2 [mem 0xf6000000-0xf8ffffff 64bit pref]
[    0.298347] NET: Registered protocol family 2
[    0.298556] IP route cache hash table entries: 131072 (order: 8, 1048576 bytes)
[    0.300401] TCP established hash table entries: 524288 (order: 11, 8388608 bytes)
[    0.313341] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[    0.315250] TCP: Hash tables configured (established 524288 bind 65536)
[    0.315253] TCP reno registered
[    0.315266] UDP hash table entries: 2048 (order: 4, 65536 bytes)
[    0.315356] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
[    0.315663] NET: Registered protocol family 1
[    0.315729] pci 0000:00:03.0: PCI->APIC IRQ transform: INT A -> IRQ 20
[    0.388121] pci 0000:00:03.1: PCI->APIC IRQ transform: INT B -> IRQ 21
[    0.464124] pci 0000:00:03.3: PCI->APIC IRQ transform: INT C -> IRQ 22
[    0.464184] pci 0000:01:00.0: Boot video device
[    0.464191] PCI: CLS 32 bytes, default 64
[    0.464402] platform rtc_cmos: registered platform RTC device (no PNP device found)
[    0.464818] audit: initializing netlink socket (disabled)
[    0.464837] type=2000 audit(1337444849.464:1): initialized
[    0.488176] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    0.504308] VFS: Disk quotas dquot_6.5.2
[    0.504370] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.504864] fuse init (API version 7.17)
[    0.504950] msgmni has been set to 5988
[    0.505250] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
[    0.505275] io scheduler noop registered
[    0.505277] io scheduler deadline registered
[    0.505310] io scheduler cfq registered (default)
[    0.505544] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    0.505567] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    0.505624] intel_idle: MWAIT substates: 0x3122220
[    0.505626] intel_idle: does not run on family 6 model 23
[    0.505692] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    0.584168] Freeing initrd memory: 13836k freed
[    0.944276] Linux agpgart interface v0.103
[    0.944485] brd: module loaded
[    0.944485] loop: module loaded
[    0.944485] pata_sis 0000:00:02.5: version 0.5.2
[    0.944726] scsi0 : pata_sis
[    0.944726] scsi1 : pata_sis
[    0.944726] ata1: PATA max UDMA/133 cmd 0x1f0 ctl 0x3f6 bmdma 0xffe0 irq 14
[    0.944726] ata2: PATA max UDMA/133 cmd 0x170 ctl 0x376 bmdma 0xffe8 irq 15
[    0.944726] pata_acpi 0000:00:05.0: PCI->APIC IRQ transform: INT A -> IRQ 17
[    0.944726] Fixed MDIO Bus: probed
[    0.944726] tun: Universal TUN/TAP device driver, 1.6
[    0.944726] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[    0.944726] PPP generic driver version 2.4.2
[    0.948120] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    0.948120] ehci_hcd 0000:00:03.3: PCI->APIC IRQ transform: INT C -> IRQ 22
[    0.948120] ehci_hcd 0000:00:03.3: EHCI Host Controller
[    0.948155] ehci_hcd 0000:00:03.3: new USB bus registered, assigned bus number 1
[    0.948155] ehci_hcd 0000:00:03.3: irq 22, io mem 0xf9ffd000
[    0.960065] ehci_hcd 0000:00:03.3: USB 2.0 started, EHCI 1.00
[    0.960191] hub 1-0:1.0: USB hub found
[    0.960191] hub 1-0:1.0: 8 ports detected
[    0.960212] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    0.960228] ohci_hcd 0000:00:03.0: PCI->APIC IRQ transform: INT A -> IRQ 20
[    0.960238] ohci_hcd 0000:00:03.0: OHCI Host Controller
[    0.960276] ohci_hcd 0000:00:03.0: new USB bus registered, assigned bus number 2
[    0.960276] ohci_hcd 0000:00:03.0: irq 20, io mem 0xf9fff000
[    1.018148] hub 2-0:1.0: USB hub found
[    1.018148] hub 2-0:1.0: 4 ports detected
[    1.018148] ohci_hcd 0000:00:03.1: PCI->APIC IRQ transform: INT B -> IRQ 21
[    1.018148] ohci_hcd 0000:00:03.1: OHCI Host Controller
[    1.018148] ohci_hcd 0000:00:03.1: new USB bus registered, assigned bus number 3
[    1.018148] ohci_hcd 0000:00:03.1: irq 21, io mem 0xf9ffe000
[    1.074149] hub 3-0:1.0: USB hub found
[    1.074149] hub 3-0:1.0: 4 ports detected
[    1.074149] uhci_hcd: USB Universal Host Controller Interface driver
[    1.074149] usbcore: registered new interface driver libusual
[    1.074149] i8042: PNP: No PS/2 controller found. Probing ports directly.
[    1.076446] i8042: Detected active multiplexing controller, rev 1.1
[    1.077732] serio: i8042 KBD port at 0x60,0x64 irq 1
[    1.077737] serio: i8042 AUX0 port at 0x60,0x64 irq 12
[    1.077764] serio: i8042 AUX1 port at 0x60,0x64 irq 12
[    1.077790] serio: i8042 AUX2 port at 0x60,0x64 irq 12
[    1.077818] serio: i8042 AUX3 port at 0x60,0x64 irq 12
[    1.077892] mousedev: PS/2 mouse device common for all mice
[    1.077892] rtc_cmos rtc_cmos: rtc core: registered rtc_cmos as rtc0
[    1.077892] rtc0: alarms up to one day, 114 bytes nvram
[    1.077892] device-mapper: uevent: version 1.0.3
[    1.077892] device-mapper: ioctl: 4.22.0-ioctl (2011-10-19) initialised: dm-devel@redhat.com
[    1.077892] cpuidle: using governor ladder
[    1.077892] cpuidle: using governor menu
[    1.077892] EFI Variables Facility v0.08 2004-May-17
[    1.077892] TCP cubic registered
[    1.077892] NET: Registered protocol family 10
[    1.080370] NET: Registered protocol family 17
[    1.080387] Registering the dns_resolver key type
[    1.080506] PM: Hibernation image not present or could not be loaded.
[    1.080506] registered taskstats version 1
[    1.096820]   Magic number: 12:45:490
[    1.096820] rtc_cmos rtc_cmos: setting system clock to 2012-05-19 16:27:31 UTC (1337444851)
[    1.096820] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[    1.096820] EDD information not available.
[    1.116144] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
[    1.160096] ata1.00: ATA-8: ST9500325AS, 0002SDM1, max UDMA/133
[    1.160099] ata1.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 0/32)
[    1.176277] ata1.00: configured for UDMA/133
[    1.176658] scsi 0:0:0:0: Direct-Access     ATA      ST9500325AS      0002 PQ: 0 ANSI: 5
[    1.176658] sd 0:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/465 GiB)
[    1.176658] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    1.176658] sd 0:0:0:0: [sda] Write Protect is off
[    1.176658] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    1.176658] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    1.176658] ata2: port disabled--ignoring
[    1.240091]  sda: sda1 < sda5 sda6 sda7 > sda2
[    1.243257] sd 0:0:0:0: [sda] Attached SCSI disk
[    1.245022] Freeing unused kernel memory: 920k freed
[    1.245277] Write protecting the kernel read-only data: 12288k
[    1.250420] Freeing unused kernel memory: 1608k freed
[    1.254738] Freeing unused kernel memory: 1196k freed
[    1.269246] udevd[88]: starting version 175
[    1.272177] usb 1-4: new high-speed USB device number 2 using ehci_hcd
[    1.318431] sata_sis 0000:00:05.0: version 1.0
[    1.318457] sata_sis 0000:00:05.0: PCI->APIC IRQ transform: INT A -> IRQ 17
[    1.318463] sata_sis 0000:00:05.0: Detected SiS 1183/966/966L/968/680 controller in PATA mode
[    1.320316] scsi2 : sata_sis
[    1.320458] scsi3 : sata_sis
[    1.320458] ata3: PATA max UDMA/133 cmd 0xc800 ctl 0xc400 bmdma 0xb800 irq 17
[    1.320458] ata4: PATA max UDMA/133 cmd 0xc000 ctl 0xbc00 bmdma 0xb808 irq 17
[    1.320535] sis190: sis190 Gigabit Ethernet driver 1.4 loaded
[    1.320535] sis190 0000:00:04.0: PCI->APIC IRQ transform: INT A -> IRQ 19
[    1.320535] sis190 0000:00:04.0: setting latency timer to 64
[    1.320535] sis190: 0000:00:04.0: Read MAC address from EEPROM
[    1.320535] sis190: 0000:00:04.0: Error EEPROM read 0
[    1.320535] sis190: 0000:00:04.0: Read MAC address from APC
[    1.368092] sis190: 0000:00:04.0: unknown PHY 0x1c:0xc910 transceiver at address 1
[    1.409212] Initializing USB Mass Storage driver...
[    1.409295] usb-storage 1-4:1.0: Quirks match for vid 13fe pid 3600: 4000
[    1.409318] scsi4 : usb-storage 1-4:1.0
[    1.409392] usbcore: registered new interface driver usb-storage
[    1.409394] USB Mass Storage support registered.
[    1.409565] usbcore: registered new interface driver uas
[    1.484297] Switching to clocksource tsc
[    1.515853] usb 1-5: new high-speed USB device number 3 using ehci_hcd
[    1.820092] ata3.00: ATA-8: ST9500325AS, 0002SDM1, max UDMA/133
[    1.820096] ata3.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 0/32)
[    1.836369] ata3.00: configured for UDMA/133
[    1.836469] scsi 2:0:0:0: Direct-Access     ATA      ST9500325AS      0002 PQ: 0 ANSI: 5
[    1.836621] sd 2:0:0:0: [sdb] 976773168 512-byte logical blocks: (500 GB/465 GiB)
[    1.836635] sd 2:0:0:0: Attached scsi generic sg1 type 0
[    1.836670] sd 2:0:0:0: [sdb] Write Protect is off
[    1.836673] sd 2:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[    1.836703] sd 2:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    1.861951]  sdb: sdb1
[    1.862157] sd 2:0:0:0: [sdb] Attached SCSI disk
[    1.879867] sis190: 0000:00:04.0: Using transceiver at address 1 as default
[    1.912339] sis190 0000:00:04.0: eth0: 0000:00:04.0: SiS 191 PCI Gigabit Ethernet adapter at ffffc90001036c00 (IRQ: 19), 00:26:18:a3:26:f6
[    1.912343] sis190 0000:00:04.0: eth0: RGMII mode.
[    1.912348] sis190 0000:00:04.0: eth0: Enabling Auto-negotiation
[    1.915803] usb 1-8: new high-speed USB device number 5 using ehci_hcd
[    2.000063] ata4.00: ATAPI: HL-DT-ST BDDVDRW CT10N, WR06, max UDMA/133
[    2.016073] ata4.00: configured for UDMA/133
[    2.021827] scsi 3:0:0:0: CD-ROM            HL-DT-ST BDDVDRW CT10N    WR06 PQ: 0 ANSI: 5
[    2.027317] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
[    2.027321] cdrom: Uniform CD-ROM driver Revision: 3.20
[    2.027452] sr 3:0:0:0: Attached scsi CD-ROM sr0
[    2.027578] sr 3:0:0:0: Attached scsi generic sg2 type 5
[    2.316503] scsi5 : usb-storage 1-8:1.0
[    2.316582] usbcore: registered new interface driver ums-realtek
[    2.408755] scsi 4:0:0:0: Direct-Access              USB DISK 2.0     PMAP PQ: 0 ANSI: 0 CCS
[    2.409173] sd 4:0:0:0: Attached scsi generic sg3 type 0
[    2.410618] sd 4:0:0:0: [sdc] 15646720 512-byte logical blocks: (8.01 GB/7.46 GiB)
[    2.411613] sd 4:0:0:0: [sdc] Write Protect is off
[    2.411616] sd 4:0:0:0: [sdc] Mode Sense: 23 00 00 00
[    2.412613] sd 4:0:0:0: [sdc] No Caching mode page present
[    2.412616] sd 4:0:0:0: [sdc] Assuming drive cache: write through
[    2.416488] sd 4:0:0:0: [sdc] No Caching mode page present
[    2.416491] sd 4:0:0:0: [sdc] Assuming drive cache: write through
[    2.417375]  sdc: sdc1
[    2.420864] sd 4:0:0:0: [sdc] No Caching mode page present
[    2.420867] sd 4:0:0:0: [sdc] Assuming drive cache: write through
[    2.420869] sd 4:0:0:0: [sdc] Attached SCSI removable disk
[    2.603920] usb 3-3: new full-speed USB device number 2 using ohci_hcd
[    2.832178] usb 1-8: USB disconnect, device number 5
[    6.962006] EXT4-fs (sda2): INFO: recovery required on readonly filesystem
[    6.962009] EXT4-fs (sda2): write access will be enabled during recovery
[    7.866397] EXT4-fs (sda2): orphan cleanup on readonly fs
[    7.866406] EXT4-fs (sda2): ext4_orphan_cleanup: deleting unreferenced inode 11021
[    7.866476] EXT4-fs (sda2): ext4_orphan_cleanup: deleting unreferenced inode 10053
[    7.866491] EXT4-fs (sda2): ext4_orphan_cleanup: deleting unreferenced inode 10039
[    7.866523] EXT4-fs (sda2): ext4_orphan_cleanup: deleting unreferenced inode 10009
[    7.866538] EXT4-fs (sda2): ext4_orphan_cleanup: deleting unreferenced inode 9993
[    7.866552] EXT4-fs (sda2): ext4_orphan_cleanup: deleting unreferenced inode 9975
[    7.866567] EXT4-fs (sda2): ext4_orphan_cleanup: deleting unreferenced inode 9807
[    7.866606] EXT4-fs (sda2): ext4_orphan_cleanup: deleting unreferenced inode 9974
[    7.866620] EXT4-fs (sda2): ext4_orphan_cleanup: deleting unreferenced inode 9971
[    7.866634] EXT4-fs (sda2): ext4_orphan_cleanup: deleting unreferenced inode 9910
[    7.866648] EXT4-fs (sda2): ext4_orphan_cleanup: deleting unreferenced inode 11137
[    7.866662] EXT4-fs (sda2): ext4_orphan_cleanup: deleting unreferenced inode 11041
[    7.866675] EXT4-fs (sda2): 12 orphan inodes deleted
[    7.866677] EXT4-fs (sda2): recovery complete
[    8.083111] EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null)
[   16.386241] ADDRCONF(NETDEV_UP): eth0: link is not ready
[   16.415653] udevd[293]: starting version 175
[   16.473293] lp: driver loaded but no devices found
[   16.546932] cfg80211: Calling CRDA to update world regulatory domain
[   16.586626] type=1400 audit(1337444866.987:2): apparmor="STATUS" operation="profile_load" name="/sbin/dhclient" pid=424 comm="apparmor_parser"
[   16.586999] type=1400 audit(1337444866.987:3): apparmor="STATUS" operation="profile_load" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=424 comm="apparmor_parser"
[   16.587212] type=1400 audit(1337444866.987:4): apparmor="STATUS" operation="profile_load" name="/usr/lib/connman/scripts/dhclient-script" pid=424 comm="apparmor_parser"
[   16.593353] ath9k 0000:02:00.0: PCI->APIC IRQ transform: INT A -> IRQ 16
[   16.593368] ath9k 0000:02:00.0: setting latency timer to 64
[   16.595919] Bluetooth: Core ver 2.16
[   16.595941] NET: Registered protocol family 31
[   16.595943] Bluetooth: HCI device and connection manager initialized
[   16.595946] Bluetooth: HCI socket layer initialized
[   16.595948] Bluetooth: L2CAP socket layer initialized
[   16.595955] Bluetooth: SCO socket layer initialized
[   16.596202] Bluetooth: Generic Bluetooth USB driver ver 0.6
[   16.634640] Linux video capture interface: v2.00
[   16.635148] uvcvideo: Found UVC 1.00 device USB2.0 UVC 1.3M WebCam (064e:a116)
[   16.658284] usbcore: registered new interface driver btusb
[   16.678506] input: USB2.0 UVC 1.3M WebCam as /devices/pci0000:00/0000:00:03.3/usb1/1-5/1-5:1.0/input/input1
[   16.679496] usbcore: registered new interface driver uvcvideo
[   16.679499] USB Video Class driver (1.1.1)
[   16.962384] cfg80211: World regulatory domain updated:
[   16.962387] cfg80211:     (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[   16.962390] cfg80211:     (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   16.962393] cfg80211:     (2457000 KHz - 2482000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[   16.962395] cfg80211:     (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[   16.962398] cfg80211:     (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   16.962400] cfg80211:     (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   16.999670] snd_hda_intel 0000:00:0f.0: PCI->APIC IRQ transform: INT A -> IRQ 18
[   16.999710] snd_hda_intel 0000:00:0f.0: setting latency timer to 64
[   17.028543] ath: EEPROM regdomain: 0x60
[   17.028547] ath: EEPROM indicates we should expect a direct regpair map
[   17.028552] ath: Country alpha2 being used: 00
[   17.028553] ath: Regpair used: 0x60
[   17.028670] nvidia: module license 'NVIDIA' taints kernel.
[   17.028675] Disabling lock debugging due to kernel taint
[   17.029901] cfg80211: Updating information on frequency 2412 MHz for a 20 MHz width channel with regulatory rule:
[   17.029904] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[   17.029907] cfg80211: Updating information on frequency 2417 MHz for a 20 MHz width channel with regulatory rule:
[   17.029910] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[   17.029912] cfg80211: Updating information on frequency 2422 MHz for a 20 MHz width channel with regulatory rule:
[   17.029914] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[   17.029916] cfg80211: Updating information on frequency 2427 MHz for a 20 MHz width channel with regulatory rule:
[   17.029919] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[   17.029921] cfg80211: Updating information on frequency 2432 MHz for a 20 MHz width channel with regulatory rule:
[   17.029924] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[   17.029926] cfg80211: Updating information on frequency 2437 MHz for a 20 MHz width channel with regulatory rule:
[   17.029928] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[   17.029930] cfg80211: Updating information on frequency 2442 MHz for a 20 MHz width channel with regulatory rule:
[   17.029933] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[   17.029935] cfg80211: Updating information on frequency 2447 MHz for a 20 MHz width channel with regulatory rule:
[   17.029938] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[   17.029939] cfg80211: Updating information on frequency 2452 MHz for a 20 MHz width channel with regulatory rule:
[   17.029942] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[   17.029944] cfg80211: Updating information on frequency 2457 MHz for a 20 MHz width channel with regulatory rule:
[   17.029947] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[   17.029949] cfg80211: Updating information on frequency 2462 MHz for a 20 MHz width channel with regulatory rule:
[   17.029951] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[   17.029953] cfg80211: Updating information on frequency 2467 MHz for a 20 MHz width channel with regulatory rule:
[   17.029956] cfg80211: 2457000 KHz - 2482000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[   17.029958] cfg80211: Updating information on frequency 2472 MHz for a 20 MHz width channel with regulatory rule:
[   17.029961] cfg80211: 2457000 KHz - 2482000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[   17.029963] cfg80211: Updating information on frequency 2484 MHz for a 20 MHz width channel with regulatory rule:
[   17.029966] cfg80211: 2474000 KHz - 2494000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[   17.041054] cfg80211: Ignoring regulatory request Set by core since the driver uses its own custom regulatory domain
[   17.057213] ieee80211 phy0: Selected rate control algorithm 'ath9k_rate_control'
[   17.058905] Registered led device: ath9k-phy0
[   17.058931] ieee80211 phy0: Atheros AR9280 Rev:2 mem=0xffffc900020a0000, irq=16
[   17.115235] hda_codec: ALC663: SKU not ready 0x598301f0
[   17.124892] input: HDA SIS966 Mic as /devices/pci0000:00/0000:00:0f.0/sound/card0/input2
[   17.125079] input: HDA SIS966 Headphone as /devices/pci0000:00/0000:00:0f.0/sound/card0/input3
[   17.125236] input: HDA SIS966 Headphone as /devices/pci0000:00/0000:00:0f.0/sound/card0/input4
[   17.274381] nvidia 0000:01:00.0: PCI->APIC IRQ transform: INT A -> IRQ 16
[   17.274396] nvidia 0000:01:00.0: setting latency timer to 64
[   17.274405] vgaarb: device changed decodes: PCI:0000:01:00.0,olddecodes=io+mem,decodes=none:owns=io+mem
[   17.275823] NVRM: loading NVIDIA UNIX x86_64 Kernel Module  295.53  Fri May 11 23:28:10 PDT 2012
[   17.419740] psmouse serio4: synaptics: Touchpad model: 1, fw: 7.2, id: 0x1c0b1, caps: 0xd04711/0xa00000/0x20000
[   17.463064] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio4/input/input5
[   17.572264] vesafb: mode is 640x480x32, linelength=2560, pages=0
[   17.572267] vesafb: scrolling: redraw
[   17.572270] vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[   17.574567] vesafb: framebuffer at 0xfb000000, mapped to 0xffffc90001180000, using 1216k, total 1216k
[   17.574717] Console: switching to colour frame buffer device 80x30
[   17.574729] fb0: VESA VGA frame buffer device
[   17.773061] EXT4-fs (sda2): re-mounted. Opts: errors=remount-ro
[   17.927316] init: failsafe main process (770) killed by TERM signal
[   18.017346] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[   18.017349] Bluetooth: BNEP filters: protocol multicast
[   18.041129] ppdev: user-space parallel port driver
[   18.074926] type=1400 audit(1337444868.475:5): apparmor="STATUS" operation="profile_load" name="/usr/lib/cups/backend/cups-pdf" pid=838 comm="apparmor_parser"
[   18.079564] type=1400 audit(1337444868.479:6): apparmor="STATUS" operation="profile_load" name="/usr/sbin/cupsd" pid=838 comm="apparmor_parser"
[   18.096156] Bluetooth: RFCOMM TTY layer initialized
[   18.096164] Bluetooth: RFCOMM socket layer initialized
[   18.096166] Bluetooth: RFCOMM ver 1.11
[   18.109091] type=1400 audit(1337444868.511:7): apparmor="STATUS" operation="profile_replace" name="/sbin/dhclient" pid=874 comm="apparmor_parser"
[   18.116140] type=1400 audit(1337444868.515:8): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=874 comm="apparmor_parser"
[   18.116368] type=1400 audit(1337444868.515:9): apparmor="STATUS" operation="profile_replace" name="/usr/lib/connman/scripts/dhclient-script" pid=874 comm="apparmor_parser"
[   18.117470] type=1400 audit(1337444868.519:10): apparmor="STATUS" operation="profile_load" name="/usr/lib/lightdm/lightdm/lightdm-guest-session-wrapper" pid=873 comm="apparmor_parser"
[   18.130278] type=1400 audit(1337444868.531:11): apparmor="STATUS" operation="profile_load" name="/usr/lib/telepathy/mission-control-5" pid=877 comm="apparmor_parser"
[   18.190583] ADDRCONF(NETDEV_UP): eth0: link is not ready
[   18.190811] ADDRCONF(NETDEV_UP): eth0: link is not ready
[   18.247957] ADDRCONF(NETDEV_UP): wlan0: link is not ready
[   18.252169] ADDRCONF(NETDEV_UP): wlan0: link is not ready
[   18.439939] NVRM: failed to register with the ACPI subsystem!
[   21.358911] wlan0: authenticate with 28:10:7b:63:27:b6 (try 1)
[   21.364953] wlan0: authenticated
[   21.365125] wlan0: associate with 28:10:7b:63:27:b6 (try 1)
[   21.370244] wlan0: RX AssocResp from 28:10:7b:63:27:b6 (capab=0xc11 status=0 aid=2)
[   21.370248] wlan0: associated
[   21.378115] ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[   21.378914] cfg80211: Calling CRDA for country: GB
[   21.382696] cfg80211: Updating information on frequency 2412 MHz for a 20 MHz width channel with regulatory rule:
[   21.382700] cfg80211: 2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[   21.382702] cfg80211: Updating information on frequency 2417 MHz for a 20 MHz width channel with regulatory rule:
[   21.382705] cfg80211: 2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[   21.382707] cfg80211: Updating information on frequency 2422 MHz for a 20 MHz width channel with regulatory rule:
[   21.382710] cfg80211: 2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[   21.382712] cfg80211: Updating information on frequency 2427 MHz for a 20 MHz width channel with regulatory rule:
[   21.382715] cfg80211: 2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[   21.382717] cfg80211: Updating information on frequency 2432 MHz for a 20 MHz width channel with regulatory rule:
[   21.382720] cfg80211: 2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[   21.382722] cfg80211: Updating information on frequency 2437 MHz for a 20 MHz width channel with regulatory rule:
[   21.382725] cfg80211: 2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[   21.382727] cfg80211: Updating information on frequency 2442 MHz for a 20 MHz width channel with regulatory rule:
[   21.382729] cfg80211: 2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[   21.382731] cfg80211: Updating information on frequency 2447 MHz for a 20 MHz width channel with regulatory rule:
[   21.382734] cfg80211: 2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[   21.382736] cfg80211: Updating information on frequency 2452 MHz for a 20 MHz width channel with regulatory rule:
[   21.382739] cfg80211: 2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[   21.382741] cfg80211: Updating information on frequency 2457 MHz for a 20 MHz width channel with regulatory rule:
[   21.382743] cfg80211: 2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[   21.382745] cfg80211: Updating information on frequency 2462 MHz for a 20 MHz width channel with regulatory rule:
[   21.382748] cfg80211: 2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[   21.382750] cfg80211: Updating information on frequency 2467 MHz for a 20 MHz width channel with regulatory rule:
[   21.382752] cfg80211: 2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[   21.382754] cfg80211: Updating information on frequency 2472 MHz for a 20 MHz width channel with regulatory rule:
[   21.382757] cfg80211: 2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[   21.382759] cfg80211: Disabling freq 2484 MHz
[   21.382764] cfg80211: Regulatory domain changed to country: GB
[   21.382766] cfg80211:     (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[   21.382768] cfg80211:     (2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A, 2000 mBm)
[   21.382770] cfg80211:     (5170000 KHz - 5250000 KHz @ 40000 KHz), (N/A, 2000 mBm)
[   21.382773] cfg80211:     (5250000 KHz - 5330000 KHz @ 40000 KHz), (N/A, 2000 mBm)
[   21.382775] cfg80211:     (5490000 KHz - 5710000 KHz @ 40000 KHz), (N/A, 2700 mBm)
[   22.154211] init: plymouth main process (223) killed by SEGV signal
[   24.186306] hda-intel: IRQ timing workaround is activated for card #0. Suggest a bigger bdl_pos_adj.
[   28.217587] sis190 0000:00:04.0: eth0: auto-negotiating...
[   31.857906] wlan0: no IPv6 routers present

##PC
[    0.467848] system 00:0e: [mem 0x00000000-0x0009ffff] could not be reserved
[    0.467860] system 00:0e: [mem 0x000c0000-0x000cffff] could not be reserved
[    0.467871] system 00:0e: [mem 0x000e0000-0x000fffff] could not be reserved
[    0.467882] system 00:0e: [mem 0x00100000-0x7f7fffff] could not be reserved
[    0.467895] system 00:0e: Plug and Play ACPI device, IDs PNP0c01 (active)
[    0.468435] pnp: PnP ACPI: found 15 devices
[    0.468444] ACPI: ACPI bus type pnp unregistered
[    0.468453] PnPBIOS: Disabled by ACPI PNP
[    0.513346] PCI: max bus depth: 1 pci_try_num: 2
[    0.513415] pci 0000:00:1c.0: BAR 14: assigned [mem 0x7f800000-0x7fbfffff]
[    0.513430] pci 0000:00:1c.0: BAR 13: assigned [io  0x1000-0x1fff]
[    0.513440] pci 0000:00:1c.0: PCI bridge to [bus 02-02]
[    0.513450] pci 0000:00:1c.0:   bridge window [io  0x1000-0x1fff]
[    0.513463] pci 0000:00:1c.0:   bridge window [mem 0x7f800000-0x7fbfffff]
[    0.513476] pci 0000:00:1c.0:   bridge window [mem 0xfdf00000-0xfdffffff 64bit pref]
[    0.513491] pci 0000:00:1c.1: PCI bridge to [bus 01-01]
[    0.513501] pci 0000:00:1c.1:   bridge window [io  0xe000-0xefff]
[    0.513513] pci 0000:00:1c.1:   bridge window [mem 0xfeb00000-0xfebfffff]
[    0.513525] pci 0000:00:1c.1:   bridge window [mem 0xfde00000-0xfdefffff 64bit pref]
[    0.513540] pci 0000:00:1e.0: PCI bridge to [bus 03-03]
[    0.513571] pci 0000:00:1c.0: enabling device (0106 -> 0107)
[    0.513614] pci 0000:00:1c.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    0.513628] pci 0000:00:1c.0: setting latency timer to 64
[    0.513661] pci 0000:00:1c.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17
[    0.513674] pci 0000:00:1c.1: setting latency timer to 64
[    0.513691] pci 0000:00:1e.0: setting latency timer to 64
[    0.513703] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7]
[    0.513711] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff]
[    0.513721] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
[    0.513730] pci_bus 0000:00: resource 7 [mem 0x000d0000-0x000dffff]
[    0.513739] pci_bus 0000:00: resource 8 [mem 0x7f800000-0xffffffff]
[    0.513749] pci_bus 0000:02: resource 0 [io  0x1000-0x1fff]
[    0.513758] pci_bus 0000:02: resource 1 [mem 0x7f800000-0x7fbfffff]
[    0.513768] pci_bus 0000:02: resource 2 [mem 0xfdf00000-0xfdffffff 64bit pref]
[    0.513777] pci_bus 0000:01: resource 0 [io  0xe000-0xefff]
[    0.513786] pci_bus 0000:01: resource 1 [mem 0xfeb00000-0xfebfffff]
[    0.513796] pci_bus 0000:01: resource 2 [mem 0xfde00000-0xfdefffff 64bit pref]
[    0.513806] pci_bus 0000:03: resource 4 [io  0x0000-0x0cf7]
[    0.513815] pci_bus 0000:03: resource 5 [io  0x0d00-0xffff]
[    0.513824] pci_bus 0000:03: resource 6 [mem 0x000a0000-0x000bffff]
[    0.513834] pci_bus 0000:03: resource 7 [mem 0x000d0000-0x000dffff]
[    0.513843] pci_bus 0000:03: resource 8 [mem 0x7f800000-0xffffffff]
[    0.513973] NET: Registered protocol family 2
[    0.514192] IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
[    0.515113] TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
[    0.516369] TCP bind hash table entries: 65536 (order: 7, 524288 bytes)
[    0.516942] TCP: Hash tables configured (established 131072 bind 65536)
[    0.516954] TCP reno registered
[    0.516969] UDP hash table entries: 512 (order: 2, 16384 bytes)
[    0.516994] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
[    0.517295] NET: Registered protocol family 1
[    0.517346] pci 0000:00:02.0: Boot video device
[    0.517417] pci 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23
[    0.517446] pci 0000:00:1d.0: PCI INT A disabled
[    0.517484] pci 0000:00:1d.1: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[    0.517510] pci 0000:00:1d.1: PCI INT B disabled
[    0.517549] pci 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
[    0.517576] pci 0000:00:1d.2: PCI INT C disabled
[    0.517602] pci 0000:00:1d.3: PCI INT D -> GSI 16 (level, low) -> IRQ 16
[    0.517630] pci 0000:00:1d.3: PCI INT D disabled
[    0.517658] pci 0000:00:1d.7: PCI INT A -> GSI 23 (level, low) -> IRQ 23
[    0.517720] pci 0000:00:1d.7: PCI INT A disabled
[    0.517767] PCI: CLS 32 bytes, default 64
[    0.519515] audit: initializing netlink socket (disabled)
[    0.519548] type=2000 audit(1337261366.512:1): initialized
[    0.585819] highmem bounce pool size: 64 pages
[    0.585838] HugeTLB registered 4 MB page size, pre-allocated 0 pages
[    0.605442] VFS: Disk quotas dquot_6.5.2
[    0.605700] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[    0.607886] fuse init (API version 7.17)
[    0.608336] msgmni has been set to 1666
[    0.609803] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
[    0.609925] io scheduler noop registered
[    0.609932] io scheduler deadline registered
[    0.609963] io scheduler cfq registered (default)
[    0.610366] pcieport 0000:00:1c.0: setting latency timer to 64
[    0.610446] pcieport 0000:00:1c.0: irq 40 for MSI/MSI-X
[    0.610674] pcieport 0000:00:1c.1: setting latency timer to 64
[    0.610748] pcieport 0000:00:1c.1: irq 41 for MSI/MSI-X
[    0.611072] pcieport 0000:00:1c.0: Signaling PME through PCIe PME interrupt
[    0.611085] pcie_pme 0000:00:1c.0:pcie01: service driver pcie_pme loaded
[    0.611137] pcieport 0000:00:1c.1: Signaling PME through PCIe PME interrupt
[    0.611147] pci 0000:01:00.0: Signaling PME through PCIe PME interrupt
[    0.611158] pcie_pme 0000:00:1c.1:pcie01: service driver pcie_pme loaded
[    0.611237] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    0.611349] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    0.611611] intel_idle: MWAIT substates: 0x10
[    0.611643] intel_idle: v0.4 model 0x1C
[    0.611649] intel_idle: lapic_timer_reliable_states 0x2
[    0.612078] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input0
[    0.612094] ACPI: Power Button [PWRB]
[    0.612276] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[    0.612289] ACPI: Power Button [PWRF]
[    0.618709] ERST: Table is not found!
[    0.618718] GHES: HEST is not enabled!
[    0.619010] isapnp: Scanning for PnP cards...
[    0.619173] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    0.639720] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[    0.973027] isapnp: No Plug & Play device found
[    1.381692] Freeing initrd memory: 20132k freed
[    1.468869] 00:0b: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[    1.516538] Linux agpgart interface v0.103
[    1.516691] agpgart-intel 0000:00:00.0: Intel 945G Chipset
[    1.516870] agpgart-intel 0000:00:00.0: detected gtt size: 262144K total, 262144K mappable
[    1.517134] agpgart-intel 0000:00:00.0: detected 8192K stolen memory
[    1.517434] agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0xe0000000
[    1.522118] brd: module loaded
[    1.524566] loop: module loaded
[    1.525000] ata_piix 0000:00:1f.1: version 2.13
[    1.525030] ata_piix 0000:00:1f.1: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[    1.525100] ata_piix 0000:00:1f.1: setting latency timer to 64
[    1.525971] scsi0 : ata_piix
[    1.526214] scsi1 : ata_piix
[    1.528893] ata1: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0xffa0 irq 14
[    1.528901] ata2: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0xffa8 irq 15
[    1.528967] ata_piix 0000:00:1f.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[    1.528982] ata_piix 0000:00:1f.2: MAP [ P0 P2 P1 P3 ]
[    1.529064] ata_piix 0000:00:1f.2: setting latency timer to 64
[    1.529159] ata2: port disabled--ignoring
[    1.529923] scsi2 : ata_piix
[    1.530142] scsi3 : ata_piix
[    1.530274] ata3: SATA max UDMA/133 cmd 0xd080 ctl 0xd000 bmdma 0xc800 irq 19
[    1.530281] ata4: SATA max UDMA/133 cmd 0xcc00 ctl 0xc880 bmdma 0xc808 irq 19
[    1.531518] Fixed MDIO Bus: probed
[    1.531588] tun: Universal TUN/TAP device driver, 1.6
[    1.531593] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[    1.531760] PPP generic driver version 2.4.2
[    1.532143] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    1.532191] ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 23 (level, low) -> IRQ 23
[    1.532230] ehci_hcd 0000:00:1d.7: setting latency timer to 64
[    1.532238] ehci_hcd 0000:00:1d.7: EHCI Host Controller
[    1.532375] ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 1
[    1.532417] ehci_hcd 0000:00:1d.7: using broken periodic workaround
[    1.532433] ehci_hcd 0000:00:1d.7: debug port 1
[    1.536315] ehci_hcd 0000:00:1d.7: cache line size of 32 is not supported
[    1.536358] ehci_hcd 0000:00:1d.7: irq 23, io mem 0xfea37c00
[    1.552040] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00
[    1.552424] hub 1-0:1.0: USB hub found
[    1.552437] hub 1-0:1.0: 8 ports detected
[    1.552630] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    1.552670] uhci_hcd: USB Universal Host Controller Interface driver
[    1.552730] uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23
[    1.552748] uhci_hcd 0000:00:1d.0: setting latency timer to 64
[    1.552755] uhci_hcd 0000:00:1d.0: UHCI Host Controller
[    1.552901] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
[    1.552949] uhci_hcd 0000:00:1d.0: irq 23, io base 0x0000d400
[    1.553311] hub 2-0:1.0: USB hub found
[    1.553324] hub 2-0:1.0: 2 ports detected
[    1.553475] uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[    1.553492] uhci_hcd 0000:00:1d.1: setting latency timer to 64
[    1.553499] uhci_hcd 0000:00:1d.1: UHCI Host Controller
[    1.553638] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 3
[    1.553677] uhci_hcd 0000:00:1d.1: irq 19, io base 0x0000d480
[    1.554042] hub 3-0:1.0: USB hub found
[    1.554056] hub 3-0:1.0: 2 ports detected
[    1.554204] uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
[    1.554220] uhci_hcd 0000:00:1d.2: setting latency timer to 64
[    1.554227] uhci_hcd 0000:00:1d.2: UHCI Host Controller
[    1.554364] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 4
[    1.554428] uhci_hcd 0000:00:1d.2: irq 18, io base 0x0000d800
[    1.554778] hub 4-0:1.0: USB hub found
[    1.554791] hub 4-0:1.0: 2 ports detected
[    1.554946] uhci_hcd 0000:00:1d.3: PCI INT D -> GSI 16 (level, low) -> IRQ 16
[    1.554962] uhci_hcd 0000:00:1d.3: setting latency timer to 64
[    1.554969] uhci_hcd 0000:00:1d.3: UHCI Host Controller
[    1.555111] uhci_hcd 0000:00:1d.3: new USB bus registered, assigned bus number 5
[    1.555166] uhci_hcd 0000:00:1d.3: irq 16, io base 0x0000d880
[    1.555517] hub 5-0:1.0: USB hub found
[    1.555530] hub 5-0:1.0: 2 ports detected
[    1.555831] usbcore: registered new interface driver libusual
[    1.555984] i8042: PNP: No PS/2 controller found. Probing ports directly.
[    1.558637] serio: i8042 KBD port at 0x60,0x64 irq 1
[    1.558658] serio: i8042 AUX port at 0x60,0x64 irq 12
[    1.559070] mousedev: PS/2 mouse device common for all mice
[    1.559516] rtc_cmos 00:03: RTC can wake from S4
[    1.559739] rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0
[    1.559779] rtc0: alarms up to one month, 114 bytes nvram, hpet irqs
[    1.559982] device-mapper: uevent: version 1.0.3
[    1.560249] device-mapper: ioctl: 4.22.0-ioctl (2011-10-19) initialised: dm-devel@redhat.com
[    1.560346] EISA: Probing bus 0 at eisa.0
[    1.560353] EISA: Cannot allocate resource for mainboard
[    1.560360] Cannot allocate resource for EISA slot 1
[    1.560366] Cannot allocate resource for EISA slot 2
[    1.560371] Cannot allocate resource for EISA slot 3
[    1.560377] Cannot allocate resource for EISA slot 4
[    1.560383] Cannot allocate resource for EISA slot 5
[    1.560388] Cannot allocate resource for EISA slot 6
[    1.560394] Cannot allocate resource for EISA slot 7
[    1.560399] Cannot allocate resource for EISA slot 8
[    1.560404] EISA: Detected 0 cards.
[    1.560423] cpufreq-nforce2: No nForce2 chipset.
[    1.560620] cpuidle: using governor ladder
[    1.560935] cpuidle: using governor menu
[    1.560941] EFI Variables Facility v0.08 2004-May-17
[    1.561586] TCP cubic registered
[    1.561907] NET: Registered protocol family 10
[    1.563410] NET: Registered protocol family 17
[    1.563461] Registering the dns_resolver key type
[    1.563522] Using IPI No-Shortcut mode
[    1.563905] PM: Hibernation image not present or could not be loaded.
[    1.563935] registered taskstats version 1
[    1.587555]   Magic number: 12:574:483
[    1.587737] rtc_cmos 00:03: setting system clock to 2012-05-17 13:29:28 UTC (1337261368)
[    1.587804] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[    1.587809] EDD information not available.
[    1.695460] ata1.00: ATA-4: SAMSUNG SV2042D, PF100-15, max UDMA/66
[    1.695470] ata1.00: 39921840 sectors, multi 16: LBA 
[    1.708389] ata1.00: configured for UDMA/66
[    1.708728] scsi 0:0:0:0: Direct-Access     ATA      SAMSUNG SV2042D  PF10 PQ: 0 ANSI: 5
[    1.709182] sd 0:0:0:0: [sda] 39921840 512-byte logical blocks: (20.4 GB/19.0 GiB)
[    1.709217] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    1.709399] sd 0:0:0:0: [sda] Write Protect is off
[    1.709411] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    1.709508] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    1.716343] ata3.00: ATA-7: SAMSUNG HD103SI, 1AG01118, max UDMA7
[    1.716352] ata3.00: 1953525168 sectors, multi 16: LBA48 NCQ (depth 0/32)
[    1.716630] ata3.01: ATA-8: ST1000DL002-9TT153, CC32, max UDMA/133
[    1.716638] ata3.01: 1953525168 sectors, multi 16: LBA48 NCQ (depth 0/32)
[    1.724328] ata3.00: configured for UDMA/133
[    1.740415] ata3.01: configured for UDMA/133
[    1.740750] scsi 2:0:0:0: Direct-Access     ATA      SAMSUNG HD103SI  1AG0 PQ: 0 ANSI: 5
[    1.741163] sd 2:0:0:0: [sdb] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
[    1.741280] sd 2:0:0:0: Attached scsi generic sg1 type 0
[    1.741440] sd 2:0:0:0: [sdb] Write Protect is off
[    1.741451] sd 2:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[    1.741569] sd 2:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    1.741723] scsi 2:0:1:0: Direct-Access     ATA      ST1000DL002-9TT1 CC32 PQ: 0 ANSI: 5
[    1.742142] sd 2:0:1:0: [sdc] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
[    1.742364] sd 2:0:1:0: Attached scsi generic sg2 type 0
[    1.742471] sd 2:0:1:0: [sdc] Write Protect is off
[    1.742482] sd 2:0:1:0: [sdc] Mode Sense: 00 3a 00 00
[    1.742619] sd 2:0:1:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    1.742672]  sda: sda1 sda2 < sda5 >
[    1.743819] sd 0:0:0:0: [sda] Attached SCSI disk
[    1.758896]  sdb: sdb1 < sdb5 >
[    1.775537]  sdc: sdc1
[    1.775876] sd 2:0:0:0: [sdb] Attached SCSI disk
[    1.776476] sd 2:0:1:0: [sdc] Attached SCSI disk
[    1.776544] Freeing unused kernel memory: 712k freed
[    1.777137] Write protecting the kernel text: 5628k
[    1.777236] Write protecting the kernel read-only data: 2324k
[    1.827721] udevd[105]: starting version 175
[    1.864125] usb 1-5: new high-speed USB device number 2 using ehci_hcd
[    1.981501] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
[    1.981596] r8169 0000:01:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
[    1.981660] r8169 0000:01:00.0: setting latency timer to 64
[    1.981778] r8169 0000:01:00.0: irq 42 for MSI/MSI-X
[    1.983552] r8169 0000:01:00.0: eth0: RTL8168d/8111d at 0xf801a000, 00:25:22:3a:e0:a6, XID 081000c0 IRQ 42
[    1.983567] r8169 0000:01:00.0: eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
[    1.991146] [drm] Initialized drm 1.1.0 20060810
[    2.028189] i915 0000:00:02.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    2.028207] i915 0000:00:02.0: setting latency timer to 64
[    2.074410] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
[    2.074419] [drm] Driver supports precise vblank timestamp query.
[    2.113076] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
[    2.127770] [drm] initialized overlay support
[    2.140044] No connectors reported connected with modes
[    2.140055] [drm] Cannot find any crtc or sizes - going 1024x768
[    2.148294] fbcon: inteldrmfb (fb0) is primary device
[    2.148432] Console: switching to colour frame buffer device 128x48
[    2.148499] fb0: inteldrmfb frame buffer device
[    2.148503] drm: registered panic notifier
[    2.148541] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
[    3.629665] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
[    8.403174] ADDRCONF(NETDEV_UP): eth0: link is not ready
[    8.927925] udevd[348]: starting version 175
[   10.390852] EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro
[   11.413477] lp: driver loaded but no devices found
[   11.978003] w83627ehf: Found W83627DHG-P chip at 0x290
[   12.492666] EXT4-fs (dm-0): mounted filesystem with ordered data mode. Opts: acl
[   12.924379] parport_pc 00:06: reported by Plug and Play ACPI
[   12.924454] parport0: PC-style at 0x378 (0x778), irq 7, dma 3 [PCSPP,TRISTATE,COMPAT,ECP,DMA]
[   13.022662] lp0: using parport0 (interrupt-driven).
[   13.742516] ppdev: user-space parallel port driver
[   13.748962] intel_rng: FWH not detected
[   14.245823] leds_ss4200: no LED devices found
[   16.889268] cfg80211: Calling CRDA to update world regulatory domain
[   17.182194] snd_hda_intel 0000:00:1b.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[   17.182299] snd_hda_intel 0000:00:1b.0: irq 43 for MSI/MSI-X
[   17.182351] snd_hda_intel 0000:00:1b.0: setting latency timer to 64
[   17.284343] input: HDA Intel Line as /devices/pci0000:00/0000:00:1b.0/sound/card0/input2
[   17.284699] input: HDA Intel Front Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input3
[   17.285029] input: HDA Intel Rear Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input4
[   17.285354] input: HDA Intel Front Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input5
[   17.285679] input: HDA Intel Line-Out as /devices/pci0000:00/0000:00:1b.0/sound/card0/input6
[   18.236063] usb 1-5: reset high-speed USB device number 2 using ehci_hcd
[   18.407978] cfg80211: Updating information on frequency 2412 MHz for a 20 MHz width channel with regulatory rule:
[   18.407993] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (600 mBi, 2000 mBm)
[   18.408054] cfg80211: Updating information on frequency 2417 MHz for a 20 MHz width channel with regulatory rule:
[   18.408065] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (600 mBi, 2000 mBm)
[   18.408074] cfg80211: Updating information on frequency 2422 MHz for a 20 MHz width channel with regulatory rule:
[   18.408084] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (600 mBi, 2000 mBm)
[   18.408093] cfg80211: Updating information on frequency 2427 MHz for a 20 MHz width channel with regulatory rule:
[   18.408103] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (600 mBi, 2000 mBm)
[   18.408111] cfg80211: Updating information on frequency 2432 MHz for a 20 MHz width channel with regulatory rule:
[   18.408123] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (600 mBi, 2000 mBm)
[   18.408132] cfg80211: Updating information on frequency 2437 MHz for a 20 MHz width channel with regulatory rule:
[   18.408142] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (600 mBi, 2000 mBm)
[   18.408150] cfg80211: Updating information on frequency 2442 MHz for a 20 MHz width channel with regulatory rule:
[   18.408160] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (600 mBi, 2000 mBm)
[   18.408169] cfg80211: Updating information on frequency 2447 MHz for a 20 MHz width channel with regulatory rule:
[   18.408179] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (600 mBi, 2000 mBm)
[   18.408188] cfg80211: Updating information on frequency 2452 MHz for a 20 MHz width channel with regulatory rule:
[   18.408199] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (600 mBi, 2000 mBm)
[   18.408208] cfg80211: Updating information on frequency 2457 MHz for a 20 MHz width channel with regulatory rule:
[   18.408215] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (600 mBi, 2000 mBm)
[   18.408222] cfg80211: Updating information on frequency 2462 MHz for a 20 MHz width channel with regulatory rule:
[   18.408229] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (600 mBi, 2000 mBm)
[   18.408236] cfg80211: Updating information on frequency 2467 MHz for a 20 MHz width channel with regulatory rule:
[   18.408243] cfg80211: 2457000 KHz - 2482000 KHz @ 20000 KHz), (600 mBi, 2000 mBm)
[   18.408250] cfg80211: Updating information on frequency 2472 MHz for a 20 MHz width channel with regulatory rule:
[   18.408257] cfg80211: 2457000 KHz - 2482000 KHz @ 20000 KHz), (600 mBi, 2000 mBm)
[   18.408263] cfg80211: Updating information on frequency 2484 MHz for a 20 MHz width channel with regulatory rule:
[   18.408271] cfg80211: 2474000 KHz - 2494000 KHz @ 20000 KHz), (600 mBi, 2000 mBm)
[   19.376964] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
[   19.378816] Registered led device: rt2800usb-phy0::radio
[   19.378918] Registered led device: rt2800usb-phy0::assoc
[   19.379045] Registered led device: rt2800usb-phy0::quality
[   19.379132] usbcore: registered new interface driver rt2800usb
[   20.854330] cfg80211: Updating information on frequency 2412 MHz for a 20 MHz width channel with regulatory rule:
[   20.854342] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   20.854349] cfg80211: Updating information on frequency 2417 MHz for a 20 MHz width channel with regulatory rule:
[   20.854357] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   20.854363] cfg80211: Updating information on frequency 2422 MHz for a 20 MHz width channel with regulatory rule:
[   20.854371] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   20.854377] cfg80211: Updating information on frequency 2427 MHz for a 20 MHz width channel with regulatory rule:
[   20.854384] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   20.854391] cfg80211: Updating information on frequency 2432 MHz for a 20 MHz width channel with regulatory rule:
[   20.854398] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   20.854405] cfg80211: Updating information on frequency 2437 MHz for a 20 MHz width channel with regulatory rule:
[   20.854412] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   20.854419] cfg80211: Updating information on frequency 2442 MHz for a 20 MHz width channel with regulatory rule:
[   20.854426] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   20.854432] cfg80211: Updating information on frequency 2447 MHz for a 20 MHz width channel with regulatory rule:
[   20.854440] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   20.854446] cfg80211: Updating information on frequency 2452 MHz for a 20 MHz width channel with regulatory rule:
[   20.854454] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   20.854460] cfg80211: Updating information on frequency 2457 MHz for a 20 MHz width channel with regulatory rule:
[   20.854468] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   20.854474] cfg80211: Updating information on frequency 2462 MHz for a 20 MHz width channel with regulatory rule:
[   20.854481] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   20.854488] cfg80211: Updating information on frequency 2467 MHz for a 20 MHz width channel with regulatory rule:
[   20.854495] cfg80211: 2457000 KHz - 2482000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[   20.854502] cfg80211: Updating information on frequency 2472 MHz for a 20 MHz width channel with regulatory rule:
[   20.854509] cfg80211: 2457000 KHz - 2482000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[   20.854516] cfg80211: Updating information on frequency 2484 MHz for a 20 MHz width channel with regulatory rule:
[   20.854523] cfg80211: 2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[   20.854531] cfg80211: World regulatory domain updated:
[   20.854536] cfg80211:     (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[   20.854544] cfg80211:     (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   20.854551] cfg80211:     (2457000 KHz - 2482000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[   20.854558] cfg80211:     (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[   20.854565] cfg80211:     (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   20.854572] cfg80211:     (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   22.552309] type=1400 audit(1337261389.463:2): apparmor="STATUS" operation="profile_load" name="/sbin/dhclient" pid=699 comm="apparmor_parser"
[   22.552337] type=1400 audit(1337261389.463:3): apparmor="STATUS" operation="profile_replace" name="/sbin/dhclient" pid=841 comm="apparmor_parser"
[   22.554030] type=1400 audit(1337261389.463:4): apparmor="STATUS" operation="profile_load" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=841 comm="apparmor_parser"
[   22.554059] type=1400 audit(1337261389.463:5): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=699 comm="apparmor_parser"
[   22.554981] type=1400 audit(1337261389.463:6): apparmor="STATUS" operation="profile_load" name="/usr/lib/connman/scripts/dhclient-script" pid=841 comm="apparmor_parser"
[   22.555009] type=1400 audit(1337261389.463:7): apparmor="STATUS" operation="profile_replace" name="/usr/lib/connman/scripts/dhclient-script" pid=699 comm="apparmor_parser"
[   22.556840] type=1400 audit(1337261389.467:8): apparmor="STATUS" operation="profile_replace" name="/sbin/dhclient" pid=698 comm="apparmor_parser"
[   22.558336] type=1400 audit(1337261389.467:9): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=698 comm="apparmor_parser"
[   22.559159] type=1400 audit(1337261389.467:10): apparmor="STATUS" operation="profile_replace" name="/usr/lib/connman/scripts/dhclient-script" pid=698 comm="apparmor_parser"
[   29.922729] type=1400 audit(1337261396.831:11): apparmor="STATUS" operation="profile_load" name="/usr/lib/cups/backend/cups-pdf" pid=960 comm="apparmor_parser"
[   29.923966] type=1400 audit(1337261396.831:12): apparmor="STATUS" operation="profile_load" name="/usr/sbin/cupsd" pid=960 comm="apparmor_parser"
[   31.763287] Bluetooth: Core ver 2.16
[   31.763358] NET: Registered protocol family 31
[   31.763364] Bluetooth: HCI device and connection manager initialized
[   31.763371] Bluetooth: HCI socket layer initialized
[   31.763376] Bluetooth: L2CAP socket layer initialized
[   31.763392] Bluetooth: SCO socket layer initialized
[   32.014545] Bluetooth: RFCOMM TTY layer initialized
[   32.014567] Bluetooth: RFCOMM socket layer initialized
[   32.014575] Bluetooth: RFCOMM ver 1.11
[   32.852991] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[   32.853002] Bluetooth: BNEP filters: protocol multicast
[   32.902918] init: failsafe main process (865) killed by TERM signal
[   36.397982] type=1400 audit(1337261403.308:13): apparmor="STATUS" operation="profile_replace" name="/sbin/dhclient" pid=1071 comm="apparmor_parser"
[   36.399245] type=1400 audit(1337261403.308:14): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=1071 comm="apparmor_parser"
[   36.399845] type=1400 audit(1337261403.308:15): apparmor="STATUS" operation="profile_replace" name="/usr/lib/connman/scripts/dhclient-script" pid=1071 comm="apparmor_parser"
[   36.411746] type=1400 audit(1337261403.320:16): apparmor="STATUS" operation="profile_replace" name="/usr/lib/cups/backend/cups-pdf" pid=1075 comm="apparmor_parser"
[   36.413194] type=1400 audit(1337261403.324:17): apparmor="STATUS" operation="profile_replace" name="/usr/sbin/cupsd" pid=1075 comm="apparmor_parser"
[   36.480774] type=1400 audit(1337261403.392:18): apparmor="STATUS" operation="profile_load" name="/usr/lib/lightdm/lightdm/lightdm-guest-session-wrapper" pid=1070 comm="apparmor_parser"
[   36.509319] type=1400 audit(1337261403.420:19): apparmor="STATUS" operation="profile_load" name="/usr/sbin/tcpdump" pid=1077 comm="apparmor_parser"
[   37.094279] type=1400 audit(1337261404.004:20): apparmor="STATUS" operation="profile_load" name="/usr/lib/telepathy/mission-control-5" pid=1074 comm="apparmor_parser"
[   37.095511] type=1400 audit(1337261404.004:21): apparmor="STATUS" operation="profile_load" name="/usr/lib/telepathy/telepathy-*" pid=1074 comm="apparmor_parser"
[   37.561671] r8169 0000:01:00.0: eth0: link down
[   37.562223] ADDRCONF(NETDEV_UP): eth0: link is not ready
[   37.562619] type=1400 audit(1337261404.472:22): apparmor="STATUS" operation="profile_load" name="/usr/bin/evince" pid=1072 comm="apparmor_parser"
[   37.563310] ADDRCONF(NETDEV_UP): eth0: link is not ready
[   38.092826] ADDRCONF(NETDEV_UP): wlan0: link is not ready
[   38.094168] ADDRCONF(NETDEV_UP): wlan0: link is not ready
[   40.160674] Adding 2087932k swap on /dev/mapper/cryptswap1.  Priority:-1 extents:1 across:2087932k 
[   42.188251] wlan0: authenticate with 28:10:7b:63:27:b6 (try 1)
[   42.189899] wlan0: authenticated
[   42.244255] wlan0: associate with 28:10:7b:63:27:b6 (try 1)
[   42.248183] wlan0: RX AssocResp from 28:10:7b:63:27:b6 (capab=0xc11 status=0 aid=3)
[   42.248194] wlan0: associated
[   42.276157] ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[   42.277060] cfg80211: Calling CRDA for country: GB
[   42.289001] cfg80211: Updating information on frequency 2412 MHz for a 20 MHz width channel with regulatory rule:
[   42.289013] cfg80211: 2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[   42.289020] cfg80211: Updating information on frequency 2417 MHz for a 20 MHz width channel with regulatory rule:
[   42.289028] cfg80211: 2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[   42.289034] cfg80211: Updating information on frequency 2422 MHz for a 20 MHz width channel with regulatory rule:
[   42.289042] cfg80211: 2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[   42.289048] cfg80211: Updating information on frequency 2427 MHz for a 20 MHz width channel with regulatory rule:
[   42.289056] cfg80211: 2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[   42.289062] cfg80211: Updating information on frequency 2432 MHz for a 20 MHz width channel with regulatory rule:
[   42.289069] cfg80211: 2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[   42.289075] cfg80211: Updating information on frequency 2437 MHz for a 20 MHz width channel with regulatory rule:
[   42.289083] cfg80211: 2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[   42.289089] cfg80211: Updating information on frequency 2442 MHz for a 20 MHz width channel with regulatory rule:
[   42.289097] cfg80211: 2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[   42.289103] cfg80211: Updating information on frequency 2447 MHz for a 20 MHz width channel with regulatory rule:
[   42.289110] cfg80211: 2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[   42.289116] cfg80211: Updating information on frequency 2452 MHz for a 20 MHz width channel with regulatory rule:
[   42.289124] cfg80211: 2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[   42.289130] cfg80211: Updating information on frequency 2457 MHz for a 20 MHz width channel with regulatory rule:
[   42.289138] cfg80211: 2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[   42.289144] cfg80211: Updating information on frequency 2462 MHz for a 20 MHz width channel with regulatory rule:
[   42.289151] cfg80211: 2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[   42.289158] cfg80211: Updating information on frequency 2467 MHz for a 20 MHz width channel with regulatory rule:
[   42.289165] cfg80211: 2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[   42.289171] cfg80211: Updating information on frequency 2472 MHz for a 20 MHz width channel with regulatory rule:
[   42.289179] cfg80211: 2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A mBi, 2000 mBm)
[   42.289184] cfg80211: Disabling freq 2484 MHz
[   42.289192] cfg80211: Regulatory domain changed to country: GB
[   42.289197] cfg80211:     (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[   42.289204] cfg80211:     (2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A, 2000 mBm)
[   42.289210] cfg80211:     (5170000 KHz - 5250000 KHz @ 40000 KHz), (N/A, 2000 mBm)
[   42.289217] cfg80211:     (5250000 KHz - 5330000 KHz @ 40000 KHz), (N/A, 2000 mBm)
[   42.289223] cfg80211:     (5490000 KHz - 5710000 KHz @ 40000 KHz), (N/A, 2700 mBm)
[   52.592046] wlan0: no IPv6 routers present
[   53.515473] init: minidlna main process (1678) terminated with status 127
[   53.515607] init: minidlna main process ended, respawning
[   69.074824] nf_conntrack version 0.5.0 (16384 buckets, 65536 max)
[   69.949700] ip_tables: (C) 2000-2006 Netfilter Core Team
[   76.717563] Netfilter messages via NETLINK v0.30.
[   83.265886] init: plymouth-stop pre-start process (2143) terminated with status 1
[ 2204.776056] usb 3-2: new full-speed USB device number 2 using uhci_hcd
[ 2204.945186] hub 3-2:1.0: USB hub found
[ 2204.947087] hub 3-2:1.0: 4 ports detected
[ 2205.229110] usb 3-2.1: new low-speed USB device number 3 using uhci_hcd
[ 2205.441124] usb 3-2.4: new full-speed USB device number 4 using uhci_hcd
[ 2205.607204] input: Gaming Keyboard as /devices/pci0000:00/0000:00:1d.1/usb3/3-2/3-2.1/3-2.1:1.0/input/input7
[ 2205.607571] generic-usb 0003:046D:C221.0001: input,hidraw0: USB HID v1.10 Keyboard [Gaming Keyboard] on usb-0000:00:1d.1-2.1/input0
[ 2205.643309] input: Gaming Keyboard as /devices/pci0000:00/0000:00:1d.1/usb3/3-2/3-2.1/3-2.1:1.1/input/input8
[ 2205.643796] generic-usb 0003:046D:C221.0002: input,hiddev0,hidraw1: USB HID v1.10 Device [Gaming Keyboard] on usb-0000:00:1d.1-2.1/input1
[ 2205.650343] input: G11 Keyboard as /devices/pci0000:00/0000:00:1d.1/usb3/3-2/3-2.4/3-2.4:1.0/input/input9
[ 2205.650842] generic-usb 0003:046D:C225.0003: input,hiddev0,hidraw2: USB HID v1.11 Keypad [G11 Keyboard] on usb-0000:00:1d.1-2.4/input0
[ 2205.650898] usbcore: registered new interface driver usbhid
[ 2205.650904] usbhid: USB HID core driver
[ 2229.936088] usb 3-2: USB disconnect, device number 2
[ 2229.936097] usb 3-2.1: USB disconnect, device number 3
[ 2230.212323] usb 3-2.4: USB disconnect, device number 4
[16246.256102] usb 1-3: new high-speed USB device number 4 using ehci_hcd
[16246.917567] Initializing USB Mass Storage driver...
[16246.917929] usb-storage 1-3:1.0: Quirks match for vid 13fe pid 3600: 4000
[16246.918037] scsi4 : usb-storage 1-3:1.0
[16246.918385] usbcore: registered new interface driver usb-storage
[16246.918393] USB Mass Storage support registered.
[16247.012587] usbcore: registered new interface driver uas
[16247.939920] scsi 4:0:0:0: Direct-Access              USB DISK 2.0     PMAP PQ: 0 ANSI: 0 CCS
[16247.942232] sd 4:0:0:0: Attached scsi generic sg3 type 0
[16248.719045] sd 4:0:0:0: [sdd] 15646720 512-byte logical blocks: (8.01 GB/7.46 GiB)
[16248.720167] sd 4:0:0:0: [sdd] Write Protect is off
[16248.720179] sd 4:0:0:0: [sdd] Mode Sense: 23 00 00 00
[16248.721403] sd 4:0:0:0: [sdd] No Caching mode page present
[16248.721412] sd 4:0:0:0: [sdd] Assuming drive cache: write through
[16248.726776] sd 4:0:0:0: [sdd] No Caching mode page present
[16248.726786] sd 4:0:0:0: [sdd] Assuming drive cache: write through
[16248.742314]  sdd: sdd1
[16248.746304] sd 4:0:0:0: [sdd] No Caching mode page present
[16248.746315] sd 4:0:0:0: [sdd] Assuming drive cache: write through
[16248.746324] sd 4:0:0:0: [sdd] Attached SCSI removable disk
[18987.976255] usb 1-3: USB disconnect, device number 4
[86038.736064] usb 1-4: new high-speed USB device number 5 using ehci_hcd
[86038.883229] scsi5 : usb-storage 1-4:1.0
[86039.883396] scsi 5:0:0:0: Direct-Access     HTC      Android Phone    0100 PQ: 0 ANSI: 2
[86039.886015] sd 5:0:0:0: Attached scsi generic sg3 type 0
[86039.890888] sd 5:0:0:0: [sdd] Attached SCSI removable disk
[86068.444129] usb 1-3: new high-speed USB device number 6 using ehci_hcd
[86068.597631] scsi6 : usb-storage 1-3:1.0
[86069.598503] scsi 6:0:0:0: Direct-Access     HTC      Desire           0100 PQ: 0 ANSI: 2
[86069.615177] sd 6:0:0:0: Attached scsi generic sg4 type 0
[86069.628451] sd 6:0:0:0: [sde] Attached SCSI removable disk
[86127.462209] usb 1-4: USB disconnect, device number 5
[86136.296089] usb 1-4: new high-speed USB device number 7 using ehci_hcd
[86136.443193] scsi7 : usb-storage 1-4:1.0
[86137.443447] scsi 7:0:0:0: Direct-Access     HTC      Android Phone    0100 PQ: 0 ANSI: 2
[86137.446167] sd 7:0:0:0: Attached scsi generic sg3 type 0
[86137.456263] sd 7:0:0:0: [sdd] Attached SCSI removable disk
[91920.409365] usb 1-3: USB disconnect, device number 6
[94608.616125] usb 1-3: new high-speed USB device number 8 using ehci_hcd
[94608.765191] scsi8 : usb-storage 1-3:1.0
[94609.766469] scsi 8:0:0:0: Direct-Access     HTC      Desire           0100 PQ: 0 ANSI: 2
[94609.772728] sd 8:0:0:0: Attached scsi generic sg4 type 0
[94609.782952] sd 8:0:0:0: [sde] Attached SCSI removable disk
[96788.616499] usb 1-3: USB disconnect, device number 8
[99610.248822] usb 1-4: USB disconnect, device number 7
[169487.544144] usb 1-3: new high-speed USB device number 9 using ehci_hcd
[169487.692666] scsi9 : usb-storage 1-3:1.0
[169488.694310] scsi 9:0:0:0: Direct-Access     HTC      Desire           0100 PQ: 0 ANSI: 2
[169488.698100] sd 9:0:0:0: Attached scsi generic sg3 type 0
[169488.711464] sd 9:0:0:0: [sdd] Attached SCSI removable disk
[174901.898374] usb 1-3: USB disconnect, device number 9