ubuntuusers.de

kern.log

Autor:
Tabea
Datum:
15. Juni 2012 20:25
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
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
Jun 15 14:25:13 ks384632 kernel: QLogic/NetXen Network Driver v4.0.77
Jun 15 14:25:13 ks384632 kernel: r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
Jun 15 14:25:13 ks384632 kernel: r8169 0000:01:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
Jun 15 14:25:13 ks384632 kernel: r8169 0000:01:00.0: setting latency timer to 64
Jun 15 14:25:13 ks384632 kernel: r8169 0000:01:00.0: irq 44 for MSI/MSI-X
Jun 15 14:25:13 ks384632 kernel: r8169 0000:01:00.0: eth0: RTL8168e/8111e at 0xffffc90000330000, 38:60:77:1b:2a:b2, XID 0c200000 IRQ 44
Jun 15 14:25:13 ks384632 kernel: r8169 0000:01:00.0: eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Jun 15 14:25:13 ks384632 kernel: PPP generic driver version 2.4.2
Jun 15 14:25:13 ks384632 kernel: PPP BSD Compression module registered
Jun 15 14:25:13 ks384632 kernel: PPP Deflate Compression module registered
Jun 15 14:25:13 ks384632 kernel: PPP MPPE Compression module registered
Jun 15 14:25:13 ks384632 kernel: NET: Registered protocol family 24
Jun 15 14:25:13 ks384632 kernel: VMware vmxnet3 virtual NIC driver - version 1.1.29.0-k-NAPI
Jun 15 14:25:13 ks384632 kernel: Fusion MPT base driver 3.04.20
Jun 15 14:25:13 ks384632 kernel: Copyright (c) 1999-2008 LSI Corporation
Jun 15 14:25:13 ks384632 kernel: Fusion MPT SPI Host driver 3.04.20
Jun 15 14:25:13 ks384632 kernel: Fusion MPT FC Host driver 3.04.20
Jun 15 14:25:13 ks384632 kernel: Fusion MPT SAS Host driver 3.04.20
Jun 15 14:25:13 ks384632 kernel: Fusion MPT misc device (ioctl) driver 3.04.20
Jun 15 14:25:13 ks384632 kernel: mptctl: Registered with Fusion MPT base driver
Jun 15 14:25:13 ks384632 kernel: mptctl: /dev/mptctl @ (major,minor=10,220)
Jun 15 14:25:13 ks384632 kernel: ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
Jun 15 14:25:13 ks384632 kernel: ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 23 (level, low) -> IRQ 23
Jun 15 14:25:13 ks384632 kernel: ehci_hcd 0000:00:1d.7: setting latency timer to 64
Jun 15 14:25:13 ks384632 kernel: ehci_hcd 0000:00:1d.7: EHCI Host Controller
Jun 15 14:25:13 ks384632 kernel: ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 1
Jun 15 14:25:13 ks384632 kernel: ehci_hcd 0000:00:1d.7: using broken periodic workaround
Jun 15 14:25:13 ks384632 kernel: ehci_hcd 0000:00:1d.7: debug port 1
Jun 15 14:25:13 ks384632 kernel: ehci_hcd 0000:00:1d.7: cache line size of 64 is not supported
Jun 15 14:25:13 ks384632 kernel: ehci_hcd 0000:00:1d.7: irq 23, io mem 0xe0280400
Jun 15 14:25:13 ks384632 kernel: ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00
Jun 15 14:25:13 ks384632 kernel: hub 1-0:1.0: USB hub found
Jun 15 14:25:13 ks384632 kernel: hub 1-0:1.0: 8 ports detected
Jun 15 14:25:13 ks384632 kernel: ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
Jun 15 14:25:13 ks384632 kernel: uhci_hcd: USB Universal Host Controller Interface driver
Jun 15 14:25:13 ks384632 kernel: uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23
Jun 15 14:25:13 ks384632 kernel: uhci_hcd 0000:00:1d.0: setting latency timer to 64
Jun 15 14:25:13 ks384632 kernel: uhci_hcd 0000:00:1d.0: UHCI Host Controller
Jun 15 14:25:13 ks384632 kernel: uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
Jun 15 14:25:13 ks384632 kernel: uhci_hcd 0000:00:1d.0: irq 23, io base 0x00002080
Jun 15 14:25:13 ks384632 kernel: hub 2-0:1.0: USB hub found
Jun 15 14:25:13 ks384632 kernel: hub 2-0:1.0: 2 ports detected
Jun 15 14:25:13 ks384632 kernel: uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 19 (level, low) -> IRQ 19
Jun 15 14:25:13 ks384632 kernel: uhci_hcd 0000:00:1d.1: setting latency timer to 64
Jun 15 14:25:13 ks384632 kernel: uhci_hcd 0000:00:1d.1: UHCI Host Controller
Jun 15 14:25:13 ks384632 kernel: uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 3
Jun 15 14:25:13 ks384632 kernel: uhci_hcd 0000:00:1d.1: irq 19, io base 0x00002060
Jun 15 14:25:13 ks384632 kernel: hub 3-0:1.0: USB hub found
Jun 15 14:25:13 ks384632 kernel: hub 3-0:1.0: 2 ports detected
Jun 15 14:25:13 ks384632 kernel: uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
Jun 15 14:25:13 ks384632 kernel: uhci_hcd 0000:00:1d.2: setting latency timer to 64
Jun 15 14:25:13 ks384632 kernel: uhci_hcd 0000:00:1d.2: UHCI Host Controller
Jun 15 14:25:13 ks384632 kernel: uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 4
Jun 15 14:25:13 ks384632 kernel: uhci_hcd 0000:00:1d.2: irq 18, io base 0x00002040
Jun 15 14:25:13 ks384632 kernel: hub 4-0:1.0: USB hub found
Jun 15 14:25:13 ks384632 kernel: hub 4-0:1.0: 2 ports detected
Jun 15 14:25:13 ks384632 kernel: uhci_hcd 0000:00:1d.3: PCI INT D -> GSI 16 (level, low) -> IRQ 16
Jun 15 14:25:13 ks384632 kernel: uhci_hcd 0000:00:1d.3: setting latency timer to 64
Jun 15 14:25:13 ks384632 kernel: uhci_hcd 0000:00:1d.3: UHCI Host Controller
Jun 15 14:25:13 ks384632 kernel: uhci_hcd 0000:00:1d.3: new USB bus registered, assigned bus number 5
Jun 15 14:25:13 ks384632 kernel: uhci_hcd 0000:00:1d.3: irq 16, io base 0x00002020
Jun 15 14:25:13 ks384632 kernel: hub 5-0:1.0: USB hub found
Jun 15 14:25:13 ks384632 kernel: hub 5-0:1.0: 2 ports detected
Jun 15 14:25:13 ks384632 kernel: Initializing USB Mass Storage driver...
Jun 15 14:25:13 ks384632 kernel: usbcore: registered new interface driver usb-storage
Jun 15 14:25:13 ks384632 kernel: USB Mass Storage support registered.
Jun 15 14:25:13 ks384632 kernel: usbcore: registered new interface driver libusual
Jun 15 14:25:13 ks384632 kernel: i8042: PNP: No PS/2 controller found. Probing ports directly.
Jun 15 14:25:13 ks384632 kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
Jun 15 14:25:13 ks384632 kernel: serio: i8042 AUX port at 0x60,0x64 irq 12
Jun 15 14:25:13 ks384632 kernel: mousedev: PS/2 mouse device common for all mice
Jun 15 14:25:13 ks384632 kernel: rtc_cmos 00:03: RTC can wake from S4
Jun 15 14:25:13 ks384632 kernel: rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0
Jun 15 14:25:13 ks384632 kernel: rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
Jun 15 14:25:13 ks384632 kernel: coretemp coretemp.0: Using relative temperature scale!
Jun 15 14:25:13 ks384632 kernel: via_cputemp: Not a VIA CPU
Jun 15 14:25:13 ks384632 kernel: w83627ehf: Found W83627DHG-P chip at 0x290
Jun 15 14:25:13 ks384632 kernel: Software Watchdog Timer: 0.07 initialized. soft_noboot=0 soft_margin=60 sec soft_panic=0 (nowayout= 0)
Jun 15 14:25:13 ks384632 kernel: md: linear personality registered for level -1
Jun 15 14:25:13 ks384632 kernel: md: raid0 personality registered for level 0
Jun 15 14:25:13 ks384632 kernel: md: raid1 personality registered for level 1
Jun 15 14:25:13 ks384632 kernel: md: raid10 personality registered for level 10
Jun 15 14:25:13 ks384632 kernel: md: raid6 personality registered for level 6
Jun 15 14:25:13 ks384632 kernel: md: raid5 personality registered for level 5
Jun 15 14:25:13 ks384632 kernel: md: raid4 personality registered for level 4
Jun 15 14:25:13 ks384632 kernel: md: multipath personality registered for level -4
Jun 15 14:25:13 ks384632 kernel: md: faulty personality registered for level -5
Jun 15 14:25:13 ks384632 kernel: device-mapper: ioctl: 4.22.0-ioctl (2011-10-19) initialised: dm-devel@redhat.com
Jun 15 14:25:13 ks384632 kernel: device-mapper: multipath: version 1.3.0 loaded
Jun 15 14:25:13 ks384632 kernel: device-mapper: multipath round-robin: version 1.0.0 loaded
Jun 15 14:25:13 ks384632 kernel: EDAC MC: Ver: 2.1.0
Jun 15 14:25:13 ks384632 kernel: AMD64 EDAC driver v3.4.0
Jun 15 14:25:13 ks384632 kernel: cpuidle: using governor ladder
Jun 15 14:25:13 ks384632 kernel: cpuidle: using governor menu
Jun 15 14:25:13 ks384632 kernel: EFI Variables Facility v0.08 2004-May-17
Jun 15 14:25:13 ks384632 kernel: No iBFT detected.
Jun 15 14:25:13 ks384632 kernel: usbcore: registered new interface driver usbhid
Jun 15 14:25:13 ks384632 kernel: usbhid: USB HID core driver
Jun 15 14:25:13 ks384632 kernel: Netfilter messages via NETLINK v0.30.
Jun 15 14:25:13 ks384632 kernel: nf_conntrack version 0.5.0 (16384 buckets, 65536 max)
Jun 15 14:25:13 ks384632 kernel: ctnetlink v0.93: registering with nfnetlink.
Jun 15 14:25:13 ks384632 kernel: xt_time: kernel timezone is -0000
Jun 15 14:25:13 ks384632 kernel: IPv4 over IPv4 tunneling driver
Jun 15 14:25:13 ks384632 kernel: ip_tables: (C) 2000-2006 Netfilter Core Team
Jun 15 14:25:13 ks384632 kernel: ipt_CLUSTERIP: ClusterIP Version 0.8 loaded successfully
Jun 15 14:25:13 ks384632 kernel: TCP cubic registered
Jun 15 14:25:13 ks384632 kernel: Initializing XFRM netlink socket
Jun 15 14:25:13 ks384632 kernel: NET: Registered protocol family 10
Jun 15 14:25:13 ks384632 kernel: ip6_tables: (C) 2000-2006 Netfilter Core Team
Jun 15 14:25:13 ks384632 kernel: IPv6 over IPv4 tunneling driver
Jun 15 14:25:13 ks384632 kernel: NET: Registered protocol family 17
Jun 15 14:25:13 ks384632 kernel: NET: Registered protocol family 15
Jun 15 14:25:13 ks384632 kernel: Bridge firewalling registered
Jun 15 14:25:13 ks384632 kernel: L2TP core driver, V2.0
Jun 15 14:25:13 ks384632 kernel: PPPoL2TP kernel driver, V2.0
Jun 15 14:25:13 ks384632 kernel: L2TP IP encapsulation support (L2TPv3)
Jun 15 14:25:13 ks384632 kernel: L2TP netlink interface
Jun 15 14:25:13 ks384632 kernel: L2TP ethernet pseudowire support (L2TPv3)
Jun 15 14:25:13 ks384632 kernel: 8021q: 802.1Q VLAN Support v1.8
Jun 15 14:25:13 ks384632 kernel: sctp: Hash tables configured (established 65536 bind 65536)
Jun 15 14:25:13 ks384632 kernel: Registering the dns_resolver key type
Jun 15 14:25:13 ks384632 kernel: libceph: loaded (mon/osd proto 15/24, osdmap 5/6 5/6)
Jun 15 14:25:13 ks384632 kernel: registered taskstats version 1
Jun 15 14:25:13 ks384632 kernel: rtc_cmos 00:03: setting system clock to 2012-06-15 12:25:07 UTC (1339763107)
Jun 15 14:25:13 ks384632 kernel: ACPI Exception: AE_NOT_FOUND, Evaluating _PSS (20110623/processor_perflib-318)
Jun 15 14:25:13 ks384632 kernel: ata1.00: ATA-8: ST31000524AS, JC4B, max UDMA/133
Jun 15 14:25:13 ks384632 kernel: ata1.00: 1953525168 sectors, multi 16: LBA48 NCQ (depth 0/32)
Jun 15 14:25:13 ks384632 kernel: ata1.00: configured for UDMA/133
Jun 15 14:25:13 ks384632 kernel: scsi 0:0:0:0: Direct-Access     ATA      ST31000524AS     JC4B PQ: 0 ANSI: 5
Jun 15 14:25:13 ks384632 kernel: sd 0:0:0:0: [sda] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
Jun 15 14:25:13 ks384632 kernel: sd 0:0:0:0: [sda] Write Protect is off
Jun 15 14:25:13 ks384632 kernel: sd 0:0:0:0: Attached scsi generic sg0 type 0
Jun 15 14:25:13 ks384632 kernel: sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
Jun 15 14:25:13 ks384632 kernel: sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
Jun 15 14:25:13 ks384632 kernel: sda: sda1 sda2 sda3
Jun 15 14:25:13 ks384632 kernel: sd 0:0:0:0: [sda] Attached SCSI disk
Jun 15 14:25:13 ks384632 kernel: md: Waiting for all devices to be available before autodetect
Jun 15 14:25:13 ks384632 kernel: md: If you don't use raid, use raid=noautodetect
Jun 15 14:25:13 ks384632 kernel: md: Autodetecting RAID arrays.
Jun 15 14:25:13 ks384632 kernel: md: Scanned 0 and added 0 devices.
Jun 15 14:25:13 ks384632 kernel: md: autorun ...
Jun 15 14:25:13 ks384632 kernel: md: ... autorun DONE.
Jun 15 14:25:13 ks384632 kernel: EXT3-fs (sda1): error: couldn't mount because of unsupported optional features (240)
Jun 15 14:25:13 ks384632 kernel: EXT2-fs (sda1): error: couldn't mount because of unsupported optional features (240)
Jun 15 14:25:13 ks384632 kernel: EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
Jun 15 14:25:13 ks384632 kernel: VFS: Mounted root (ext4 filesystem) readonly on device 8:1.
Jun 15 14:25:13 ks384632 kernel: Freeing unused kernel memory: 632k freed
Jun 15 14:25:13 ks384632 kernel: usb 3-2: new low-speed USB device number 2 using uhci_hcd
Jun 15 14:25:13 ks384632 kernel: input: Cypress PS/2 to USB Adapter as /devices/pci0000:00/0000:00:1d.1/usb3/3-2/3-2:1.0/input/input0
Jun 15 14:25:13 ks384632 kernel: generic-usb 0003:04B4:8081.0001: input: USB HID v1.00 Keyboard [Cypress PS/2 to USB Adapter] on usb-0000:00:1d.1-2/input0
Jun 15 14:25:13 ks384632 kernel: input: Cypress PS/2 to USB Adapter as /devices/pci0000:00/0000:00:1d.1/usb3/3-2/3-2:1.1/input/input1
Jun 15 14:25:13 ks384632 kernel: generic-usb 0003:04B4:8081.0002: input: USB HID v1.00 Mouse [Cypress PS/2 to USB Adapter] on usb-0000:00:1d.1-2/input1
Jun 15 14:25:13 ks384632 kernel: grsec: time set by /sbin/hwclock[hwclock:1593] uid/euid:0/0 gid/egid:0/0, parent /sbin/init[init:1] uid/euid:0/0 gid/egid:0/0
Jun 15 14:25:13 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:25:13 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:25:13 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:25:13 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:25:13 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:25:13 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:25:13 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:25:13 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:25:13 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:25:13 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:25:13 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:25:13 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:25:13 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:25:13 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:25:13 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:25:13 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:25:13 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:25:13 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:25:13 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:25:13 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:25:13 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:25:13 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:25:13 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:25:13 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:25:13 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:25:13 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:25:13 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:25:13 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:25:13 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:25:13 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:25:13 ks384632 kernel: r8169 0000:01:00.0: eth0: link down
Jun 15 14:25:13 ks384632 kernel: r8169 0000:01:00.0: eth0: link down
Jun 15 14:25:13 ks384632 kernel: ADDRCONF(NETDEV_UP): eth0: link is not ready
Jun 15 14:25:13 ks384632 kernel: Adding 523260k swap on /dev/sda3.  Priority:-1 extents:1 across:523260k 
Jun 15 14:25:13 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:25:13 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:25:13 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:25:13 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:25:13 ks384632 kernel: init: udev-fallback-graphics main process (2846) terminated with status 1
Jun 15 14:25:13 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:25:13 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:25:13 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:25:13 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:25:13 ks384632 kernel: EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro
Jun 15 14:25:13 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:25:13 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:25:13 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:25:13 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:25:13 ks384632 kernel: init: plymouth main process (1605) killed by SEGV signal
Jun 15 14:25:13 ks384632 kernel: init: plymouth-splash main process (2857) terminated with status 2
Jun 15 14:25:13 ks384632 kernel: r8169 0000:01:00.0: eth0: link up
Jun 15 14:25:13 ks384632 kernel: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
Jun 15 14:25:13 ks384632 kernel: EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null)
Jun 15 14:25:13 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:25:13 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:25:13 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:25:13 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:25:13 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:25:13 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:25:13 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:25:13 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:25:13 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:25:13 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:25:13 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:25:13 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:25:13 ks384632 kernel: init: plymouth-log main process (2934) terminated with status 1
Jun 15 14:25:13 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:25:13 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:25:13 ks384632 kernel: init: failsafe main process (2935) killed by TERM signal
Jun 15 14:25:13 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:25:13 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:25:14 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:25:14 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:25:14 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:25:14 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:25:14 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:25:14 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:25:14 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:25:14 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:25:14 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:25:14 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:25:14 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:25:14 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:25:14 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:25:14 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:25:14 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:25:14 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:25:14 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:25:14 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:25:14 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:25:14 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:25:14 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:25:14 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:25:14 ks384632 kernel: init: plymouth-upstart-bridge main process (2990) terminated with status 1
Jun 15 14:25:14 ks384632 kernel: init: bluetooth main process (2997) terminated with status 1
Jun 15 14:25:14 ks384632 kernel: init: bluetooth main process ended, respawning
Jun 15 14:25:14 ks384632 kernel: init: bluetooth main process (3123) terminated with status 1
Jun 15 14:25:14 ks384632 kernel: init: bluetooth main process ended, respawning
Jun 15 14:25:14 ks384632 kernel: init: bluetooth main process (3153) terminated with status 1
Jun 15 14:25:14 ks384632 kernel: init: bluetooth main process ended, respawning
Jun 15 14:25:14 ks384632 kernel: init: bluetooth main process (3183) terminated with status 1
Jun 15 14:25:14 ks384632 kernel: init: bluetooth main process ended, respawning
Jun 15 14:25:14 ks384632 kernel: init: bluetooth main process (3218) terminated with status 1
Jun 15 14:25:14 ks384632 kernel: init: bluetooth main process ended, respawning
Jun 15 14:25:14 ks384632 kernel: init: bluetooth main process (3243) terminated with status 1
Jun 15 14:25:14 ks384632 kernel: init: bluetooth main process ended, respawning
Jun 15 14:25:15 ks384632 kernel: init: bluetooth main process (3267) terminated with status 1
Jun 15 14:25:15 ks384632 kernel: init: bluetooth main process ended, respawning
Jun 15 14:25:15 ks384632 kernel: init: bluetooth main process (3295) terminated with status 1
Jun 15 14:25:15 ks384632 kernel: init: bluetooth main process ended, respawning
Jun 15 14:25:15 ks384632 kernel: init: bluetooth main process (3323) terminated with status 1
Jun 15 14:25:15 ks384632 kernel: init: bluetooth main process ended, respawning
Jun 15 14:25:15 ks384632 kernel: init: bluetooth main process (3332) terminated with status 1
Jun 15 14:25:15 ks384632 kernel: init: bluetooth main process ended, respawning
Jun 15 14:25:15 ks384632 kernel: init: bluetooth main process (3341) terminated with status 1
Jun 15 14:25:15 ks384632 kernel: init: bluetooth respawning too fast, stopped
Jun 15 14:25:16 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:25:16 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:25:16 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:25:16 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:25:16 ks384632 kernel: init: plymouth-stop pre-start process (3352) terminated with status 1
Jun 15 14:25:22 ks384632 kernel: grsec: time set by /usr/sbin/ntpdate[ntpdate:2908] uid/euid:0/0 gid/egid:0/0, parent /etc/network/if-up.d/ntpdate[ntpdate:2876] uid/euid:0/0 gid/egid:0/0
Jun 15 14:26:20 ks384632 kernel: imklog 5.8.6, log source = /proc/kmsg started.
Jun 15 14:26:20 ks384632 kernel: Initializing cgroup subsys cpuset
Jun 15 14:26:20 ks384632 kernel: Linux version 3.2.13-xxxx-std-ipv6-64 (root@kernel-64.ovh.net) (gcc version 4.3.2 (Debian 4.3.2-1.1) ) #1 SMP Wed Mar 28 11:20:17 UTC 2012
Jun 15 14:26:20 ks384632 kernel: Command line: root=/dev/sda1 console=tty0 BOOT_IMAGE=bzImage-2.6-xxxx-std-ipv6-64 
Jun 15 14:26:20 ks384632 kernel: BIOS-provided physical RAM map:
Jun 15 14:26:20 ks384632 kernel: BIOS-e820: 0000000000000000 - 000000000008f000 (usable)
Jun 15 14:26:20 ks384632 kernel: BIOS-e820: 000000000008f000 - 0000000000090000 (reserved)
Jun 15 14:26:20 ks384632 kernel: BIOS-e820: 0000000000090000 - 000000000009ec00 (usable)
Jun 15 14:26:20 ks384632 kernel: BIOS-e820: 000000000009ec00 - 00000000000a0000 (reserved)
Jun 15 14:26:20 ks384632 kernel: BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved)
Jun 15 14:26:20 ks384632 kernel: BIOS-e820: 0000000000100000 - 000000007ee98000 (usable)
Jun 15 14:26:20 ks384632 kernel: BIOS-e820: 000000007ee98000 - 000000007eebf000 (reserved)
Jun 15 14:26:20 ks384632 kernel: BIOS-e820: 000000007eebf000 - 000000007ef57000 (usable)
Jun 15 14:26:20 ks384632 kernel: BIOS-e820: 000000007ef57000 - 000000007efbf000 (ACPI NVS)
Jun 15 14:26:20 ks384632 kernel: BIOS-e820: 000000007efbf000 - 000000007eff1000 (usable)
Jun 15 14:26:20 ks384632 kernel: BIOS-e820: 000000007eff1000 - 000000007efff000 (ACPI data)
Jun 15 14:26:20 ks384632 kernel: BIOS-e820: 000000007efff000 - 000000007f000000 (usable)
Jun 15 14:26:20 ks384632 kernel: BIOS-e820: 000000007f000000 - 0000000080000000 (reserved)
Jun 15 14:26:20 ks384632 kernel: BIOS-e820: 00000000f8000000 - 00000000fc000000 (reserved)
Jun 15 14:26:20 ks384632 kernel: BIOS-e820: 00000000fff00000 - 0000000100000000 (reserved)
Jun 15 14:26:20 ks384632 kernel: NX (Execute Disable) protection: active
Jun 15 14:26:20 ks384632 kernel: DMI 2.5 present.
Jun 15 14:26:20 ks384632 kernel: DMI: OVH KS/D425KT, BIOS MWPNT10N.86A.0083.2011.0524.1600 05/24/2011
Jun 15 14:26:20 ks384632 kernel: e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
Jun 15 14:26:20 ks384632 kernel: e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
Jun 15 14:26:20 ks384632 kernel: No AGP bridge found
Jun 15 14:26:20 ks384632 kernel: last_pfn = 0x7f000 max_arch_pfn = 0x400000000
Jun 15 14:26:20 ks384632 kernel: MTRR default type: uncachable
Jun 15 14:26:20 ks384632 kernel: MTRR fixed ranges enabled:
Jun 15 14:26:20 ks384632 kernel:  00000-9FFFF write-back
Jun 15 14:26:20 ks384632 kernel:  A0000-BFFFF uncachable
Jun 15 14:26:20 ks384632 kernel:  C0000-DFFFF write-protect
Jun 15 14:26:20 ks384632 kernel:  E0000-FFFFF uncachable
Jun 15 14:26:20 ks384632 kernel: MTRR variable ranges enabled:
Jun 15 14:26:20 ks384632 kernel:  0 base 000000000 mask F80000000 write-back
Jun 15 14:26:20 ks384632 kernel:  1 base 07F000000 mask FFF000000 uncachable
Jun 15 14:26:20 ks384632 kernel:  2 base 0FFFF0000 mask FFFFF0000 write-protect
Jun 15 14:26:20 ks384632 kernel:  3 base 0FFF10000 mask FFFFF0000 write-protect
Jun 15 14:26:20 ks384632 kernel:  4 base 0FFF20000 mask FFFFF0000 write-protect
Jun 15 14:26:20 ks384632 kernel:  5 disabled
Jun 15 14:26:20 ks384632 kernel:  6 disabled
Jun 15 14:26:20 ks384632 kernel: x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
Jun 15 14:26:20 ks384632 kernel: found SMP MP-table at [ffff8800000fbe70] fbe70
Jun 15 14:26:20 ks384632 kernel: initial memory mapped : 0 - 20000000
Jun 15 14:26:20 ks384632 kernel: Base memory trampoline at [ffff880000098000] 98000 size 20480
Jun 15 14:26:20 ks384632 kernel: init_memory_mapping: 0000000000000000-000000007f000000
Jun 15 14:26:20 ks384632 kernel: 0000000000 - 007f000000 page 2M
Jun 15 14:26:20 ks384632 kernel: kernel direct mapping tables up to 7f000000 @ 1fffd000-20000000
Jun 15 14:26:20 ks384632 kernel: ACPI: RSDP 00000000000f2060 00024 (v02 INTEL )
Jun 15 14:26:20 ks384632 kernel: ACPI: XSDT 000000007effe120 0004C (v01 INTEL  D425KT   00000053      01000013)
Jun 15 14:26:20 ks384632 kernel: ACPI: FACP 000000007effd000 000F4 (v03 INTEL  D425KT   00000053 MSFT 0100000D)
Jun 15 14:26:20 ks384632 kernel: ACPI: DSDT 000000007eff9000 03796 (v01 INTEL  D425KT   00000053 MSFT 0100000D)
Jun 15 14:26:20 ks384632 kernel: ACPI: FACS 000000007ef97000 00040
Jun 15 14:26:20 ks384632 kernel: ACPI: APIC 000000007eff8000 00084 (v02 INTEL  D425KT   00000053 MSFT 0100000D)
Jun 15 14:26:20 ks384632 kernel: ACPI: MCFG 000000007eff7000 0003C (v01 INTEL  D425KT   00000053 MSFT 0100000D)
Jun 15 14:26:20 ks384632 kernel: ACPI: HPET 000000007eff6000 00038 (v01 INTEL  D425KT   00000053 MSFT 0100000D)
Jun 15 14:26:20 ks384632 kernel: ACPI: SSDT 000000007eff2000 0377C (v01 INTEL  D425KT   00000053 MSFT 0100000D)
Jun 15 14:26:20 ks384632 kernel: ACPI: Local APIC address 0xfee00000
Jun 15 14:26:20 ks384632 kernel: No NUMA configuration found
Jun 15 14:26:20 ks384632 kernel: Faking a node at 0000000000000000-000000007f000000
Jun 15 14:26:20 ks384632 kernel: Initmem setup node 0 0000000000000000-000000007f000000
Jun 15 14:26:20 ks384632 kernel:  NODE_DATA [000000007efec000 - 000000007eff0fff]
Jun 15 14:26:20 ks384632 kernel: [ffffea0000000000-ffffea0001ffffff] PMD -> [ffff88007c600000-ffff88007e5fffff] on node 0
Jun 15 14:26:20 ks384632 kernel: Zone PFN ranges:
Jun 15 14:26:20 ks384632 kernel:  DMA      0x00000010 -> 0x00001000
Jun 15 14:26:20 ks384632 kernel:  DMA32    0x00001000 -> 0x00100000
Jun 15 14:26:20 ks384632 kernel:  Normal   empty
Jun 15 14:26:20 ks384632 kernel: Movable zone start PFN for each node
Jun 15 14:26:20 ks384632 kernel: early_node_map[6] active PFN ranges
Jun 15 14:26:20 ks384632 kernel:    0: 0x00000010 -> 0x0000008f
Jun 15 14:26:20 ks384632 kernel:    0: 0x00000090 -> 0x0000009e
Jun 15 14:26:20 ks384632 kernel:    0: 0x00000100 -> 0x0007ee98
Jun 15 14:26:20 ks384632 kernel:    0: 0x0007eebf -> 0x0007ef57
Jun 15 14:26:20 ks384632 kernel:    0: 0x0007efbf -> 0x0007eff1
Jun 15 14:26:20 ks384632 kernel:    0: 0x0007efff -> 0x0007f000
Jun 15 14:26:20 ks384632 kernel: On node 0 totalpages: 519920
Jun 15 14:26:20 ks384632 kernel:  DMA zone: 64 pages used for memmap
Jun 15 14:26:20 ks384632 kernel:  DMA zone: 6 pages reserved
Jun 15 14:26:20 ks384632 kernel:  DMA zone: 3911 pages, LIFO batch:0
Jun 15 14:26:20 ks384632 kernel:  DMA32 zone: 8064 pages used for memmap
Jun 15 14:26:20 ks384632 kernel:  DMA32 zone: 507875 pages, LIFO batch:31
Jun 15 14:26:20 ks384632 kernel: ACPI: PM-Timer IO Port: 0x408
Jun 15 14:26:20 ks384632 kernel: ACPI: Local APIC address 0xfee00000
Jun 15 14:26:20 ks384632 kernel: ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
Jun 15 14:26:20 ks384632 kernel: ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
Jun 15 14:26:20 ks384632 kernel: ACPI: LAPIC (acpi_id[0x03] lapic_id[0x02] disabled)
Jun 15 14:26:20 ks384632 kernel: ACPI: LAPIC (acpi_id[0x04] lapic_id[0x03] disabled)
Jun 15 14:26:20 ks384632 kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high level lint[0x1])
Jun 15 14:26:20 ks384632 kernel: ACPI: LAPIC_NMI (acpi_id[0x02] high level lint[0x1])
Jun 15 14:26:20 ks384632 kernel: ACPI: LAPIC_NMI (acpi_id[0x03] high level lint[0x1])
Jun 15 14:26:20 ks384632 kernel: ACPI: LAPIC_NMI (acpi_id[0x04] high level lint[0x1])
Jun 15 14:26:20 ks384632 kernel: ACPI: IOAPIC (id[0x08] address[0xfec00000] gsi_base[0])
Jun 15 14:26:20 ks384632 kernel: IOAPIC[0]: apic_id 8, version 32, address 0xfec00000, GSI 0-23
Jun 15 14:26:20 ks384632 kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
Jun 15 14:26:20 ks384632 kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
Jun 15 14:26:20 ks384632 kernel: ACPI: IRQ0 used by override.
Jun 15 14:26:20 ks384632 kernel: ACPI: IRQ2 used by override.
Jun 15 14:26:20 ks384632 kernel: ACPI: IRQ9 used by override.
Jun 15 14:26:20 ks384632 kernel: Using ACPI (MADT) for SMP configuration information
Jun 15 14:26:20 ks384632 kernel: ACPI: HPET id: 0x8086a201 base: 0xfed00000
Jun 15 14:26:20 ks384632 kernel: SMP: Allowing 4 CPUs, 2 hotplug CPUs
Jun 15 14:26:20 ks384632 kernel: nr_irqs_gsi: 40
Jun 15 14:26:20 ks384632 kernel: PM: Registered nosave memory: 000000000008f000 - 0000000000090000
Jun 15 14:26:20 ks384632 kernel: PM: Registered nosave memory: 000000000009e000 - 000000000009f000
Jun 15 14:26:20 ks384632 kernel: PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
Jun 15 14:26:20 ks384632 kernel: PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000
Jun 15 14:26:20 ks384632 kernel: PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
Jun 15 14:26:20 ks384632 kernel: PM: Registered nosave memory: 000000007ee98000 - 000000007eebf000
Jun 15 14:26:20 ks384632 kernel: PM: Registered nosave memory: 000000007ef57000 - 000000007efbf000
Jun 15 14:26:20 ks384632 kernel: PM: Registered nosave memory: 000000007eff1000 - 000000007efff000
Jun 15 14:26:20 ks384632 kernel: Allocating PCI resources starting at 80000000 (gap: 80000000:78000000)
Jun 15 14:26:20 ks384632 kernel: setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:4 nr_node_ids:1
Jun 15 14:26:20 ks384632 kernel: PERCPU: Embedded 23 pages/cpu @ffff88007ec00000 s72192 r0 d22016 u524288
Jun 15 14:26:20 ks384632 kernel: pcpu-alloc: s72192 r0 d22016 u524288 alloc=1*2097152
Jun 15 14:26:20 ks384632 kernel: pcpu-alloc: [0] 0 1 2 3 
Jun 15 14:26:20 ks384632 kernel: Built 1 zonelists in Node order, mobility grouping on.  Total pages: 511786
Jun 15 14:26:20 ks384632 kernel: Policy zone: DMA32
Jun 15 14:26:20 ks384632 kernel: Kernel command line: root=/dev/sda1 console=tty0 BOOT_IMAGE=bzImage-2.6-xxxx-std-ipv6-64 
Jun 15 14:26:20 ks384632 kernel: PID hash table entries: 4096 (order: 3, 32768 bytes)
Jun 15 14:26:20 ks384632 kernel: Checking aperture...
Jun 15 14:26:20 ks384632 kernel: No AGP bridge found
Jun 15 14:26:20 ks384632 kernel: Memory: 2029556k/2080768k available (11387k kernel code, 1088k absent, 50124k reserved, 3649k data, 624k init)
Jun 15 14:26:20 ks384632 kernel: SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
Jun 15 14:26:20 ks384632 kernel: Hierarchical RCU implementation.
Jun 15 14:26:20 ks384632 kernel: NR_IRQS:4352 nr_irqs:712 16
Jun 15 14:26:20 ks384632 kernel: Extended CMOS year: 2000
Jun 15 14:26:20 ks384632 kernel: Console: colour VGA+ 80x25
Jun 15 14:26:20 ks384632 kernel: console [tty0] enabled
Jun 15 14:26:20 ks384632 kernel: allocated 16777216 bytes of page_cgroup
Jun 15 14:26:20 ks384632 kernel: please try 'cgroup_disable=memory' option if you don't want memory cgroups
Jun 15 14:26:20 ks384632 kernel: hpet clockevent registered
Jun 15 14:26:20 ks384632 kernel: Fast TSC calibration using PIT
Jun 15 14:26:20 ks384632 kernel: Detected 1799.705 MHz processor.
Jun 15 14:26:20 ks384632 kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 3599.41 BogoMIPS (lpj=7198820)
Jun 15 14:26:20 ks384632 kernel: pid_max: default: 32768 minimum: 301
Jun 15 14:26:20 ks384632 kernel: Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes)
Jun 15 14:26:20 ks384632 kernel: Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes)
Jun 15 14:26:20 ks384632 kernel: Mount-cache hash table entries: 256
Jun 15 14:26:20 ks384632 kernel: Initializing cgroup subsys cpuacct
Jun 15 14:26:20 ks384632 kernel: Initializing cgroup subsys memory
Jun 15 14:26:20 ks384632 kernel: Initializing cgroup subsys devices
Jun 15 14:26:20 ks384632 kernel: Initializing cgroup subsys freezer
Jun 15 14:26:20 ks384632 kernel: Initializing cgroup subsys blkio
Jun 15 14:26:20 ks384632 kernel: CPU: Physical Processor ID: 0
Jun 15 14:26:20 ks384632 kernel: CPU: Processor Core ID: 0
Jun 15 14:26:20 ks384632 kernel: mce: CPU supports 5 MCE banks
Jun 15 14:26:20 ks384632 kernel: CPU0: Thermal monitoring enabled (TM1)
Jun 15 14:26:20 ks384632 kernel: using mwait in idle threads.
Jun 15 14:26:20 ks384632 kernel: ACPI: Core revision 20110623
Jun 15 14:26:20 ks384632 kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
Jun 15 14:26:20 ks384632 kernel: CPU0: Intel(R) Atom(TM) CPU D425   @ 1.80GHz stepping 0a
Jun 15 14:26:20 ks384632 kernel: Performance Events: PEBS fmt0+, Atom events, Intel PMU driver.
Jun 15 14:26:20 ks384632 kernel: ... version:                3
Jun 15 14:26:20 ks384632 kernel: ... bit width:              40
Jun 15 14:26:20 ks384632 kernel: ... generic registers:      2
Jun 15 14:26:20 ks384632 kernel: ... value mask:             000000ffffffffff
Jun 15 14:26:20 ks384632 kernel: ... max period:             000000007fffffff
Jun 15 14:26:20 ks384632 kernel: ... fixed-purpose events:   3
Jun 15 14:26:20 ks384632 kernel: ... event mask:             0000000700000003
Jun 15 14:26:20 ks384632 kernel: Booting Node   0, Processors  #1
Jun 15 14:26:20 ks384632 kernel: smpboot cpu 1: start_ip = 98000
Jun 15 14:26:20 ks384632 kernel: Brought up 2 CPUs
Jun 15 14:26:20 ks384632 kernel: Total of 2 processors activated (7199.44 BogoMIPS).
Jun 15 14:26:20 ks384632 kernel: devtmpfs: initialized
Jun 15 14:26:20 ks384632 kernel: PM: Registering ACPI NVS region at 7ef57000 (425984 bytes)
Jun 15 14:26:20 ks384632 kernel: xor: automatically using best checksumming function: generic_sse
Jun 15 14:26:20 ks384632 kernel:   generic_sse:  5454.000 MB/sec
Jun 15 14:26:20 ks384632 kernel: xor: using function: generic_sse (5454.000 MB/sec)
Jun 15 14:26:20 ks384632 kernel: NET: Registered protocol family 16
Jun 15 14:26:20 ks384632 kernel: ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
Jun 15 14:26:20 ks384632 kernel: ACPI: bus type pci registered
Jun 15 14:26:20 ks384632 kernel: dca service started, version 1.12.1
Jun 15 14:26:20 ks384632 kernel: PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
Jun 15 14:26:20 ks384632 kernel: PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
Jun 15 14:26:20 ks384632 kernel: PCI: Using configuration type 1 for base access
Jun 15 14:26:20 ks384632 kernel: bio: create slab <bio-0> at 0
Jun 15 14:26:20 ks384632 kernel: raid6: int64x1    338 MB/s
Jun 15 14:26:20 ks384632 kernel: raid6: int64x2    539 MB/s
Jun 15 14:26:20 ks384632 kernel: raid6: int64x4    630 MB/s
Jun 15 14:26:20 ks384632 kernel: raid6: int64x8    730 MB/s
Jun 15 14:26:20 ks384632 kernel: raid6: sse2x1     577 MB/s
Jun 15 14:26:20 ks384632 kernel: raid6: sse2x2    1038 MB/s
Jun 15 14:26:20 ks384632 kernel: raid6: sse2x4    1909 MB/s
Jun 15 14:26:20 ks384632 kernel: raid6: using algorithm sse2x4 (1909 MB/s)
Jun 15 14:26:20 ks384632 kernel: ACPI: Added _OSI(Module Device)
Jun 15 14:26:20 ks384632 kernel: ACPI: Added _OSI(Processor Device)
Jun 15 14:26:20 ks384632 kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
Jun 15 14:26:20 ks384632 kernel: ACPI: Added _OSI(Processor Aggregator Device)
Jun 15 14:26:20 ks384632 kernel: ACPI: EC: Look up EC in DSDT
Jun 15 14:26:20 ks384632 kernel: [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
Jun 15 14:26:20 ks384632 kernel: ACPI: Interpreter enabled
Jun 15 14:26:20 ks384632 kernel: ACPI: (supports S0 S1 S3 S4 S5)
Jun 15 14:26:20 ks384632 kernel: ACPI: Using IOAPIC for interrupt routing
Jun 15 14:26:20 ks384632 kernel: ACPI: No dock devices found.
Jun 15 14:26:20 ks384632 kernel: HEST: Table not found.
Jun 15 14:26:20 ks384632 kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
Jun 15 14:26:20 ks384632 kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3f])
Jun 15 14:26:20 ks384632 kernel: pci_root PNP0A03:00: host bridge window [io  0x0000-0x0cf7]
Jun 15 14:26:20 ks384632 kernel: pci_root PNP0A03:00: host bridge window [io  0x0d00-0xffff]
Jun 15 14:26:20 ks384632 kernel: pci_root PNP0A03:00: host bridge window [mem 0x000a0000-0x000bffff]
Jun 15 14:26:20 ks384632 kernel: pci_root PNP0A03:00: host bridge window [mem 0xd0000000-0xf7ffffff]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:00.0: [8086:a000] type 0 class 0x000600
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:02.0: [8086:a001] type 0 class 0x000300
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:02.0: reg 10: [mem 0xe0200000-0xe027ffff]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:02.0: reg 14: [io  0x20c0-0x20c7]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:02.0: reg 18: [mem 0xd0000000-0xdfffffff pref]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:02.0: reg 1c: [mem 0xe0100000-0xe01fffff]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.0: [8086:27d0] type 1 class 0x000604
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.0: PME# disabled
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.1: [8086:27d2] type 1 class 0x000604
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.1: PME# disabled
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.2: [8086:27d4] type 1 class 0x000604
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.2: PME# disabled
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.3: [8086:27d6] type 1 class 0x000604
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.3: PME# disabled
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1d.0: [8086:27c8] type 0 class 0x000c03
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1d.0: reg 20: [io  0x2080-0x209f]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1d.1: [8086:27c9] type 0 class 0x000c03
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1d.1: reg 20: [io  0x2060-0x207f]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1d.2: [8086:27ca] type 0 class 0x000c03
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1d.2: reg 20: [io  0x2040-0x205f]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1d.3: [8086:27cb] type 0 class 0x000c03
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1d.3: reg 20: [io  0x2020-0x203f]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1d.7: [8086:27cc] type 0 class 0x000c03
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1d.7: reg 10: [mem 0xe0280400-0xe02807ff]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1d.7: PME# disabled
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1e.0: [8086:2448] type 1 class 0x000604
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1f.0: [8086:27bc] type 0 class 0x000601
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1f.0: [Firmware Bug]: TigerPoint LPC.BM_STS cleared
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1f.2: [8086:27c0] type 0 class 0x000101
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1f.2: reg 10: [io  0x20b8-0x20bf]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1f.2: reg 14: [io  0x20cc-0x20cf]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1f.2: reg 18: [io  0x20b0-0x20b7]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1f.2: reg 1c: [io  0x20c8-0x20cb]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1f.2: reg 20: [io  0x20a0-0x20af]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1f.2: reg 24: [mem 0xe0280000-0xe02803ff]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1f.2: PME# supported from D3hot
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1f.2: PME# disabled
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1f.3: [8086:27da] type 0 class 0x000c05
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1f.3: reg 20: [io  0x2000-0x201f]
Jun 15 14:26:20 ks384632 kernel: pci 0000:01:00.0: [10ec:8136] type 0 class 0x000200
Jun 15 14:26:20 ks384632 kernel: pci 0000:01:00.0: reg 10: [io  0x1000-0x10ff]
Jun 15 14:26:20 ks384632 kernel: pci 0000:01:00.0: reg 18: [mem 0xe0004000-0xe0004fff 64bit pref]
Jun 15 14:26:20 ks384632 kernel: pci 0000:01:00.0: reg 20: [mem 0xe0000000-0xe0003fff 64bit pref]
Jun 15 14:26:20 ks384632 kernel: pci 0000:01:00.0: supports D1 D2
Jun 15 14:26:20 ks384632 kernel: pci 0000:01:00.0: PME# supported from D0 D1 D2 D3hot D3cold
Jun 15 14:26:20 ks384632 kernel: pci 0000:01:00.0: PME# disabled
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.0: PCI bridge to [bus 01-01]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.0:   bridge window [io  0x1000-0x1fff]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.0:   bridge window [mem 0xe0000000-0xe00fffff 64bit pref]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.1: PCI bridge to [bus 02-02]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.2: PCI bridge to [bus 03-03]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.3: PCI bridge to [bus 04-04]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1e.0: PCI bridge to [bus 05-05] (subtractive decode)
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1e.0:   bridge window [io  0x0000-0x0cf7] (subtractive decode)
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1e.0:   bridge window [io  0x0d00-0xffff] (subtractive decode)
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1e.0:   bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1e.0:   bridge window [mem 0xd0000000-0xf7ffffff] (subtractive decode)
Jun 15 14:26:20 ks384632 kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
Jun 15 14:26:20 ks384632 kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P32_._PRT]
Jun 15 14:26:20 ks384632 kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX0._PRT]
Jun 15 14:26:20 ks384632 kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX1._PRT]
Jun 15 14:26:20 ks384632 kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX2._PRT]
Jun 15 14:26:20 ks384632 kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX3._PRT]
Jun 15 14:26:20 ks384632 kernel: pci0000:00: Requesting ACPI _OSC control (0x1d)
Jun 15 14:26:20 ks384632 kernel: pci0000:00: ACPI _OSC request failed (AE_NOT_FOUND), returned control mask: 0x1d
Jun 15 14:26:20 ks384632 kernel: ACPI _OSC control for PCIe not granted, disabling ASPM
Jun 15 14:26:20 ks384632 kernel: ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 7 9 10 *11 12)
Jun 15 14:26:20 ks384632 kernel: ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 7 9 10 11 12) *0, disabled.
Jun 15 14:26:20 ks384632 kernel: ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 7 9 10 *11 12)
Jun 15 14:26:20 ks384632 kernel: ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 7 9 *10 11 12)
Jun 15 14:26:20 ks384632 kernel: ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 7 9 10 11 12) *0, disabled.
Jun 15 14:26:20 ks384632 kernel: ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 7 9 10 11 12) *0, disabled.
Jun 15 14:26:20 ks384632 kernel: ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 7 9 10 11 12) *0, disabled.
Jun 15 14:26:20 ks384632 kernel: ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 7 *9 10 11 12)
Jun 15 14:26:20 ks384632 kernel: vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
Jun 15 14:26:20 ks384632 kernel: vgaarb: loaded
Jun 15 14:26:20 ks384632 kernel: vgaarb: bridge control possible 0000:00:02.0
Jun 15 14:26:20 ks384632 kernel: SCSI subsystem initialized
Jun 15 14:26:20 ks384632 kernel: libata version 3.00 loaded.
Jun 15 14:26:20 ks384632 kernel: usbcore: registered new interface driver usbfs
Jun 15 14:26:20 ks384632 kernel: usbcore: registered new interface driver hub
Jun 15 14:26:20 ks384632 kernel: usbcore: registered new device driver usb
Jun 15 14:26:20 ks384632 kernel: wmi: Mapper loaded
Jun 15 14:26:20 ks384632 kernel: PCI: Using ACPI for IRQ routing
Jun 15 14:26:20 ks384632 kernel: PCI: pci_cache_line_size set to 64 bytes
Jun 15 14:26:20 ks384632 kernel: reserve RAM buffer: 000000000008f000 - 000000000008ffff 
Jun 15 14:26:20 ks384632 kernel: reserve RAM buffer: 000000000009ec00 - 000000000009ffff 
Jun 15 14:26:20 ks384632 kernel: reserve RAM buffer: 000000007ee98000 - 000000007fffffff 
Jun 15 14:26:20 ks384632 kernel: reserve RAM buffer: 000000007ef57000 - 000000007fffffff 
Jun 15 14:26:20 ks384632 kernel: reserve RAM buffer: 000000007eff1000 - 000000007fffffff 
Jun 15 14:26:20 ks384632 kernel: reserve RAM buffer: 000000007f000000 - 000000007fffffff 
Jun 15 14:26:20 ks384632 kernel: HPET: 3 timers in total, 0 timers will be used for per-cpu timer
Jun 15 14:26:20 ks384632 kernel: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
Jun 15 14:26:20 ks384632 kernel: hpet0: 3 comparators, 64-bit 14.318180 MHz counter
Jun 15 14:26:20 ks384632 kernel: Switching to clocksource hpet
Jun 15 14:26:20 ks384632 kernel: FS-Cache: Loaded
Jun 15 14:26:20 ks384632 kernel: CacheFiles: Loaded
Jun 15 14:26:20 ks384632 kernel: pnp: PnP ACPI init
Jun 15 14:26:20 ks384632 kernel: ACPI: bus type pnp registered
Jun 15 14:26:20 ks384632 kernel: pnp 00:00: [bus 00-3f]
Jun 15 14:26:20 ks384632 kernel: pnp 00:00: [io  0x0cf8-0x0cff]
Jun 15 14:26:20 ks384632 kernel: pnp 00:00: [io  0x0000-0x0cf7 window]
Jun 15 14:26:20 ks384632 kernel: pnp 00:00: [io  0x0d00-0xffff window]
Jun 15 14:26:20 ks384632 kernel: pnp 00:00: [mem 0x000a0000-0x000bffff window]
Jun 15 14:26:20 ks384632 kernel: pnp 00:00: [mem 0xd0000000-0xf7ffffff window]
Jun 15 14:26:20 ks384632 kernel: pnp 00:00: Plug and Play ACPI device, IDs PNP0a03 (active)
Jun 15 14:26:20 ks384632 kernel: pnp 00:01: [mem 0xf8000000-0xfbffffff]
Jun 15 14:26:20 ks384632 kernel: pnp 00:01: [mem 0xfed14000-0xfed17fff]
Jun 15 14:26:20 ks384632 kernel: pnp 00:01: [mem 0xfed18000-0xfed18fff]
Jun 15 14:26:20 ks384632 kernel: pnp 00:01: [mem 0xfed19000-0xfed19fff]
Jun 15 14:26:20 ks384632 kernel: pnp 00:01: [mem 0xfed1c000-0xfed1ffff]
Jun 15 14:26:20 ks384632 kernel: pnp 00:01: [mem 0x000c0000-0x000dffff]
Jun 15 14:26:20 ks384632 kernel: pnp 00:01: [mem 0x000e0000-0x000fffff]
Jun 15 14:26:20 ks384632 kernel: pnp 00:01: [mem 0xfff00000-0xffffffff]
Jun 15 14:26:20 ks384632 kernel: system 00:01: [mem 0xf8000000-0xfbffffff] has been reserved
Jun 15 14:26:20 ks384632 kernel: system 00:01: [mem 0xfed14000-0xfed17fff] has been reserved
Jun 15 14:26:20 ks384632 kernel: system 00:01: [mem 0xfed18000-0xfed18fff] has been reserved
Jun 15 14:26:20 ks384632 kernel: system 00:01: [mem 0xfed19000-0xfed19fff] has been reserved
Jun 15 14:26:20 ks384632 kernel: system 00:01: [mem 0xfed1c000-0xfed1ffff] has been reserved
Jun 15 14:26:20 ks384632 kernel: system 00:01: [mem 0x000c0000-0x000dffff] could not be reserved
Jun 15 14:26:20 ks384632 kernel: system 00:01: [mem 0x000e0000-0x000fffff] could not be reserved
Jun 15 14:26:20 ks384632 kernel: system 00:01: [mem 0xfff00000-0xffffffff] has been reserved
Jun 15 14:26:20 ks384632 kernel: system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
Jun 15 14:26:20 ks384632 kernel: pnp 00:02: [io  0x0000-0x000f]
Jun 15 14:26:20 ks384632 kernel: pnp 00:02: [io  0x0081-0x0083]
Jun 15 14:26:20 ks384632 kernel: pnp 00:02: [io  0x0087]
Jun 15 14:26:20 ks384632 kernel: pnp 00:02: [io  0x0089-0x008b]
Jun 15 14:26:20 ks384632 kernel: pnp 00:02: [io  0x008f]
Jun 15 14:26:20 ks384632 kernel: pnp 00:02: [io  0x00c0-0x00df]
Jun 15 14:26:20 ks384632 kernel: pnp 00:02: [dma 4]
Jun 15 14:26:20 ks384632 kernel: pnp 00:02: Plug and Play ACPI device, IDs PNP0200 (active)
Jun 15 14:26:20 ks384632 kernel: pnp 00:03: [io  0x0070-0x0071]
Jun 15 14:26:20 ks384632 kernel: pnp 00:03: [io  0x0074-0x0077]
Jun 15 14:26:20 ks384632 kernel: pnp 00:03: [irq 8]
Jun 15 14:26:20 ks384632 kernel: pnp 00:03: Plug and Play ACPI device, IDs PNP0b00 (active)
Jun 15 14:26:20 ks384632 kernel: pnp 00:04: [io  0x00f0]
Jun 15 14:26:20 ks384632 kernel: pnp 00:04: [irq 13]
Jun 15 14:26:20 ks384632 kernel: pnp 00:04: Plug and Play ACPI device, IDs PNP0c04 (active)
Jun 15 14:26:20 ks384632 kernel: pnp 00:05: [io  0x0061]
Jun 15 14:26:20 ks384632 kernel: pnp 00:05: Plug and Play ACPI device, IDs PNP0800 (active)
Jun 15 14:26:20 ks384632 kernel: pnp 00:06: [io  0x0500-0x053f]
Jun 15 14:26:20 ks384632 kernel: pnp 00:06: [io  0x0400-0x047f]
Jun 15 14:26:20 ks384632 kernel: pnp 00:06: [io  0x0092]
Jun 15 14:26:20 ks384632 kernel: pnp 00:06: [io  0x0680-0x06ff]
Jun 15 14:26:20 ks384632 kernel: pnp 00:06: [io  0x0010-0x001f]
Jun 15 14:26:20 ks384632 kernel: pnp 00:06: [io  0x0072-0x0073]
Jun 15 14:26:20 ks384632 kernel: pnp 00:06: [io  0x0080]
Jun 15 14:26:20 ks384632 kernel: pnp 00:06: [io  0x0084-0x0086]
Jun 15 14:26:20 ks384632 kernel: pnp 00:06: [io  0x0088]
Jun 15 14:26:20 ks384632 kernel: pnp 00:06: [io  0x008c-0x008e]
Jun 15 14:26:20 ks384632 kernel: pnp 00:06: [io  0x0090-0x009f]
Jun 15 14:26:20 ks384632 kernel: pnp 00:06: [io  0x0295-0x0296]
Jun 15 14:26:20 ks384632 kernel: system 00:06: [io  0x0500-0x053f] has been reserved
Jun 15 14:26:20 ks384632 kernel: system 00:06: [io  0x0400-0x047f] has been reserved
Jun 15 14:26:20 ks384632 kernel: system 00:06: [io  0x0680-0x06ff] has been reserved
Jun 15 14:26:20 ks384632 kernel: system 00:06: [io  0x0295-0x0296] has been reserved
Jun 15 14:26:20 ks384632 kernel: system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active)
Jun 15 14:26:20 ks384632 kernel: pnp 00:07: [io  0x0060]
Jun 15 14:26:20 ks384632 kernel: pnp 00:07: [io  0x0064]
Jun 15 14:26:20 ks384632 kernel: system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
Jun 15 14:26:20 ks384632 kernel: pnp 00:08: [io  0x03f8-0x03ff]
Jun 15 14:26:20 ks384632 kernel: pnp 00:08: [irq 4]
Jun 15 14:26:20 ks384632 kernel: pnp 00:08: Plug and Play ACPI device, IDs PNP0501 (active)
Jun 15 14:26:20 ks384632 kernel: pnp 00:09: [io  0x02f8-0x02ff]
Jun 15 14:26:20 ks384632 kernel: pnp 00:09: [irq 3]
Jun 15 14:26:20 ks384632 kernel: pnp 00:09: Plug and Play ACPI device, IDs PNP0501 (active)
Jun 15 14:26:20 ks384632 kernel: pnp 00:0a: [mem 0xfec00000-0xfec000ff]
Jun 15 14:26:20 ks384632 kernel: pnp 00:0a: Plug and Play ACPI device, IDs PNP0003 (active)
Jun 15 14:26:20 ks384632 kernel: pnp 00:0b: [mem 0xfed00000-0xfed03fff]
Jun 15 14:26:20 ks384632 kernel: pnp 00:0b: Plug and Play ACPI device, IDs PNP0103 (active)
Jun 15 14:26:20 ks384632 kernel: pnp: PnP ACPI: found 12 devices
Jun 15 14:26:20 ks384632 kernel: ACPI: ACPI bus type pnp unregistered
Jun 15 14:26:20 ks384632 kernel: PCI: max bus depth: 1 pci_try_num: 2
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.3: BAR 14: assigned [mem 0xe0300000-0xe04fffff]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.3: BAR 15: assigned [mem 0xe0500000-0xe06fffff 64bit pref]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.3: BAR 13: assigned [io  0x3000-0x3fff]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.2: BAR 14: assigned [mem 0xe0700000-0xe08fffff]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.2: BAR 15: assigned [mem 0xe0900000-0xe0afffff 64bit pref]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.2: BAR 13: assigned [io  0x4000-0x4fff]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.1: BAR 14: assigned [mem 0xe0b00000-0xe0cfffff]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.1: BAR 15: assigned [mem 0xe0d00000-0xe0efffff 64bit pref]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.1: BAR 13: assigned [io  0x5000-0x5fff]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.0: BAR 14: assigned [mem 0xe0f00000-0xe12fffff]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.0: PCI bridge to [bus 01-01]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.0:   bridge window [io  0x1000-0x1fff]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.0:   bridge window [mem 0xe0f00000-0xe12fffff]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.0:   bridge window [mem 0xe0000000-0xe00fffff 64bit pref]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.1: PCI bridge to [bus 02-02]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.1:   bridge window [io  0x5000-0x5fff]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.1:   bridge window [mem 0xe0b00000-0xe0cfffff]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.1:   bridge window [mem 0xe0d00000-0xe0efffff 64bit pref]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.2: PCI bridge to [bus 03-03]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.2:   bridge window [io  0x4000-0x4fff]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.2:   bridge window [mem 0xe0700000-0xe08fffff]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.2:   bridge window [mem 0xe0900000-0xe0afffff 64bit pref]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.3: PCI bridge to [bus 04-04]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.3:   bridge window [io  0x3000-0x3fff]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.3:   bridge window [mem 0xe0300000-0xe04fffff]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.3:   bridge window [mem 0xe0500000-0xe06fffff 64bit pref]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1e.0: PCI bridge to [bus 05-05]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.0: setting latency timer to 64
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.1: enabling device (0000 -> 0003)
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.1: PCI INT B -> GSI 16 (level, low) -> IRQ 16
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.1: setting latency timer to 64
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.2: enabling device (0000 -> 0003)
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.2: setting latency timer to 64
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.3: enabling device (0000 -> 0003)
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.3: PCI INT D -> GSI 19 (level, low) -> IRQ 19
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.3: setting latency timer to 64
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1e.0: setting latency timer to 64
Jun 15 14:26:20 ks384632 kernel: pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7]
Jun 15 14:26:20 ks384632 kernel: pci_bus 0000:00: resource 5 [io  0x0d00-0xffff]
Jun 15 14:26:20 ks384632 kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
Jun 15 14:26:20 ks384632 kernel: pci_bus 0000:00: resource 7 [mem 0xd0000000-0xf7ffffff]
Jun 15 14:26:20 ks384632 kernel: pci_bus 0000:01: resource 0 [io  0x1000-0x1fff]
Jun 15 14:26:20 ks384632 kernel: pci_bus 0000:01: resource 1 [mem 0xe0f00000-0xe12fffff]
Jun 15 14:26:20 ks384632 kernel: pci_bus 0000:01: resource 2 [mem 0xe0000000-0xe00fffff 64bit pref]
Jun 15 14:26:20 ks384632 kernel: pci_bus 0000:02: resource 0 [io  0x5000-0x5fff]
Jun 15 14:26:20 ks384632 kernel: pci_bus 0000:02: resource 1 [mem 0xe0b00000-0xe0cfffff]
Jun 15 14:26:20 ks384632 kernel: pci_bus 0000:02: resource 2 [mem 0xe0d00000-0xe0efffff 64bit pref]
Jun 15 14:26:20 ks384632 kernel: pci_bus 0000:03: resource 0 [io  0x4000-0x4fff]
Jun 15 14:26:20 ks384632 kernel: pci_bus 0000:03: resource 1 [mem 0xe0700000-0xe08fffff]
Jun 15 14:26:20 ks384632 kernel: pci_bus 0000:03: resource 2 [mem 0xe0900000-0xe0afffff 64bit pref]
Jun 15 14:26:20 ks384632 kernel: pci_bus 0000:04: resource 0 [io  0x3000-0x3fff]
Jun 15 14:26:20 ks384632 kernel: pci_bus 0000:04: resource 1 [mem 0xe0300000-0xe04fffff]
Jun 15 14:26:20 ks384632 kernel: pci_bus 0000:04: resource 2 [mem 0xe0500000-0xe06fffff 64bit pref]
Jun 15 14:26:20 ks384632 kernel: pci_bus 0000:05: resource 4 [io  0x0000-0x0cf7]
Jun 15 14:26:20 ks384632 kernel: pci_bus 0000:05: resource 5 [io  0x0d00-0xffff]
Jun 15 14:26:20 ks384632 kernel: pci_bus 0000:05: resource 6 [mem 0x000a0000-0x000bffff]
Jun 15 14:26:20 ks384632 kernel: pci_bus 0000:05: resource 7 [mem 0xd0000000-0xf7ffffff]
Jun 15 14:26:20 ks384632 kernel: NET: Registered protocol family 2
Jun 15 14:26:20 ks384632 kernel: IP route cache hash table entries: 65536 (order: 7, 524288 bytes)
Jun 15 14:26:20 ks384632 kernel: TCP established hash table entries: 262144 (order: 10, 4194304 bytes)
Jun 15 14:26:20 ks384632 kernel: TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
Jun 15 14:26:20 ks384632 kernel: TCP: Hash tables configured (established 262144 bind 65536)
Jun 15 14:26:20 ks384632 kernel: TCP reno registered
Jun 15 14:26:20 ks384632 kernel: UDP hash table entries: 1024 (order: 3, 32768 bytes)
Jun 15 14:26:20 ks384632 kernel: UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes)
Jun 15 14:26:20 ks384632 kernel: NET: Registered protocol family 1
Jun 15 14:26:20 ks384632 kernel: RPC: Registered named UNIX socket transport module.
Jun 15 14:26:20 ks384632 kernel: RPC: Registered udp transport module.
Jun 15 14:26:20 ks384632 kernel: RPC: Registered tcp transport module.
Jun 15 14:26:20 ks384632 kernel: RPC: Registered tcp NFSv4.1 backchannel transport module.
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:02.0: Boot video device
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1d.0: PCI INT A disabled
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1d.1: PCI INT B -> GSI 19 (level, low) -> IRQ 19
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1d.1: PCI INT B disabled
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1d.2: PCI INT C disabled
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1d.3: PCI INT D -> GSI 16 (level, low) -> IRQ 16
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1d.3: PCI INT D disabled
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1d.7: PCI INT A -> GSI 23 (level, low) -> IRQ 23
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1d.7: PCI INT A disabled
Jun 15 14:26:20 ks384632 kernel: PCI: CLS 64 bytes, default 64
Jun 15 14:26:20 ks384632 kernel: kvm: no hardware support
Jun 15 14:26:20 ks384632 kernel: has_svm: not amd
Jun 15 14:26:20 ks384632 kernel: kvm: no hardware support
Jun 15 14:26:20 ks384632 kernel: microcode: CPU0 sig=0x106ca, pf=0x1, revision=0x107
Jun 15 14:26:20 ks384632 kernel: microcode: CPU1 sig=0x106ca, pf=0x1, revision=0x107
Jun 15 14:26:20 ks384632 kernel: microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
Jun 15 14:26:20 ks384632 kernel: Intel AES-NI instructions are not detected.
Jun 15 14:26:20 ks384632 kernel: VFS: Disk quotas dquot_6.5.2
Jun 15 14:26:20 ks384632 kernel: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
Jun 15 14:26:20 ks384632 kernel: DLM installed
Jun 15 14:26:20 ks384632 kernel: FS-Cache: Netfs 'nfs' registered for caching
Jun 15 14:26:20 ks384632 kernel: NTFS driver 2.1.30 [Flags: R/W].
Jun 15 14:26:20 ks384632 kernel: ROMFS MTD (C) 2007 Red Hat, Inc.
Jun 15 14:26:20 ks384632 kernel: fuse init (API version 7.17)
Jun 15 14:26:20 ks384632 kernel: JFS: nTxBlock = 8192, nTxLock = 65536
Jun 15 14:26:20 ks384632 kernel: SGI XFS with ACLs, security attributes, large block/inode numbers, no debug enabled
Jun 15 14:26:20 ks384632 kernel: SGI XFS Quota Management subsystem
Jun 15 14:26:20 ks384632 kernel: OCFS2 1.5.0
Jun 15 14:26:20 ks384632 kernel: ocfs2: Registered cluster interface o2cb
Jun 15 14:26:20 ks384632 kernel: ocfs2: Registered cluster interface user
Jun 15 14:26:20 ks384632 kernel: OCFS2 DLMFS 1.5.0
Jun 15 14:26:20 ks384632 kernel: OCFS2 User DLM kernel interface loaded
Jun 15 14:26:20 ks384632 kernel: OCFS2 Node Manager 1.5.0
Jun 15 14:26:20 ks384632 kernel: OCFS2 DLM 1.5.0
Jun 15 14:26:20 ks384632 kernel: Btrfs loaded
Jun 15 14:26:20 ks384632 kernel: GFS2 installed
Jun 15 14:26:20 ks384632 kernel: ceph: loaded (mds proto 32)
Jun 15 14:26:20 ks384632 kernel: msgmni has been set to 3963
Jun 15 14:26:20 ks384632 kernel: async_tx: api initialized (async)
Jun 15 14:26:20 ks384632 kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
Jun 15 14:26:20 ks384632 kernel: io scheduler noop registered
Jun 15 14:26:20 ks384632 kernel: io scheduler deadline registered (default)
Jun 15 14:26:20 ks384632 kernel: io scheduler cfq registered
Jun 15 14:26:20 ks384632 kernel: pcieport 0000:00:1c.0: setting latency timer to 64
Jun 15 14:26:20 ks384632 kernel: pcieport 0000:00:1c.0: irq 40 for MSI/MSI-X
Jun 15 14:26:20 ks384632 kernel: pcieport 0000:00:1c.1: setting latency timer to 64
Jun 15 14:26:20 ks384632 kernel: pcieport 0000:00:1c.1: irq 41 for MSI/MSI-X
Jun 15 14:26:20 ks384632 kernel: pcieport 0000:00:1c.2: setting latency timer to 64
Jun 15 14:26:20 ks384632 kernel: pcieport 0000:00:1c.2: irq 42 for MSI/MSI-X
Jun 15 14:26:20 ks384632 kernel: pcieport 0000:00:1c.3: setting latency timer to 64
Jun 15 14:26:20 ks384632 kernel: pcieport 0000:00:1c.3: irq 43 for MSI/MSI-X
Jun 15 14:26:20 ks384632 kernel: pci_hotplug: PCI Hot Plug PCI Core version: 0.5
Jun 15 14:26:20 ks384632 kernel: pciehp: PCI Express Hot Plug Controller Driver version: 0.4
Jun 15 14:26:20 ks384632 kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
Jun 15 14:26:20 ks384632 kernel: Monitor-Mwait will be used to enter C-1 state
Jun 15 14:26:20 ks384632 kernel: ERST: Table is not found!
Jun 15 14:26:20 ks384632 kernel: GHES: HEST is not enabled!
Jun 15 14:26:20 ks384632 kernel: ioatdma: Intel(R) QuickData Technology Driver 4.00
Jun 15 14:26:20 ks384632 kernel: Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
Jun 15 14:26:20 ks384632 kernel: serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
Jun 15 14:26:20 ks384632 kernel: serial8250: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
Jun 15 14:26:20 ks384632 kernel: 00:08: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
Jun 15 14:26:20 ks384632 kernel: 00:09: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
Jun 15 14:26:20 ks384632 kernel: Linux agpgart interface v0.103
Jun 15 14:26:20 ks384632 kernel: Refined TSC clocksource calibration: 1800.063 MHz.
Jun 15 14:26:20 ks384632 kernel: Switching to clocksource tsc
Jun 15 14:26:20 ks384632 kernel: floppy0: no floppy controllers found
Jun 15 14:26:20 ks384632 kernel: brd: module loaded
Jun 15 14:26:20 ks384632 kernel: loop: module loaded
Jun 15 14:26:20 ks384632 kernel: nbd: registered device at major 43
Jun 15 14:26:20 ks384632 kernel: usbcore: registered new interface driver ub
Jun 15 14:26:20 ks384632 kernel: drbd: initialized. Version: 8.3.11 (api:88/proto:86-96)
Jun 15 14:26:20 ks384632 kernel: drbd: built-in
Jun 15 14:26:20 ks384632 kernel: drbd: registered as block device major 147
Jun 15 14:26:20 ks384632 kernel: drbd: minor_table @ 0xffff88007acc2f00
Jun 15 14:26:20 ks384632 kernel: Uniform Multi-Platform E-IDE driver
Jun 15 14:26:20 ks384632 kernel: ide_generic: please use "probe_mask=0x3f" module parameter for probing all legacy ISA IDE ports
Jun 15 14:26:20 ks384632 kernel: Probing IDE interface ide0...
Jun 15 14:26:20 ks384632 kernel: ide0 at 0x1f0-0x1f7,0x3f6 on irq 14
Jun 15 14:26:20 ks384632 kernel: Probing IDE interface ide1...
Jun 15 14:26:20 ks384632 kernel: ide1 at 0x170-0x177,0x376 on irq 15
Jun 15 14:26:20 ks384632 kernel: ide-gd driver 1.18
Jun 15 14:26:20 ks384632 kernel: Loading iSCSI transport class v2.0-870.
Jun 15 14:26:20 ks384632 kernel: iscsi: registered transport (tcp)
Jun 15 14:26:20 ks384632 kernel: megaraid cmm: 2.20.2.7 (Release Date: Sun Jul 16 00:01:03 EST 2006)
Jun 15 14:26:20 ks384632 kernel: megaraid: 2.20.5.1 (Release Date: Thu Nov 16 15:32:35 EST 2006)
Jun 15 14:26:20 ks384632 kernel: megasas: 00.00.06.12-rc1 Wed. Oct. 5 17:00:00 PDT 2011
Jun 15 14:26:20 ks384632 kernel: mpt2sas version 10.100.00.00 loaded
Jun 15 14:26:20 ks384632 kernel: 3ware Storage Controller device driver for Linux v1.26.02.003.
Jun 15 14:26:20 ks384632 kernel: 3ware 9000 Storage Controller device driver for Linux v2.26.02.014.
Jun 15 14:26:20 ks384632 kernel: VMware PVSCSI driver - version 1.0.1.0-k
Jun 15 14:26:20 ks384632 kernel: ata_piix 0000:00:1f.2: version 2.13
Jun 15 14:26:20 ks384632 kernel: ata_piix 0000:00:1f.2: PCI INT A -> GSI 18 (level, low) -> IRQ 18
Jun 15 14:26:20 ks384632 kernel: ata_piix 0000:00:1f.2: MAP [ P0 P2 P1 P3 ]
Jun 15 14:26:20 ks384632 kernel: ata_piix 0000:00:1f.2: setting latency timer to 64
Jun 15 14:26:20 ks384632 kernel: scsi0 : ata_piix
Jun 15 14:26:20 ks384632 kernel: scsi1 : ata_piix
Jun 15 14:26:20 ks384632 kernel: ata1: SATA max UDMA/133 cmd 0x20b8 ctl 0x20cc bmdma 0x20a0 irq 18
Jun 15 14:26:20 ks384632 kernel: ata2: SATA max UDMA/133 cmd 0x20b0 ctl 0x20c8 bmdma 0x20a8 irq 18
Jun 15 14:26:20 ks384632 kernel: slram: not enough parameters.
Jun 15 14:26:20 ks384632 kernel: bonding: Ethernet Channel Bonding Driver: v3.7.1 (April 27, 2011)
Jun 15 14:26:20 ks384632 kernel: tun: Universal TUN/TAP device driver, 1.6
Jun 15 14:26:20 ks384632 kernel: tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
Jun 15 14:26:20 ks384632 kernel: pcnet32: pcnet32.c:v1.35 21.Apr.2008 tsbogend@alpha.franken.de
Jun 15 14:26:20 ks384632 kernel: e100: Intel(R) PRO/100 Network Driver, 3.5.24-k2-NAPI
Jun 15 14:26:20 ks384632 kernel: e100: Copyright(c) 1999-2006 Intel Corporation
Jun 15 14:26:20 ks384632 kernel: e1000: Intel(R) PRO/1000 Network Driver - version 7.3.21-k8-NAPI
Jun 15 14:26:20 ks384632 kernel: e1000: Copyright (c) 1999-2006 Intel Corporation.
Jun 15 14:26:20 ks384632 kernel: e1000e: Intel(R) PRO/1000 Network Driver - 1.5.1-k
Jun 15 14:26:20 ks384632 kernel: e1000e: Copyright(c) 1999 - 2011 Intel Corporation.
Jun 15 14:26:20 ks384632 kernel: Intel(R) Gigabit Ethernet Network Driver - version 3.2.10-k
Jun 15 14:26:20 ks384632 kernel: Copyright (c) 2007-2011 Intel Corporation.
Jun 15 14:26:20 ks384632 kernel: Intel(R) Gigabit Virtual Function Network Driver - version 2.0.1-k
Jun 15 14:26:20 ks384632 kernel: Copyright (c) 2009 - 2011 Intel Corporation.
Jun 15 14:26:20 ks384632 kernel: ixgbe: Intel(R) 10 Gigabit PCI Express Network Driver - version 3.6.7-k
Jun 15 14:26:20 ks384632 kernel: ixgbe: Copyright (c) 1999-2011 Intel Corporation.
Jun 15 14:26:20 ks384632 kernel: ixgb: Intel(R) PRO/10GbE Network Driver - version 1.0.135-k2-NAPI
Jun 15 14:26:20 ks384632 kernel: ixgb: Copyright (c) 1999-2008 Intel Corporation.
Jun 15 14:26:20 ks384632 kernel: sky2: driver version 1.30
Jun 15 14:26:20 ks384632 kernel: QLogic/NetXen Network Driver v4.0.77
Jun 15 14:26:20 ks384632 kernel: r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
Jun 15 14:26:20 ks384632 kernel: r8169 0000:01:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
Jun 15 14:26:20 ks384632 kernel: r8169 0000:01:00.0: setting latency timer to 64
Jun 15 14:26:20 ks384632 kernel: r8169 0000:01:00.0: irq 44 for MSI/MSI-X
Jun 15 14:26:20 ks384632 kernel: r8169 0000:01:00.0: eth0: RTL8168e/8111e at 0xffffc90000330000, 38:60:77:1b:2a:b2, XID 0c200000 IRQ 44
Jun 15 14:26:20 ks384632 kernel: r8169 0000:01:00.0: eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Jun 15 14:26:20 ks384632 kernel: PPP generic driver version 2.4.2
Jun 15 14:26:20 ks384632 kernel: PPP BSD Compression module registered
Jun 15 14:26:20 ks384632 kernel: PPP Deflate Compression module registered
Jun 15 14:26:20 ks384632 kernel: PPP MPPE Compression module registered
Jun 15 14:26:20 ks384632 kernel: NET: Registered protocol family 24
Jun 15 14:26:20 ks384632 kernel: VMware vmxnet3 virtual NIC driver - version 1.1.29.0-k-NAPI
Jun 15 14:26:20 ks384632 kernel: Fusion MPT base driver 3.04.20
Jun 15 14:26:20 ks384632 kernel: Copyright (c) 1999-2008 LSI Corporation
Jun 15 14:26:20 ks384632 kernel: Fusion MPT SPI Host driver 3.04.20
Jun 15 14:26:20 ks384632 kernel: Fusion MPT FC Host driver 3.04.20
Jun 15 14:26:20 ks384632 kernel: Fusion MPT SAS Host driver 3.04.20
Jun 15 14:26:20 ks384632 kernel: Fusion MPT misc device (ioctl) driver 3.04.20
Jun 15 14:26:20 ks384632 kernel: mptctl: Registered with Fusion MPT base driver
Jun 15 14:26:20 ks384632 kernel: mptctl: /dev/mptctl @ (major,minor=10,220)
Jun 15 14:26:20 ks384632 kernel: ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
Jun 15 14:26:20 ks384632 kernel: ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 23 (level, low) -> IRQ 23
Jun 15 14:26:20 ks384632 kernel: ehci_hcd 0000:00:1d.7: setting latency timer to 64
Jun 15 14:26:20 ks384632 kernel: ehci_hcd 0000:00:1d.7: EHCI Host Controller
Jun 15 14:26:20 ks384632 kernel: ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 1
Jun 15 14:26:20 ks384632 kernel: ehci_hcd 0000:00:1d.7: using broken periodic workaround
Jun 15 14:26:20 ks384632 kernel: ehci_hcd 0000:00:1d.7: debug port 1
Jun 15 14:26:20 ks384632 kernel: ehci_hcd 0000:00:1d.7: cache line size of 64 is not supported
Jun 15 14:26:20 ks384632 kernel: ehci_hcd 0000:00:1d.7: irq 23, io mem 0xe0280400
Jun 15 14:26:20 ks384632 kernel: ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00
Jun 15 14:26:20 ks384632 kernel: hub 1-0:1.0: USB hub found
Jun 15 14:26:20 ks384632 kernel: hub 1-0:1.0: 8 ports detected
Jun 15 14:26:20 ks384632 kernel: ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
Jun 15 14:26:20 ks384632 kernel: uhci_hcd: USB Universal Host Controller Interface driver
Jun 15 14:26:20 ks384632 kernel: uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23
Jun 15 14:26:20 ks384632 kernel: uhci_hcd 0000:00:1d.0: setting latency timer to 64
Jun 15 14:26:20 ks384632 kernel: uhci_hcd 0000:00:1d.0: UHCI Host Controller
Jun 15 14:26:20 ks384632 kernel: uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
Jun 15 14:26:20 ks384632 kernel: uhci_hcd 0000:00:1d.0: irq 23, io base 0x00002080
Jun 15 14:26:20 ks384632 kernel: hub 2-0:1.0: USB hub found
Jun 15 14:26:20 ks384632 kernel: hub 2-0:1.0: 2 ports detected
Jun 15 14:26:20 ks384632 kernel: uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 19 (level, low) -> IRQ 19
Jun 15 14:26:20 ks384632 kernel: uhci_hcd 0000:00:1d.1: setting latency timer to 64
Jun 15 14:26:20 ks384632 kernel: uhci_hcd 0000:00:1d.1: UHCI Host Controller
Jun 15 14:26:20 ks384632 kernel: uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 3
Jun 15 14:26:20 ks384632 kernel: uhci_hcd 0000:00:1d.1: irq 19, io base 0x00002060
Jun 15 14:26:20 ks384632 kernel: hub 3-0:1.0: USB hub found
Jun 15 14:26:20 ks384632 kernel: hub 3-0:1.0: 2 ports detected
Jun 15 14:26:20 ks384632 kernel: uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
Jun 15 14:26:20 ks384632 kernel: uhci_hcd 0000:00:1d.2: setting latency timer to 64
Jun 15 14:26:20 ks384632 kernel: uhci_hcd 0000:00:1d.2: UHCI Host Controller
Jun 15 14:26:20 ks384632 kernel: uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 4
Jun 15 14:26:20 ks384632 kernel: uhci_hcd 0000:00:1d.2: irq 18, io base 0x00002040
Jun 15 14:26:20 ks384632 kernel: hub 4-0:1.0: USB hub found
Jun 15 14:26:20 ks384632 kernel: hub 4-0:1.0: 2 ports detected
Jun 15 14:26:20 ks384632 kernel: uhci_hcd 0000:00:1d.3: PCI INT D -> GSI 16 (level, low) -> IRQ 16
Jun 15 14:26:20 ks384632 kernel: uhci_hcd 0000:00:1d.3: setting latency timer to 64
Jun 15 14:26:20 ks384632 kernel: uhci_hcd 0000:00:1d.3: UHCI Host Controller
Jun 15 14:26:20 ks384632 kernel: uhci_hcd 0000:00:1d.3: new USB bus registered, assigned bus number 5
Jun 15 14:26:20 ks384632 kernel: uhci_hcd 0000:00:1d.3: irq 16, io base 0x00002020
Jun 15 14:26:20 ks384632 kernel: hub 5-0:1.0: USB hub found
Jun 15 14:26:20 ks384632 kernel: hub 5-0:1.0: 2 ports detected
Jun 15 14:26:20 ks384632 kernel: Initializing USB Mass Storage driver...
Jun 15 14:26:20 ks384632 kernel: usbcore: registered new interface driver usb-storage
Jun 15 14:26:20 ks384632 kernel: USB Mass Storage support registered.
Jun 15 14:26:20 ks384632 kernel: usbcore: registered new interface driver libusual
Jun 15 14:26:20 ks384632 kernel: i8042: PNP: No PS/2 controller found. Probing ports directly.
Jun 15 14:26:20 ks384632 kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
Jun 15 14:26:20 ks384632 kernel: serio: i8042 AUX port at 0x60,0x64 irq 12
Jun 15 14:26:20 ks384632 kernel: mousedev: PS/2 mouse device common for all mice
Jun 15 14:26:20 ks384632 kernel: rtc_cmos 00:03: RTC can wake from S4
Jun 15 14:26:20 ks384632 kernel: rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0
Jun 15 14:26:20 ks384632 kernel: rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
Jun 15 14:26:20 ks384632 kernel: coretemp coretemp.0: Using relative temperature scale!
Jun 15 14:26:20 ks384632 kernel: via_cputemp: Not a VIA CPU
Jun 15 14:26:20 ks384632 kernel: w83627ehf: Found W83627DHG-P chip at 0x290
Jun 15 14:26:20 ks384632 kernel: Software Watchdog Timer: 0.07 initialized. soft_noboot=0 soft_margin=60 sec soft_panic=0 (nowayout= 0)
Jun 15 14:26:20 ks384632 kernel: md: linear personality registered for level -1
Jun 15 14:26:20 ks384632 kernel: md: raid0 personality registered for level 0
Jun 15 14:26:20 ks384632 kernel: md: raid1 personality registered for level 1
Jun 15 14:26:20 ks384632 kernel: md: raid10 personality registered for level 10
Jun 15 14:26:20 ks384632 kernel: md: raid6 personality registered for level 6
Jun 15 14:26:20 ks384632 kernel: md: raid5 personality registered for level 5
Jun 15 14:26:20 ks384632 kernel: md: raid4 personality registered for level 4
Jun 15 14:26:20 ks384632 kernel: md: multipath personality registered for level -4
Jun 15 14:26:20 ks384632 kernel: md: faulty personality registered for level -5
Jun 15 14:26:20 ks384632 kernel: device-mapper: ioctl: 4.22.0-ioctl (2011-10-19) initialised: dm-devel@redhat.com
Jun 15 14:26:20 ks384632 kernel: device-mapper: multipath: version 1.3.0 loaded
Jun 15 14:26:20 ks384632 kernel: device-mapper: multipath round-robin: version 1.0.0 loaded
Jun 15 14:26:20 ks384632 kernel: EDAC MC: Ver: 2.1.0
Jun 15 14:26:20 ks384632 kernel: AMD64 EDAC driver v3.4.0
Jun 15 14:26:20 ks384632 kernel: cpuidle: using governor ladder
Jun 15 14:26:20 ks384632 kernel: cpuidle: using governor menu
Jun 15 14:26:20 ks384632 kernel: EFI Variables Facility v0.08 2004-May-17
Jun 15 14:26:20 ks384632 kernel: No iBFT detected.
Jun 15 14:26:20 ks384632 kernel: usbcore: registered new interface driver usbhid
Jun 15 14:26:20 ks384632 kernel: usbhid: USB HID core driver
Jun 15 14:26:20 ks384632 kernel: Netfilter messages via NETLINK v0.30.
Jun 15 14:26:20 ks384632 kernel: nf_conntrack version 0.5.0 (16384 buckets, 65536 max)
Jun 15 14:26:20 ks384632 kernel: ctnetlink v0.93: registering with nfnetlink.
Jun 15 14:26:20 ks384632 kernel: xt_time: kernel timezone is -0000
Jun 15 14:26:20 ks384632 kernel: IPv4 over IPv4 tunneling driver
Jun 15 14:26:20 ks384632 kernel: ip_tables: (C) 2000-2006 Netfilter Core Team
Jun 15 14:26:20 ks384632 kernel: ipt_CLUSTERIP: ClusterIP Version 0.8 loaded successfully
Jun 15 14:26:20 ks384632 kernel: TCP cubic registered
Jun 15 14:26:20 ks384632 kernel: Initializing XFRM netlink socket
Jun 15 14:26:20 ks384632 kernel: NET: Registered protocol family 10
Jun 15 14:26:20 ks384632 kernel: ip6_tables: (C) 2000-2006 Netfilter Core Team
Jun 15 14:26:20 ks384632 kernel: IPv6 over IPv4 tunneling driver
Jun 15 14:26:20 ks384632 kernel: NET: Registered protocol family 17
Jun 15 14:26:20 ks384632 kernel: NET: Registered protocol family 15
Jun 15 14:26:20 ks384632 kernel: Bridge firewalling registered
Jun 15 14:26:20 ks384632 kernel: L2TP core driver, V2.0
Jun 15 14:26:20 ks384632 kernel: PPPoL2TP kernel driver, V2.0
Jun 15 14:26:20 ks384632 kernel: L2TP IP encapsulation support (L2TPv3)
Jun 15 14:26:20 ks384632 kernel: L2TP netlink interface
Jun 15 14:26:20 ks384632 kernel: L2TP ethernet pseudowire support (L2TPv3)
Jun 15 14:26:20 ks384632 kernel: 8021q: 802.1Q VLAN Support v1.8
Jun 15 14:26:20 ks384632 kernel: sctp: Hash tables configured (established 65536 bind 65536)
Jun 15 14:26:20 ks384632 kernel: Registering the dns_resolver key type
Jun 15 14:26:20 ks384632 kernel: libceph: loaded (mon/osd proto 15/24, osdmap 5/6 5/6)
Jun 15 14:26:20 ks384632 kernel: registered taskstats version 1
Jun 15 14:26:20 ks384632 kernel: rtc_cmos 00:03: setting system clock to 2012-06-15 12:26:13 UTC (1339763173)
Jun 15 14:26:20 ks384632 kernel: ACPI Exception: AE_NOT_FOUND, Evaluating _PSS (20110623/processor_perflib-318)
Jun 15 14:26:20 ks384632 kernel: ata1.00: ATA-8: ST31000524AS, JC4B, max UDMA/133
Jun 15 14:26:20 ks384632 kernel: ata1.00: 1953525168 sectors, multi 16: LBA48 NCQ (depth 0/32)
Jun 15 14:26:20 ks384632 kernel: ata1.00: configured for UDMA/133
Jun 15 14:26:20 ks384632 kernel: scsi 0:0:0:0: Direct-Access     ATA      ST31000524AS     JC4B PQ: 0 ANSI: 5
Jun 15 14:26:20 ks384632 kernel: sd 0:0:0:0: [sda] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
Jun 15 14:26:20 ks384632 kernel: sd 0:0:0:0: [sda] Write Protect is off
Jun 15 14:26:20 ks384632 kernel: sd 0:0:0:0: Attached scsi generic sg0 type 0
Jun 15 14:26:20 ks384632 kernel: sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
Jun 15 14:26:20 ks384632 kernel: sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
Jun 15 14:26:20 ks384632 kernel: sda: sda1 sda2 sda3
Jun 15 14:26:20 ks384632 kernel: sd 0:0:0:0: [sda] Attached SCSI disk
Jun 15 14:26:20 ks384632 kernel: md: Waiting for all devices to be available before autodetect
Jun 15 14:26:20 ks384632 kernel: md: If you don't use raid, use raid=noautodetect
Jun 15 14:26:20 ks384632 kernel: md: Autodetecting RAID arrays.
Jun 15 14:26:20 ks384632 kernel: md: Scanned 0 and added 0 devices.
Jun 15 14:26:20 ks384632 kernel: md: autorun ...
Jun 15 14:26:20 ks384632 kernel: md: ... autorun DONE.
Jun 15 14:26:20 ks384632 kernel: EXT3-fs (sda1): error: couldn't mount because of unsupported optional features (240)
Jun 15 14:26:20 ks384632 kernel: EXT2-fs (sda1): error: couldn't mount because of unsupported optional features (244)
Jun 15 14:26:20 ks384632 kernel: EXT4-fs (sda1): INFO: recovery required on readonly filesystem
Jun 15 14:26:20 ks384632 kernel: EXT4-fs (sda1): write access will be enabled during recovery
Jun 15 14:26:20 ks384632 kernel: EXT4-fs (sda1): recovery complete
Jun 15 14:26:20 ks384632 kernel: EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
Jun 15 14:26:20 ks384632 kernel: VFS: Mounted root (ext4 filesystem) readonly on device 8:1.
Jun 15 14:26:20 ks384632 kernel: Freeing unused kernel memory: 624k freed
Jun 15 14:26:20 ks384632 kernel: usb 3-2: new low-speed USB device number 2 using uhci_hcd
Jun 15 14:26:20 ks384632 kernel: input: Cypress PS/2 to USB Adapter as /devices/pci0000:00/0000:00:1d.1/usb3/3-2/3-2:1.0/input/input0
Jun 15 14:26:20 ks384632 kernel: generic-usb 0003:04B4:8081.0001: input: USB HID v1.00 Keyboard [Cypress PS/2 to USB Adapter] on usb-0000:00:1d.1-2/input0
Jun 15 14:26:20 ks384632 kernel: input: Cypress PS/2 to USB Adapter as /devices/pci0000:00/0000:00:1d.1/usb3/3-2/3-2:1.1/input/input1
Jun 15 14:26:20 ks384632 kernel: generic-usb 0003:04B4:8081.0002: input: USB HID v1.00 Mouse [Cypress PS/2 to USB Adapter] on usb-0000:00:1d.1-2/input1
Jun 15 14:26:20 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:26:20 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:26:20 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:26:20 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:26:20 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:26:20 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:26:20 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:26:20 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:26:20 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:26:20 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:26:20 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:26:20 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:26:20 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:26:20 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:26:20 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:26:20 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:26:20 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:26:20 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:26:20 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:26:20 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:26:20 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:26:20 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:26:20 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:26:20 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:26:20 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:26:20 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:26:20 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:26:20 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:26:20 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:26:20 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:26:20 ks384632 kernel: r8169 0000:01:00.0: eth0: link down
Jun 15 14:26:20 ks384632 kernel: r8169 0000:01:00.0: eth0: link down
Jun 15 14:26:20 ks384632 kernel: ADDRCONF(NETDEV_UP): eth0: link is not ready
Jun 15 14:26:20 ks384632 kernel: Adding 523260k swap on /dev/sda3.  Priority:-1 extents:1 across:523260k 
Jun 15 14:26:20 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:26:20 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:26:20 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:26:20 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:26:20 ks384632 kernel: init: udev-fallback-graphics main process (3038) terminated with status 1
Jun 15 14:26:20 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:26:20 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:26:20 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:26:20 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:26:20 ks384632 kernel: init: plymouth main process (1785) killed by SEGV signal
Jun 15 14:26:20 ks384632 kernel: init: plymouth-splash main process (3043) terminated with status 2
Jun 15 14:26:20 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:26:20 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:26:20 ks384632 kernel: r8169 0000:01:00.0: eth0: link up
Jun 15 14:26:20 ks384632 kernel: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
Jun 15 14:26:20 ks384632 kernel: EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro
Jun 15 14:26:20 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:26:20 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:26:20 ks384632 kernel: EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null)
Jun 15 14:26:20 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:26:20 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:26:20 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:26:20 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:26:20 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:26:20 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:26:20 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:26:20 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:26:20 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:26:20 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:26:20 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:26:20 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:26:20 ks384632 kernel: init: plymouth-log main process (3242) terminated with status 1
Jun 15 14:26:20 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:26:20 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:26:20 ks384632 kernel: init: failsafe main process (3243) killed by TERM signal
Jun 15 14:26:20 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:26:20 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:26:20 ks384632 kernel: init: plymouth-upstart-bridge main process (3283) terminated with status 1
Jun 15 14:26:20 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:26:20 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:26:20 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:26:20 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:26:20 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:26:20 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:26:20 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:26:20 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:26:20 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:26:20 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:26:20 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:26:20 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:26:20 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:26:20 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:26:20 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:26:20 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:26:20 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:26:20 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:26:20 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:26:20 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:26:20 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:26:20 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:26:20 ks384632 kernel: init: bluetooth main process (3287) terminated with status 1
Jun 15 14:26:20 ks384632 kernel: init: bluetooth main process ended, respawning
Jun 15 14:26:20 ks384632 kernel: init: bluetooth main process (3343) terminated with status 1
Jun 15 14:26:20 ks384632 kernel: init: bluetooth main process ended, respawning
Jun 15 14:26:21 ks384632 kernel: init: bluetooth main process (3371) terminated with status 1
Jun 15 14:26:21 ks384632 kernel: init: bluetooth main process ended, respawning
Jun 15 14:26:21 ks384632 kernel: init: bluetooth main process (3385) terminated with status 1
Jun 15 14:26:21 ks384632 kernel: init: bluetooth main process ended, respawning
Jun 15 14:26:21 ks384632 kernel: init: bluetooth main process (3416) terminated with status 1
Jun 15 14:26:21 ks384632 kernel: init: bluetooth main process ended, respawning
Jun 15 14:26:21 ks384632 kernel: init: bluetooth main process (3433) terminated with status 1
Jun 15 14:26:21 ks384632 kernel: init: bluetooth main process ended, respawning
Jun 15 14:26:21 ks384632 kernel: init: bluetooth main process (3471) terminated with status 1
Jun 15 14:26:21 ks384632 kernel: init: bluetooth main process ended, respawning
Jun 15 14:26:21 ks384632 kernel: init: bluetooth main process (3504) terminated with status 1
Jun 15 14:26:21 ks384632 kernel: init: bluetooth main process ended, respawning
Jun 15 14:26:21 ks384632 kernel: init: bluetooth main process (3513) terminated with status 1
Jun 15 14:26:21 ks384632 kernel: init: bluetooth main process ended, respawning
Jun 15 14:26:22 ks384632 kernel: init: bluetooth main process (3522) terminated with status 1
Jun 15 14:26:22 ks384632 kernel: init: bluetooth main process ended, respawning
Jun 15 14:26:22 ks384632 kernel: init: bluetooth main process (3531) terminated with status 1
Jun 15 14:26:22 ks384632 kernel: init: bluetooth respawning too fast, stopped
Jun 15 14:26:22 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:26:22 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:26:22 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:26:22 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:26:22 ks384632 kernel: init: plymouth-stop pre-start process (3542) terminated with status 1
Jun 15 20:06:08 ks384632 kernel: imklog 5.8.6, log source = /proc/kmsg started.
Jun 15 20:06:08 ks384632 kernel: Initializing cgroup subsys cpuset
Jun 15 20:06:08 ks384632 kernel: Linux version 3.2.13-grsec-xxxx-grs-ipv6-64 (root@kernel-64.ovh.net) (gcc version 4.3.2 (Debian 4.3.2-1.1) ) #1 SMP Thu Mar 29 09:48:59 UTC 2012
Jun 15 20:06:08 ks384632 kernel: Command line: BOOT_IMAGE=/boot/bzImage-3.2.13-xxxx-grs-ipv6-64 root=/dev/sda1 ro
Jun 15 20:06:08 ks384632 kernel: BIOS-provided physical RAM map:
Jun 15 20:06:08 ks384632 kernel: BIOS-e820: 0000000000000000 - 000000000008f000 (usable)
Jun 15 20:06:08 ks384632 kernel: BIOS-e820: 000000000008f000 - 0000000000090000 (reserved)
Jun 15 20:06:08 ks384632 kernel: BIOS-e820: 0000000000090000 - 000000000009ec00 (usable)
Jun 15 20:06:08 ks384632 kernel: BIOS-e820: 000000000009ec00 - 00000000000a0000 (reserved)
Jun 15 20:06:08 ks384632 kernel: BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved)
Jun 15 20:06:08 ks384632 kernel: BIOS-e820: 0000000000100000 - 000000007ee98000 (usable)
Jun 15 20:06:08 ks384632 kernel: BIOS-e820: 000000007ee98000 - 000000007eebf000 (reserved)
Jun 15 20:06:08 ks384632 kernel: BIOS-e820: 000000007eebf000 - 000000007ef57000 (usable)
Jun 15 20:06:08 ks384632 kernel: BIOS-e820: 000000007ef57000 - 000000007efbf000 (ACPI NVS)
Jun 15 20:06:08 ks384632 kernel: BIOS-e820: 000000007efbf000 - 000000007eff1000 (usable)
Jun 15 20:06:08 ks384632 kernel: BIOS-e820: 000000007eff1000 - 000000007efff000 (ACPI data)
Jun 15 20:06:08 ks384632 kernel: BIOS-e820: 000000007efff000 - 000000007f000000 (usable)
Jun 15 20:06:08 ks384632 kernel: BIOS-e820: 000000007f000000 - 0000000080000000 (reserved)
Jun 15 20:06:08 ks384632 kernel: BIOS-e820: 00000000f8000000 - 00000000fc000000 (reserved)
Jun 15 20:06:08 ks384632 kernel: BIOS-e820: 00000000fff00000 - 0000000100000000 (reserved)
Jun 15 20:06:08 ks384632 kernel: NX (Execute Disable) protection: active
Jun 15 20:06:08 ks384632 kernel: DMI 2.5 present.
Jun 15 20:06:08 ks384632 kernel: DMI: OVH KS/D425KT, BIOS MWPNT10N.86A.0083.2011.0524.1600 05/24/2011
Jun 15 20:06:08 ks384632 kernel: e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
Jun 15 20:06:08 ks384632 kernel: e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
Jun 15 20:06:08 ks384632 kernel: No AGP bridge found
Jun 15 20:06:08 ks384632 kernel: last_pfn = 0x7f000 max_arch_pfn = 0x400000000
Jun 15 20:06:08 ks384632 kernel: MTRR default type: uncachable
Jun 15 20:06:08 ks384632 kernel: MTRR fixed ranges enabled:
Jun 15 20:06:08 ks384632 kernel:  00000-9FFFF write-back
Jun 15 20:06:08 ks384632 kernel:  A0000-BFFFF uncachable
Jun 15 20:06:08 ks384632 kernel:  C0000-DFFFF write-protect
Jun 15 20:06:08 ks384632 kernel:  E0000-FFFFF uncachable
Jun 15 20:06:08 ks384632 kernel: MTRR variable ranges enabled:
Jun 15 20:06:08 ks384632 kernel:  0 base 000000000 mask F80000000 write-back
Jun 15 20:06:08 ks384632 kernel:  1 base 07F000000 mask FFF000000 uncachable
Jun 15 20:06:08 ks384632 kernel:  2 base 0FFFF0000 mask FFFFF0000 write-protect
Jun 15 20:06:08 ks384632 kernel:  3 base 0FFF10000 mask FFFFF0000 write-protect
Jun 15 20:06:08 ks384632 kernel:  4 base 0FFF20000 mask FFFFF0000 write-protect
Jun 15 20:06:08 ks384632 kernel:  5 disabled
Jun 15 20:06:08 ks384632 kernel:  6 disabled
Jun 15 20:06:08 ks384632 kernel: x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
Jun 15 20:06:08 ks384632 kernel: found SMP MP-table at [ffff8800000fbe70] fbe70
Jun 15 20:06:08 ks384632 kernel: initial memory mapped : 0 - 20000000
Jun 15 20:06:08 ks384632 kernel: Base memory trampoline at [ffff880000099000] 99000 size 20480
Jun 15 20:06:08 ks384632 kernel: init_memory_mapping: 0000000000000000-000000007f000000
Jun 15 20:06:08 ks384632 kernel: 0000000000 - 007f000000 page 2M
Jun 15 20:06:08 ks384632 kernel: kernel direct mapping tables up to 7f000000 @ 1fffd000-20000000
Jun 15 20:06:08 ks384632 kernel: ACPI: RSDP 00000000000f2060 00024 (v02 INTEL )
Jun 15 20:06:08 ks384632 kernel: ACPI: XSDT 000000007effe120 0004C (v01 INTEL  D425KT   00000053      01000013)
Jun 15 20:06:08 ks384632 kernel: ACPI: FACP 000000007effd000 000F4 (v03 INTEL  D425KT   00000053 MSFT 0100000D)
Jun 15 20:06:08 ks384632 kernel: ACPI: DSDT 000000007eff9000 03796 (v01 INTEL  D425KT   00000053 MSFT 0100000D)
Jun 15 20:06:08 ks384632 kernel: ACPI: FACS 000000007ef97000 00040
Jun 15 20:06:08 ks384632 kernel: ACPI: APIC 000000007eff8000 00084 (v02 INTEL  D425KT   00000053 MSFT 0100000D)
Jun 15 20:06:08 ks384632 kernel: ACPI: MCFG 000000007eff7000 0003C (v01 INTEL  D425KT   00000053 MSFT 0100000D)
Jun 15 20:06:08 ks384632 kernel: ACPI: HPET 000000007eff6000 00038 (v01 INTEL  D425KT   00000053 MSFT 0100000D)
Jun 15 20:06:08 ks384632 kernel: ACPI: SSDT 000000007eff2000 0377C (v01 INTEL  D425KT   00000053 MSFT 0100000D)
Jun 15 20:06:08 ks384632 kernel: ACPI: Local APIC address 0xfee00000
Jun 15 20:06:08 ks384632 kernel: No NUMA configuration found
Jun 15 20:06:08 ks384632 kernel: Faking a node at 0000000000000000-000000007f000000
Jun 15 20:06:08 ks384632 kernel: Initmem setup node 0 0000000000000000-000000007f000000
Jun 15 20:06:08 ks384632 kernel:  NODE_DATA [000000007efec000 - 000000007eff0fff]
Jun 15 20:06:08 ks384632 kernel: [ffffea0000000000-ffffea0001ffffff] PMD -> [ffff88007c600000-ffff88007e5fffff] on node 0
Jun 15 20:06:08 ks384632 kernel: Zone PFN ranges:
Jun 15 20:06:08 ks384632 kernel:  DMA      0x00000010 -> 0x00001000
Jun 15 20:06:08 ks384632 kernel:  DMA32    0x00001000 -> 0x00100000
Jun 15 20:06:08 ks384632 kernel:  Normal   empty
Jun 15 20:06:08 ks384632 kernel: Movable zone start PFN for each node
Jun 15 20:06:08 ks384632 kernel: early_node_map[6] active PFN ranges
Jun 15 20:06:08 ks384632 kernel:    0: 0x00000010 -> 0x0000008f
Jun 15 20:06:08 ks384632 kernel:    0: 0x00000090 -> 0x0000009e
Jun 15 20:06:08 ks384632 kernel:    0: 0x00000100 -> 0x0007ee98
Jun 15 20:06:08 ks384632 kernel:    0: 0x0007eebf -> 0x0007ef57
Jun 15 20:06:08 ks384632 kernel:    0: 0x0007efbf -> 0x0007eff1
Jun 15 20:06:08 ks384632 kernel:    0: 0x0007efff -> 0x0007f000
Jun 15 20:06:08 ks384632 kernel: On node 0 totalpages: 519920
Jun 15 20:06:08 ks384632 kernel:  DMA zone: 64 pages used for memmap
Jun 15 20:06:08 ks384632 kernel:  DMA zone: 5 pages reserved
Jun 15 20:06:08 ks384632 kernel:  DMA zone: 3912 pages, LIFO batch:0
Jun 15 20:06:08 ks384632 kernel:  DMA32 zone: 8064 pages used for memmap
Jun 15 20:06:08 ks384632 kernel:  DMA32 zone: 507875 pages, LIFO batch:31
Jun 15 20:06:08 ks384632 kernel: ACPI: PM-Timer IO Port: 0x408
Jun 15 20:06:08 ks384632 kernel: ACPI: Local APIC address 0xfee00000
Jun 15 20:06:08 ks384632 kernel: ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
Jun 15 20:06:08 ks384632 kernel: ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
Jun 15 20:06:08 ks384632 kernel: ACPI: LAPIC (acpi_id[0x03] lapic_id[0x02] disabled)
Jun 15 20:06:08 ks384632 kernel: ACPI: LAPIC (acpi_id[0x04] lapic_id[0x03] disabled)
Jun 15 20:06:08 ks384632 kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high level lint[0x1])
Jun 15 20:06:08 ks384632 kernel: ACPI: LAPIC_NMI (acpi_id[0x02] high level lint[0x1])
Jun 15 20:06:08 ks384632 kernel: ACPI: LAPIC_NMI (acpi_id[0x03] high level lint[0x1])
Jun 15 20:06:08 ks384632 kernel: ACPI: LAPIC_NMI (acpi_id[0x04] high level lint[0x1])
Jun 15 20:06:08 ks384632 kernel: ACPI: IOAPIC (id[0x08] address[0xfec00000] gsi_base[0])
Jun 15 20:06:08 ks384632 kernel: IOAPIC[0]: apic_id 8, version 32, address 0xfec00000, GSI 0-23
Jun 15 20:06:08 ks384632 kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
Jun 15 20:06:08 ks384632 kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
Jun 15 20:06:08 ks384632 kernel: ACPI: IRQ0 used by override.
Jun 15 20:06:08 ks384632 kernel: ACPI: IRQ2 used by override.
Jun 15 20:06:08 ks384632 kernel: ACPI: IRQ9 used by override.
Jun 15 20:06:08 ks384632 kernel: Using ACPI (MADT) for SMP configuration information
Jun 15 20:06:08 ks384632 kernel: ACPI: HPET id: 0x8086a201 base: 0xfed00000
Jun 15 20:06:08 ks384632 kernel: SMP: Allowing 4 CPUs, 2 hotplug CPUs
Jun 15 20:06:08 ks384632 kernel: nr_irqs_gsi: 40