ubuntuusers.de

no network 2

Datum:
12. März 2013 21:45
Code:
   1
   2
   3
   4
   5
   6
   7
   8
   9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  32
  33
  34
  35
  36
  37
  38
  39
  40
  41
  42
  43
  44
  45
  46
  47
  48
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  59
  60
  61
  62
  63
  64
  65
  66
  67
  68
  69
  70
  71
  72
  73
  74
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
joshi@Joshi-PC:~$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description:    Ubuntu 12.04 LTS
Release:        12.04
Codename:       precise
joshi@Joshi-PC:~$ uname -a
Linux Joshi-PC 3.2.0-23-generic #36-Ubuntu SMP Tue Apr 10 20:39:51 UTC 2012 x86_64 x86_64 x86_64 GNU/Linux
joshi@Joshi-PC:~$ dmesg
[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Linux version 3.2.0-23-generic (buildd@crested) (gcc version 4.6.3 (Ubuntu/Linaro 4.6.3-1ubuntu4) ) #36-Ubuntu SMP Tue Apr 10 20:39:51 UTC 2012 (Ubuntu 3.2.0-23.36-generic 3.2.14)
[    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-3.2.0-23-generic root=UUID=968edfed-5528-4c3d-935e-91913a805007 ro quiet splash vt.handoff=7
[    0.000000] KERNEL supported cpus:
[    0.000000]   Intel GenuineIntel
[    0.000000]   AMD AuthenticAMD
[    0.000000]   Centaur CentaurHauls
[    0.000000] BIOS-provided physical RAM map:
[    0.000000]  BIOS-e820: 0000000000000000 - 000000000009d400 (usable)
[    0.000000]  BIOS-e820: 000000000009d400 - 00000000000a0000 (reserved)
[    0.000000]  BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved)
[    0.000000]  BIOS-e820: 0000000000100000 - 0000000020000000 (usable)
[    0.000000]  BIOS-e820: 0000000020000000 - 0000000020200000 (reserved)
[    0.000000]  BIOS-e820: 0000000020200000 - 0000000040004000 (usable)
[    0.000000]  BIOS-e820: 0000000040004000 - 0000000040005000 (reserved)
[    0.000000]  BIOS-e820: 0000000040005000 - 00000000b3fed000 (usable)
[    0.000000]  BIOS-e820: 00000000b3fed000 - 00000000b4d6e000 (reserved)
[    0.000000]  BIOS-e820: 00000000b4d6e000 - 00000000b4db0000 (usable)
[    0.000000]  BIOS-e820: 00000000b4db0000 - 00000000b61b0000 (reserved)
[    0.000000]  BIOS-e820: 00000000b61b0000 - 00000000baabf000 (usable)
[    0.000000]  BIOS-e820: 00000000baabf000 - 00000000baebf000 (reserved)
[    0.000000]  BIOS-e820: 00000000baebf000 - 00000000bafbf000 (ACPI NVS)
[    0.000000]  BIOS-e820: 00000000bafbf000 - 00000000bafff000 (ACPI data)
[    0.000000]  BIOS-e820: 00000000bafff000 - 00000000bb000000 (usable)
[    0.000000]  BIOS-e820: 00000000bb000000 - 00000000bfa00000 (reserved)
[    0.000000]  BIOS-e820: 00000000f0000000 - 00000000f4000000 (reserved)
[    0.000000]  BIOS-e820: 00000000feb00000 - 00000000feb04000 (reserved)
[    0.000000]  BIOS-e820: 00000000fec00000 - 00000000fec01000 (reserved)
[    0.000000]  BIOS-e820: 00000000fed10000 - 00000000fed1a000 (reserved)
[    0.000000]  BIOS-e820: 00000000fed1c000 - 00000000fed20000 (reserved)
[    0.000000]  BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved)
[    0.000000]  BIOS-e820: 00000000ffb80000 - 0000000100000000 (reserved)
[    0.000000]  BIOS-e820: 0000000100000000 - 000000013f600000 (usable)
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] DMI 2.7 present.
[    0.000000] DMI: LENOVO 7505/INVALID, BIOS 5ECN92WW(V8.04) 09/14/2012
[    0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
[    0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
[    0.000000] No AGP bridge found
[    0.000000] last_pfn = 0x13f600 max_arch_pfn = 0x400000000
[    0.000000] MTRR default type: uncachable
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-BFFFF uncachable
[    0.000000]   C0000-E7FFF write-protect
[    0.000000]   E8000-EFFFF write-combining
[    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 0BB000000 mask FFF000000 uncachable
[    0.000000]   3 base 0BC000000 mask FFC000000 uncachable
[    0.000000]   4 base 0FF800000 mask FFF800000 write-protect
[    0.000000]   5 base 100000000 mask FC0000000 write-back
[    0.000000]   6 base 13F600000 mask FFFE00000 uncachable
[    0.000000]   7 base 13F800000 mask FFF800000 uncachable
[    0.000000]   8 disabled
[    0.000000]   9 disabled
[    0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[    0.000000] last_pfn = 0xbb000 max_arch_pfn = 0x400000000
[    0.000000] found SMP MP-table at [ffff8800000fe1b0] fe1b0
[    0.000000] initial memory mapped : 0 - 20000000
[    0.000000] Base memory trampoline at [ffff880000098000] 98000 size 20480
[    0.000000] init_memory_mapping: 0000000000000000-00000000bb000000
[    0.000000]  0000000000 - 00bb000000 page 2M
[    0.000000] kernel direct mapping tables up to bb000000 @ 1fffc000-20000000
[    0.000000] init_memory_mapping: 0000000100000000-000000013f600000
[    0.000000]  0100000000 - 013f600000 page 2M
[    0.000000] kernel direct mapping tables up to 13f600000 @ baab9000-baabf000
[    0.000000] RAMDISK: 356de000 - 36b67000
[    0.000000] ACPI: RSDP 00000000000fe020 00024 (v02 LENOVO)
[    0.000000] ACPI: XSDT 00000000baffe210 000A4 (v01 LENOVO CB-01    00000001      01000013)
[    0.000000] ACPI: FACP 00000000baffa000 0010C (v05 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI Warning: FADT (revision 5) is longer than ACPI 2.0 version, truncating length 268 to 244 (20110623/tbfadt-288)
[    0.000000] ACPI: DSDT 00000000bafed000 09ECB (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: FACS 00000000bafbb000 00040
[    0.000000] ACPI: SLIC 00000000baffd000 00176 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: UEFI 00000000baffc000 00236 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: ASF! 00000000baffb000 000A5 (v32 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: HPET 00000000baff9000 00038 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: APIC 00000000baff8000 0008C (v03 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: MCFG 00000000baff7000 0003C (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: SSDT 00000000bafec000 006FE (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: BOOT 00000000bafea000 00028 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: ASPT 00000000bafe8000 00034 (v07 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: DBGP 00000000bafe7000 00034 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: FPDT 00000000bafe5000 00044 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: MSDM 00000000bafe4000 00055 (v03 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: SSDT 00000000bafe3000 008E4 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: SSDT 00000000bafe2000 00A92 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: SSDT 00000000bafdf000 01EFA (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] No NUMA configuration found
[    0.000000] Faking a node at 0000000000000000-000000013f600000
[    0.000000] Initmem setup node 0 0000000000000000-000000013f600000
[    0.000000]   NODE_DATA [000000013f5fb000 - 000000013f5fffff]
[    0.000000]  [ffffea0000000000-ffffea0004ffffff] PMD -> [ffff88013ac00000-ffff88013ebfffff] on node 0
[    0.000000] Zone PFN ranges:
[    0.000000]   DMA      0x00000010 -> 0x00001000
[    0.000000]   DMA32    0x00001000 -> 0x00100000
[    0.000000]   Normal   0x00100000 -> 0x0013f600
[    0.000000] Movable zone start PFN for each node
[    0.000000] early_node_map[8] active PFN ranges
[    0.000000]     0: 0x00000010 -> 0x0000009d
[    0.000000]     0: 0x00000100 -> 0x00020000
[    0.000000]     0: 0x00020200 -> 0x00040004
[    0.000000]     0: 0x00040005 -> 0x000b3fed
[    0.000000]     0: 0x000b4d6e -> 0x000b4db0
[    0.000000]     0: 0x000b61b0 -> 0x000baabf
[    0.000000]     0: 0x000bafff -> 0x000bb000
[    0.000000]     0: 0x00100000 -> 0x0013f600
[    0.000000] On node 0 totalpages: 1014987
[    0.000000]   DMA zone: 64 pages used for memmap
[    0.000000]   DMA zone: 5 pages reserved
[    0.000000]   DMA zone: 3912 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 16320 pages used for memmap
[    0.000000]   DMA32 zone: 735102 pages, LIFO batch:31
[    0.000000]   Normal zone: 4056 pages used for memmap
[    0.000000]   Normal zone: 255528 pages, LIFO batch:31
[    0.000000] ACPI: PM-Timer IO Port: 0x408
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x00] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x00] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x00] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x00] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x00] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x00] disabled)
[    0.000000] ACPI: IOAPIC (id[0x00] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.000000] ACPI: IRQ0 used by override.
[    0.000000] ACPI: IRQ2 used by override.
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[    0.000000] SMP: Allowing 8 CPUs, 6 hotplug CPUs
[    0.000000] nr_irqs_gsi: 40
[    0.000000] PM: Registered nosave memory: 000000000009d000 - 000000000009e000
[    0.000000] PM: Registered nosave memory: 000000000009e000 - 00000000000a0000
[    0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000
[    0.000000] PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
[    0.000000] PM: Registered nosave memory: 0000000020000000 - 0000000020200000
[    0.000000] PM: Registered nosave memory: 0000000040004000 - 0000000040005000
[    0.000000] PM: Registered nosave memory: 00000000b3fed000 - 00000000b4d6e000
[    0.000000] PM: Registered nosave memory: 00000000b4db0000 - 00000000b61b0000
[    0.000000] PM: Registered nosave memory: 00000000baabf000 - 00000000baebf000
[    0.000000] PM: Registered nosave memory: 00000000baebf000 - 00000000bafbf000
[    0.000000] PM: Registered nosave memory: 00000000bafbf000 - 00000000bafff000
[    0.000000] PM: Registered nosave memory: 00000000bb000000 - 00000000bfa00000
[    0.000000] PM: Registered nosave memory: 00000000bfa00000 - 00000000f0000000
[    0.000000] PM: Registered nosave memory: 00000000f0000000 - 00000000f4000000
[    0.000000] PM: Registered nosave memory: 00000000f4000000 - 00000000feb00000
[    0.000000] PM: Registered nosave memory: 00000000feb00000 - 00000000feb04000
[    0.000000] PM: Registered nosave memory: 00000000feb04000 - 00000000fec00000
[    0.000000] PM: Registered nosave memory: 00000000fec00000 - 00000000fec01000
[    0.000000] PM: Registered nosave memory: 00000000fec01000 - 00000000fed10000
[    0.000000] PM: Registered nosave memory: 00000000fed10000 - 00000000fed1a000
[    0.000000] PM: Registered nosave memory: 00000000fed1a000 - 00000000fed1c000
[    0.000000] PM: Registered nosave memory: 00000000fed1c000 - 00000000fed20000
[    0.000000] PM: Registered nosave memory: 00000000fed20000 - 00000000fee00000
[    0.000000] PM: Registered nosave memory: 00000000fee00000 - 00000000fee01000
[    0.000000] PM: Registered nosave memory: 00000000fee01000 - 00000000ffb80000
[    0.000000] PM: Registered nosave memory: 00000000ffb80000 - 0000000100000000
[    0.000000] Allocating PCI resources starting at bfa00000 (gap: bfa00000:30600000)
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] setup_percpu: NR_CPUS:256 nr_cpumask_bits:256 nr_cpu_ids:8 nr_node_ids:1
[    0.000000] PERCPU: Embedded 28 pages/cpu @ffff88013f200000 s83072 r8192 d23424 u262144
[    0.000000] pcpu-alloc: s83072 r8192 d23424 u262144 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 6 7 
[    0.000000] Built 1 zonelists in Node order, mobility grouping on.  Total pages: 994542
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-3.2.0-23-generic root=UUID=968edfed-5528-4c3d-935e-91913a805007 ro quiet splash vt.handoff=7
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] xsave/xrstor: enabled xstate_bv 0x3, cntxt size 0x240
[    0.000000] Checking aperture...
[    0.000000] No AGP bridge found
[    0.000000] Calgary: detecting Calgary via BIOS EBDA area
[    0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
[    0.000000] Memory: 3890604k/5232640k available (6566k kernel code, 1172692k absent, 169344k reserved, 6637k data, 920k init)
[    0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
[    0.000000] Hierarchical RCU implementation.
[    0.000000]  RCU dyntick-idle grace-period acceleration is enabled.
[    0.000000] NR_IRQS:16640 nr_irqs:744 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 33554432 bytes of page_cgroup
[    0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
[    0.000000] hpet clockevent registered
[    0.000000] Fast TSC calibration using PIT
[    0.004000] Detected 2394.475 MHz processor.
[    0.000002] Calibrating delay loop (skipped), value calculated using timer frequency.. 4788.95 BogoMIPS (lpj=9577900)
[    0.000006] pid_max: default: 32768 minimum: 301
[    0.000027] Security Framework initialized
[    0.000038] AppArmor: AppArmor initialized
[    0.000039] Yama: becoming mindful.
[    0.000397] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
[    0.001476] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
[    0.001931] Mount-cache hash table entries: 256
[    0.002030] Initializing cgroup subsys cpuacct
[    0.002034] Initializing cgroup subsys memory
[    0.002040] Initializing cgroup subsys devices
[    0.002042] Initializing cgroup subsys freezer
[    0.002044] Initializing cgroup subsys blkio
[    0.002048] Initializing cgroup subsys perf_event
[    0.002073] CPU: Physical Processor ID: 0
[    0.002074] CPU: Processor Core ID: 0
[    0.002079] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[    0.002080] ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
[    0.002083] mce: CPU supports 7 MCE banks
[    0.002094] CPU0: Thermal monitoring enabled (TM1)
[    0.002101] using mwait in idle threads.
[    0.004057] ACPI: Core revision 20110623
[    0.021977] ftrace: allocating 27049 entries in 107 pages
[    0.030582] x2apic not enabled, IRQ remapping init failed
[    0.030999] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.070623] CPU0: Intel(R) Pentium(R) CPU 2020M @ 2.40GHz stepping 09
[    0.176748] Performance Events: PEBS fmt1+, generic architected perfmon, Intel PMU driver.
[    0.176753] ... version:                3
[    0.176754] ... bit width:              48
[    0.176755] ... generic registers:      8
[    0.176757] ... value mask:             0000ffffffffffff
[    0.176758] ... max period:             000000007fffffff
[    0.176759] ... fixed-purpose events:   3
[    0.176760] ... event mask:             00000007000000ff
[    0.176903] NMI watchdog enabled, takes one hw-pmu counter.
[    0.176977] Booting Node   0, Processors  #1
[    0.176979] smpboot cpu 1: start_ip = 98000
[    0.284693] NMI watchdog enabled, takes one hw-pmu counter.
[    0.284718] Brought up 2 CPUs
[    0.284720] Total of 2 processors activated (9577.85 BogoMIPS).
[    0.286056] devtmpfs: initialized
[    0.286690] EVM: security.selinux
[    0.286691] EVM: security.SMACK64
[    0.286692] EVM: security.capability
[    0.286715] PM: Registering ACPI NVS region at baebf000 (1048576 bytes)
[    0.287421] print_constraints: dummy: 
[    0.287450] RTC time: 20:10:09, date: 03/12/13
[    0.287476] NET: Registered protocol family 16
[    0.287533] Trying to unpack rootfs image as initramfs...
[    0.287571] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[    0.287573] ACPI: bus type pci registered
[    0.287635] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf0000000-0xf3ffffff] (base 0xf0000000)
[    0.287638] PCI: MMCONFIG at [mem 0xf0000000-0xf3ffffff] reserved in E820
[    0.301807] PCI: Using configuration type 1 for base access
[    0.304788] bio: create slab <bio-0> at 0
[    0.304854] ACPI: Added _OSI(Module Device)
[    0.304856] ACPI: Added _OSI(Processor Device)
[    0.304857] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.304859] ACPI: Added _OSI(Processor Aggregator Device)
[    0.306459] ACPI: EC: Look up EC in DSDT
[    0.308122] ACPI: Executed 1 blocks of module-level executable AML code
[    0.311125] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
[    0.312206] ACPI: SSDT 00000000bae27018 0083B (v01  PmRef  Cpu0Cst 00003001 INTL 20120111)
[    0.312613] ACPI: Dynamic OEM Table Load:
[    0.312615] ACPI: SSDT           (null) 0083B (v01  PmRef  Cpu0Cst 00003001 INTL 20120111)
[    0.332849] ACPI: SSDT 00000000bae28a98 00303 (v01  PmRef    ApIst 00003000 INTL 20120111)
[    0.333283] ACPI: Dynamic OEM Table Load:
[    0.333285] ACPI: SSDT           (null) 00303 (v01  PmRef    ApIst 00003000 INTL 20120111)
[    0.352694] ACPI: SSDT 00000000bae26d98 00119 (v01  PmRef    ApCst 00003000 INTL 20120111)
[    0.353102] ACPI: Dynamic OEM Table Load:
[    0.353104] ACPI: SSDT           (null) 00119 (v01  PmRef    ApCst 00003000 INTL 20120111)
[    0.384913] ACPI: Interpreter enabled
[    0.384917] ACPI: (supports S0 S3 S4 S5)
[    0.384939] ACPI: Using IOAPIC for interrupt routing
[    0.475469] ACPI: EC: GPE = 0x17, I/O: command/status = 0x66, data = 0x62
[    0.475637] ACPI: No dock devices found.
[    0.475639] HEST: Table not found.
[    0.475641] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.475931] \_SB_.PCI0:_OSC invalid UUID
[    0.475932] _OSC request data:1 8 1f 
[    0.475936] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e])
[    0.476402] pci_root PNP0A08:00: host bridge window [io  0x0000-0x0cf7]
[    0.476404] pci_root PNP0A08:00: host bridge window [io  0x0d00-0xffff]
[    0.476406] pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff]
[    0.476409] pci_root PNP0A08:00: host bridge window [mem 0xbfa00000-0xfeafffff]
[    0.476420] pci 0000:00:00.0: [8086:0154] type 0 class 0x000600
[    0.476456] pci 0000:00:01.0: [8086:0151] type 1 class 0x000604
[    0.476487] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[    0.476489] pci 0000:00:01.0: PME# disabled
[    0.476507] pci 0000:00:02.0: [8086:0156] type 0 class 0x000300
[    0.476517] pci 0000:00:02.0: reg 10: [mem 0xd3000000-0xd33fffff 64bit]
[    0.476523] pci 0000:00:02.0: reg 18: [mem 0xe0000000-0xefffffff 64bit pref]
[    0.476527] pci 0000:00:02.0: reg 20: [io  0x4000-0x403f]
[    0.476578] pci 0000:00:14.0: [8086:1e31] type 0 class 0x000c03
[    0.476600] pci 0000:00:14.0: reg 10: [mem 0xd3600000-0xd360ffff 64bit]
[    0.476673] pci 0000:00:14.0: PME# supported from D3hot D3cold
[    0.476678] pci 0000:00:14.0: PME# disabled
[    0.476699] pci 0000:00:16.0: [8086:1e3a] type 0 class 0x000780
[    0.476723] pci 0000:00:16.0: reg 10: [mem 0xd3614000-0xd361400f 64bit]
[    0.476799] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[    0.476804] pci 0000:00:16.0: PME# disabled
[    0.476835] pci 0000:00:1a.0: [8086:1e2d] type 0 class 0x000c03
[    0.476857] pci 0000:00:1a.0: reg 10: [mem 0xd3619000-0xd36193ff]
[    0.476948] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[    0.476952] pci 0000:00:1a.0: PME# disabled
[    0.476976] pci 0000:00:1b.0: [8086:1e20] type 0 class 0x000403
[    0.476992] pci 0000:00:1b.0: reg 10: [mem 0xd3610000-0xd3613fff 64bit]
[    0.477059] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    0.477063] pci 0000:00:1b.0: PME# disabled
[    0.477084] pci 0000:00:1c.0: [8086:1e10] type 1 class 0x000604
[    0.477164] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.477169] pci 0000:00:1c.0: PME# disabled
[    0.477193] pci 0000:00:1c.1: [8086:1e12] type 1 class 0x000604
[    0.477272] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[    0.477277] pci 0000:00:1c.1: PME# disabled
[    0.477311] pci 0000:00:1d.0: [8086:1e26] type 0 class 0x000c03
[    0.477332] pci 0000:00:1d.0: reg 10: [mem 0xd3618000-0xd36183ff]
[    0.477423] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[    0.477427] pci 0000:00:1d.0: PME# disabled
[    0.477451] pci 0000:00:1f.0: [8086:1e59] type 0 class 0x000601
[    0.477578] pci 0000:00:1f.2: [8086:1e03] type 0 class 0x000106
[    0.477596] pci 0000:00:1f.2: reg 10: [io  0x4088-0x408f]
[    0.477604] pci 0000:00:1f.2: reg 14: [io  0x4094-0x4097]
[    0.477612] pci 0000:00:1f.2: reg 18: [io  0x4080-0x4087]
[    0.477621] pci 0000:00:1f.2: reg 1c: [io  0x4090-0x4093]
[    0.477629] pci 0000:00:1f.2: reg 20: [io  0x4060-0x407f]
[    0.477638] pci 0000:00:1f.2: reg 24: [mem 0xd3617000-0xd36177ff]
[    0.477683] pci 0000:00:1f.2: PME# supported from D3hot
[    0.477687] pci 0000:00:1f.2: PME# disabled
[    0.477705] pci 0000:00:1f.3: [8086:1e22] type 0 class 0x000c05
[    0.477720] pci 0000:00:1f.3: reg 10: [mem 0xd3615000-0xd36150ff 64bit]
[    0.477742] pci 0000:00:1f.3: reg 20: [io  0x4040-0x405f]
[    0.477800] pci 0000:01:00.0: [10de:1140] type 0 class 0x000302
[    0.477810] pci 0000:01:00.0: reg 10: [mem 0xd2000000-0xd2ffffff]
[    0.477820] pci 0000:01:00.0: reg 14: [mem 0xc0000000-0xcfffffff 64bit pref]
[    0.477831] pci 0000:01:00.0: reg 1c: [mem 0xd0000000-0xd1ffffff 64bit pref]
[    0.477838] pci 0000:01:00.0: reg 24: [io  0x3000-0x307f]
[    0.477846] pci 0000:01:00.0: reg 30: [mem 0xfff80000-0xffffffff pref]
[    0.484392] pci 0000:00:01.0: PCI bridge to [bus 01-01]
[    0.484395] pci 0000:00:01.0:   bridge window [io  0x3000-0x3fff]
[    0.484398] pci 0000:00:01.0:   bridge window [mem 0xd2000000-0xd2ffffff]
[    0.484401] pci 0000:00:01.0:   bridge window [mem 0xc0000000-0xd1ffffff 64bit pref]
[    0.484519] pci 0000:02:00.0: [1969:1091] type 0 class 0x000200
[    0.484612] pci 0000:02:00.0: reg 10: [mem 0xd3500000-0xd353ffff 64bit]
[    0.484672] pci 0000:02:00.0: reg 18: [io  0x2000-0x207f]
[    0.485131] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.485147] pci 0000:02:00.0: PME# disabled
[    0.492411] pci 0000:00:1c.0: PCI bridge to [bus 02-02]
[    0.492416] pci 0000:00:1c.0:   bridge window [io  0x2000-0x2fff]
[    0.492421] pci 0000:00:1c.0:   bridge window [mem 0xd3500000-0xd35fffff]
[    0.492533] pci 0000:03:00.0: [14e4:4727] type 0 class 0x000280
[    0.492568] pci 0000:03:00.0: reg 10: [mem 0xd3400000-0xd3403fff 64bit]
[    0.492736] pci 0000:03:00.0: supports D1 D2
[    0.492738] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
[    0.492744] pci 0000:03:00.0: PME# disabled
[    0.500407] pci 0000:00:1c.1: PCI bridge to [bus 03-03]
[    0.500414] pci 0000:00:1c.1:   bridge window [mem 0xd3400000-0xd34fffff]
[    0.500437] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[    0.500558] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP01._PRT]
[    0.500586] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP02._PRT]
[    0.500626] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEG0._PRT]
[    0.500706] \_SB_.PCI0:_OSC invalid UUID
[    0.500707] _OSC request data:1 1f 1f 
[    0.500711]  pci0000:00: Requesting ACPI _OSC control (0x1d)
[    0.500748] \_SB_.PCI0:_OSC invalid UUID
[    0.500749] _OSC request data:1 0 1d 
[    0.500752]  pci0000:00: ACPI _OSC request failed (AE_ERROR), returned control mask: 0x1d
[    0.500753] ACPI _OSC control for PCIe not granted, disabling ASPM
[    0.503148] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 10 *11 12 14 15)
[    0.503188] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 *10 11 12 14 15)
[    0.503226] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.503266] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 *10 11 12 14 15)
[    0.503303] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.503340] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 10 11 12 14 15) *7
[    0.503378] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 10 11 12 14 15) *7
[    0.503414] ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 10 *11 12 14 15)
[    0.503501] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
[    0.503507] vgaarb: loaded
[    0.503508] vgaarb: bridge control possible 0000:00:02.0
[    0.503582] i2c-core: driver [aat2870] using legacy suspend method
[    0.503583] i2c-core: driver [aat2870] using legacy resume method
[    0.503630] SCSI subsystem initialized
[    0.503672] libata version 3.00 loaded.
[    0.503703] usbcore: registered new interface driver usbfs
[    0.503712] usbcore: registered new interface driver hub
[    0.503730] usbcore: registered new device driver usb
[    0.503794] PCI: Using ACPI for IRQ routing
[    0.505346] PCI: pci_cache_line_size set to 64 bytes
[    0.505453] reserve RAM buffer: 000000000009d400 - 000000000009ffff 
[    0.505455] reserve RAM buffer: 0000000040004000 - 0000000043ffffff 
[    0.505457] reserve RAM buffer: 00000000b3fed000 - 00000000b3ffffff 
[    0.505459] reserve RAM buffer: 00000000b4db0000 - 00000000b7ffffff 
[    0.505460] reserve RAM buffer: 00000000baabf000 - 00000000bbffffff 
[    0.505462] reserve RAM buffer: 00000000bb000000 - 00000000bbffffff 
[    0.505464] reserve RAM buffer: 000000013f600000 - 000000013fffffff 
[    0.505539] NetLabel: Initializing
[    0.505541] NetLabel:  domain hash size = 128
[    0.505542] NetLabel:  protocols = UNLABELED CIPSOv4
[    0.505551] NetLabel:  unlabeled traffic allowed by default
[    0.505595] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    0.505600] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[    0.507611] Switching to clocksource hpet
[    0.512389] AppArmor: AppArmor Filesystem Enabled
[    0.512412] pnp: PnP ACPI init
[    0.512423] ACPI: bus type pnp registered
[    0.512691] pnp 00:00: [bus 00-3e]
[    0.512694] pnp 00:00: [io  0x0000-0x0cf7 window]
[    0.512696] pnp 00:00: [io  0x0cf8-0x0cff]
[    0.512697] pnp 00:00: [io  0x0d00-0xffff window]
[    0.512699] pnp 00:00: [mem 0x000a0000-0x000bffff window]
[    0.512701] pnp 00:00: [mem 0x000c0000-0x000c3fff window]
[    0.512702] pnp 00:00: [mem 0x000c4000-0x000c7fff window]
[    0.512704] pnp 00:00: [mem 0x000c8000-0x000cbfff window]
[    0.512705] pnp 00:00: [mem 0x000cc000-0x000cffff window]
[    0.512707] pnp 00:00: [mem 0x000d0000-0x000d3fff window]
[    0.512709] pnp 00:00: [mem 0x000d4000-0x000d7fff window]
[    0.512710] pnp 00:00: [mem 0x000d8000-0x000dbfff window]
[    0.512712] pnp 00:00: [mem 0x000dc000-0x000dffff window]
[    0.512713] pnp 00:00: [mem 0x000e0000-0x000e3fff window]
[    0.512715] pnp 00:00: [mem 0x000e4000-0x000e7fff window]
[    0.512717] pnp 00:00: [mem 0x000e8000-0x000ebfff window]
[    0.512718] pnp 00:00: [mem 0x000ec000-0x000effff window]
[    0.512720] pnp 00:00: [mem 0x000f0000-0x000fffff window]
[    0.512721] pnp 00:00: [mem 0xbfa00000-0xfeafffff window]
[    0.512723] pnp 00:00: [mem 0x00010000-0x0001ffff window]
[    0.512782] pnp 00:00: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active)
[    0.512793] pnp 00:01: [io  0x0000-0x001f]
[    0.512794] pnp 00:01: [io  0x0081-0x0091]
[    0.512796] pnp 00:01: [io  0x0093-0x009f]
[    0.512797] pnp 00:01: [io  0x00c0-0x00df]
[    0.512799] pnp 00:01: [dma 4]
[    0.512816] pnp 00:01: Plug and Play ACPI device, IDs PNP0200 (active)
[    0.512822] pnp 00:02: [mem 0xff010000-0xffffffff]
[    0.512837] pnp 00:02: Plug and Play ACPI device, IDs INT0800 (active)
[    0.512899] pnp 00:03: [mem 0xfed00000-0xfed003ff]
[    0.512916] pnp 00:03: Plug and Play ACPI device, IDs PNP0103 (active)
[    0.512923] pnp 00:04: [io  0x00f0]
[    0.512932] pnp 00:04: [irq 13]
[    0.512949] pnp 00:04: Plug and Play ACPI device, IDs PNP0c04 (active)
[    0.512957] pnp 00:05: [io  0x002e-0x002f]
[    0.512958] pnp 00:05: [io  0x004e-0x004f]
[    0.512959] pnp 00:05: [io  0x0061]
[    0.512961] pnp 00:05: [io  0x0063]
[    0.512962] pnp 00:05: [io  0x0065]
[    0.512963] pnp 00:05: [io  0x0067]
[    0.512964] pnp 00:05: [io  0x0070]
[    0.512966] pnp 00:05: [io  0x0080]
[    0.512967] pnp 00:05: [io  0x0092]
[    0.512968] pnp 00:05: [io  0x00b2-0x00b3]
[    0.512970] pnp 00:05: [io  0x0680-0x069f]
[    0.512971] pnp 00:05: [io  0x1000-0x100f]
[    0.512972] pnp 00:05: [io  0xffff]
[    0.512974] pnp 00:05: [io  0xffff]
[    0.512975] pnp 00:05: [io  0x0400-0x0453]
[    0.512976] pnp 00:05: [io  0x0458-0x047f]
[    0.512978] pnp 00:05: [io  0x0500-0x057f]
[    0.512979] pnp 00:05: [io  0x164e-0x164f]
[    0.512980] pnp 00:05: [io  0xfd60-0xfd63]
[    0.513016] system 00:05: [io  0x0680-0x069f] has been reserved
[    0.513018] system 00:05: [io  0x1000-0x100f] has been reserved
[    0.513020] system 00:05: [io  0xffff] has been reserved
[    0.513021] system 00:05: [io  0xffff] has been reserved
[    0.513023] system 00:05: [io  0x0400-0x0453] has been reserved
[    0.513025] system 00:05: [io  0x0458-0x047f] has been reserved
[    0.513027] system 00:05: [io  0x0500-0x057f] has been reserved
[    0.513029] system 00:05: [io  0x164e-0x164f] has been reserved
[    0.513031] system 00:05: [io  0xfd60-0xfd63] has been reserved
[    0.513033] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.513039] pnp 00:06: [io  0x0070-0x0077]
[    0.513044] pnp 00:06: [irq 8]
[    0.513061] pnp 00:06: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.513081] pnp 00:07: [io  0x0454-0x0457]
[    0.513107] system 00:07: [io  0x0454-0x0457] has been reserved
[    0.513109] system 00:07: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
[    0.513117] pnp 00:08: [io  0x0060]
[    0.513119] pnp 00:08: [io  0x0064]
[    0.513123] pnp 00:08: [irq 1]
[    0.513141] pnp 00:08: Plug and Play ACPI device, IDs PNP0303 (active)
[    0.513197] pnp 00:09: [irq 12]
[    0.513215] pnp 00:09: Plug and Play ACPI device, IDs ETD0612 ETD0001 PNP0f13 (active)
[    0.555667] pnp 00:0a: [mem 0xfed1c000-0xfed1ffff]
[    0.555670] pnp 00:0a: [mem 0xfed10000-0xfed17fff]
[    0.555671] pnp 00:0a: [mem 0xfed18000-0xfed18fff]
[    0.555672] pnp 00:0a: [mem 0xfed19000-0xfed19fff]
[    0.555674] pnp 00:0a: [mem 0xf0000000-0xf3ffffff]
[    0.555675] pnp 00:0a: [mem 0xfed20000-0xfed3ffff]
[    0.555677] pnp 00:0a: [mem 0xfed90000-0xfed93fff]
[    0.555678] pnp 00:0a: [mem 0xff000000-0xff000fff]
[    0.555680] pnp 00:0a: [mem 0xff010000-0xffffffff]
[    0.555681] pnp 00:0a: [mem 0xfee00000-0xfeefffff]
[    0.555683] pnp 00:0a: [mem 0xbfa00000-0xbfa00fff]
[    0.555741] system 00:0a: [mem 0xfed1c000-0xfed1ffff] has been reserved
[    0.555743] system 00:0a: [mem 0xfed10000-0xfed17fff] has been reserved
[    0.555745] system 00:0a: [mem 0xfed18000-0xfed18fff] has been reserved
[    0.555747] system 00:0a: [mem 0xfed19000-0xfed19fff] has been reserved
[    0.555749] system 00:0a: [mem 0xf0000000-0xf3ffffff] has been reserved
[    0.555751] system 00:0a: [mem 0xfed20000-0xfed3ffff] has been reserved
[    0.555753] system 00:0a: [mem 0xfed90000-0xfed93fff] has been reserved
[    0.555755] system 00:0a: [mem 0xff000000-0xff000fff] has been reserved
[    0.555757] system 00:0a: [mem 0xff010000-0xffffffff] could not be reserved
[    0.555759] system 00:0a: [mem 0xfee00000-0xfeefffff] could not be reserved
[    0.555761] system 00:0a: [mem 0xbfa00000-0xbfa00fff] has been reserved
[    0.555764] system 00:0a: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.556053] pnp 00:0b: [mem 0x20000000-0x201fffff]
[    0.556054] pnp 00:0b: [mem 0x40004000-0x40004fff]
[    0.556103] system 00:0b: [mem 0x20000000-0x201fffff] has been reserved
[    0.556105] system 00:0b: [mem 0x40004000-0x40004fff] has been reserved
[    0.556108] system 00:0b: Plug and Play ACPI device, IDs PNP0c01 (active)
[    0.556123] pnp: PnP ACPI: found 12 devices
[    0.556124] ACPI: ACPI bus type pnp unregistered
[    0.561739] pci 0000:01:00.0: no compatible bridge window for [mem 0xfff80000-0xffffffff pref]
[    0.561745] PCI: max bus depth: 1 pci_try_num: 2
[    0.561772] pci 0000:01:00.0: BAR 6: can't assign mem pref (size 0x80000)
[    0.561775] pci 0000:00:01.0: PCI bridge to [bus 01-01]
[    0.561777] pci 0000:00:01.0:   bridge window [io  0x3000-0x3fff]
[    0.561780] pci 0000:00:01.0:   bridge window [mem 0xd2000000-0xd2ffffff]
[    0.561782] pci 0000:00:01.0:   bridge window [mem 0xc0000000-0xd1ffffff 64bit pref]
[    0.561786] pci 0000:00:1c.0: PCI bridge to [bus 02-02]
[    0.561789] pci 0000:00:1c.0:   bridge window [io  0x2000-0x2fff]
[    0.561795] pci 0000:00:1c.0:   bridge window [mem 0xd3500000-0xd35fffff]
[    0.561803] pci 0000:00:1c.1: PCI bridge to [bus 03-03]
[    0.561809] pci 0000:00:1c.1:   bridge window [mem 0xd3400000-0xd34fffff]
[    0.561830] pci 0000:00:01.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    0.561834] pci 0000:00:01.0: setting latency timer to 64
[    0.561843] pci 0000:00:1c.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
[    0.561848] pci 0000:00:1c.0: setting latency timer to 64
[    0.561855] pci 0000:00:1c.1: PCI INT B -> GSI 16 (level, low) -> IRQ 16
[    0.561859] pci 0000:00:1c.1: setting latency timer to 64
[    0.561864] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7]
[    0.561865] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff]
[    0.561867] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
[    0.561869] pci_bus 0000:00: resource 7 [mem 0xbfa00000-0xfeafffff]
[    0.561871] pci_bus 0000:01: resource 0 [io  0x3000-0x3fff]
[    0.561873] pci_bus 0000:01: resource 1 [mem 0xd2000000-0xd2ffffff]
[    0.561874] pci_bus 0000:01: resource 2 [mem 0xc0000000-0xd1ffffff 64bit pref]
[    0.561876] pci_bus 0000:02: resource 0 [io  0x2000-0x2fff]
[    0.561878] pci_bus 0000:02: resource 1 [mem 0xd3500000-0xd35fffff]
[    0.561880] pci_bus 0000:03: resource 1 [mem 0xd3400000-0xd34fffff]
[    0.561909] NET: Registered protocol family 2
[    0.562030] IP route cache hash table entries: 131072 (order: 8, 1048576 bytes)
[    0.562801] TCP established hash table entries: 524288 (order: 11, 8388608 bytes)
[    0.564447] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[    0.564661] TCP: Hash tables configured (established 524288 bind 65536)
[    0.564663] TCP reno registered
[    0.564673] UDP hash table entries: 2048 (order: 4, 65536 bytes)
[    0.564691] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
[    0.564769] NET: Registered protocol family 1
[    0.564781] pci 0000:00:02.0: Boot video device
[    0.564798] pci 0000:00:14.0: PCI INT A -> GSI 21 (level, low) -> IRQ 21
[    0.565985] pci 0000:00:14.0: PCI INT A disabled
[    0.565997] pci 0000:00:1a.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    0.606774] Freeing initrd memory: 21028k freed
[    2.161170] pci 0000:00:1a.0: EHCI: BIOS handoff failed (BIOS bug?) 01010001
[    2.161300] pci 0000:00:1a.0: PCI INT A disabled
[    2.161328] pci 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23
[    3.758787] pci 0000:00:1d.0: EHCI: BIOS handoff failed (BIOS bug?) 01010001
[    3.758901] pci 0000:00:1d.0: PCI INT A disabled
[    3.758966] PCI: CLS 64 bytes, default 64
[    3.758968] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    3.758970] Placing 64MB software IO TLB between ffff8800b6ab9000 - ffff8800baab9000
[    3.758972] software IO TLB at phys 0xb6ab9000 - 0xbaab9000
[    3.758981] Simple Boot Flag at 0x44 set to 0x1
[    3.759306] audit: initializing netlink socket (disabled)
[    3.759318] type=2000 audit(1363119011.628:1): initialized
[    3.786826] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    3.798759] VFS: Disk quotas dquot_6.5.2
[    3.798800] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    3.799149] fuse init (API version 7.17)
[    3.799222] msgmni has been set to 7639
[    3.799491] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
[    3.799512] io scheduler noop registered
[    3.799514] io scheduler deadline registered
[    3.799539] io scheduler cfq registered (default)
[    3.799608] pcieport 0000:00:01.0: setting latency timer to 64
[    3.799632] pcieport 0000:00:01.0: irq 40 for MSI/MSI-X
[    3.799763] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    3.799780] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    3.799815] intel_idle: MWAIT substates: 0x21120
[    3.799817] intel_idle: does not run on family 6 model 58
[    3.799857] ACPI: Deprecated procfs I/F for AC is loaded, please retry with CONFIG_ACPI_PROCFS_POWER cleared
[    3.799893] ACPI: AC Adapter [ACAD] (on-line)
[    3.799974] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:02/PNP0C0C:00/input/input0
[    3.799979] ACPI: Power Button [PWRB]
[    3.800006] input: Sleep Button as /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:02/PNP0C0E:00/input/input1
[    3.800009] ACPI: Sleep Button [SLPB]
[    3.800044] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input2
[    3.800064] ACPI: Lid Switch [LID0]
[    3.800092] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
[    3.800095] ACPI: Power Button [PWRF]
[    3.800422] Monitor-Mwait will be used to enter C-1 state
[    3.800444] Monitor-Mwait will be used to enter C-2 state
[    3.800455] ACPI: acpi_idle registered with cpuidle
[    3.844810] thermal LNXTHERM:00: registered as thermal_zone0
[    3.844812] ACPI: Thermal Zone [TZ00] (21 C)
[    3.844827] ACPI: Deprecated procfs I/F for battery is loaded, please retry with CONFIG_ACPI_PROCFS_POWER cleared
[    3.844833] ACPI: Battery Slot [BAT1] (battery present)
[    3.844874] ERST: Table is not found!
[    3.844875] GHES: HEST is not enabled!
[    3.844932] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    3.914582] ACPI: Battery Slot [BAT1] (battery present)
[    3.938830] Linux agpgart interface v0.103
[    3.938896] agpgart-intel 0000:00:00.0: Intel Ivybridge Chipset
[    3.939025] agpgart-intel 0000:00:00.0: detected gtt size: 2097152K total, 262144K mappable
[    3.939793] agpgart-intel 0000:00:00.0: detected 65536K stolen memory
[    3.939884] agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0xe0000000
[    3.940867] brd: module loaded
[    3.941385] loop: module loaded
[    3.941478] ahci 0000:00:1f.2: version 3.0
[    3.941496] ahci 0000:00:1f.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[    3.941535] ahci 0000:00:1f.2: irq 41 for MSI/MSI-X
[    3.941557] ahci: SSS flag set, parallel bus scan disabled
[    3.954532] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x5 impl SATA mode
[    3.954535] ahci 0000:00:1f.2: flags: 64bit ncq stag pm led clo pio slum part ems apst 
[    3.954540] ahci 0000:00:1f.2: setting latency timer to 64
[    3.962848] scsi0 : ahci
[    3.962918] scsi1 : ahci
[    3.962973] scsi2 : ahci
[    3.963026] scsi3 : ahci
[    3.963078] scsi4 : ahci
[    3.963131] scsi5 : ahci
[    3.963168] ata1: SATA max UDMA/133 abar m2048@0xd3617000 port 0xd3617100 irq 41
[    3.963170] ata2: DUMMY
[    3.963173] ata3: SATA max UDMA/133 abar m2048@0xd3617000 port 0xd3617200 irq 41
[    3.963174] ata4: DUMMY
[    3.963175] ata5: DUMMY
[    3.963176] ata6: DUMMY
[    3.963467] Fixed MDIO Bus: probed
[    3.963479] tun: Universal TUN/TAP device driver, 1.6
[    3.963481] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[    3.963522] PPP generic driver version 2.4.2
[    3.963591] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    3.963606] ehci_hcd 0000:00:1a.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    3.963622] ehci_hcd 0000:00:1a.0: setting latency timer to 64
[    3.963626] ehci_hcd 0000:00:1a.0: EHCI Host Controller
[    3.963664] ehci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 1
[    3.963685] ehci_hcd 0000:00:1a.0: debug port 2
[    3.967562] ehci_hcd 0000:00:1a.0: cache line size of 64 is not supported
[    3.967577] ehci_hcd 0000:00:1a.0: irq 16, io mem 0xd3619000
[    3.982463] ehci_hcd 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[    3.982568] hub 1-0:1.0: USB hub found
[    3.982571] hub 1-0:1.0: 2 ports detected
[    3.982619] ehci_hcd 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23
[    3.982631] ehci_hcd 0000:00:1d.0: setting latency timer to 64
[    3.982635] ehci_hcd 0000:00:1d.0: EHCI Host Controller
[    3.982670] ehci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
[    3.982689] ehci_hcd 0000:00:1d.0: debug port 2
[    3.986577] ehci_hcd 0000:00:1d.0: cache line size of 64 is not supported
[    3.986589] ehci_hcd 0000:00:1d.0: irq 23, io mem 0xd3618000
[    4.002429] ehci_hcd 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[    4.002521] hub 2-0:1.0: USB hub found
[    4.002523] hub 2-0:1.0: 2 ports detected
[    4.002565] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    4.002574] uhci_hcd: USB Universal Host Controller Interface driver
[    4.002595] xhci_hcd 0000:00:14.0: PCI INT A -> GSI 21 (level, low) -> IRQ 21
[    4.002621] xhci_hcd 0000:00:14.0: setting latency timer to 64
[    4.002625] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    4.002657] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 3
[    4.002742] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
[    4.002753] xhci_hcd 0000:00:14.0: irq 21, io mem 0xd3600000
[    4.002800] xhci_hcd 0000:00:14.0: irq 42 for MSI/MSI-X
[    4.002889] xHCI xhci_add_endpoint called for root hub
[    4.002890] xHCI xhci_check_bandwidth called for root hub
[    4.002908] hub 3-0:1.0: USB hub found
[    4.002916] hub 3-0:1.0: 4 ports detected
[    4.002957] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    4.002986] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 4
[    4.003042] xHCI xhci_add_endpoint called for root hub
[    4.003044] xHCI xhci_check_bandwidth called for root hub
[    4.003061] hub 4-0:1.0: USB hub found
[    4.003067] hub 4-0:1.0: 4 ports detected
[    4.022439] usbcore: registered new interface driver libusual
[    4.022467] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:MSS5] at 0x60,0x64 irq 1,12
[    4.035929] serio: i8042 KBD port at 0x60,0x64 irq 1
[    4.035933] serio: i8042 AUX port at 0x60,0x64 irq 12
[    4.036028] mousedev: PS/2 mouse device common for all mice
[    4.036293] rtc_cmos 00:06: RTC can wake from S4
[    4.036389] rtc_cmos 00:06: rtc core: registered rtc_cmos as rtc0
[    4.036417] rtc0: alarms up to one month, 242 bytes nvram, hpet irqs
[    4.036476] device-mapper: uevent: version 1.0.3
[    4.036527] device-mapper: ioctl: 4.22.0-ioctl (2011-10-19) initialised: dm-devel@redhat.com
[    4.036561] cpuidle: using governor ladder
[    4.036606] cpuidle: using governor menu
[    4.036608] EFI Variables Facility v0.08 2004-May-17
[    4.036753] TCP cubic registered
[    4.036829] NET: Registered protocol family 10
[    4.037137] NET: Registered protocol family 17
[    4.037147] Registering the dns_resolver key type
[    4.037346] PM: Hibernation image not present or could not be loaded.
[    4.037357] registered taskstats version 1
[    4.048147]   Magic number: 5:620:194
[    4.048227] rtc_cmos 00:06: setting system clock to 2013-03-12 20:10:13 UTC (1363119013)
[    4.048555] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[    4.048556] EDD information not available.
[    4.051950] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input4
[    4.282097] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    4.283260] ata1.00: ATA-8: ST500LT012-9WS142, 0001LVM1, max UDMA/133
[    4.283263] ata1.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 31/32)
[    4.284181] ata1.00: configured for UDMA/133
[    4.284367] scsi 0:0:0:0: Direct-Access     ATA      ST500LT012-9WS14 0001 PQ: 0 ANSI: 5
[    4.284479] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    4.284511] sd 0:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/465 GiB)
[    4.284514] sd 0:0:0:0: [sda] 4096-byte physical blocks
[    4.284565] sd 0:0:0:0: [sda] Write Protect is off
[    4.284567] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    4.284671] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    4.294039] usb 1-1: new high-speed USB device number 2 using ehci_hcd
[    4.328626]  sda: sda1 sda2 < sda5 >
[    4.329436] sd 0:0:0:0: [sda] Attached SCSI disk
[    4.426538] hub 1-1:1.0: USB hub found
[    4.426770] hub 1-1:1.0: 6 ports detected
[    4.537654] usb 2-1: new high-speed USB device number 2 using ehci_hcd
[    4.601600] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    4.607570] ata3.00: ATAPI: PLDS DVD-RW DS8A8SH, KL31, max UDMA/100
[    4.608601] ata3.00: configured for UDMA/100
[    4.616248] scsi 2:0:0:0: CD-ROM            PLDS     DVD-RW DS8A8SH   KL31 PQ: 0 ANSI: 5
[    4.625576] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
[    4.625579] cdrom: Uniform CD-ROM driver Revision: 3.20
[    4.625737] sr 2:0:0:0: Attached scsi CD-ROM sr0
[    4.625853] sr 2:0:0:0: Attached scsi generic sg1 type 5
[    4.627645] Freeing unused kernel memory: 920k freed
[    4.627747] Write protecting the kernel read-only data: 12288k
[    4.631909] Freeing unused kernel memory: 1608k freed
[    4.635128] Freeing unused kernel memory: 1196k freed
[    4.649551] udevd[103]: starting version 175
[    4.669982] hub 2-1:1.0: USB hub found
[    4.670075] hub 2-1:1.0: 6 ports detected
[    4.684948] [drm] Initialized drm 1.1.0 20060810
[    4.692550] i915 0000:00:02.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    4.692554] i915 0000:00:02.0: setting latency timer to 64
[    4.693997] wmi: Mapper loaded
[    4.699783] VGA switcheroo: detected Optimus DSM method \ handle
[    4.699811] nouveau 0000:01:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    4.699816] nouveau 0000:01:00.0: setting latency timer to 64
[    4.741475] usb 1-1.3: new full-speed USB device number 3 using ehci_hcd
[    4.776539] Refined TSC clocksource calibration: 2394.561 MHz.
[    4.776543] Switching to clocksource tsc
[    4.782075] i915 0000:00:02.0: irq 43 for MSI/MSI-X
[    4.782080] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
[    4.782081] [drm] Driver supports precise vblank timestamp query.
[    4.782136] [drm:intel_dsm_platform_mux_info] *ERROR* MUX INFO call failed
[    4.782483] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
[    4.905309] usb 1-1.4: new high-speed USB device number 4 using ehci_hcd
[    5.069044] usb 2-1.6: new high-speed USB device number 3 using ehci_hcd
[    5.467761] fbcon: inteldrmfb (fb0) is primary device
[    5.467800] Console: switching to colour frame buffer device 170x48
[    5.467818] fb0: inteldrmfb frame buffer device
[    5.467819] drm: registered panic notifier
[    5.467975] [Firmware Bug]: ACPI(PEGP) defines _DOD but not _DOS
[    5.484995] acpi device:37: registered as cooling_device2
[    5.485235] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:35/LNXVIDEO:00/input/input5
[    5.485267] ACPI: Video Device [PEGP] (multi-head: yes  rom: yes  post: no)
[    5.505885] acpi device:43: registered as cooling_device3
[    5.506038] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:01/input/input6
[    5.506072] ACPI: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
[    5.506093] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
[    5.509397] [drm] nouveau 0000:01:00.0: Detected an NVd0 generation card (0x0d7000a2)
[    5.517244] vga_switcheroo: enabled
[    5.517254] [drm] nouveau 0000:01:00.0: Attempting to load BIOS image from PRAMIN
[    5.565301] [drm] nouveau 0000:01:00.0: ... BIOS signature not found
[    5.565303] [drm] nouveau 0000:01:00.0: Attempting to load BIOS image from PROM
[    5.565312] [drm] nouveau 0000:01:00.0: ... BIOS signature not found
[    5.565313] [drm] nouveau 0000:01:00.0: Attempting to load BIOS image from PCIROM
[    5.565315] [drm] nouveau 0000:01:00.0: ... BIOS signature not found
[    5.565316] [drm] nouveau 0000:01:00.0: Attempting to load BIOS image from ACPI
[    5.565320] [drm] nouveau 0000:01:00.0: ... BIOS signature not found
[    5.565322] [drm] nouveau 0000:01:00.0: No valid BIOS image found
[    5.570295] nouveau 0000:01:00.0: PCI INT A disabled
[    6.273730] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
[   17.363217] udevd[389]: starting version 175
[   17.365408] Adding 4058108k swap on /dev/sda5.  Priority:-1 extents:1 across:4058108k 
[   17.400340] mei: module is from the staging directory, the quality is unknown, you have been warned.
[   17.400633] mei 0000:00:16.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[   17.400640] mei 0000:00:16.0: setting latency timer to 64
[   17.400696] mei 0000:00:16.0: irq 44 for MSI/MSI-X
[   17.406607] lp: driver loaded but no devices found
[   17.460743] input: Ideapad extra buttons as /devices/platform/ideapad/input/input7
[   17.492103] cfg80211: Calling CRDA to update world regulatory domain
[   17.498496] Linux video capture interface: v2.00
[   17.499495] uvcvideo: Found UVC 1.00 device Lenovo EasyCamera (5986:0295)
[   17.501716] input: Lenovo EasyCamera as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.6/2-1.6:1.0/input/input8
[   17.501769] usbcore: registered new interface driver uvcvideo
[   17.501771] USB Video Class driver (1.1.1)
[   17.520941] rts5139: module is from the staging directory, the quality is unknown, you have been warned.
[   17.521830] Initializing rts5139 USB card reader driver...
[   17.522500] brcmsmac 0000:03:00.0: bus 3 slot 0 func 0 irq 10
[   17.522554] brcmsmac 0000:03:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
[   17.522561] brcmsmac 0000:03:00.0: setting latency timer to 64
[   17.527715] scsi6 : SCSI emulation for RTS5139 USB card reader
[   17.530249] scsi 6:0:0:0: Direct-Access     Generic- xD/SD/M.S.       1.00 PQ: 0 ANSI: 0 CCS
[   17.530737] sd 6:0:0:0: Attached scsi generic sg2 type 0
[   17.532161] usbcore: registered new interface driver rts5139
[   17.532164] Realtek rts5139 USB card reader support registered.
[   17.582951] EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro
[   17.603436] type=1400 audit(1363119027.073:2): apparmor="STATUS" operation="profile_load" name="/sbin/dhclient" pid=565 comm="apparmor_parser"
[   17.603760] type=1400 audit(1363119027.073:3): apparmor="STATUS" operation="profile_load" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=565 comm="apparmor_parser"
[   17.603945] type=1400 audit(1363119027.073:4): apparmor="STATUS" operation="profile_load" name="/usr/lib/connman/scripts/dhclient-script" pid=565 comm="apparmor_parser"
[   17.648707] cfg80211: World regulatory domain updated:
[   17.648710] cfg80211:     (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[   17.648713] cfg80211:     (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   17.648715] cfg80211:     (2457000 KHz - 2482000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[   17.648717] cfg80211:     (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[   17.648718] cfg80211:     (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   17.648720] cfg80211:     (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   17.700045] cfg80211: Updating information on frequency 2412 MHz for a 20 MHz width channel with regulatory rule:
[   17.700048] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   17.700050] cfg80211: Updating information on frequency 2417 MHz for a 20 MHz width channel with regulatory rule:
[   17.700052] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   17.700054] cfg80211: Updating information on frequency 2422 MHz for a 20 MHz width channel with regulatory rule:
[   17.700056] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   17.700058] cfg80211: Updating information on frequency 2427 MHz for a 20 MHz width channel with regulatory rule:
[   17.700060] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   17.700061] cfg80211: Updating information on frequency 2432 MHz for a 20 MHz width channel with regulatory rule:
[   17.700063] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   17.700065] cfg80211: Updating information on frequency 2437 MHz for a 20 MHz width channel with regulatory rule:
[   17.700067] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   17.700069] cfg80211: Updating information on frequency 2442 MHz for a 20 MHz width channel with regulatory rule:
[   17.700071] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   17.700072] cfg80211: Updating information on frequency 2447 MHz for a 20 MHz width channel with regulatory rule:
[   17.700074] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   17.700076] cfg80211: Updating information on frequency 2452 MHz for a 20 MHz width channel with regulatory rule:
[   17.700078] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   17.700080] cfg80211: Updating information on frequency 2457 MHz for a 20 MHz width channel with regulatory rule:
[   17.700082] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   17.700083] cfg80211: Updating information on frequency 2462 MHz for a 20 MHz width channel with regulatory rule:
[   17.700085] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   17.700087] cfg80211: Updating information on frequency 2467 MHz for a 20 MHz width channel with regulatory rule:
[   17.700089] cfg80211: 2457000 KHz - 2482000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[   17.700091] cfg80211: Updating information on frequency 2472 MHz for a 20 MHz width channel with regulatory rule:
[   17.700093] cfg80211: 2457000 KHz - 2482000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[   17.700094] cfg80211: Updating information on frequency 2484 MHz for a 20 MHz width channel with regulatory rule:
[   17.700096] cfg80211: 2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[   17.893162] psmouse serio1: elantech: assuming hardware version 3 (with firmware version 0x450f02)
[   17.958001] psmouse serio1: elantech: Synaptics capabilities query result 0x78, 0x17, 0x0b.
[   18.112933] input: ETPS/2 Elantech Touchpad as /devices/platform/i8042/serio1/input/input9
[   18.132922] init: failsafe main process (697) killed by TERM signal
[   18.167151] Bluetooth: Core ver 2.16
[   18.167205] NET: Registered protocol family 31
[   18.167208] Bluetooth: HCI device and connection manager initialized
[   18.167210] Bluetooth: HCI socket layer initialized
[   18.167211] Bluetooth: L2CAP socket layer initialized
[   18.167645] Bluetooth: SCO socket layer initialized
[   18.173067] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[   18.173070] Bluetooth: BNEP filters: protocol multicast
[   18.194218] type=1400 audit(1363119027.665:5): apparmor="STATUS" operation="profile_load" name="/usr/lib/cups/backend/cups-pdf" pid=773 comm="apparmor_parser"
[   18.196195] type=1400 audit(1363119027.665:6): apparmor="STATUS" operation="profile_load" name="/usr/sbin/cupsd" pid=773 comm="apparmor_parser"
[   18.196895] type=1400 audit(1363119027.665:7): apparmor="STATUS" operation="profile_replace" name="/sbin/dhclient" pid=772 comm="apparmor_parser"
[   18.197230] type=1400 audit(1363119027.665:8): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=772 comm="apparmor_parser"
[   18.197506] type=1400 audit(1363119027.669:9): apparmor="STATUS" operation="profile_replace" name="/usr/lib/connman/scripts/dhclient-script" pid=772 comm="apparmor_parser"
[   18.239796] ppdev: user-space parallel port driver
[   18.293549] type=1400 audit(1363119027.765:10): apparmor="STATUS" operation="profile_load" name="/usr/sbin/mysqld-akonadi" pid=774 comm="apparmor_parser"
[   18.293745] type=1400 audit(1363119027.765:11): apparmor="STATUS" operation="profile_load" name="/usr/sbin/mysqld-akonadi///usr/sbin/mysqld" pid=774 comm="apparmor_parser"
[   18.483818] init: alsa-restore main process (835) terminated with status 19
[   18.847036] sd 6:0:0:0: [sdb] 60800 512-byte logical blocks: (31.1 MB/29.6 MiB)
[   18.847051] sd 6:0:0:0: [sdb] Write Protect is off
[   18.847053] sd 6:0:0:0: [sdb] Mode Sense: 67 10 00 00
[   18.847065] sd 6:0:0:0: [sdb] Cache data unavailable
[   18.847066] sd 6:0:0:0: [sdb] Assuming drive cache: write through
[   18.848797] sd 6:0:0:0: [sdb] Cache data unavailable
[   18.848800] sd 6:0:0:0: [sdb] Assuming drive cache: write through
[   18.850266]  sdb: sdb1
[   18.851906] sd 6:0:0:0: [sdb] Cache data unavailable
[   18.851908] sd 6:0:0:0: [sdb] Assuming drive cache: write through
[   18.851910] sd 6:0:0:0: [sdb] Attached SCSI removable disk
[   18.853238] snd_hda_intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
[   18.853293] snd_hda_intel 0000:00:1b.0: irq 45 for MSI/MSI-X
[   18.853317] snd_hda_intel 0000:00:1b.0: setting latency timer to 64
[   18.853784] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
[   18.854847] cfg80211: Calling CRDA for country: US
[   18.871173] Bluetooth: RFCOMM TTY layer initialized
[   18.871178] Bluetooth: RFCOMM socket layer initialized
[   18.871179] Bluetooth: RFCOMM ver 1.11
[   18.894556] cfg80211: Updating information on frequency 2412 MHz for a 20 MHz width channel with regulatory rule:
[   18.894560] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[   18.894562] cfg80211: Updating information on frequency 2417 MHz for a 20 MHz width channel with regulatory rule:
[   18.894565] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[   18.894566] cfg80211: Updating information on frequency 2422 MHz for a 20 MHz width channel with regulatory rule:
[   18.894568] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[   18.894570] cfg80211: Updating information on frequency 2427 MHz for a 20 MHz width channel with regulatory rule:
[   18.894572] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[   18.894574] cfg80211: Updating information on frequency 2432 MHz for a 20 MHz width channel with regulatory rule:
[   18.894576] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[   18.894577] cfg80211: Updating information on frequency 2437 MHz for a 20 MHz width channel with regulatory rule:
[   18.894579] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[   18.894581] cfg80211: Updating information on frequency 2442 MHz for a 20 MHz width channel with regulatory rule:
[   18.894583] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[   18.894585] cfg80211: Updating information on frequency 2447 MHz for a 20 MHz width channel with regulatory rule:
[   18.894587] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[   18.894588] cfg80211: Updating information on frequency 2452 MHz for a 20 MHz width channel with regulatory rule:
[   18.894590] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[   18.894592] cfg80211: Updating information on frequency 2457 MHz for a 20 MHz width channel with regulatory rule:
[   18.894594] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[   18.894596] cfg80211: Updating information on frequency 2462 MHz for a 20 MHz width channel with regulatory rule:
[   18.894598] cfg80211: 2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[   18.894599] cfg80211: Disabling freq 2467 MHz
[   18.894600] cfg80211: Disabling freq 2472 MHz
[   18.894602] cfg80211: Disabling freq 2484 MHz
[   18.894604] cfg80211: Regulatory domain changed to country: US
[   18.894605] cfg80211:     (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[   18.894607] cfg80211:     (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[   18.894609] cfg80211:     (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 1700 mBm)
[   18.894611] cfg80211:     (5250000 KHz - 5330000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   18.894613] cfg80211:     (5490000 KHz - 5600000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   18.894614] cfg80211:     (5650000 KHz - 5710000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   18.894616] cfg80211:     (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 3000 mBm)
[   18.951088] ieee80211 phy0: brcms_ops_config: change monitor mode: false (implement)
[   18.951092] ieee80211 phy0: brcms_ops_config: change power-save mode: false (implement)
[   18.952148] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[   18.952547] ADDRCONF(NETDEV_UP): wlan0: link is not ready
[   18.952763] ADDRCONF(NETDEV_UP): wlan0: link is not ready
[   19.336337] init: plymouth-stop pre-start process (1067) terminated with status 1
[   19.401075] HDMI status: Codec=3 Pin=5 Presence_Detect=0 ELD_Valid=0
[   19.401139] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1b.0/sound/card0/input10
[  397.811317] sd 6:0:0:0: [sdb] 60800 512-byte logical blocks: (31.1 MB/29.6 MiB)
[  397.811387] sd 6:0:0:0: [sdb] Cache data unavailable
[  397.811391] sd 6:0:0:0: [sdb] Assuming drive cache: write through
[  397.812678] sd 6:0:0:0: [sdb] Cache data unavailable
[  397.812683] sd 6:0:0:0: [sdb] Assuming drive cache: write through
[  397.814257]  sdb: sdb1
[  869.759358] sdb: detected capacity change from 31129600 to 0
[  883.364690] sd 6:0:0:0: [sdb] 60800 512-byte logical blocks: (31.1 MB/29.6 MiB)
[  883.364741] sd 6:0:0:0: [sdb] Cache data unavailable
[  883.364744] sd 6:0:0:0: [sdb] Assuming drive cache: write through
[  883.365773] sd 6:0:0:0: [sdb] Cache data unavailable
[  883.365779] sd 6:0:0:0: [sdb] Assuming drive cache: write through
[  883.367453]  sdb: sdb1
joshi@Joshi-PC:~$ lsmod
Module                  Size  Used by
nls_iso8859_1          12713  0 
nls_cp437              16991  0 
vfat                   17585  0 
fat                    61512  1 vfat
dm_crypt               23125  0 
snd_hda_codec_hdmi     32474  1 
snd_hda_codec_conexant    62128  1 
rfcomm                 47604  0 
parport_pc             32866  0 
bcma                   26696  0 
snd_hda_intel          33773  3 
ppdev                  17113  0 
bnep                   18281  2 
bluetooth             180104  10 rfcomm,bnep
joydev                 17693  0 
arc4                   12529  2 
snd_hda_codec         127706  3 snd_hda_codec_hdmi,snd_hda_codec_conexant,snd_hda_intel
snd_hwdep              13668  1 snd_hda_codec
snd_pcm                97188  3 snd_hda_codec_hdmi,snd_hda_intel,snd_hda_codec
snd_seq_midi           13324  0 
brcmsmac              570859  0 
rts5139               351143  0 
mac80211              506816  1 brcmsmac
snd_rawmidi            30748  1 snd_seq_midi
snd_seq_midi_event     14899  1 snd_seq_midi
snd_seq                61896  2 snd_seq_midi,snd_seq_midi_event
snd_timer              29990  2 snd_pcm,snd_seq
snd_seq_device         14540  3 snd_seq_midi,snd_rawmidi,snd_seq
uvcvideo               72627  0 
brcmutil               15139  1 brcmsmac
videodev               98259  1 uvcvideo
v4l2_compat_ioctl32    17128  1 videodev
psmouse                87603  0 
serio_raw              13211  0 
snd                    78855  16 snd_hda_codec_hdmi,snd_hda_codec_conexant,snd_hda_intel,snd_hda_codec,snd_hwdep,snd_pcm,snd_rawmidi,snd_seq,snd_timer,snd_seq_device
cfg80211              205544  2 brcmsmac,mac80211
crc8                   12893  1 brcmsmac
cordic                 12535  1 brcmsmac
ideapad_laptop         18234  0 
sparse_keymap          13890  1 ideapad_laptop
soundcore              15091  1 snd
snd_page_alloc         18529  2 snd_hda_intel,snd_pcm
mac_hid                13253  0 
mei                    41616  0 
lp                     17799  0 
parport                46562  3 parport_pc,ppdev,lp
nouveau               774571  0 
ttm                    76949  1 nouveau
mxm_wmi                12979  1 nouveau
wmi                    19256  1 mxm_wmi
i915                  468651  3 
drm_kms_helper         46978  2 nouveau,i915
drm                   242038  6 nouveau,ttm,i915,drm_kms_helper
i2c_algo_bit           13423  2 nouveau,i915
video                  19596  2 nouveau,i915
joshi@Joshi-PC:~$ lspci
00:00.0 Host bridge: Intel Corporation Ivy Bridge DRAM Controller (rev 09)
00:01.0 PCI bridge: Intel Corporation Ivy Bridge PCI Express Root Port (rev 09)
00:02.0 VGA compatible controller: Intel Corporation Ivy Bridge Graphics Controller (rev 09)
00:14.0 USB controller: Intel Corporation Panther Point USB xHCI Host Controller (rev 04)
00:16.0 Communication controller: Intel Corporation Panther Point MEI Controller #1 (rev 04)
00:1a.0 USB controller: Intel Corporation Panther Point USB Enhanced Host Controller #2 (rev 04)
00:1b.0 Audio device: Intel Corporation Panther Point High Definition Audio Controller (rev 04)
00:1c.0 PCI bridge: Intel Corporation Panther Point PCI Express Root Port 1 (rev c4)
00:1c.1 PCI bridge: Intel Corporation Panther Point PCI Express Root Port 2 (rev c4)
00:1d.0 USB controller: Intel Corporation Panther Point USB Enhanced Host Controller #1 (rev 04)
00:1f.0 ISA bridge: Intel Corporation Panther Point LPC Controller (rev 04)
00:1f.2 SATA controller: Intel Corporation Panther Point 6 port SATA Controller [AHCI mode] (rev 04)
00:1f.3 SMBus: Intel Corporation Panther Point SMBus Controller (rev 04)
01:00.0 3D controller: NVIDIA Corporation Device 1140 (rev a1)
02:00.0 Ethernet controller: Atheros Communications Inc. AR8161 Gigabit Ethernet (rev 10)
03:00.0 Network controller: Broadcom Corporation BCM4313 802.11b/g/n Wireless LAN Controller (rev 01)
joshi@Joshi-PC:~$ lspci -kkn
00:00.0 0600: 8086:0154 (rev 09)
        Subsystem: 17aa:3977
        Kernel driver in use: agpgart-intel
00:01.0 0604: 8086:0151 (rev 09)
        Kernel driver in use: pcieport
        Kernel modules: shpchp
00:02.0 0300: 8086:0156 (rev 09)
        Subsystem: 17aa:3901
        Kernel driver in use: i915
        Kernel modules: i915
00:14.0 0c03: 8086:1e31 (rev 04)
        Subsystem: 17aa:3977
        Kernel driver in use: xhci_hcd
00:16.0 0780: 8086:1e3a (rev 04)
        Subsystem: 17aa:3977
        Kernel driver in use: mei
        Kernel modules: mei
00:1a.0 0c03: 8086:1e2d (rev 04)
        Subsystem: 17aa:3977
        Kernel driver in use: ehci_hcd
00:1b.0 0403: 8086:1e20 (rev 04)
        Subsystem: 17aa:3977
        Kernel driver in use: snd_hda_intel
        Kernel modules: snd-hda-intel
00:1c.0 0604: 8086:1e10 (rev c4)
        Kernel driver in use: pcieport
        Kernel modules: shpchp
00:1c.1 0604: 8086:1e12 (rev c4)
        Kernel driver in use: pcieport
        Kernel modules: shpchp
00:1d.0 0c03: 8086:1e26 (rev 04)
        Subsystem: 17aa:3977
        Kernel driver in use: ehci_hcd
00:1f.0 0601: 8086:1e59 (rev 04)
        Subsystem: 17aa:3977
        Kernel modules: iTCO_wdt
00:1f.2 0106: 8086:1e03 (rev 04)
        Subsystem: 17aa:3977
        Kernel driver in use: ahci
00:1f.3 0c05: 8086:1e22 (rev 04)
        Subsystem: 17aa:3977
        Kernel modules: i2c-i801
01:00.0 0302: 10de:1140 (rev a1)
        Subsystem: 17aa:3901
        Kernel modules: nouveau, nvidiafb
02:00.0 0200: 1969:1091 (rev 10)
        Subsystem: 17aa:3979
03:00.0 0280: 14e4:4727 (rev 01)
        Subsystem: 14e4:0587
        Kernel driver in use: brcmsmac
        Kernel modules: bcma, brcmsmac
joshi@Joshi-PC:~$ ifconfig -a
lo        Link encap:Lokale Schleife  
          inet Adresse:127.0.0.1  Maske:255.0.0.0
          inet6-Adresse: ::1/128 Gültigkeitsbereich:Maschine
          UP LOOPBACK RUNNING  MTU:16436  Metrik:1
          RX packets:176 errors:0 dropped:0 overruns:0 frame:0
          TX packets:176 errors:0 dropped:0 overruns:0 carrier:0
          Kollisionen:0 Sendewarteschlangenlänge:0 
          RX-Bytes:12760 (12.7 KB)  TX-Bytes:12760 (12.7 KB)

wlan0     Link encap:Ethernet  Hardware Adresse 08:3e:8e:aa:96:15  
          UP BROADCAST MULTICAST  MTU:1500  Metrik:1
          RX packets:0 errors:0 dropped:0 overruns:0 frame:0
          TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
          Kollisionen:0 Sendewarteschlangenlänge:1000 
          RX-Bytes:0 (0.0 B)  TX-Bytes:0 (0.0 B)

joshi@Joshi-PC:~$