Ubuntu Pastebin

Paste from ubuntu at Thu, 4 Jun 2015 13:39:58 +0000

Download as text
   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
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
[    0.000000] pcpu-alloc: [0] 064 065 066 067 [0] 068 069 070 071 
[    0.000000] pcpu-alloc: [0] 072 073 074 075 [0] 076 077 078 079 
[    0.000000] pcpu-alloc: [0] 080 081 082 083 [0] 084 085 086 087 
[    0.000000] pcpu-alloc: [0] 088 089 090 091 [0] 092 093 094 095 
[    0.000000] pcpu-alloc: [0] 096 097 098 099 [0] 100 101 102 103 
[    0.000000] pcpu-alloc: [0] 104 105 106 107 [0] 108 109 110 111 
[    0.000000] pcpu-alloc: [0] 112 113 114 115 [0] 116 117 118 119 
[    0.000000] pcpu-alloc: [0] 120 121 122 123 [0] 124 125 126 127 
[    0.000000] pcpu-alloc: [0] 128 129 130 131 [0] 132 133 134 135 
[    0.000000] pcpu-alloc: [0] 136 137 138 139 [0] 140 141 142 143 
[    0.000000] pcpu-alloc: [0] 144 145 146 147 [0] 148 149 150 151 
[    0.000000] pcpu-alloc: [0] 152 153 154 155 [0] 156 157 158 159 
[    0.000000] Built 4 zonelists in Node order, mobility grouping on.  Total pages: 2095360
[    0.000000] Policy zone: DMA
[    0.000000] Kernel command line: root=UUID=f7c3b31d-3411-420e-a57d-9318e43248ba ro console=hvc0
[    0.000000] PID hash table entries: 4096 (order: -1, 32768 bytes)
[    0.000000] Sorting __ex_table...
[    0.000000] Memory: 126761280K/134217728K available (10240K kernel code, 1408K rwdata, 3324K rodata, 5696K init, 2802K bss, 7456448K reserved)
[    0.000000] SLUB: HWalign=128, Order=0-3, MinObjects=0, CPUs=160, Nodes=256
[    0.000000] Hierarchical RCU implementation.
[    0.000000] 	RCU restricting CPUs from NR_CPUS=2048 to nr_cpu_ids=160.
[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=160
[    0.000000] NR_IRQS:512 nr_irqs:512 16
[    0.000000] ICS OPAL backend registered
[    0.000000] time_init: decrementer frequency = 512.000000 MHz
[    0.000000] time_init: processor frequency   = 3458.000000 MHz
[    0.000003] clocksource: timebase mult[1f40000] shift[24] registered
[    0.000987] clockevent: decrementer mult[83126e98] shift[32] cpu[0]
[    0.001644] Console: colour dummy device 80x25
[    0.002409] console [hvc0] enabled
[    0.002967] bootconsole [udbg0] disabled
[    0.113462] allocated 33554432 bytes of page_cgroup
[    0.113561] please try 'cgroup_disable=memory' option if you don't want memory cgroups
[    0.114657] mempolicy: Enabling automatic NUMA balancing. Configure with numa_balancing= or the kernel.numa_balancing sysctl
[    0.114775] pid_max: default: 163840 minimum: 1280
[    0.117752] Security Framework initialized
[    0.117998] AppArmor: AppArmor initialized
[    0.118079] Yama: becoming mindful.
[    0.122179] Dentry cache hash table entries: 16777216 (order: 11, 134217728 bytes)
[    0.274003] Inode-cache hash table entries: 8388608 (order: 10, 67108864 bytes)
[    0.358851] Mount-cache hash table entries: 262144 (order: 5, 2097152 bytes)
[    0.359028] Mountpoint-cache hash table entries: 262144 (order: 5, 2097152 bytes)
[    0.366596] Initializing cgroup subsys memory
[    0.367066] Initializing cgroup subsys devices
[    0.367141] Initializing cgroup subsys freezer
[    0.367204] Initializing cgroup subsys net_cls
[    0.367275] Initializing cgroup subsys blkio
[    0.367343] Initializing cgroup subsys perf_event
[    0.367427] Initializing cgroup subsys net_prio
[    0.367498] Initializing cgroup subsys hugetlb
[    0.368417] ftrace: allocating 26878 entries in 10 pages
[    0.393083] EEH: PowerNV platform initialized
[    0.393212] POWER8 performance monitor hardware support registered
[    0.393398] power8-pmu: PMAO restore workaround active.
[    0.629153] random: nonblocking pool is initialized
[    0.700004] Brought up 160 CPUs
[    0.700074] Node 0 CPUs: 0-39
[    0.700078] Node 1 CPUs: 40-79
[    0.700082] Node 16 CPUs: 80-119
[    0.700086] Node 17 CPUs: 120-159
[    0.738579] devtmpfs: initialized
[    0.763722] evm: security.selinux
[    0.763779] evm: security.SMACK64
[    0.763828] evm: security.SMACK64EXEC
[    0.763864] evm: security.SMACK64TRANSMUTE
[    0.763901] evm: security.SMACK64MMAP
[    0.763938] evm: security.ima
[    0.763974] evm: security.capability
[    0.764546] EEH: devices created
[    0.768789] regulator-dummy: no parameters
[    0.773454] NET: Registered protocol family 16
[    0.773570] IBM eBus Device Driver
[    0.773880] cpuidle: using governor ladder
[    0.773920] cpuidle: using governor menu
[    0.793175] PCI: Probing PCI hardware
[    0.793224] PCI: I/O resource not set for host bridge /pciex@3fffe40000000 (domain 0)
[    0.793355] PCI host bridge to bus 0000:00
[    0.793396] pci_bus 0000:00: root bus resource [mem 0x3fe000000000-0x3fe07ffeffff] (bus address [0x80000000-0xfffeffff])
[    0.793494] pci_bus 0000:00: root bus resource [mem 0x3b0010000000-0x3b0fffffffff 64bit pref]
[    0.793580] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.793632] pci_bus 0000:00: busn_res: [bus 00-ff] end is updated to ff
[    0.793673] pci 0000:00:00.0: [1014:03dc] type 01 class 0x060400
[    0.793825] pci 0000:00:00.0: PME# supported from D0 D3hot D3cold
[    0.794010] pci 0000:00:00.0: PCI bridge to [bus 01]
[    0.794095] pci_bus 0000:00: busn_res: [bus 00-ff] end is updated to 01
[    0.794099] PCI: I/O resource not set for host bridge /pciex@3fffe40100000 (domain 1)
[    0.794213] PCI host bridge to bus 0001:00
[    0.794252] pci_bus 0001:00: root bus resource [mem 0x3fe080000000-0x3fe0fffeffff] (bus address [0x80000000-0xfffeffff])
[    0.794349] pci_bus 0001:00: root bus resource [mem 0x3b1010000000-0x3b1fffffffff 64bit pref]
[    0.794434] pci_bus 0001:00: root bus resource [bus 00-ff]
[    0.794489] pci_bus 0001:00: busn_res: [bus 00-ff] end is updated to ff
[    0.794517] pci 0001:00:00.0: [1014:03dc] type 01 class 0x060400
[    0.794660] pci 0001:00:00.0: PME# supported from D0 D3hot D3cold
[    0.794858] pci 0001:01:00.0: [10b5:8732] type 01 class 0x060400
[    0.794889] pci 0001:01:00.0: reg 0x10: [mem 0x3fe081800000-0x3fe08183ffff]
[    0.795114] pci 0001:01:00.0: PME# supported from D0 D3hot D3cold
[    0.802515] pci 0001:00:00.0: PCI bridge to [bus 01-09]
[    0.802597] pci 0001:00:00.0:   bridge window [mem 0x3fe080000000-0x3fe081ffffff]
[    0.802610] pci 0001:00:00.0:   bridge window [mem 0x3fe082000000-0x3fe0837fffff 64bit pref]
[    0.802830] pci 0001:02:01.0: [10b5:8732] type 01 class 0x060400
[    0.803086] pci 0001:02:01.0: PME# supported from D0 D3hot D3cold
[    0.803223] pci 0001:02:08.0: [10b5:8732] type 01 class 0x060400
[    0.803477] pci 0001:02:08.0: PME# supported from D0 D3hot D3cold
[    0.803616] pci 0001:02:09.0: [10b5:8732] type 01 class 0x060400
[    0.803870] pci 0001:02:09.0: PME# supported from D0 D3hot D3cold
[    0.803992] pci 0001:01:00.0: PCI bridge to [bus 02-09]
[    0.804058] pci 0001:01:00.0:   bridge window [mem 0x3fe080000000-0x3fe0817fffff]
[    0.804072] pci 0001:01:00.0:   bridge window [mem 0x3fe082000000-0x3fe0837fffff 64bit pref]
[    0.804311] pci 0001:02:01.0: PCI bridge to [bus 03-07]
[    0.804376] pci 0001:02:01.0:   bridge window [mem 0x3fe080000000-0x3fe0807fffff]
[    0.804389] pci 0001:02:01.0:   bridge window [mem 0x3fe082000000-0x3fe0827fffff 64bit pref]
[    0.804546] pci 0001:08:00.0: [1014:034a] type 00 class 0x010400
[    0.804586] pci 0001:08:00.0: reg 0x10: [mem 0x3fe080800000-0x3fe08080ffff 64bit]
[    0.804614] pci 0001:08:00.0: reg 0x18: [mem 0x3fe080810000-0x3fe08081ffff 64bit]
[    0.804665] pci 0001:08:00.0: reg 0x30: [mem 0x00000000-0x0001ffff pref]
[    0.804811] pci 0001:08:00.0: PME# supported from D0 D3hot D3cold
[    0.804911] pci 0001:08:00.0: reg 0x16c: [mem 0x00000000-0x0000ffff 64bit]
[    0.804940] pci 0001:08:00.0: reg 0x174: [mem 0x00000000-0x0000ffff 64bit]
[    0.810523] pci 0001:02:08.0: PCI bridge to [bus 08]
[    0.810589] pci 0001:02:08.0:   bridge window [mem 0x3fe080800000-0x3fe080ffffff]
[    0.810602] pci 0001:02:08.0:   bridge window [mem 0x3fe082800000-0x3fe082ffffff 64bit pref]
[    0.810766] pci 0001:09:00.0: [104c:8241] type 00 class 0x0c0330
[    0.810810] pci 0001:09:00.0: reg 0x10: [mem 0x3fe081000000-0x3fe08100ffff 64bit]
[    0.810839] pci 0001:09:00.0: reg 0x18: [mem 0x3fe081010000-0x3fe081011fff 64bit]
[    0.811026] pci 0001:09:00.0: supports D1 D2
[    0.811029] pci 0001:09:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.818532] pci 0001:02:09.0: PCI bridge to [bus 09]
[    0.818599] pci 0001:02:09.0:   bridge window [mem 0x3fe081000000-0x3fe0817fffff]
[    0.818612] pci 0001:02:09.0:   bridge window [mem 0x3fe083000000-0x3fe0837fffff 64bit pref]
[    0.818673] pci_bus 0001:00: busn_res: [bus 00-ff] end is updated to 09
[    0.818709] PCI: I/O resource not set for host bridge /pciex@3fffe40400000 (domain 2)
[    0.818824] PCI host bridge to bus 0002:00
[    0.818863] pci_bus 0002:00: root bus resource [mem 0x3fe200000000-0x3fe27ffeffff] (bus address [0x80000000-0xfffeffff])
[    0.818960] pci_bus 0002:00: root bus resource [mem 0x3b4010000000-0x3b4fffffffff 64bit pref]
[    0.819045] pci_bus 0002:00: root bus resource [bus 00-ff]
[    0.819097] pci_bus 0002:00: busn_res: [bus 00-ff] end is updated to ff
[    0.819127] pci 0002:00:00.0: [1014:03dc] type 01 class 0x060400
[    0.819277] pci 0002:00:00.0: PME# supported from D0 D3hot D3cold
[    0.819447] pci 0002:00:00.0: PCI bridge to [bus 01]
[    0.819533] pci_bus 0002:00: busn_res: [bus 00-ff] end is updated to 01
[    0.819536] PCI: I/O resource not set for host bridge /pciex@3fffe40500000 (domain 3)
[    0.819651] PCI host bridge to bus 0003:00
[    0.819691] pci_bus 0003:00: root bus resource [mem 0x3fe280000000-0x3fe2fffeffff] (bus address [0x80000000-0xfffeffff])
[    0.819787] pci_bus 0003:00: root bus resource [mem 0x3b5010000000-0x3b5fffffffff 64bit pref]
[    0.819877] pci_bus 0003:00: root bus resource [bus 00-ff]
[    0.819928] pci_bus 0003:00: busn_res: [bus 00-ff] end is updated to ff
[    0.819957] pci 0003:00:00.0: [1014:03dc] type 01 class 0x060400
[    0.820110] pci 0003:00:00.0: PME# supported from D0 D3hot D3cold
[    0.820311] pci 0003:01:00.0: [10b5:8748] type 01 class 0x060400
[    0.820343] pci 0003:01:00.0: reg 0x10: [mem 0x3fe282800000-0x3fe28283ffff]
[    0.820577] pci 0003:01:00.0: PME# supported from D0 D3hot D3cold
[    0.826530] pci 0003:00:00.0: PCI bridge to [bus 01-0f]
[    0.826602] pci 0003:00:00.0:   bridge window [mem 0x3fe280000000-0x3fe282ffffff]
[    0.826614] pci 0003:00:00.0:   bridge window [mem 0x3fe283000000-0x3fe284ffffff 64bit pref]
[    0.826825] pci 0003:02:01.0: [10b5:8748] type 01 class 0x060400
[    0.827089] pci 0003:02:01.0: PME# supported from D0 D3hot D3cold
[    0.827230] pci 0003:02:08.0: [10b5:8748] type 01 class 0x060400
[    0.827495] pci 0003:02:08.0: PME# supported from D0 D3hot D3cold
[    0.827638] pci 0003:02:09.0: [10b5:8748] type 01 class 0x060400
[    0.827904] pci 0003:02:09.0: PME# supported from D0 D3hot D3cold
[    0.828062] pci 0003:02:10.0: [10b5:8748] type 01 class 0x060400
[    0.828330] pci 0003:02:10.0: PME# supported from D0 D3hot D3cold
[    0.828479] pci 0003:02:11.0: [10b5:8748] type 01 class 0x060400
[    0.828746] pci 0003:02:11.0: PME# supported from D0 D3hot D3cold
[    0.828865] pci 0003:01:00.0: PCI bridge to [bus 02-0f]
[    0.828944] pci 0003:01:00.0:   bridge window [mem 0x3fe280000000-0x3fe2827fffff]
[    0.828958] pci 0003:01:00.0:   bridge window [mem 0x3fe283000000-0x3fe284ffffff 64bit pref]
[    0.829348] pci 0003:03:00.0: [104c:8241] type 00 class 0x0c0330
[    0.829394] pci 0003:03:00.0: reg 0x10: [mem 0x3fe280000000-0x3fe28000ffff 64bit]
[    0.829425] pci 0003:03:00.0: reg 0x18: [mem 0x3fe280010000-0x3fe280011fff 64bit]
[    0.829623] pci 0003:03:00.0: supports D1 D2
[    0.829625] pci 0003:03:00.0: PME# supported from D0 D1 D2 D3hot
[    0.834545] pci 0003:02:01.0: PCI bridge to [bus 03]
[    0.834655] pci 0003:02:01.0:   bridge window [mem 0x3fe280000000-0x3fe2807fffff]
[    0.834834] pci 0003:04:00.0: [1014:034a] type 00 class 0x010400
[    0.834875] pci 0003:04:00.0: reg 0x10: [mem 0x3fe280800000-0x3fe28080ffff 64bit]
[    0.834904] pci 0003:04:00.0: reg 0x18: [mem 0x3fe280810000-0x3fe28081ffff 64bit]
[    0.834956] pci 0003:04:00.0: reg 0x30: [mem 0x00000000-0x0001ffff pref]
[    0.835109] pci 0003:04:00.0: PME# supported from D0 D3hot D3cold
[    0.835212] pci 0003:04:00.0: reg 0x16c: [mem 0x00000000-0x0000ffff 64bit]
[    0.835241] pci 0003:04:00.0: reg 0x174: [mem 0x00000000-0x0000ffff 64bit]
[    0.842546] pci 0003:02:08.0: PCI bridge to [bus 04]
[    0.842656] pci 0003:02:08.0:   bridge window [mem 0x3fe280800000-0x3fe280ffffff]
[    0.842670] pci 0003:02:08.0:   bridge window [mem 0x3fe283000000-0x3fe2837fffff 64bit pref]
[    0.842853] pci 0003:05:00.0: [14e4:1657] type 00 class 0x020000
[    0.842899] pci 0003:05:00.0: reg 0x10: [mem 0x3fe283a00000-0x3fe283a0ffff 64bit pref]
[    0.842929] pci 0003:05:00.0: reg 0x18: [mem 0x3fe283a10000-0x3fe283a1ffff 64bit pref]
[    0.842959] pci 0003:05:00.0: reg 0x20: [mem 0x3fe283a20000-0x3fe283a2ffff 64bit pref]
[    0.842979] pci 0003:05:00.0: reg 0x30: [mem 0x00000000-0x0007ffff pref]
[    0.843184] pci 0003:05:00.0: PME# supported from D0 D3hot D3cold
[    0.843340] pci 0003:05:00.1: [14e4:1657] type 00 class 0x020000
[    0.843385] pci 0003:05:00.1: reg 0x10: [mem 0x3fe283a30000-0x3fe283a3ffff 64bit pref]
[    0.843415] pci 0003:05:00.1: reg 0x18: [mem 0x3fe283a40000-0x3fe283a4ffff 64bit pref]
[    0.843445] pci 0003:05:00.1: reg 0x20: [mem 0x3fe283a50000-0x3fe283a5ffff 64bit pref]
[    0.843465] pci 0003:05:00.1: reg 0x30: [mem 0x00000000-0x0007ffff pref]
[    0.843672] pci 0003:05:00.1: PME# supported from D0 D3hot D3cold
[    0.843808] pci 0003:05:00.2: [14e4:1657] type 00 class 0x020000
[    0.843855] pci 0003:05:00.2: reg 0x10: [mem 0x3fe283a60000-0x3fe283a6ffff 64bit pref]
[    0.843885] pci 0003:05:00.2: reg 0x18: [mem 0x3fe283a70000-0x3fe283a7ffff 64bit pref]
[    0.843915] pci 0003:05:00.2: reg 0x20: [mem 0x3fe283a80000-0x3fe283a8ffff 64bit pref]
[    0.843935] pci 0003:05:00.2: reg 0x30: [mem 0x00000000-0x0007ffff pref]
[    0.844143] pci 0003:05:00.2: PME# supported from D0 D3hot D3cold
[    0.844278] pci 0003:05:00.3: [14e4:1657] type 00 class 0x020000
[    0.844324] pci 0003:05:00.3: reg 0x10: [mem 0x3fe283a90000-0x3fe283a9ffff 64bit pref]
[    0.844354] pci 0003:05:00.3: reg 0x18: [mem 0x3fe283aa0000-0x3fe283aaffff 64bit pref]
[    0.844384] pci 0003:05:00.3: reg 0x20: [mem 0x3fe283ab0000-0x3fe283abffff 64bit pref]
[    0.844404] pci 0003:05:00.3: reg 0x30: [mem 0x00000000-0x0007ffff pref]
[    0.844609] pci 0003:05:00.3: PME# supported from D0 D3hot D3cold
[    0.844791] pci 0003:02:09.0: PCI bridge to [bus 05]
[    0.844901] pci 0003:02:09.0:   bridge window [mem 0x3fe281000000-0x3fe2817fffff]
[    0.844915] pci 0003:02:09.0:   bridge window [mem 0x3fe283800000-0x3fe283ffffff 64bit pref]
[    0.845108] pci 0003:02:10.0: PCI bridge to [bus 06-0a]
[    0.845219] pci 0003:02:10.0:   bridge window [mem 0x3fe281800000-0x3fe281ffffff]
[    0.845232] pci 0003:02:10.0:   bridge window [mem 0x3fe284000000-0x3fe2847fffff 64bit pref]
[    0.845358] pci 0003:02:11.0: PCI bridge to [bus 0b-0f]
[    0.845458] pci 0003:02:11.0:   bridge window [mem 0x3fe282000000-0x3fe2827fffff]
[    0.845471] pci 0003:02:11.0:   bridge window [mem 0x3fe284800000-0x3fe284ffffff 64bit pref]
[    0.845545] pci_bus 0003:00: busn_res: [bus 00-ff] end is updated to 0f
[    0.845619] PCI: I/O resource not set for host bridge /pciex@3fffe42000000 (domain 4)
[    0.845735] PCI host bridge to bus 0004:00
[    0.845775] pci_bus 0004:00: root bus resource [mem 0x3ff000000000-0x3ff07ffeffff] (bus address [0x80000000-0xfffeffff])
[    0.845872] pci_bus 0004:00: root bus resource [mem 0x3d0010000000-0x3d0fffffffff 64bit pref]
[    0.845959] pci_bus 0004:00: root bus resource [bus 00-ff]
[    0.846010] pci_bus 0004:00: busn_res: [bus 00-ff] end is updated to ff
[    0.846040] pci 0004:00:00.0: [1014:03dc] type 01 class 0x060400
[    0.846193] pci 0004:00:00.0: PME# supported from D0 D3hot D3cold
[    0.846373] pci 0004:00:00.0: PCI bridge to [bus 01]
[    0.846460] pci_bus 0004:00: busn_res: [bus 00-ff] end is updated to 01
[    0.846462] PCI: I/O resource not set for host bridge /pciex@3fffe42400000 (domain 5)
[    0.846583] PCI host bridge to bus 0005:00
[    0.846622] pci_bus 0005:00: root bus resource [mem 0x3ff200000000-0x3ff27ffeffff] (bus address [0x80000000-0xfffeffff])
[    0.846719] pci_bus 0005:00: root bus resource [mem 0x3d4010000000-0x3d4fffffffff 64bit pref]
[    0.846804] pci_bus 0005:00: root bus resource [bus 00-ff]
[    0.846859] pci_bus 0005:00: busn_res: [bus 00-ff] end is updated to ff
[    0.846891] pci 0005:00:00.0: [1014:03dc] type 01 class 0x060400
[    0.847052] pci 0005:00:00.0: PME# supported from D0 D3hot D3cold
[    0.847230] pci 0005:00:00.0: PCI bridge to [bus 01]
[    0.847318] pci_bus 0005:00: busn_res: [bus 00-ff] end is updated to 01
[    0.847320] PCI: I/O resource not set for host bridge /pciex@3fffe42500000 (domain 6)
[    0.847434] PCI host bridge to bus 0006:00
[    0.847473] pci_bus 0006:00: root bus resource [mem 0x3ff280000000-0x3ff2fffeffff] (bus address [0x80000000-0xfffeffff])
[    0.847570] pci_bus 0006:00: root bus resource [mem 0x3d5010000000-0x3d5fffffffff 64bit pref]
[    0.847656] pci_bus 0006:00: root bus resource [bus 00-ff]
[    0.847707] pci_bus 0006:00: busn_res: [bus 00-ff] end is updated to ff
[    0.847739] pci 0006:00:00.0: [1014:03dc] type 01 class 0x060400
[    0.847898] pci 0006:00:00.0: PME# supported from D0 D3hot D3cold
[    0.848073] pci 0006:00:00.0: PCI bridge to [bus 01]
[    0.848162] pci_bus 0006:00: busn_res: [bus 00-ff] end is updated to 01
[    0.848364] pci 0000:00:00.0: PCI bridge to [bus 01]
[    0.848433] pci_bus 0000:00: resource 4 [mem 0x3fe000000000-0x3fe07ffeffff]
[    0.848436] pci_bus 0000:00: resource 5 [mem 0x3b0010000000-0x3b0fffffffff 64bit pref]
[    0.848439] pci_bus 0001:00: max bus depth: 3 pci_try_num: 4
[    0.848497] pci 0001:08:00.0: reg 0x16c: [mem 0x00000000-0x0000ffff 64bit]
[    0.848528] pci 0001:08:00.0: reg 0x174: [mem 0x00000000-0x0000ffff 64bit]
[    0.848577] pci 0001:00:00.0: BAR 15: assigned [mem 0x3b1010000000-0x3b103fffffff 64bit pref]
[    0.848664] pci 0001:00:00.0: BAR 14: assigned [mem 0x3fe080000000-0x3fe081ffffff]
[    0.848737] pci 0001:00:00.0: BAR 13: can't assign io (size 0x3000)
[    0.848800] pci 0001:01:00.0: BAR 15: assigned [mem 0x3b1010000000-0x3b103fffffff 64bit pref]
[    0.848885] pci 0001:01:00.0: BAR 14: assigned [mem 0x3fe080000000-0x3fe0817fffff]
[    0.848960] pci 0001:01:00.0: BAR 0: assigned [mem 0x3fe081800000-0x3fe08183ffff]
[    0.849038] pci 0001:01:00.0: BAR 13: can't assign io (size 0x3000)
[    0.849102] pci 0001:02:01.0: BAR 15: assigned [mem 0x3b1010000000-0x3b101fffffff 64bit pref]
[    0.849188] pci 0001:02:08.0: BAR 15: assigned [mem 0x3b1020000000-0x3b102fffffff 64bit pref]
[    0.849273] pci 0001:02:09.0: BAR 15: assigned [mem 0x3b1030000000-0x3b103fffffff 64bit pref]
[    0.849359] pci 0001:02:01.0: BAR 14: assigned [mem 0x3fe080000000-0x3fe0807fffff]
[    0.849433] pci 0001:02:08.0: BAR 14: assigned [mem 0x3fe080800000-0x3fe080ffffff]
[    0.849506] pci 0001:02:09.0: BAR 14: assigned [mem 0x3fe081000000-0x3fe0817fffff]
[    0.849579] pci 0001:02:01.0: BAR 13: can't assign io (size 0x1000)
[    0.849640] pci 0001:02:08.0: BAR 13: can't assign io (size 0x1000)
[    0.849703] pci 0001:02:09.0: BAR 13: can't assign io (size 0x1000)
[    0.849765] pci 0001:02:01.0: PCI bridge to [bus 03-07]
[    0.849821] pci 0001:02:01.0:   bridge window [mem 0x3fe080000000-0x3fe0807fffff]
[    0.849909] pci 0001:02:01.0:   bridge window [mem 0x3b1010000000-0x3b101fffffff 64bit pref]
[    0.850102] pci 0001:08:00.0: reg 0x16c: [mem 0x00000000-0x0000ffff 64bit]
[    0.850130] pci 0001:08:00.0: reg 0x174: [mem 0x00000000-0x0000ffff 64bit]
[    0.850159] pci 0001:08:00.0: reg 0x16c: [mem 0x00000000-0x0000ffff 64bit]
[    0.850162] pci 0001:08:00.0: BAR 6: assigned [mem 0x3fe080800000-0x3fe08081ffff pref]
[    0.850300] pci 0001:08:00.0: BAR 0: assigned [mem 0x3fe080820000-0x3fe08082ffff 64bit]
[    0.850454] pci 0001:08:00.0: BAR 2: assigned [mem 0x3fe080830000-0x3fe08083ffff 64bit]
[    0.850637] pci 0001:08:00.0: reg 0x16c: [mem 0x00000000-0x0000ffff 64bit]
[    0.850641] pci 0001:08:00.0: BAR 7: assigned [mem 0x3fe080840000-0x3fe080a3ffff 64bit]
[    0.850821] pci 0001:08:00.0: reg 0x174: [mem 0x00000000-0x0000ffff 64bit]
[    0.850824] pci 0001:08:00.0: BAR 9: assigned [mem 0x3fe080a40000-0x3fe080c3ffff 64bit]
[    0.850976] pci 0001:02:08.0: PCI bridge to [bus 08]
[    0.851076] pci 0001:02:08.0:   bridge window [mem 0x3fe080800000-0x3fe080ffffff]
[    0.851217] pci 0001:02:08.0:   bridge window [mem 0x3b1020000000-0x3b102fffffff 64bit pref]
[    0.851386] pci 0001:09:00.0: BAR 0: assigned [mem 0x3fe081000000-0x3fe08100ffff 64bit]
[    0.851540] pci 0001:09:00.0: BAR 2: assigned [mem 0x3fe081010000-0x3fe081011fff 64bit]
[    0.851694] pci 0001:02:09.0: PCI bridge to [bus 09]
[    0.851794] pci 0001:02:09.0:   bridge window [mem 0x3fe081000000-0x3fe0817fffff]
[    0.851934] pci 0001:02:09.0:   bridge window [mem 0x3b1030000000-0x3b103fffffff 64bit pref]
[    0.852102] pci 0001:01:00.0: PCI bridge to [bus 02-09]
[    0.852201] pci 0001:01:00.0:   bridge window [mem 0x3fe080000000-0x3fe0817fffff]
[    0.852341] pci 0001:01:00.0:   bridge window [mem 0x3b1010000000-0x3b103fffffff 64bit pref]
[    0.852508] pci 0001:00:00.0: PCI bridge to [bus 01-09]
[    0.852609] pci 0001:00:00.0:   bridge window [mem 0x3fe080000000-0x3fe081ffffff]
[    0.852749] pci 0001:00:00.0:   bridge window [mem 0x3b1010000000-0x3b103fffffff 64bit pref]
[    0.852916] pci_bus 0001:00: No. 2 try to assign unassigned res
[    0.852992] pci 0001:00:00.0: BAR 13: can't assign io (size 0x3000)
[    0.853109] pci 0001:01:00.0: BAR 13: can't assign io (size 0x3000)
[    0.853225] pci 0001:02:01.0: BAR 13: can't assign io (size 0x1000)
[    0.853340] pci 0001:02:08.0: BAR 13: can't assign io (size 0x1000)
[    0.853454] pci 0001:02:09.0: BAR 13: can't assign io (size 0x1000)
[    0.853570] pci 0001:02:01.0: PCI bridge to [bus 03-07]
[    0.853669] pci 0001:02:01.0:   bridge window [mem 0x3fe080000000-0x3fe0807fffff]
[    0.853813] pci 0001:02:01.0:   bridge window [mem 0x3b1010000000-0x3b101fffffff 64bit pref]
[    0.853980] pci 0001:02:08.0: PCI bridge to [bus 08]
[    0.854079] pci 0001:02:08.0:   bridge window [mem 0x3fe080800000-0x3fe080ffffff]
[    0.854219] pci 0001:02:08.0:   bridge window [mem 0x3b1020000000-0x3b102fffffff 64bit pref]
[    0.854387] pci 0001:02:09.0: PCI bridge to [bus 09]
[    0.854453] pci 0001:02:09.0:   bridge window [mem 0x3fe081000000-0x3fe0817fffff]
[    0.854530] pci 0001:02:09.0:   bridge window [mem 0x3b1030000000-0x3b103fffffff 64bit pref]
[    0.854626] pci 0001:01:00.0: PCI bridge to [bus 02-09]
[    0.854682] pci 0001:01:00.0:   bridge window [mem 0x3fe080000000-0x3fe0817fffff]
[    0.854759] pci 0001:01:00.0:   bridge window [mem 0x3b1010000000-0x3b103fffffff 64bit pref]
[    0.854852] pci 0001:00:00.0: PCI bridge to [bus 01-09]
[    0.854908] pci 0001:00:00.0:   bridge window [mem 0x3fe080000000-0x3fe081ffffff]
[    0.854985] pci 0001:00:00.0:   bridge window [mem 0x3b1010000000-0x3b103fffffff 64bit pref]
[    0.855077] pci_bus 0001:00: No. 3 try to assign unassigned res
[    0.855153] pci 0001:00:00.0: BAR 13: can't assign io (size 0x3000)
[    0.855216] pci 0001:01:00.0: BAR 13: can't assign io (size 0x3000)
[    0.855278] pci 0001:02:01.0: BAR 13: can't assign io (size 0x1000)
[    0.855340] pci 0001:02:08.0: BAR 13: can't assign io (size 0x1000)
[    0.855402] pci 0001:02:09.0: BAR 13: can't assign io (size 0x1000)
[    0.855463] pci 0001:02:01.0: PCI bridge to [bus 03-07]
[    0.855519] pci 0001:02:01.0:   bridge window [mem 0x3fe080000000-0x3fe0807fffff]
[    0.855596] pci 0001:02:01.0:   bridge window [mem 0x3b1010000000-0x3b101fffffff 64bit pref]
[    0.855690] pci 0001:02:08.0: PCI bridge to [bus 08]
[    0.855746] pci 0001:02:08.0:   bridge window [mem 0x3fe080800000-0x3fe080ffffff]
[    0.855823] pci 0001:02:08.0:   bridge window [mem 0x3b1020000000-0x3b102fffffff 64bit pref]
[    0.855915] pci 0001:02:09.0: PCI bridge to [bus 09]
[    0.855971] pci 0001:02:09.0:   bridge window [mem 0x3fe081000000-0x3fe0817fffff]
[    0.856048] pci 0001:02:09.0:   bridge window [mem 0x3b1030000000-0x3b103fffffff 64bit pref]
[    0.856142] pci 0001:01:00.0: PCI bridge to [bus 02-09]
[    0.856231] pci 0001:01:00.0:   bridge window [mem 0x3fe080000000-0x3fe0817fffff]
[    0.856371] pci 0001:01:00.0:   bridge window [mem 0x3b1010000000-0x3b103fffffff 64bit pref]
[    0.856540] pci 0001:00:00.0: PCI bridge to [bus 01-09]
[    0.856639] pci 0001:00:00.0:   bridge window [mem 0x3fe080000000-0x3fe081ffffff]
[    0.856779] pci 0001:00:00.0:   bridge window [mem 0x3b1010000000-0x3b103fffffff 64bit pref]
[    0.856947] pci_bus 0001:00: No. 4 try to assign unassigned res
[    0.857022] pci 0001:00:00.0: BAR 13: can't assign io (size 0x3000)
[    0.857136] pci 0001:01:00.0: BAR 13: can't assign io (size 0x3000)
[    0.857252] pci 0001:02:01.0: BAR 13: can't assign io (size 0x1000)
[    0.857367] pci 0001:02:08.0: BAR 13: can't assign io (size 0x1000)
[    0.857482] pci 0001:02:09.0: BAR 13: can't assign io (size 0x1000)
[    0.857598] pci 0001:02:01.0: PCI bridge to [bus 03-07]
[    0.857697] pci 0001:02:01.0:   bridge window [mem 0x3fe080000000-0x3fe0807fffff]
[    0.857837] pci 0001:02:01.0:   bridge window [mem 0x3b1010000000-0x3b101fffffff 64bit pref]
[    0.858005] pci 0001:02:08.0: PCI bridge to [bus 08]
[    0.858105] pci 0001:02:08.0:   bridge window [mem 0x3fe080800000-0x3fe080ffffff]
[    0.858245] pci 0001:02:08.0:   bridge window [mem 0x3b1020000000-0x3b102fffffff 64bit pref]
[    0.858413] pci 0001:02:09.0: PCI bridge to [bus 09]
[    0.858512] pci 0001:02:09.0:   bridge window [mem 0x3fe081000000-0x3fe0817fffff]
[    0.858656] pci 0001:02:09.0:   bridge window [mem 0x3b1030000000-0x3b103fffffff 64bit pref]
[    0.858824] pci 0001:01:00.0: PCI bridge to [bus 02-09]
[    0.858924] pci 0001:01:00.0:   bridge window [mem 0x3fe080000000-0x3fe0817fffff]
[    0.859064] pci 0001:01:00.0:   bridge window [mem 0x3b1010000000-0x3b103fffffff 64bit pref]
[    0.859232] pci 0001:00:00.0: PCI bridge to [bus 01-09]
[    0.859332] pci 0001:00:00.0:   bridge window [mem 0x3fe080000000-0x3fe081ffffff]
[    0.859473] pci 0001:00:00.0:   bridge window [mem 0x3b1010000000-0x3b103fffffff 64bit pref]
[    0.859641] pci_bus 0001:00: Automatically enabled pci realloc, if you have problem, try booting with pci=realloc=off
[    0.859823] pci_bus 0001:00: resource 4 [mem 0x3fe080000000-0x3fe0fffeffff]
[    0.859826] pci_bus 0001:00: resource 5 [mem 0x3b1010000000-0x3b1fffffffff 64bit pref]
[    0.859829] pci_bus 0001:01: resource 1 [mem 0x3fe080000000-0x3fe081ffffff]
[    0.859832] pci_bus 0001:01: resource 2 [mem 0x3b1010000000-0x3b103fffffff 64bit pref]
[    0.859834] pci_bus 0001:02: resource 1 [mem 0x3fe080000000-0x3fe0817fffff]
[    0.859837] pci_bus 0001:02: resource 2 [mem 0x3b1010000000-0x3b103fffffff 64bit pref]
[    0.859840] pci_bus 0001:03: resource 1 [mem 0x3fe080000000-0x3fe0807fffff]
[    0.859842] pci_bus 0001:03: resource 2 [mem 0x3b1010000000-0x3b101fffffff 64bit pref]
[    0.859845] pci_bus 0001:08: resource 1 [mem 0x3fe080800000-0x3fe080ffffff]
[    0.859848] pci_bus 0001:08: resource 2 [mem 0x3b1020000000-0x3b102fffffff 64bit pref]
[    0.859850] pci_bus 0001:09: resource 1 [mem 0x3fe081000000-0x3fe0817fffff]
[    0.859853] pci_bus 0001:09: resource 2 [mem 0x3b1030000000-0x3b103fffffff 64bit pref]
[    0.859871] pci 0002:00:00.0: PCI bridge to [bus 01]
[    0.859982] pci_bus 0002:00: resource 4 [mem 0x3fe200000000-0x3fe27ffeffff]
[    0.859985] pci_bus 0002:00: resource 5 [mem 0x3b4010000000-0x3b4fffffffff 64bit pref]
[    0.859988] pci_bus 0003:00: max bus depth: 3 pci_try_num: 4
[    0.860047] pci 0003:04:00.0: reg 0x16c: [mem 0x00000000-0x0000ffff 64bit]
[    0.860076] pci 0003:04:00.0: reg 0x174: [mem 0x00000000-0x0000ffff 64bit]
[    0.860160] pci 0003:00:00.0: BAR 15: assigned [mem 0x3b5010000000-0x3b504fffffff 64bit pref]
[    0.860318] pci 0003:00:00.0: BAR 14: assigned [mem 0x3fe280000000-0x3fe282ffffff]
[    0.860455] pci 0003:00:00.0: BAR 13: can't assign io (size 0x4000)
[    0.860572] pci 0003:01:00.0: BAR 15: assigned [mem 0x3b5010000000-0x3b504fffffff 64bit pref]
[    0.860709] pci 0003:01:00.0: BAR 14: assigned [mem 0x3fe280000000-0x3fe2827fffff]
[    0.860782] pci 0003:01:00.0: BAR 0: assigned [mem 0x3fe282800000-0x3fe28283ffff]
[    0.860860] pci 0003:01:00.0: BAR 13: can't assign io (size 0x4000)
[    0.860926] pci 0003:02:08.0: BAR 15: assigned [mem 0x3b5010000000-0x3b501fffffff 64bit pref]
[    0.861013] pci 0003:02:09.0: BAR 15: assigned [mem 0x3b5020000000-0x3b502fffffff 64bit pref]
[    0.861099] pci 0003:02:10.0: BAR 15: assigned [mem 0x3b5030000000-0x3b503fffffff 64bit pref]
[    0.861184] pci 0003:02:11.0: BAR 15: assigned [mem 0x3b5040000000-0x3b504fffffff 64bit pref]
[    0.861270] pci 0003:02:01.0: BAR 14: assigned [mem 0x3fe280000000-0x3fe2807fffff]
[    0.861345] pci 0003:02:08.0: BAR 14: assigned [mem 0x3fe280800000-0x3fe280ffffff]
[    0.861423] pci 0003:02:09.0: BAR 14: assigned [mem 0x3fe281000000-0x3fe2817fffff]
[    0.861497] pci 0003:02:10.0: BAR 14: assigned [mem 0x3fe281800000-0x3fe281ffffff]
[    0.861570] pci 0003:02:11.0: BAR 14: assigned [mem 0x3fe282000000-0x3fe2827fffff]
[    0.861643] pci 0003:02:08.0: BAR 13: can't assign io (size 0x1000)
[    0.861706] pci 0003:02:09.0: BAR 13: can't assign io (size 0x1000)
[    0.861768] pci 0003:02:10.0: BAR 13: can't assign io (size 0x1000)
[    0.861830] pci 0003:02:11.0: BAR 13: can't assign io (size 0x1000)
[    0.861893] pci 0003:03:00.0: BAR 0: assigned [mem 0x3fe280000000-0x3fe28000ffff 64bit]
[    0.861985] pci 0003:03:00.0: BAR 2: assigned [mem 0x3fe280010000-0x3fe280011fff 64bit]
[    0.862076] pci 0003:02:01.0: PCI bridge to [bus 03]
[    0.862132] pci 0003:02:01.0:   bridge window [mem 0x3fe280000000-0x3fe2807fffff]
[    0.862244] pci 0003:04:00.0: reg 0x16c: [mem 0x00000000-0x0000ffff 64bit]
[    0.862273] pci 0003:04:00.0: reg 0x174: [mem 0x00000000-0x0000ffff 64bit]
[    0.862302] pci 0003:04:00.0: reg 0x16c: [mem 0x00000000-0x0000ffff 64bit]
[    0.862306] pci 0003:04:00.0: BAR 6: assigned [mem 0x3fe280800000-0x3fe28081ffff pref]
[    0.862380] pci 0003:04:00.0: BAR 0: assigned [mem 0x3fe280820000-0x3fe28082ffff 64bit]
[    0.862471] pci 0003:04:00.0: BAR 2: assigned [mem 0x3fe280830000-0x3fe28083ffff 64bit]
[    0.862587] pci 0003:04:00.0: reg 0x16c: [mem 0x00000000-0x0000ffff 64bit]
[    0.862590] pci 0003:04:00.0: BAR 7: assigned [mem 0x3fe280840000-0x3fe280a3ffff 64bit]
[    0.862711] pci 0003:04:00.0: reg 0x174: [mem 0x00000000-0x0000ffff 64bit]
[    0.862715] pci 0003:04:00.0: BAR 9: assigned [mem 0x3fe280a40000-0x3fe280c3ffff 64bit]
[    0.862805] pci 0003:02:08.0: PCI bridge to [bus 04]
[    0.862861] pci 0003:02:08.0:   bridge window [mem 0x3fe280800000-0x3fe280ffffff]
[    0.862939] pci 0003:02:08.0:   bridge window [mem 0x3b5010000000-0x3b501fffffff 64bit pref]
[    0.863035] pci 0003:05:00.0: BAR 6: assigned [mem 0x3fe281000000-0x3fe28107ffff pref]
[    0.863110] pci 0003:05:00.1: BAR 6: assigned [mem 0x3fe281080000-0x3fe2810fffff pref]
[    0.863184] pci 0003:05:00.2: BAR 6: assigned [mem 0x3fe281100000-0x3fe28117ffff pref]
[    0.863258] pci 0003:05:00.3: BAR 6: assigned [mem 0x3fe281180000-0x3fe2811fffff pref]
[    0.863331] pci 0003:05:00.0: BAR 0: assigned [mem 0x3b5020000000-0x3b502000ffff 64bit pref]
[    0.863434] pci 0003:05:00.0: BAR 2: assigned [mem 0x3b5020010000-0x3b502001ffff 64bit pref]
[    0.863537] pci 0003:05:00.0: BAR 4: assigned [mem 0x3b5020020000-0x3b502002ffff 64bit pref]
[    0.863642] pci 0003:05:00.1: BAR 0: assigned [mem 0x3b5020030000-0x3b502003ffff 64bit pref]
[    0.863745] pci 0003:05:00.1: BAR 2: assigned [mem 0x3b5020040000-0x3b502004ffff 64bit pref]
[    0.863849] pci 0003:05:00.1: BAR 4: assigned [mem 0x3b5020050000-0x3b502005ffff 64bit pref]
[    0.863951] pci 0003:05:00.2: BAR 0: assigned [mem 0x3b5020060000-0x3b502006ffff 64bit pref]
[    0.864054] pci 0003:05:00.2: BAR 2: assigned [mem 0x3b5020070000-0x3b502007ffff 64bit pref]
[    0.864159] pci 0003:05:00.2: BAR 4: assigned [mem 0x3b5020080000-0x3b502008ffff 64bit pref]
[    0.864262] pci 0003:05:00.3: BAR 0: assigned [mem 0x3b5020090000-0x3b502009ffff 64bit pref]
[    0.864365] pci 0003:05:00.3: BAR 2: assigned [mem 0x3b50200a0000-0x3b50200affff 64bit pref]
[    0.864468] pci 0003:05:00.3: BAR 4: assigned [mem 0x3b50200b0000-0x3b50200bffff 64bit pref]
[    0.864572] pci 0003:02:09.0: PCI bridge to [bus 05]
[    0.864627] pci 0003:02:09.0:   bridge window [mem 0x3fe281000000-0x3fe2817fffff]
[    0.864705] pci 0003:02:09.0:   bridge window [mem 0x3b5020000000-0x3b502fffffff 64bit pref]
[    0.864798] pci 0003:02:10.0: PCI bridge to [bus 06-0a]
[    0.864854] pci 0003:02:10.0:   bridge window [mem 0x3fe281800000-0x3fe281ffffff]
[    0.864932] pci 0003:02:10.0:   bridge window [mem 0x3b5030000000-0x3b503fffffff 64bit pref]
[    0.865025] pci 0003:02:11.0: PCI bridge to [bus 0b-0f]
[    0.865081] pci 0003:02:11.0:   bridge window [mem 0x3fe282000000-0x3fe2827fffff]
[    0.865158] pci 0003:02:11.0:   bridge window [mem 0x3b5040000000-0x3b504fffffff 64bit pref]
[    0.865251] pci 0003:01:00.0: PCI bridge to [bus 02-0f]
[    0.865307] pci 0003:01:00.0:   bridge window [mem 0x3fe280000000-0x3fe2827fffff]
[    0.865385] pci 0003:01:00.0:   bridge window [mem 0x3b5010000000-0x3b504fffffff 64bit pref]
[    0.865478] pci 0003:00:00.0: PCI bridge to [bus 01-0f]
[    0.865534] pci 0003:00:00.0:   bridge window [mem 0x3fe280000000-0x3fe282ffffff]
[    0.865612] pci 0003:00:00.0:   bridge window [mem 0x3b5010000000-0x3b504fffffff 64bit pref]
[    0.865706] pci_bus 0003:00: No. 2 try to assign unassigned res
[    0.865814] pci 0003:00:00.0: BAR 13: can't assign io (size 0x4000)
[    0.865876] pci 0003:01:00.0: BAR 13: can't assign io (size 0x4000)
[    0.865939] pci 0003:02:08.0: BAR 13: can't assign io (size 0x1000)
[    0.866000] pci 0003:02:09.0: BAR 13: can't assign io (size 0x1000)
[    0.866061] pci 0003:02:10.0: BAR 13: can't assign io (size 0x1000)
[    0.866123] pci 0003:02:11.0: BAR 13: can't assign io (size 0x1000)
[    0.866184] pci 0003:02:01.0: PCI bridge to [bus 03]
[    0.866240] pci 0003:02:01.0:   bridge window [mem 0x3fe280000000-0x3fe2807fffff]
[    0.866325] pci 0003:02:08.0: PCI bridge to [bus 04]
[    0.866381] pci 0003:02:08.0:   bridge window [mem 0x3fe280800000-0x3fe280ffffff]
[    0.866458] pci 0003:02:08.0:   bridge window [mem 0x3b5010000000-0x3b501fffffff 64bit pref]
[    0.866551] pci 0003:02:09.0: PCI bridge to [bus 05]
[    0.866639] pci 0003:02:09.0:   bridge window [mem 0x3fe281000000-0x3fe2817fffff]
[    0.866782] pci 0003:02:09.0:   bridge window [mem 0x3b5020000000-0x3b502fffffff 64bit pref]
[    0.866951] pci 0003:02:10.0: PCI bridge to [bus 06-0a]
[    0.867050] pci 0003:02:10.0:   bridge window [mem 0x3fe281800000-0x3fe281ffffff]
[    0.867191] pci 0003:02:10.0:   bridge window [mem 0x3b5030000000-0x3b503fffffff 64bit pref]
[    0.867358] pci 0003:02:11.0: PCI bridge to [bus 0b-0f]
[    0.867458] pci 0003:02:11.0:   bridge window [mem 0x3fe282000000-0x3fe2827fffff]
[    0.867598] pci 0003:02:11.0:   bridge window [mem 0x3b5040000000-0x3b504fffffff 64bit pref]
[    0.867767] pci 0003:01:00.0: PCI bridge to [bus 02-0f]
[    0.867866] pci 0003:01:00.0:   bridge window [mem 0x3fe280000000-0x3fe2827fffff]
[    0.868007] pci 0003:01:00.0:   bridge window [mem 0x3b5010000000-0x3b504fffffff 64bit pref]
[    0.868175] pci 0003:00:00.0: PCI bridge to [bus 01-0f]
[    0.868275] pci 0003:00:00.0:   bridge window [mem 0x3fe280000000-0x3fe282ffffff]
[    0.868415] pci 0003:00:00.0:   bridge window [mem 0x3b5010000000-0x3b504fffffff 64bit pref]
[    0.868583] pci_bus 0003:00: No. 3 try to assign unassigned res
[    0.868692] pci 0003:00:00.0: BAR 13: can't assign io (size 0x4000)
[    0.868806] pci 0003:01:00.0: BAR 13: can't assign io (size 0x4000)
[    0.868922] pci 0003:02:08.0: BAR 13: can't assign io (size 0x1000)
[    0.869036] pci 0003:02:09.0: BAR 13: can't assign io (size 0x1000)
[    0.869151] pci 0003:02:10.0: BAR 13: can't assign io (size 0x1000)
[    0.869267] pci 0003:02:11.0: BAR 13: can't assign io (size 0x1000)
[    0.869383] pci 0003:02:01.0: PCI bridge to [bus 03]
[    0.869482] pci 0003:02:01.0:   bridge window [mem 0x3fe280000000-0x3fe2807fffff]
[    0.869630] pci 0003:02:08.0: PCI bridge to [bus 04]
[    0.869731] pci 0003:02:08.0:   bridge window [mem 0x3fe280800000-0x3fe280ffffff]
[    0.869875] pci 0003:02:08.0:   bridge window [mem 0x3b5010000000-0x3b501fffffff 64bit pref]
[    0.870043] pci 0003:02:09.0: PCI bridge to [bus 05]
[    0.870142] pci 0003:02:09.0:   bridge window [mem 0x3fe281000000-0x3fe2817fffff]
[    0.870282] pci 0003:02:09.0:   bridge window [mem 0x3b5020000000-0x3b502fffffff 64bit pref]
[    0.870450] pci 0003:02:10.0: PCI bridge to [bus 06-0a]
[    0.870550] pci 0003:02:10.0:   bridge window [mem 0x3fe281800000-0x3fe281ffffff]
[    0.870690] pci 0003:02:10.0:   bridge window [mem 0x3b5030000000-0x3b503fffffff 64bit pref]
[    0.870862] pci 0003:02:11.0: PCI bridge to [bus 0b-0f]
[    0.870962] pci 0003:02:11.0:   bridge window [mem 0x3fe282000000-0x3fe2827fffff]
[    0.871103] pci 0003:02:11.0:   bridge window [mem 0x3b5040000000-0x3b504fffffff 64bit pref]
[    0.871196] pci 0003:01:00.0: PCI bridge to [bus 02-0f]
[    0.871252] pci 0003:01:00.0:   bridge window [mem 0x3fe280000000-0x3fe2827fffff]
[    0.871330] pci 0003:01:00.0:   bridge window [mem 0x3b5010000000-0x3b504fffffff 64bit pref]
[    0.871423] pci 0003:00:00.0: PCI bridge to [bus 01-0f]
[    0.871479] pci 0003:00:00.0:   bridge window [mem 0x3fe280000000-0x3fe282ffffff]
[    0.871556] pci 0003:00:00.0:   bridge window [mem 0x3b5010000000-0x3b504fffffff 64bit pref]
[    0.871651] pci_bus 0003:00: No. 4 try to assign unassigned res
[    0.871761] pci 0003:00:00.0: BAR 13: can't assign io (size 0x4000)
[    0.871825] pci 0003:01:00.0: BAR 13: can't assign io (size 0x4000)
[    0.871888] pci 0003:02:08.0: BAR 13: can't assign io (size 0x1000)
[    0.871949] pci 0003:02:09.0: BAR 13: can't assign io (size 0x1000)
[    0.872010] pci 0003:02:10.0: BAR 13: can't assign io (size 0x1000)
[    0.872072] pci 0003:02:11.0: BAR 13: can't assign io (size 0x1000)
[    0.872134] pci 0003:02:01.0: PCI bridge to [bus 03]
[    0.872191] pci 0003:02:01.0:   bridge window [mem 0x3fe280000000-0x3fe2807fffff]
[    0.872276] pci 0003:02:08.0: PCI bridge to [bus 04]
[    0.872333] pci 0003:02:08.0:   bridge window [mem 0x3fe280800000-0x3fe280ffffff]
[    0.872409] pci 0003:02:08.0:   bridge window [mem 0x3b5010000000-0x3b501fffffff 64bit pref]
[    0.872503] pci 0003:02:09.0: PCI bridge to [bus 05]
[    0.872560] pci 0003:02:09.0:   bridge window [mem 0x3fe281000000-0x3fe2817fffff]
[    0.872638] pci 0003:02:09.0:   bridge window [mem 0x3b5020000000-0x3b502fffffff 64bit pref]
[    0.872731] pci 0003:02:10.0: PCI bridge to [bus 06-0a]
[    0.872828] pci 0003:02:10.0:   bridge window [mem 0x3fe281800000-0x3fe281ffffff]
[    0.872969] pci 0003:02:10.0:   bridge window [mem 0x3b5030000000-0x3b503fffffff 64bit pref]
[    0.873137] pci 0003:02:11.0: PCI bridge to [bus 0b-0f]
[    0.873236] pci 0003:02:11.0:   bridge window [mem 0x3fe282000000-0x3fe2827fffff]
[    0.873377] pci 0003:02:11.0:   bridge window [mem 0x3b5040000000-0x3b504fffffff 64bit pref]
[    0.873544] pci 0003:01:00.0: PCI bridge to [bus 02-0f]
[    0.873644] pci 0003:01:00.0:   bridge window [mem 0x3fe280000000-0x3fe2827fffff]
[    0.873785] pci 0003:01:00.0:   bridge window [mem 0x3b5010000000-0x3b504fffffff 64bit pref]
[    0.873952] pci 0003:00:00.0: PCI bridge to [bus 01-0f]
[    0.874052] pci 0003:00:00.0:   bridge window [mem 0x3fe280000000-0x3fe282ffffff]
[    0.874192] pci 0003:00:00.0:   bridge window [mem 0x3b5010000000-0x3b504fffffff 64bit pref]
[    0.874359] pci_bus 0003:00: Automatically enabled pci realloc, if you have problem, try booting with pci=realloc=off
[    0.874542] pci_bus 0003:00: resource 4 [mem 0x3fe280000000-0x3fe2fffeffff]
[    0.874545] pci_bus 0003:00: resource 5 [mem 0x3b5010000000-0x3b5fffffffff 64bit pref]
[    0.874548] pci_bus 0003:01: resource 1 [mem 0x3fe280000000-0x3fe282ffffff]
[    0.874551] pci_bus 0003:01: resource 2 [mem 0x3b5010000000-0x3b504fffffff 64bit pref]
[    0.874553] pci_bus 0003:02: resource 1 [mem 0x3fe280000000-0x3fe2827fffff]
[    0.874556] pci_bus 0003:02: resource 2 [mem 0x3b5010000000-0x3b504fffffff 64bit pref]
[    0.874559] pci_bus 0003:03: resource 1 [mem 0x3fe280000000-0x3fe2807fffff]
[    0.874561] pci_bus 0003:04: resource 1 [mem 0x3fe280800000-0x3fe280ffffff]
[    0.874564] pci_bus 0003:04: resource 2 [mem 0x3b5010000000-0x3b501fffffff 64bit pref]
[    0.874567] pci_bus 0003:05: resource 1 [mem 0x3fe281000000-0x3fe2817fffff]
[    0.874569] pci_bus 0003:05: resource 2 [mem 0x3b5020000000-0x3b502fffffff 64bit pref]
[    0.874572] pci_bus 0003:06: resource 1 [mem 0x3fe281800000-0x3fe281ffffff]
[    0.874575] pci_bus 0003:06: resource 2 [mem 0x3b5030000000-0x3b503fffffff 64bit pref]
[    0.874577] pci_bus 0003:0b: resource 1 [mem 0x3fe282000000-0x3fe2827fffff]
[    0.874580] pci_bus 0003:0b: resource 2 [mem 0x3b5040000000-0x3b504fffffff 64bit pref]
[    0.874598] pci 0004:00:00.0: PCI bridge to [bus 01]
[    0.874709] pci_bus 0004:00: resource 4 [mem 0x3ff000000000-0x3ff07ffeffff]
[    0.874712] pci_bus 0004:00: resource 5 [mem 0x3d0010000000-0x3d0fffffffff 64bit pref]
[    0.874730] pci 0005:00:00.0: PCI bridge to [bus 01]
[    0.874841] pci_bus 0005:00: resource 4 [mem 0x3ff200000000-0x3ff27ffeffff]
[    0.874844] pci_bus 0005:00: resource 5 [mem 0x3d4010000000-0x3d4fffffffff 64bit pref]
[    0.874865] pci 0006:00:00.0: PCI bridge to [bus 01]
[    0.874977] pci_bus 0006:00: resource 4 [mem 0x3ff280000000-0x3ff2fffeffff]
[    0.874979] pci_bus 0006:00: resource 5 [mem 0x3d5010000000-0x3d5fffffffff 64bit pref]
[    0.874984] pci 0000:00     : [PE# 001] Secondary bus 0 associated with PE#1
[    0.875357] pci 0000:01     : [PE# 002] Secondary bus 1 associated with PE#2
[    0.875731] pci 0001:00     : [PE# 004] Secondary bus 0 associated with PE#4
[    0.876103] pci 0001:01     : [PE# 005] Secondary bus 1 associated with PE#5
[    0.876478] pci 0001:02     : [PE# 006] Secondary bus 2 associated with PE#6
[    0.876850] pci 0001:03     : [PE# 001] Secondary bus 3 associated with PE#1
[    0.877223] pci 0001:08     : [PE# 002] Secondary bus 8 associated with PE#2
[    0.877533] pci 0001:09     : [PE# 003] Secondary bus 9 associated with PE#3
[    0.877843] pci 0002:00     : [PE# 001] Secondary bus 0 associated with PE#1
[    0.878154] pci 0002:01     : [PE# 002] Secondary bus 1 associated with PE#2
[    0.878462] pci 0003:00     : [PE# 005] Secondary bus 0 associated with PE#5
[    0.878770] pci 0003:01     : [PE# 006] Secondary bus 1 associated with PE#6
[    0.879148] pci 0003:02     : [PE# 007] Secondary bus 2 associated with PE#7
[    0.879522] pci 0003:03     : [PE# 008] Secondary bus 3 associated with PE#8
[    0.879895] pci 0003:04     : [PE# 001] Secondary bus 4 associated with PE#1
[    0.880271] pci 0003:05     : [PE# 002] Secondary bus 5 associated with PE#2
[    0.880646] pci 0003:06     : [PE# 003] Secondary bus 6 associated with PE#3
[    0.881022] pci 0003:0b     : [PE# 004] Secondary bus 11 associated with PE#4
[    0.881397] pci 0004:00     : [PE# 001] Secondary bus 0 associated with PE#1
[    0.881772] pci 0004:01     : [PE# 002] Secondary bus 1 associated with PE#2
[    0.882143] pci 0005:00     : [PE# 001] Secondary bus 0 associated with PE#1
[    0.882514] pci 0005:01     : [PE# 002] Secondary bus 1 associated with PE#2
[    0.882885] pci 0006:00     : [PE# 001] Secondary bus 0 associated with PE#1
[    0.883262] pci 0006:01     : [PE# 002] Secondary bus 1 associated with PE#2
[    0.884443] PCI: Domain 0000 has 8 available 32-bit DMA segments
[    0.884504] PCI: 0 PE# for a total weight of 0
[    0.884553] PCI: Domain 0001 has 8 available 32-bit DMA segments
[    0.884614] PCI: 2 PE# for a total weight of 25
[    0.884663] pci 0001:08     : [PE# 002] Assign DMA32 space
[    0.884712] pci 0001:08     : [PE# 002] Setting up 32-bit TCE table at 0..80000000
[    0.958197] IOMMU table initialized, virtual merging enabled
[    0.958327] pci 0001:08     : [PE# 002] Enabling 64-bit DMA bypass
[    0.958442] pci 0001:09     : [PE# 003] Assign DMA32 space
[    0.958534] pci 0001:09     : [PE# 003] Setting up 32-bit TCE table at 0..80000000
[    1.032046] pci 0001:09     : [PE# 003] Enabling 64-bit DMA bypass
[    1.032128] PCI: Domain 0002 has 8 available 32-bit DMA segments
[    1.032188] PCI: 0 PE# for a total weight of 0
[    1.032237] PCI: Domain 0003 has 8 available 32-bit DMA segments
[    1.032297] PCI: 3 PE# for a total weight of 65
[    1.032346] pci 0003:05     : [PE# 002] Assign DMA32 space
[    1.032395] pci 0003:05     : [PE# 002] Setting up 32-bit TCE table at 0..80000000
[    1.105845] pci 0003:05     : [PE# 002] Enabling 64-bit DMA bypass
[    1.105925] pci 0003:04     : [PE# 001] Assign DMA32 space
[    1.105975] pci 0003:04     : [PE# 001] Setting up 32-bit TCE table at 0..80000000
[    1.179436] pci 0003:04     : [PE# 001] Enabling 64-bit DMA bypass
[    1.179517] pci 0003:03     : [PE# 008] Assign DMA32 space
[    1.179566] pci 0003:03     : [PE# 008] Setting up 32-bit TCE table at 0..80000000
[    1.253042] pci 0003:03     : [PE# 008] Enabling 64-bit DMA bypass
[    1.253122] PCI: Domain 0004 has 8 available 32-bit DMA segments
[    1.253182] PCI: 0 PE# for a total weight of 0
[    1.253231] PCI: Domain 0005 has 8 available 32-bit DMA segments
[    1.253291] PCI: 0 PE# for a total weight of 0
[    1.253340] PCI: Domain 0006 has 8 available 32-bit DMA segments
[    1.253400] PCI: 0 PE# for a total weight of 0
[    1.254855] EEH: PCI Enhanced I/O Error Handling Enabled
[    1.255009] PCI: Probing PCI hardware done
[    1.267356] DUMP: Failed to register kernel log buffer. rc = -1
[    1.267542] powernv-rng: Registering arch random hook.
[    1.291050] vgaarb: loaded
[    1.291759] SCSI subsystem initialized
[    1.292367] libata version 3.00 loaded.
[    1.292431] usbcore: registered new interface driver usbfs
[    1.292493] usbcore: registered new interface driver hub
[    1.292661] usbcore: registered new device driver usb
[    1.292741] pps_core: LinuxPPS API ver. 1 registered
[    1.292790] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    1.292879] PTP clock support registered
[    1.294418] NetLabel: Initializing
[    1.294489] NetLabel:  domain hash size = 128
[    1.294582] NetLabel:  protocols = UNLABELED CIPSOv4
[    1.294698] NetLabel:  unlabeled traffic allowed by default
[    1.296215] Switched to clocksource timebase
[    1.303714] AppArmor: AppArmor Filesystem Enabled
[    1.308377] NET: Registered protocol family 2
[    1.310298] TCP established hash table entries: 524288 (order: 6, 4194304 bytes)
[    1.311843] TCP bind hash table entries: 65536 (order: 4, 1048576 bytes)
[    1.312085] TCP: Hash tables configured (established 524288 bind 65536)
[    1.312172] TCP: reno registered
[    1.312251] UDP hash table entries: 65536 (order: 5, 2097152 bytes)
[    1.312762] UDP-Lite hash table entries: 65536 (order: 5, 2097152 bytes)
[    1.314023] NET: Registered protocol family 1
[    1.314296] PCI: CLS 128 bytes, default 128
[    1.314358] Trying to unpack rootfs image as initramfs...
[    1.882215] Freeing initrd memory: 25344K (c000000003820000 - c0000000050e0000)
[    1.903622] futex hash table entries: 65536 (order: 7, 8388608 bytes)
[    1.904797] Initialise system trusted keyring
[    1.905149] audit: initializing netlink subsys (disabled)
[    1.905229] audit: type=2000 audit(1433424947.884:1): initialized
[    1.906358] HugeTLB registered 16 MB page size, pre-allocated 0 pages
[    1.906420] HugeTLB registered 16 GB page size, pre-allocated 0 pages
[    1.909358] zpool: loaded
[    1.909408] zbud: loaded
[    1.910621] VFS: Disk quotas dquot_6.5.2
[    1.911192] Dquot-cache hash table entries: 8192 (order 0, 65536 bytes)
[    1.916039] fuse init (API version 7.23)
[    1.916826] msgmni has been set to 32768
[    1.917288] Key type big_key registered
[    1.918454] Key type asymmetric registered
[    1.918527] Asymmetric key parser 'x509' registered
[    1.918918] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 250)
[    1.919553] io scheduler noop registered
[    1.919625] io scheduler deadline registered
[    1.920046] io scheduler cfq registered (default)
[    1.924127] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    1.924448] hvc0: raw protocol on /ibm,opal/consoles/serial@0 (boot console)
[    1.925934] hvc1: hvsi protocol on /ibm,opal/consoles/serial@1
[    1.926069] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    1.928189] Linux agpgart interface v0.103
[    1.933870] brd: module loaded
[    1.936172] loop: module loaded
[    1.936981] libphy: Fixed MDIO Bus: probed
[    1.937055] tun: Universal TUN/TAP device driver, 1.6
[    1.937146] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[    1.937344] tg3.c:v3.137 (May 11, 2014)
[    1.972061] tg3 0003:05:00.0: Using 64-bit DMA iommu bypass
[    1.972377] tg3 0003:05:00.0 eth0: Tigon3 [partno(00E2872) rev 5719001] (PCI Express) MAC address 6c:ae:8b:6a:de:70
[    1.972476] tg3 0003:05:00.0 eth0: attached PHY is 5719C (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[    1.972574] tg3 0003:05:00.0 eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[1]
[    1.972648] tg3 0003:05:00.0 eth0: dma_rwctrl[00000000] dma_mask[64-bit]
[    2.001074] tg3 0003:05:00.1: Using 64-bit DMA iommu bypass
[    2.001350] tg3 0003:05:00.1 eth1: Tigon3 [partno(00E2872) rev 5719001] (PCI Express) MAC address 6c:ae:8b:6a:de:71
[    2.001449] tg3 0003:05:00.1 eth1: attached PHY is 5719C (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[    2.001546] tg3 0003:05:00.1 eth1: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[1]
[    2.001620] tg3 0003:05:00.1 eth1: dma_rwctrl[00000000] dma_mask[64-bit]
[    2.029069] tg3 0003:05:00.2: Using 64-bit DMA iommu bypass
[    2.029350] tg3 0003:05:00.2 eth2: Tigon3 [partno(00E2872) rev 5719001] (PCI Express) MAC address 6c:ae:8b:6a:de:72
[    2.029450] tg3 0003:05:00.2 eth2: attached PHY is 5719C (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[    2.029547] tg3 0003:05:00.2 eth2: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[1]
[    2.029621] tg3 0003:05:00.2 eth2: dma_rwctrl[00000000] dma_mask[64-bit]
[    2.057073] tg3 0003:05:00.3: Using 64-bit DMA iommu bypass
[    2.057347] tg3 0003:05:00.3 eth3: Tigon3 [partno(00E2872) rev 5719001] (PCI Express) MAC address 6c:ae:8b:6a:de:73
[    2.057446] tg3 0003:05:00.3 eth3: attached PHY is 5719C (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[    2.057543] tg3 0003:05:00.3 eth3: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[1]
[    2.057617] tg3 0003:05:00.3 eth3: dma_rwctrl[00000000] dma_mask[64-bit]
[    2.057784] ibmveth: IBM Power Virtual Ethernet Driver 1.04
[    2.057801] ehea: IBM eHEA ethernet device driver (Release EHEA_0107)
[    2.058172] PPP generic driver version 2.4.2
[    2.058429] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    2.058508] ehci-pci: EHCI PCI platform driver
[    2.058576] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    2.058640] ohci-pci: OHCI PCI platform driver
[    2.058705] uhci_hcd: USB Universal Host Controller Interface driver
[    2.058830] xhci_hcd 0001:09:00.0: xHCI Host Controller
[    2.058886] xhci_hcd 0001:09:00.0: new USB bus registered, assigned bus number 1
[    2.059045] xhci_hcd 0001:09:00.0: Using 64-bit DMA iommu bypass
[    2.059644] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    2.059706] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.059786] usb usb1: Product: xHCI Host Controller
[    2.059835] usb usb1: Manufacturer: Linux 3.16.0-38-generic xhci_hcd
[    2.059896] usb usb1: SerialNumber: 0001:09:00.0
[    2.060179] hub 1-0:1.0: USB hub found
[    2.060228] hub 1-0:1.0: 4 ports detected
[    2.060450] xhci_hcd 0001:09:00.0: xHCI Host Controller
[    2.060502] xhci_hcd 0001:09:00.0: new USB bus registered, assigned bus number 2
[    2.060632] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003
[    2.060745] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.060882] usb usb2: Product: xHCI Host Controller
[    2.060975] usb usb2: Manufacturer: Linux 3.16.0-38-generic xhci_hcd
[    2.061091] usb usb2: SerialNumber: 0001:09:00.0
[    2.061463] hub 2-0:1.0: USB hub found
[    2.061544] hub 2-0:1.0: 4 ports detected
[    2.061828] xhci_hcd 0003:03:00.0: xHCI Host Controller
[    2.062166] xhci_hcd 0003:03:00.0: new USB bus registered, assigned bus number 3
[    2.062388] xhci_hcd 0003:03:00.0: Using 64-bit DMA iommu bypass
[    2.063686] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002
[    2.063806] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.063943] usb usb3: Product: xHCI Host Controller
[    2.064036] usb usb3: Manufacturer: Linux 3.16.0-38-generic xhci_hcd
[    2.064151] usb usb3: SerialNumber: 0003:03:00.0
[    2.064442] hub 3-0:1.0: USB hub found
[    2.064524] hub 3-0:1.0: 4 ports detected
[    2.064778] xhci_hcd 0003:03:00.0: xHCI Host Controller
[    2.065110] xhci_hcd 0003:03:00.0: new USB bus registered, assigned bus number 4
[    2.065233] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003
[    2.065296] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.065369] usb usb4: Product: xHCI Host Controller
[    2.065419] usb usb4: Manufacturer: Linux 3.16.0-38-generic xhci_hcd
[    2.065480] usb usb4: SerialNumber: 0003:03:00.0
[    2.065808] hub 4-0:1.0: USB hub found
[    2.065855] hub 4-0:1.0: 4 ports detected
[    2.066701] mousedev: PS/2 mouse device common for all mice
[    2.067570] device-mapper: uevent: version 1.0.3
[    2.068154] device-mapper: ioctl: 4.27.0-ioctl (2013-10-30) initialised: dm-devel@redhat.com
[    2.068289] powernv-cpufreq: cpufreq pstate min -49 nominal -7 max 0
[    2.071850] powernv_idle_driver registered
[    2.072758] ledtrig-cpu: registered to indicate activity on CPUs
[    2.072965] TCP: cubic registered
[    2.073800] NET: Registered protocol family 10
[    2.075301] NET: Registered protocol family 17
[    2.075408] Key type dns_resolver registered
[    2.076059] Loading compiled-in X.509 certificates
[    2.077544] Loaded X.509 cert 'Magrathea: Glacier signing key: aac6f19da6bb73f6c63f27f1b252a2ee02c0c2bb'
[    2.077649] registered taskstats version 1
[    2.080955] Key type trusted registered
[    2.086026] Key type encrypted registered
[    2.086101] AppArmor: AppArmor sha1 policy hashing enabled
[    2.086197] ima: No TPM chip found, activating TPM-bypass!
[    2.086312] evm: HMAC attrs: 0x1
[    2.086926] /build/buildd/linux-lts-utopic-3.16.0/drivers/rtc/hctosys.c: unable to open rtc device (rtc0)
[    2.087264] PM: Hibernation image not present or could not be loaded.
[    2.087698] Freeing unused kernel memory: 5696K (c000000000d50000 - c0000000012e0000)
[    2.110468] systemd-udevd[894]: starting version 204
[    2.148471] ipr: IBM Power RAID SCSI Device Driver version: 2.6.0 (November 16, 2012)
[    2.148588] ipr 0001:08:00.0: Found IOA with IRQ: 0
[    2.149049] ipr 0001:08:00.0: Using 64-bit DMA iommu bypass
[    2.149330] ipr 0001:08:00.0: Received IRQ : 496
[    2.149422] ipr 0001:08:00.0: Request for 2 MSIXs succeeded.
[    2.149994] ipr 0001:08:00.0: Initializing IOA.
[    2.244752] device-mapper: multipath: version 1.7.0 loaded
[   29.426045] ipr 0001:08:00.0: Starting IOA initialization sequence.
[   29.426562] ipr 0001:08:00.0: Starting IOA initialization sequence.
[   29.441007] ipr 0001:08:00.0: Adapter firmware version: 1151001B
[   29.442418] ipr 0001:08:00.0: IOA initialized.
[   29.442472] scsi0 : IBM 57D8 Storage Adapter
[   29.447551] scsi 0:0:0:0: Direct-Access     IBM      ST9300653SS      7411 PQ: 0 ANSI: 6
[   29.447690] scsi 0:0:0:0: Resource path: 0/00-0C-00
[   29.472695] scsi 0:0:1:0: Direct-Access     IBM      ST9300653SS      7411 PQ: 0 ANSI: 6
[   29.472806] scsi 0:0:1:0: Resource path: 0/00-0C-01
[   29.502627] scsi 0:0:2:0: Direct-Access     IBM      ST9300653SS      7411 PQ: 0 ANSI: 6
[   29.502738] scsi 0:0:2:0: Resource path: 0/00-0C-02
[   29.530956] scsi 0:0:3:0: Direct-Access     IBM      ST9300653SS      7411 PQ: 0 ANSI: 6
[   29.531066] scsi 0:0:3:0: Resource path: 0/00-0C-03
[   29.556663] scsi 0:0:4:0: Direct-Access     IBM      ST9300653SS      7411 PQ: 0 ANSI: 6
[   29.556773] scsi 0:0:4:0: Resource path: 0/00-0C-04
[   29.586074] scsi 0:0:5:0: Direct-Access     IBM      ST9300653SS      7411 PQ: 0 ANSI: 6
[   29.586185] scsi 0:0:5:0: Resource path: 0/00-0C-05
[   29.617641] scsi 0:0:6:0: Enclosure         IBM      VSBPD14M1 6GSAS    03 PQ: 0 ANSI: 2
[   29.617751] scsi 0:0:6:0: Resource path: 0/00-14
[   29.737167] ata1.00: ATAPI: IBM.    RMBO0140592, U51J, max UDMA/133
[   29.739474] ata1.00: configured for UDMA/133
[   29.740441] scsi 0:0:7:0: CD-ROM            IBM.     RMBO0140592      U51J PQ: 0 ANSI: 2
[   29.740510] scsi 0:0:7:0: Resource path: 0/00-0F
[   29.765821] scsi 0:0:8:0: Enclosure         IBM      PSBPD14M1 6GSAS  1407 PQ: 0 ANSI: 4
[   29.765932] scsi 0:0:8:0: Resource path: 0/00-08-18
[   29.768230] scsi 0:0:9:0: Enclosure         IBM      PSBPD14M1 6GSAS  1407 PQ: 0 ANSI: 4
[   29.768298] scsi 0:0:9:0: Resource path: 0/00-0C-18
[   29.888930] scsi: unknown device type 31
[   29.888974] scsi 0:1:0:0: No Device         IBM      IPR-0   5EC2A900      PQ: 0 ANSI: 3
[   29.889078] scsi 0:1:0:0: Resource path: 0/FD-00
[   29.889526] scsi: unknown device type 31
[   29.889561] scsi 0:1:1:0: No Device         IBM      IPR-0   5EC2A900      PQ: 0 ANSI: 3
[   29.889629] scsi 0:1:1:0: Resource path: 0/FD-01
[   29.889997] scsi: unknown device type 31
[   29.890032] scsi 0:1:2:0: No Device         IBM      IPR-0   5EC2A900      PQ: 0 ANSI: 3
[   29.890100] scsi 0:1:2:0: Resource path: 0/FD-02
[   29.890465] scsi: unknown device type 31
[   29.890500] scsi 0:1:3:0: No Device         IBM      IPR-0   5EC2A900      PQ: 0 ANSI: 3
[   29.890568] scsi 0:1:3:0: Resource path: 0/FD-03
[   29.890933] scsi: unknown device type 31
[   29.890968] scsi 0:1:4:0: No Device         IBM      IPR-0   5EC2A900      PQ: 0 ANSI: 3
[   29.891036] scsi 0:1:4:0: Resource path: 0/FD-04
[   29.891402] scsi: unknown device type 31
[   29.891437] scsi 0:1:5:0: No Device         IBM      IPR-0   5EC2A900      PQ: 0 ANSI: 3
[   29.891505] scsi 0:1:5:0: Resource path: 0/FD-05
[   30.007023] scsi 0:2:0:0: Direct-Access     IBM      IPR-0   5EC2A900      PQ: 0 ANSI: 3
[   30.007135] scsi 0:2:0:0: Resource path: 0/FC-03-00
[   30.007502] scsi 0:2:1:0: Direct-Access     IBM      IPR-0   5EC2A900      PQ: 0 ANSI: 3
[   30.007571] scsi 0:2:1:0: Resource path: 0/FC-02-00
[   30.007954] scsi 0:2:2:0: Direct-Access     IBM      IPR-0   5EC2A900      PQ: 0 ANSI: 3
[   30.008022] scsi 0:2:2:0: Resource path: 0/FC-01-00
[   30.008395] scsi 0:2:3:0: Direct-Access     IBM      IPR-0   5EC2A900      PQ: 0 ANSI: 3
[   30.008463] scsi 0:2:3:0: Resource path: 0/FC-00-00
[   30.008833] scsi 0:2:4:0: Direct-Access     IBM      IPR-0   5EC2A900      PQ: 0 ANSI: 3
[   30.008902] scsi 0:2:4:0: Resource path: 0/FC-05-00
[   30.009271] scsi 0:2:5:0: Direct-Access     IBM      IPR-0   5EC2A900      PQ: 0 ANSI: 3
[   30.009338] scsi 0:2:5:0: Resource path: 0/FC-04-00
[   30.111884] scsi: unknown device type 31
[   30.111927] scsi 0:3:0:0: No Device         IBM      57D8001SISIOA    0150 PQ: 0 ANSI: 0
[   30.112032] scsi 0:3:0:0: Resource path: 0/FE
[   31.386810] scsi 0:0:0:0: Attached scsi generic sg0 type 12
[   31.387227] scsi 0:0:1:0: Attached scsi generic sg1 type 12
[   31.387529] scsi 0:0:2:0: Attached scsi generic sg2 type 12
[   31.387852] scsi 0:0:3:0: Attached scsi generic sg3 type 12
[   31.388043] scsi 0:0:4:0: Attached scsi generic sg4 type 12
[   31.388234] scsi 0:0:5:0: Attached scsi generic sg5 type 12
[   31.388426] scsi 0:0:6:0: Attached scsi generic sg6 type 13
[   31.392101] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
[   31.392236] cdrom: Uniform CD-ROM driver Revision: 3.20
[   31.392525] sr 0:0:7:0: Attached scsi CD-ROM sr0
[   31.392635] sr 0:0:7:0: Attached scsi generic sg7 type 5
[   31.393015] scsi 0:0:8:0: Attached scsi generic sg8 type 13
[   31.393359] scsi 0:0:9:0: Attached scsi generic sg9 type 13
[   31.393641] scsi 0:1:0:0: Attached scsi generic sg10 type 31
[   31.393936] scsi 0:1:1:0: Attached scsi generic sg11 type 31
[   31.394230] scsi 0:1:2:0: Attached scsi generic sg12 type 31
[   31.394557] scsi 0:1:3:0: Attached scsi generic sg13 type 31
[   31.394806] scsi 0:1:4:0: Attached scsi generic sg14 type 31
[   31.395041] scsi 0:1:5:0: Attached scsi generic sg15 type 31
[   31.395321] sd 0:2:0:0: Attached scsi generic sg16 type 0
[   31.395413] sd 0:2:0:0: [sda] Spinning up disk...
[   31.395621] sd 0:2:1:0: Attached scsi generic sg17 type 0
[   31.395817] sd 0:2:1:0: [sdb] Spinning up disk...
[   31.395931] sd 0:2:2:0: Attached scsi generic sg18 type 0
[   31.396212] sd 0:2:3:0: Attached scsi generic sg19 type 0
[   31.396481] sd 0:2:4:0: Attached scsi generic sg20 type 0
[   31.396756] sd 0:2:5:0: Attached scsi generic sg21 type 0
[   31.396972] scsi 0:3:0:0: Attached scsi generic sg22 type 31
[   31.401001] sd 0:2:2:0: [sdc] Spinning up disk...
[   31.403421] sd 0:2:3:0: [sdd] Spinning up disk...
[   31.403591] sd 0:2:4:0: [sde] Spinning up disk...
[   31.403708] sd 0:2:5:0: [sdf] Spinning up disk...
[   31.589942] ipr 0003:04:00.0: Found IOA with IRQ: 0
[   31.590355] ipr 0003:04:00.0: Using 64-bit DMA iommu bypass
[   31.590603] ipr 0003:04:00.0: Received IRQ : 411
[   31.590669] ipr 0003:04:00.0: Request for 2 MSIXs succeeded.
[   31.591137] ipr 0003:04:00.0: Initializing IOA.
[   32.643781] .ready
[   32.644009] sd 0:2:0:0: [sda] 554287104 512-byte logical blocks: (283 GB/264 GiB)
[   32.644151] sd 0:2:0:0: [sda] Write Protect is off
[   32.644197] sd 0:2:0:0: [sda] Mode Sense: 0b 00 00 08
[   32.675770] .ready
[   32.675987] sd 0:2:1:0: [sdb] 554287104 512-byte logical blocks: (283 GB/264 GiB)
[   32.676124] sd 0:2:1:0: [sdb] Write Protect is off
[   32.676170] sd 0:2:1:0: [sdb] Mode Sense: 0b 00 00 08
[   32.683841] sd 0:2:0:0: [sda] Cache data unavailable
[   32.683887] sd 0:2:0:0: [sda] Assuming drive cache: write through
[   32.707769] .ready
[   32.708012] sd 0:2:2:0: [sdc] 554287104 512-byte logical blocks: (283 GB/264 GiB)
[   32.708164] sd 0:2:2:0: [sdc] Write Protect is off
[   32.708210] sd 0:2:2:0: [sdc] Mode Sense: 0b 00 00 08
[   32.715851] sd 0:2:1:0: [sdb] Cache data unavailable
[   32.715897] sd 0:2:1:0: [sdb] Assuming drive cache: write through
[   32.739768] .ready
[   32.739997] sd 0:2:3:0: [sdd] 554287104 512-byte logical blocks: (283 GB/264 GiB)
[   32.740151] sd 0:2:3:0: [sdd] Write Protect is off
[   32.740196] sd 0:2:3:0: [sdd] Mode Sense: 0b 00 00 08
[   32.741195]  sda: sda1 sda2
[   32.747856] sd 0:2:2:0: [sdc] Cache data unavailable
[   32.747948] sd 0:2:2:0: [sdc] Assuming drive cache: write through
[   32.761309]  sdb: unknown partition table
[   32.775767] .ready
[   32.775994] sd 0:2:4:0: [sde] 554287104 512-byte logical blocks: (283 GB/264 GiB)
[   32.776144] sd 0:2:4:0: [sde] Write Protect is off
[   32.776190] sd 0:2:4:0: [sde] Mode Sense: 0b 00 00 08
[   32.779855] sd 0:2:3:0: [sdd] Cache data unavailable
[   32.779855] sd 0:2:0:0: [sda] Attached SCSI disk
[   32.780036] sd 0:2:3:0: [sdd] Assuming drive cache: write through
[   32.791765] .ready
[   32.791996] sd 0:2:5:0: [sdf] 554287104 512-byte logical blocks: (283 GB/264 GiB)
[   32.792145] sd 0:2:5:0: [sdf] Write Protect is off
[   32.792191] sd 0:2:5:0: [sdf] Mode Sense: 0b 00 00 08
[   32.793861]  sdc: unknown partition table
[   32.799852] sd 0:2:1:0: [sdb] Attached SCSI disk
[   32.815859] sd 0:2:4:0: [sde] Cache data unavailable
[   32.815947] sd 0:2:4:0: [sde] Assuming drive cache: write through
[   32.825710]  sdd: unknown partition table
[   32.831870] sd 0:2:2:0: [sdc] Attached SCSI disk
[   32.831870] sd 0:2:5:0: [sdf] Cache data unavailable
[   32.831871] sd 0:2:5:0: [sdf] Assuming drive cache: write through
[   32.863805] sd 0:2:3:0: [sdd] Attached SCSI disk
[   32.863806]  sde: unknown partition table
[   32.880845]  sdf: unknown partition table
[   32.903850] sd 0:2:4:0: [sde] Attached SCSI disk
[   32.919845] sd 0:2:5:0: [sdf] Attached SCSI disk
[   35.946912] sd 0:2:0:0: alua: supports implicit TPGS
[   35.947163] sd 0:2:0:0: alua: port group c2a9 rel port c2a9
[   35.947309] sd 0:2:0:0: alua: rtpg failed with 8070002
[   35.947459] sd 0:2:0:0: alua: port group c2a9 state A preferred supports TOlUSNA
[   35.947527] sd 0:2:0:0: alua: Attached
[   35.947563] sd 0:2:1:0: alua: supports implicit TPGS
[   35.947727] sd 0:2:1:0: alua: port group c2a9 rel port c2a9
[   35.947816] sd 0:2:1:0: alua: rtpg failed with 8070002
[   35.947908] sd 0:2:1:0: alua: port group c2a9 state A preferred supports TOlUSNA
[   35.947981] sd 0:2:1:0: alua: Attached
[   35.948019] sd 0:2:2:0: alua: supports implicit TPGS
[   35.948126] sd 0:2:2:0: alua: port group c2a9 rel port c2a9
[   35.948204] sd 0:2:2:0: alua: rtpg failed with 8070002
[   35.948283] sd 0:2:2:0: alua: port group c2a9 state A preferred supports TOlUSNA
[   35.948351] sd 0:2:2:0: alua: Attached
[   35.948387] sd 0:2:3:0: alua: supports implicit TPGS
[   35.948526] sd 0:2:3:0: alua: port group c2a9 rel port c2a9
[   35.948610] sd 0:2:3:0: alua: rtpg failed with 8070002
[   35.948688] sd 0:2:3:0: alua: port group c2a9 state A preferred supports TOlUSNA
[   35.948756] sd 0:2:3:0: alua: Attached
[   35.948792] sd 0:2:4:0: alua: supports implicit TPGS
[   35.948916] sd 0:2:4:0: alua: port group c2a9 rel port c2a9
[   35.948992] sd 0:2:4:0: alua: rtpg failed with 8070002
[   35.949069] sd 0:2:4:0: alua: port group c2a9 state A preferred supports TOlUSNA
[   35.949138] sd 0:2:4:0: alua: Attached
[   35.949174] sd 0:2:5:0: alua: supports implicit TPGS
[   35.949297] sd 0:2:5:0: alua: port group c2a9 rel port c2a9
[   35.949421] sd 0:2:5:0: alua: rtpg failed with 8070002
[   35.949514] sd 0:2:5:0: alua: port group c2a9 state A preferred supports TOlUSNA
[   35.949582] sd 0:2:5:0: alua: Attached
[   35.949618] alua: device handler registered
[   35.951496] device-mapper: multipath round-robin: version 1.0.0 loaded
[   35.974360] sd 0:2:4:0: alua: rtpg failed with 8070002
[   35.974607] sd 0:2:4:0: alua: port group c2a9 state A preferred supports TOlUSNA
[   35.975519] sd 0:2:3:0: alua: rtpg failed with 8070002
[   35.975607] sd 0:2:3:0: alua: port group c2a9 state A preferred supports TOlUSNA
[   35.975743] sd 0:2:1:0: alua: rtpg failed with 8070002
[   35.975844] sd 0:2:1:0: alua: port group c2a9 state A preferred supports TOlUSNA
[   35.976221] sd 0:2:2:0: alua: rtpg failed with 8070002
[   35.976309] sd 0:2:2:0: alua: port group c2a9 state A preferred supports TOlUSNA
[   35.976419] sd 0:2:0:0: alua: rtpg failed with 8070002
[   35.976495] sd 0:2:0:0: alua: port group c2a9 state A preferred supports TOlUSNA
[   35.976628] sd 0:2:5:0: alua: rtpg failed with 8070002
[   35.976709] sd 0:2:5:0: alua: port group c2a9 state A preferred supports TOlUSNA
[   39.206103] ses 0:0:6:0: Attached Enclosure device
[   39.206211] ses 0:0:8:0: Attached Enclosure device
[   39.206319] ses 0:0:9:0: Attached Enclosure device
[   40.329777] EXT4-fs (dm-7): mounted filesystem with ordered data mode. Opts: (null)
[   64.359560] ipr 0003:04:00.0: Starting IOA initialization sequence.
[   64.359765] ipr 0003:04:00.0: Starting IOA initialization sequence.
[   64.434244] ipr 0003:04:00.0: Adapter firmware version: 1151001B
[   64.435671] ipr 0003:04:00.0: IOA initialized.
[   64.435726] scsi1 : IBM 57D8 Storage Adapter
[   64.460913] scsi 1:0:1:0: Enclosure         IBM      PSBPD14M1 6GSAS  1407 PQ: 0 ANSI: 4
[   64.461026] scsi 1:0:1:0: Resource path: 1/00-08-18
[   64.486969] scsi 1:0:2:0: Enclosure         IBM      PSBPD14M1 6GSAS  1407 PQ: 0 ANSI: 4
[   64.487080] scsi 1:0:2:0: Resource path: 1/00-0C-18
[   64.489839] scsi 1:0:3:0: Direct-Access     IBM      ST9300653SS      7411 PQ: 0 ANSI: 6
[   64.489908] scsi 1:0:3:0: Resource path: 1/00-0C-00
[   64.513332] scsi 1:0:4:0: Direct-Access     IBM      ST9300653SS      7411 PQ: 0 ANSI: 6
[   64.513442] scsi 1:0:4:0: Resource path: 1/00-0C-01
[   64.537265] scsi 1:0:5:0: Direct-Access     IBM      ST9300653SS      7411 PQ: 0 ANSI: 6
[   64.537375] scsi 1:0:5:0: Resource path: 1/00-0C-02
[   64.561288] scsi 1:0:6:0: Direct-Access     IBM      ST9300653SS      7411 PQ: 0 ANSI: 6
[   64.561398] scsi 1:0:6:0: Resource path: 1/00-0C-03
[   64.585277] scsi 1:0:7:0: Direct-Access     IBM      ST9300653SS      7411 PQ: 0 ANSI: 6
[   64.585388] scsi 1:0:7:0: Resource path: 1/00-0C-04
[   64.609505] scsi 1:0:8:0: Direct-Access     IBM      ST9300653SS      7411 PQ: 0 ANSI: 6
[   64.609615] scsi 1:0:8:0: Resource path: 1/00-0C-05
[   64.734698] scsi: unknown device type 31
[   64.734741] scsi 1:1:0:0: No Device         IBM      IPR-0   5EC2A900      PQ: 0 ANSI: 3
[   64.734845] scsi 1:1:0:0: Resource path: 1/FD-00
[   64.735450] scsi: unknown device type 31
[   64.735486] scsi 1:1:1:0: No Device         IBM      IPR-0   5EC2A900      PQ: 0 ANSI: 3
[   64.735554] scsi 1:1:1:0: Resource path: 1/FD-01
[   64.735918] scsi: unknown device type 31
[   64.735955] scsi 1:1:2:0: No Device         IBM      IPR-0   5EC2A900      PQ: 0 ANSI: 3
[   64.736023] scsi 1:1:2:0: Resource path: 1/FD-02
[   64.736355] scsi: unknown device type 31
[   64.736390] scsi 1:1:3:0: No Device         IBM      IPR-0   5EC2A900      PQ: 0 ANSI: 3
[   64.736458] scsi 1:1:3:0: Resource path: 1/FD-03
[   64.736804] scsi: unknown device type 31
[   64.736839] scsi 1:1:4:0: No Device         IBM      IPR-0   5EC2A900      PQ: 0 ANSI: 3
[   64.736906] scsi 1:1:4:0: Resource path: 1/FD-04
[   64.737253] scsi: unknown device type 31
[   64.737288] scsi 1:1:5:0: No Device         IBM      IPR-0   5EC2A900      PQ: 0 ANSI: 3
[   64.737356] scsi 1:1:5:0: Resource path: 1/FD-05
[   64.840496] scsi 1:2:0:0: Direct-Access     IBM      IPR-0   5EC2A900      PQ: 0 ANSI: 3
[   64.840607] scsi 1:2:0:0: Resource path: 1/FC-03-00
[   64.841537] scsi 1:2:1:0: Direct-Access     IBM      IPR-0   5EC2A900      PQ: 0 ANSI: 3
[   64.841605] scsi 1:2:1:0: Resource path: 1/FC-02-00
[   64.842540] scsi 1:2:2:0: Direct-Access     IBM      IPR-0   5EC2A900      PQ: 0 ANSI: 3
[   64.842608] scsi 1:2:2:0: Resource path: 1/FC-01-00
[   64.843542] scsi 1:2:3:0: Direct-Access     IBM      IPR-0   5EC2A900      PQ: 0 ANSI: 3
[   64.843610] scsi 1:2:3:0: Resource path: 1/FC-00-00
[   64.844567] scsi 1:2:4:0: Direct-Access     IBM      IPR-0   5EC2A900      PQ: 0 ANSI: 3
[   64.844704] scsi 1:2:4:0: Resource path: 1/FC-05-00
[   64.845718] scsi 1:2:5:0: Direct-Access     IBM      IPR-0   5EC2A900      PQ: 0 ANSI: 3
[   64.845853] scsi 1:2:5:0: Resource path: 1/FC-04-00
[   64.948560] scsi: unknown device type 31
[   64.948602] scsi 1:3:0:0: No Device         IBM      57D8001SISIOA    0150 PQ: 0 ANSI: 0
[   64.948706] scsi 1:3:0:0: Resource path: 1/FE
[   66.911515] ses 1:0:1:0: Attached Enclosure device
[   66.911721] ses 1:0:1:0: Attached scsi generic sg23 type 13
[   66.962551] ses 1:0:2:0: Attached Enclosure device
[   66.962742] ses 1:0:2:0: Attached scsi generic sg24 type 13
[   67.010609] scsi 1:0:3:0: Attached scsi generic sg25 type 12
[   67.014749] scsi 1:0:4:0: Attached scsi generic sg26 type 12
[   67.019319] scsi 1:0:5:0: Attached scsi generic sg27 type 12
[   67.023399] scsi 1:0:6:0: Attached scsi generic sg28 type 12
[   67.027517] scsi 1:0:7:0: Attached scsi generic sg29 type 12
[   67.031589] scsi 1:0:8:0: Attached scsi generic sg30 type 12
[   67.035746] scsi 1:1:0:0: Attached scsi generic sg31 type 31
[   67.039830] scsi 1:1:1:0: Attached scsi generic sg32 type 31
[   67.043971] scsi 1:1:2:0: Attached scsi generic sg33 type 31
[   67.048048] scsi 1:1:3:0: Attached scsi generic sg34 type 31
[   67.052175] scsi 1:1:4:0: Attached scsi generic sg35 type 31
[   67.056240] scsi 1:1:5:0: Attached scsi generic sg36 type 31
[   67.060223] scsi 1:2:0:0: alua: supports implicit TPGS
[   67.060417] scsi 1:2:0:0: alua: port group c2a5 rel port c2a5
[   67.060505] scsi 1:2:0:0: alua: rtpg failed with 8070002
[   67.060645] scsi 1:2:0:0: alua: port group c2a5 state N non-preferred supports TOlUSNA
[   67.060713] scsi 1:2:0:0: alua: Attached
[   67.060876] sd 1:2:0:0: Attached scsi generic sg37 type 0
[   67.061670] sd 1:2:0:0: [sdg] Spinning up disk...
[   67.064877] scsi 1:2:1:0: alua: supports implicit TPGS
[   67.068188] scsi 1:2:1:0: alua: port group c2a5 rel port c2a5
[   67.068386] scsi 1:2:1:0: alua: rtpg failed with 8070002
[   67.068568] scsi 1:2:1:0: alua: port group c2a5 state N non-preferred supports TOlUSNA
[   67.068705] scsi 1:2:1:0: alua: Attached
[   67.068887] sd 1:2:1:0: Attached scsi generic sg38 type 0
[   67.071509] sd 1:2:1:0: [sdh] Spinning up disk...
[   67.072975] scsi 1:2:2:0: alua: supports implicit TPGS
[   67.077920] scsi 1:2:2:0: alua: port group c2a5 rel port c2a5
[   67.078062] scsi 1:2:2:0: alua: rtpg failed with 8070002
[   67.078233] scsi 1:2:2:0: alua: port group c2a5 state N non-preferred supports TOlUSNA
[   67.078300] scsi 1:2:2:0: alua: Attached
[   67.078566] sd 1:2:2:0: Attached scsi generic sg39 type 0
[   67.081167] sd 1:2:2:0: [sdi] Spinning up disk...
[   67.082750] scsi 1:2:3:0: alua: supports implicit TPGS
[   67.087592] scsi 1:2:3:0: alua: port group c2a5 rel port c2a5
[   67.087805] scsi 1:2:3:0: alua: rtpg failed with 8070002
[   67.087967] scsi 1:2:3:0: alua: port group c2a5 state N non-preferred supports TOlUSNA
[   67.088102] scsi 1:2:3:0: alua: Attached
[   67.088408] sd 1:2:3:0: Attached scsi generic sg40 type 0
[   67.090995] sd 1:2:3:0: [sdj] Spinning up disk...
[   67.092574] scsi 1:2:4:0: alua: supports implicit TPGS
[   67.097395] scsi 1:2:4:0: alua: port group c2a5 rel port c2a5
[   67.097594] scsi 1:2:4:0: alua: rtpg failed with 8070002
[   67.097768] scsi 1:2:4:0: alua: port group c2a5 state N non-preferred supports TOlUSNA
[   67.097902] scsi 1:2:4:0: alua: Attached
[   67.098199] sd 1:2:4:0: Attached scsi generic sg41 type 0
[   67.100802] sd 1:2:4:0: [sdk] Spinning up disk...
[   67.102385] scsi 1:2:5:0: alua: supports implicit TPGS
[   67.107221] scsi 1:2:5:0: alua: port group c2a5 rel port c2a5
[   67.107417] scsi 1:2:5:0: alua: rtpg failed with 8070002
[   67.107592] scsi 1:2:5:0: alua: port group c2a5 state N non-preferred supports TOlUSNA
[   67.107726] scsi 1:2:5:0: alua: Attached
[   67.108030] sd 1:2:5:0: Attached scsi generic sg42 type 0
[   67.110631] sd 1:2:5:0: [sdl] Spinning up disk...
[   67.112280] scsi 1:3:0:0: Attached scsi generic sg43 type 31
[   68.071773] .ready
[   68.072003] sd 1:2:0:0: [sdg] 554287104 512-byte logical blocks: (283 GB/264 GiB)
[   68.072157] sd 1:2:0:0: [sdg] Write Protect is off
[   68.072202] sd 1:2:0:0: [sdg] Mode Sense: 0b 00 00 08
[   68.079764] .ready
[   68.079949] sd 1:2:1:0: [sdh] 554287104 512-byte logical blocks: (283 GB/264 GiB)
[   68.080137] sd 1:2:1:0: [sdh] Write Protect is off
[   68.080183] sd 1:2:1:0: [sdh] Mode Sense: 0b 00 00 08
[   68.091768] .ready
[   68.092018] sd 1:2:2:0: [sdi] 554287104 512-byte logical blocks: (283 GB/264 GiB)
[   68.092169] sd 1:2:2:0: [sdi] Write Protect is off
[   68.092215] sd 1:2:2:0: [sdi] Mode Sense: 0b 00 00 08
[   68.099766] .ready
[   68.099992] sd 1:2:3:0: [sdj] 554287104 512-byte logical blocks: (283 GB/264 GiB)
[   68.100142] sd 1:2:3:0: [sdj] Write Protect is off
[   68.100190] sd 1:2:3:0: [sdj] Mode Sense: 0b 00 00 08
[   68.111769] .ready
[   68.112028] sd 1:2:0:0: [sdg] Cache data unavailable
[   68.112029] sd 1:2:4:0: [sdk] 554287104 512-byte logical blocks: (283 GB/264 GiB)
[   68.112148] sd 1:2:0:0: [sdg] Assuming drive cache: write through
[   68.112150] sd 1:2:4:0: [sdk] Write Protect is off
[   68.112151] sd 1:2:4:0: [sdk] Mode Sense: 0b 00 00 08
[   68.119767] .ready
[   68.119973] sd 1:2:5:0: [sdl] 554287104 512-byte logical blocks: (283 GB/264 GiB)
[   68.120047] sd 1:2:1:0: [sdh] Cache data unavailable
[   68.120094] sd 1:2:1:0: [sdh] Assuming drive cache: write through
[   68.120144] sd 1:2:5:0: [sdl] Write Protect is off
[   68.120145] sd 1:2:5:0: [sdl] Mode Sense: 0b 00 00 08
[   68.131943] sd 1:2:2:0: [sdi] Cache data unavailable
[   68.132034] sd 1:2:2:0: [sdi] Assuming drive cache: write through
[   68.139945] sd 1:2:3:0: [sdj] Cache data unavailable
[   68.139994] sd 1:2:3:0: [sdj] Assuming drive cache: write through
[   68.152040] sd 1:2:4:0: [sdk] Cache data unavailable
[   68.152138] sd 1:2:4:0: [sdk] Assuming drive cache: write through
[   68.160008] sd 1:2:5:0: [sdl] Cache data unavailable
[   68.160061] sd 1:2:5:0: [sdl] Assuming drive cache: write through
[   68.166601]  sdh: unknown partition table
[   68.170335]  sdg: sdg1 sdg2
[   68.179167]  sdi: unknown partition table
[   68.187012]  sdj: unknown partition table
[   68.201245]  sdk: unknown partition table
[   68.203894] sd 1:2:1:0: [sdh] Attached SCSI disk
[   68.206331]  sdl: unknown partition table
[   68.208040] sd 1:2:0:0: [sdg] Attached SCSI disk
[   68.215992] sd 1:2:2:0: [sdi] Attached SCSI disk
[   68.223944] sd 1:2:3:0: [sdj] Attached SCSI disk
[   68.239888] sd 1:2:4:0: [sdk] Attached SCSI disk
[   68.243890] sd 1:2:5:0: [sdl] Attached SCSI disk
[   69.013159] EXT4-fs (dm-7): re-mounted. Opts: (null)
[   70.527351] Adding 8388544k swap on /swap.img.  Priority:-1 extents:11 across:9011136k FS
[   70.931780] init: console-setup main process (3039) terminated with status 1
[   71.025124] systemd-udevd[3075]: starting version 204
[   71.679117] rtc-generic rtc-generic: rtc core: registered rtc-generic as rtc0
[   71.690092] powernv_rng: Registered powernv hwrng.
[   71.751499] systemd-udevd[4072]: failed to execute '/lib/udev/socket:/org/kernel/dm/multipath_event' 'socket:/org/kernel/dm/multipath_event': No such file or directory
[   71.825460] systemd-udevd[4593]: failed to execute '/lib/udev/socket:/org/kernel/dm/multipath_event' 'socket:/org/kernel/dm/multipath_event': No such file or directory
[   71.834471] systemd-udevd[4656]: failed to execute '/lib/udev/socket:/org/kernel/dm/multipath_event' 'socket:/org/kernel/dm/multipath_event': No such file or directory
[   71.836312] systemd-udevd[4670]: failed to execute '/lib/udev/socket:/org/kernel/dm/multipath_event' 'socket:/org/kernel/dm/multipath_event': No such file or directory
[   71.838386] systemd-udevd[4689]: failed to execute '/lib/udev/socket:/org/kernel/dm/multipath_event' 'socket:/org/kernel/dm/multipath_event': No such file or directory
[   71.839907] systemd-udevd[4705]: failed to execute '/lib/udev/socket:/org/kernel/dm/multipath_event' 'socket:/org/kernel/dm/multipath_event': No such file or directory
[   71.841322] systemd-udevd[4719]: failed to execute '/lib/udev/socket:/org/kernel/dm/multipath_event' 'socket:/org/kernel/dm/multipath_event': No such file or directory
[   71.842777] systemd-udevd[4737]: failed to execute '/lib/udev/socket:/org/kernel/dm/multipath_event' 'socket:/org/kernel/dm/multipath_event': No such file or directory
[   71.845898] systemd-udevd[4758]: failed to execute '/lib/udev/socket:/org/kernel/dm/multipath_event' 'socket:/org/kernel/dm/multipath_event': No such file or directory
[   71.847202] systemd-udevd[4777]: failed to execute '/lib/udev/socket:/org/kernel/dm/multipath_event' 'socket:/org/kernel/dm/multipath_event': No such file or directory
[   71.848288] systemd-udevd[4787]: failed to execute '/lib/udev/socket:/org/kernel/dm/multipath_event' 'socket:/org/kernel/dm/multipath_event': No such file or directory
[   71.849306] systemd-udevd[4798]: failed to execute '/lib/udev/socket:/org/kernel/dm/multipath_event' 'socket:/org/kernel/dm/multipath_event': No such file or directory
[   72.204313] device-mapper: ioctl: Unable to change name on mapped device mpath1 to one that already exists: mpath0
[   72.208610] device-mapper: ioctl: Unable to change name on mapped device mpath1 to one that already exists: mpath0
[   72.212631] device-mapper: ioctl: Unable to change name on mapped device mpath4 to one that already exists: mpath1
[   72.212912] device-mapper: ioctl: Unable to change name on mapped device mpath5 to one that already exists: mpath2
[   72.213299] device-mapper: ioctl: Unable to change name on mapped device mpath1 to one that already exists: mpath0
[   72.214446] device-mapper: ioctl: Unable to change name on mapped device mpath4 to one that already exists: mpath1
[   72.215023] device-mapper: ioctl: Unable to change name on mapped device mpath5 to one that already exists: mpath2
[   72.215404] device-mapper: ioctl: Unable to change name on mapped device mpath4 to one that already exists: mpath1
[   72.215522] device-mapper: ioctl: Unable to change name on mapped device mpath0 to one that already exists: mpath4
[   72.217343] device-mapper: ioctl: Unable to change name on mapped device mpath5 to one that already exists: mpath2
[   72.217394] device-mapper: ioctl: Unable to change name on mapped device mpath2 to one that already exists: mpath5
[   72.217880] device-mapper: ioctl: Unable to change name on mapped device mpath0 to one that already exists: mpath4
[   72.219011] device-mapper: ioctl: Unable to change name on mapped device mpath2 to one that already exists: mpath5
[   72.219014] device-mapper: ioctl: Unable to change name on mapped device mpath2 to one that already exists: mpath5
[   72.219383] device-mapper: ioctl: Unable to change name on mapped device mpath0 to one that already exists: mpath4
[   72.221768] sd 0:2:3:0: alua: rtpg failed with 8070002
[   72.221800] sd 0:2:3:0: alua: port group c2a9 state A preferred supports TOlUSNA
[   72.235905] sd 0:2:3:0: alua: rtpg failed with 8070002
[   72.236055] sd 0:2:3:0: alua: port group c2a9 state A preferred supports TOlUSNA
[   72.260151] audit: type=1400 audit(1433425018.239:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/sbin/dhclient" pid=5055 comm="apparmor_parser"
[   72.260162] audit: type=1400 audit(1433425018.239:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=5055 comm="apparmor_parser"
[   72.260167] audit: type=1400 audit(1433425018.239:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=5055 comm="apparmor_parser"
[   72.260204] audit: type=1400 audit(1433425018.239:5): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/sbin/dhclient" pid=5082 comm="apparmor_parser"
[   72.260229] audit: type=1400 audit(1433425018.239:6): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=5082 comm="apparmor_parser"
[   72.260244] audit: type=1400 audit(1433425018.239:7): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=5082 comm="apparmor_parser"
[   72.260610] audit: type=1400 audit(1433425018.239:8): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/sbin/dhclient" pid=5084 comm="apparmor_parser"
[   72.260625] audit: type=1400 audit(1433425018.239:9): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=5084 comm="apparmor_parser"
[   72.260640] audit: type=1400 audit(1433425018.239:10): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=5084 comm="apparmor_parser"
[   72.260658] audit: type=1400 audit(1433425018.239:11): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/sbin/dhclient" pid=5083 comm="apparmor_parser"
[   72.621144] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[   75.927260] tg3 0003:05:00.0 eth0: Link is up at 1000 Mbps, full duplex
[   75.927267] tg3 0003:05:00.0 eth0: Flow control is off for TX and off for RX
[   75.927269] tg3 0003:05:00.0 eth0: EEE is disabled
[   75.927282] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[   84.002606] init: failsafe main process (5683) killed by TERM signal
[   84.321066] sd 0:2:0:0: alua: rtpg failed with 8070002
[   84.321170] sd 0:2:0:0: alua: port group c2a9 state A preferred supports TOlUSNA
[   84.324074] sd 0:2:1:0: alua: rtpg failed with 8070002
[   84.324113] sd 0:2:1:0: alua: port group c2a9 state A preferred supports TOlUSNA
[   84.327900] sd 0:2:2:0: alua: rtpg failed with 8070002
[   84.327948] sd 0:2:2:0: alua: port group c2a9 state A preferred supports TOlUSNA
[   84.329469] sd 0:2:4:0: alua: rtpg failed with 8070002
[   84.329683] sd 0:2:4:0: alua: port group c2a9 state A preferred supports TOlUSNA
[   84.331575] sd 0:2:5:0: alua: rtpg failed with 8070002
[   84.331606] sd 0:2:5:0: alua: port group c2a9 state A preferred supports TOlUSNA
[   84.340772] EXT4-fs error (device dm-7): ext4_ext_find_extent:874: inode #8257553: comm init: pblk 33062933 bad header/extent: invalid magic - magic 0, entries 0, max 0(0), depth 0(0)
[   84.341170] EXT4-fs error (device dm-7): ext4_ext_find_extent:874: inode #8257553: comm init: pblk 33062933 bad header/extent: invalid magic - magic 0, entries 0, max 0(0), depth 0(0)
[   84.341499] EXT4-fs error (device dm-7): ext4_ext_remove_space:2946: inode #8257553: comm init: pblk 33062933 bad header/extent: invalid magic - magic 0, entries 0, max 0(0), depth 0(0)
[   84.341829] EXT4-fs error (device dm-7) in ext4_ext_truncate:4661: IO failure
[   84.342098] init: Failed to write to log file /var/log/upstart/cgmanager.log
[   84.348438] EXT4-fs error (device dm-7): ext4_ext_find_extent:874: inode #8260284: comm rs:main Q:Reg: pblk 33062920 bad header/extent: invalid magic - magic 0, entries 0, max 0(0), depth 0(0)
[   84.348855] EXT4-fs error (device dm-7): ext4_ext_find_extent:874: inode #8260284: comm rs:main Q:Reg: pblk 33062920 bad header/extent: invalid magic - magic 0, entries 0, max 0(0), depth 0(0)
[   84.349214] EXT4-fs error (device dm-7): ext4_ext_remove_space:2946: inode #8260284: comm rs:main Q:Reg: pblk 33062920 bad header/extent: invalid magic - magic 0, entries 0, max 0(0), depth 0(0)
[   84.349561] EXT4-fs error (device dm-7) in ext4_ext_truncate:4661: IO failure
[   84.349871] EXT4-fs error (device dm-7): ext4_ext_find_extent:874: inode #8260284: comm rs:main Q:Reg: pblk 33062920 bad header/extent: invalid magic - magic 0, entries 0, max 0(0), depth 0(0)
[   84.350222] EXT4-fs error (device dm-7): ext4_ext_find_extent:874: inode #8260284: comm rs:main Q:Reg: pblk 33062920 bad header/extent: invalid magic - magic 0, entries 0, max 0(0), depth 0(0)
[   84.508078] audit_printk_skb: 60 callbacks suppressed
[   84.508082] audit: type=1400 audit(1433425030.487:32): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/sbin/dhclient" pid=6050 comm="apparmor_parser"
[   84.508090] audit: type=1400 audit(1433425030.487:33): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=6050 comm="apparmor_parser"
[   84.508095] audit: type=1400 audit(1433425030.487:34): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=6050 comm="apparmor_parser"
[   84.508424] audit: type=1400 audit(1433425030.487:35): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=6050 comm="apparmor_parser"
[   84.508427] audit: type=1400 audit(1433425030.487:36): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=6050 comm="apparmor_parser"
[   84.508599] audit: type=1400 audit(1433425030.487:37): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=6050 comm="apparmor_parser"
[   84.525231] audit: type=1400 audit(1433425030.503:38): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/lxc-start" pid=6051 comm="apparmor_parser"
[   84.535209] audit: type=1400 audit(1433425030.511:39): apparmor="STATUS" operation="profile_load" profile="unconfined" name="lxc-container-default" pid=6049 comm="apparmor_parser"
[   84.535214] audit: type=1400 audit(1433425030.511:40): apparmor="STATUS" operation="profile_load" profile="unconfined" name="lxc-container-default-with-mounting" pid=6049 comm="apparmor_parser"
[   84.535217] audit: type=1400 audit(1433425030.511:41): apparmor="STATUS" operation="profile_load" profile="unconfined" name="lxc-container-default-with-nesting" pid=6049 comm="apparmor_parser"
[   84.578127] Loading iSCSI transport class v2.0-870.
[   84.593384] iscsi: registered transport (tcp)
[   84.654410] iscsi: registered transport (iser)
[   84.937381] ip_tables: (C) 2000-2006 Netfilter Core Team
[   85.021258] multipathd (6254): /proc/6254/oom_adj is deprecated, please use /proc/6254/oom_score_adj instead.
[   85.050434] Bridge firewalling registered
[   85.173266] systemd-udevd[6355]: failed to execute '/lib/udev/socket:/org/kernel/dm/multipath_event' 'socket:/org/kernel/dm/multipath_event': No such file or directory
[   85.385070] nf_conntrack version 0.5.0 (16384 buckets, 65536 max)
[   85.385652] systemd-udevd[6403]: failed to execute '/lib/udev/socket:/org/kernel/dm/multipath_event' 'socket:/org/kernel/dm/multipath_event': No such file or directory
[   85.549408] init: plymouth-upstart-bridge main process ended, respawning
[   86.515503] ip6_tables: (C) 2000-2006 Netfilter Core Team
[   86.574711] Ebtables v2.0 registered
[   86.981162] systemd-udevd[6533]: failed to execute '/lib/udev/socket:/org/kernel/dm/multipath_event' 'socket:/org/kernel/dm/multipath_event': No such file or directory
[   86.996868] systemd-udevd[6553]: failed to execute '/lib/udev/socket:/org/kernel/dm/multipath_event' 'socket:/org/kernel/dm/multipath_event': No such file or directory
[   87.040956] device virbr0-nic entered promiscuous mode
[   87.533804] virbr0: port 1(virbr0-nic) entered listening state
[   87.533815] virbr0: port 1(virbr0-nic) entered listening state
[   87.535112] IPv6: ADDRCONF(NETDEV_UP): virbr0: link is not ready
[   87.570287] virbr0: port 1(virbr0-nic) entered disabled state
[   87.596964] systemd-udevd[6604]: failed to execute '/lib/udev/socket:/org/kernel/dm/multipath_event' 'socket:/org/kernel/dm/multipath_event': No such file or directory
[   87.612425] systemd-udevd[6623]: failed to execute '/lib/udev/socket:/org/kernel/dm/multipath_event' 'socket:/org/kernel/dm/multipath_event': No such file or directory
[   87.672980] device maasbr0-nic entered promiscuous mode
[   88.111415] maasbr0: port 1(maasbr0-nic) entered forwarding state
[   88.111429] maasbr0: port 1(maasbr0-nic) entered forwarding state
[   88.120655] maasbr0: port 1(maasbr0-nic) entered disabled state
[  172.579944] EXT4-fs error: 10 callbacks suppressed
[  172.579957] EXT4-fs error (device dm-7): ext4_ext_find_extent:874: inode #8260284: comm rs:main Q:Reg: pblk 33062920 bad header/extent: invalid magic - magic 0, entries 0, max 0(0), depth 0(0)
[  172.580323] EXT4-fs error (device dm-7): ext4_ext_find_extent:874: inode #8260284: comm rs:main Q:Reg: pblk 33062920 bad header/extent: invalid magic - magic 0, entries 0, max 0(0), depth 0(0)
[  172.580696] EXT4-fs error (device dm-7): ext4_ext_remove_space:2946: inode #8260284: comm rs:main Q:Reg: pblk 33062920 bad header/extent: invalid magic - magic 0, entries 0, max 0(0), depth 0(0)
[  172.581049] EXT4-fs error (device dm-7) in ext4_ext_truncate:4661: IO failure
[  173.025580] EXT4-fs error (device dm-7): ext4_ext_find_extent:874: inode #8260284: comm rs:main Q:Reg: pblk 33062920 bad header/extent: invalid magic - magic 0, entries 0, max 0(0), depth 0(0)
[  173.025887] EXT4-fs error (device dm-7): ext4_ext_find_extent:874: inode #8260284: comm rs:main Q:Reg: pblk 33062920 bad header/extent: invalid magic - magic 0, entries 0, max 0(0), depth 0(0)
[  173.026245] EXT4-fs error (device dm-7): ext4_ext_remove_space:2946: inode #8260284: comm rs:main Q:Reg: pblk 33062920 bad header/extent: invalid magic - magic 0, entries 0, max 0(0), depth 0(0)
[  173.026596] EXT4-fs error (device dm-7) in ext4_ext_truncate:4661: IO failure
[  173.051096] EXT4-fs error (device dm-7): ext4_ext_find_extent:874: inode #8260284: comm rs:main Q:Reg: pblk 33062920 bad header/extent: invalid magic - magic 0, entries 0, max 0(0), depth 0(0)
[  173.052497] EXT4-fs error (device dm-7): ext4_ext_find_extent:874: inode #8260284: comm rs:main Q:Reg: pblk 33062920 bad header/extent: invalid magic - magic 0, entries 0, max 0(0), depth 0(0)
[  173.057824] init: Failed to write to log file /var/log/upstart/cgmanager.log
[  173.074373] init: Failed to write to log file /var/log/upstart/cgmanager.log
[  207.018382] EXT4-fs error: 14 callbacks suppressed
[  207.018395] EXT4-fs error (device dm-7): ext4_ext_find_extent:874: inode #8260284: comm rs:main Q:Reg: pblk 33062920 bad header/extent: invalid magic - magic 0, entries 0, max 0(0), depth 0(0)
[  207.023449] EXT4-fs error (device dm-7): ext4_ext_find_extent:874: inode #8260284: comm rs:main Q:Reg: pblk 33062920 bad header/extent: invalid magic - magic 0, entries 0, max 0(0), depth 0(0)
[  207.023953] EXT4-fs error (device dm-7): ext4_ext_remove_space:2946: inode #8260284: comm rs:main Q:Reg: pblk 33062920 bad header/extent: invalid magic - magic 0, entries 0, max 0(0), depth 0(0)
[  207.024438] EXT4-fs error (device dm-7) in ext4_ext_truncate:4661: IO failure
[  207.024842] EXT4-fs error (device dm-7): ext4_ext_find_extent:874: inode #8260284: comm rs:main Q:Reg: pblk 33062920 bad header/extent: invalid magic - magic 0, entries 0, max 0(0), depth 0(0)
[  207.025341] EXT4-fs error (device dm-7): ext4_ext_find_extent:874: inode #8260284: comm rs:main Q:Reg: pblk 33062920 bad header/extent: invalid magic - magic 0, entries 0, max 0(0), depth 0(0)
[  207.025828] EXT4-fs error (device dm-7): ext4_ext_remove_space:2946: inode #8260284: comm rs:main Q:Reg: pblk 33062920 bad header/extent: invalid magic - magic 0, entries 0, max 0(0), depth 0(0)
[  207.026313] EXT4-fs error (device dm-7) in ext4_ext_truncate:4661: IO failure
[  207.026544] EXT4-fs error (device dm-7): ext4_ext_find_extent:874: inode #8260284: comm rs:main Q:Reg: pblk 33062920 bad header/extent: invalid magic - magic 0, entries 0, max 0(0), depth 0(0)
[  207.026858] EXT4-fs error (device dm-7): ext4_ext_find_extent:874: inode #8260284: comm rs:main Q:Reg: pblk 33062920 bad header/extent: invalid magic - magic 0, entries 0, max 0(0), depth 0(0)
Download as text