AIX hangs on boot? How to debug boot process on AIX systems

Today an AIX system hanged when reboot. What’s going on? Where can I see the debug verbose log of boot process?

Just, follow this steps.

1- Boot AIX LPAR from HMC in “Open firmware OK prompt”mode:

open_firmware_from_hmc

boot

2- Connect ssh to HMC/FSM with user hscroot and execute “vtmenu” command:

1
2
3
4
5
6
7
8
9
10
ast login: Thu Jan 19 17:06:43 2017 from 172.21.10.78
 
hcsroot@HMC:~> vtnemu
 ----------------------------------------------------------
  Managed Systems:
 ----------------------------------------------------------
   1) Server-7954-24X-SNMKJUYLL
   2) Server-7954-24X-SNMKJUYOO
 
 Enter Number of Managed System.   (q to quit):

3- Once on AIX’s console, execute “boot -s verbose -s debug” to see the whole verbose debug boot from AIX LPAR.

NOTE: See at the end of the log the cause of the hang.

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
IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM
IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM
IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM
IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM
IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM
IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM
IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM
IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM
IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM
IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM
IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM
IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM
IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM
IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM
IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM
IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM
IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM
IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM
 
          1 = SMS Menu                          5 = Default Boot List
          8 = Open Firmware Prompt              6 = Stored Boot List
 
     Memory      Keyboard     Network     SCSI     Speaker  ok
 
0 >  boot -s verbose -s debug
Elapsed time since release of system processors: 1241081 mins 0 secs
 
-------------------------------------------------------------------------------
                                Welcome to AIX.
                   boot image timestamp: 18:17:26 03/17/2016
                 The current time and date: 08:46:10 01/19/2017
        processor count: 1;  memory size: 8192MB;  kernel size: 29476015
boot device: /vdevice/vfc-client@30000003/disk@500507680b2122b4,4000000000000:2
 
006DBE94 bytes of free memory remain at address 0192416C
load address: 0x00004000   aixmon size: 0x000CCC00   boot image size: 0x01842B40
SPLPAR entitled_capacity: 50   platcpus_active: 24
4 SMT threads (maximum: 4) per processor have been enabled.
The temporary memory region list is at 1 percent capacity.
The temporary IPLCB is at 1 percent capacity.
Starting thread, index: 1, phys_id: 1, addr: EE51820; RTAS ret code: 0; done.
Starting thread, index: 2, phys_id: 2, addr: EE51820; RTAS ret code: 0; done.
Starting thread, index: 3, phys_id: 3, addr: EE51820; RTAS ret code: 0; done.
The IPLCB address is 0x0EE51000
name                 offset           size
ipl_cb_and_bit_map 00000000 ......0002E4CC
bit_map........... 0000177C ......00000024
ipl_info.......... 000001B8 ......00000024
splpar_info....... 000001DC ......00000048
smt_info.......... 00000234 ......00000008
system_info....... 0000023C ......000000C4
processor_info.... 00000300 ......000005C0
lpar_id_info...... 000008C0 ......00000088
dr_proc_info...... 00000948 ......00000008
dr_mem_info....... 00000950 ......00000028
lpar_info......... 00000978 ......00000014
segment page...... 00000998 ......00000068
processor page.... 00000A00 ......00000010
res_asso_id....... 00000A48 ......000005A0
res_asso_group.... 00000FE8 ......000002EC
asso_ref_pnt...... 000012D4 ......00000010
residual.......... 00001ADC ......0002C9F0
fwad_info......... 000012E4 ......00000040
cede_latency_info. 00000A30 ......00000018
platform facility. 0000142C ......00000010
platfac compress.. 0000143C ......00000028
platfac syncencr.. 00001464 ......00000314
platfac random.... 00001778 ......00000004
        region address          region length           attr  label
0       0x0000000000000000      0x000000000EE4D000      0x01  0x01
1       0x000000000EE4D000      0x0000000000004000      0x01  0x03
2       0x000000000EE51000      0x000000000002F000      0x01  0x02
3       0x000000000EE80000      0x0000000001180000      0x00  0x05
4       0x0000000010000000      0x0000000010000000      0x01  0x01
...
35      0x0000000800000000      0xFFFFFFF800000000      0x00  0x07
----------------------------
 
09856800 bytes of free memory remain at address 03974000
compressed kernel addr: D0C00;  sz: 87673B;  uncompressed kernel addr:  D22FA00
source address for entry #5 adjusted for entry #1, from 0EC5D956 to 0D041400
source address for entry #4 adjusted for entry #2, from 0E88DF88 to 0CFAC200
         name     source       dest       size   flags
 0      .data    DC8FC40    2000000     BFE348     1
 1    basecfg    1904000    EE47000       587C     1
 2      ramfs     947340    DF47000     EFF6C5     1
 3      .text    D22FC40      D0C00     A60000     1
 4       .ldr    CFAC200     B31000      95159     1
 5     symtab    D041400     BC7000     1EE559     1
 6  kern. hdr    D22FA00          0        240     1
 7       .bss          0    2BFE348    1551CB8     2
free space between BSS and RAM filesystem: 09DF7000
 
entry_point: 0x000D0C28
                       kernel debugger setting: enabled
-------------------------------------------------------------------------------
LED{814}
 
AIX Version 6.1
Starting NODE#000 physical CPU#001 as logical CPU#001... done.
Starting NODE#000 physical CPU#002 as logical CPU#002... done.
Starting NODE#000 physical CPU#003 as logical CPU#003... done.
exec(/etc/init){1,0}
 
INIT: EXECUTING /sbin/rc.boot 1
exec(/usr/bin/sh,-c,/sbin/rc.boot 1){1441836,1}
exec(/sbin/rc.boot,/sbin/rc.boot,1){1441836,1}
+ PHASE=1
+ + bootinfo -p
exec(/usr/sbin/bootinfo,-p){1507374,1441836}
PLATFORM=chrp
+ [ ! -x /usr/lib/boot/bin/bootinfo_chrp ]
+ [ 1 -eq 1 ]
+ 1> /usr/lib/libc.a
+ init -c unlink /usr/lib/boot/bin/!(*_chrp)
exec(/etc/init,-c,unlink /usr/lib/boot/bin/!(*_chrp)){1507376,1441836}
+ chramfs -t
exec(/usr/sbin/chramfs,-t){1507378,1441836}
+ init -c unlink /usr/sbin/chramfs
+ 1> /dev/null
exec(/etc/init,-c,unlink /usr/sbin/chramfs){1507380,1441836}
+ + bootinfo -t
exec(/usr/sbin/bootinfo,-t){1507382,1441836}
BOOTYPE=1
+ [ 0 -ne 0 ]
+ [ -z 1 ]
+ unset pdev_to_ldev native_netboot_cfg
+ unset disknet_odm_init config_ATM
+ echo \n\n_______________________________________ _____________________________________ \nrc.boot: starting disk boot process
+ 1> /tmp/boot_log
+ echo B1 Starting Disk Boot
+ 1> /tmp/cfg_log
+ ln /usr/lib/libbind.a /usr/lib/libc.a /usr/lib/libcfg.a /usr/lib/libcfgiscsi.a /usr/lib/libcfgscsi.a /usr/lib/libcrypt.a /usr/lib/libefs.a /usr/lib/libisns.a /usr/lib/liblvm.a /usr/lib/libodm.a /usr/lib/libs.a /usr/lib/libslp.a /lib
exec(/usr/bin/ln,/usr/lib/libbind.a,/usr/lib/libc.a,/usr/lib/libcfg.a,/usr/lib/libcfgiscsi.a,/usr/lib/libcfgscsi.a,/usr/lib/libcrypt.a,/usr/lib/libefs.a,/usr/lib/libisns.a,/usr/lib/liblvm.a,/usr/lib/libodm.a,/usr/lib/libs.a,/usr/lib/libslp.a,/lib){1507384,1441836}
+ echo rc.boot: executing "restbase"
+ 1>> /tmp/boot_log
+ restbase
exec(/etc/restbase){1507386,1441836}
exec(/bin/sh,-c,uncompress /tmp/restbase.Z){1572912,1507386}
exec(/usr/bin/uncompress,/tmp/restbase.Z){1572912,1507386}
+ rc=0
+ [ 0 -eq 1 ]
+ [ 0 -eq 2 ]
+ /usr/lib/methods/showled 0x510 DEV CFG 1 START
exec(/usr/lib/methods/showled,0x510,DEV CFG 1 START){1507388,1441836}
+ echo rc.boot: executing "cfgmgr -f -v"
+ 1>> /tmp/boot_log
+ cfgmgr -f -v
exec(/usr/sbin/cfgmgr,-f,-v){1507390,1441836}
cfgmgr is running in phase 1
----------------
Time: 0 LEDS: 0x538
Invoking top level program -- "/etc/methods/defsys"
exec(/bin/sh,-c,/etc/methods/defsys ){1572914,1507390}
exec(/etc/methods/defsys){1572914,1507390}
Time: 0 LEDS: 0x539
Return code = 0
***** stdout *****
sys0
 
*** no stderr ****
----------------
Attempting to configure device 'sys0'
Time: 0 LEDS: 0x811
Invoking /usr/lib/methods/cfgsys_chrp -1 -l sys0
exec(/bin/sh,-c,/usr/lib/methods/cfgsys_chrp -1 -l sys0){1572916,1507390}
exec(/usr/lib/methods/cfgsys_chrp,-1,-l,sys0){1572916,1507390}
Number of running methods: 1
----------------
Completed method for: sys0, Elapsed time = 0
Return code = 0
***** stdout *****
sysplanar0
 
***** stderr *****
MS 1572916 1507390 /usr/lib/methods/cfgsys_chrp -1 -l sys0
M4 1572916 Parallel mode = 0
M4 1572916 Get CuDv for sys0
M4 1572916 Get device PdDv, uniquetype=sys/node/chrp
M4 1572916 ..make_dvc_available()
M4 1572916 In configure_device()
M4 1572916 mdd_get: offset=00000080, size=00000138
M4 1572916 Calling mdd ioctl
M4 1572916 mdd_get: offset=0000023c, size=000000c4
M4 1572916 Calling mdd ioctl
M4 1572916 mdd_get: offset=00000080, size=00000138
M4 1572916 Calling mdd ioctl
M4 1572916 mdd_get: offset=0000023c, size=000000c4
M4 1572916 Calling mdd ioctl
M4 1572916 Invoking set_attrs
M4 1572916 get alist(sys0,sys/node/chrp,)
M4 1572916 ..get_attr_list()
M4 1572916 Get PdAts for 'uniquetype = sys/node/chrp'
M4 1572916 Get CuAts for 'name = sys0'
M4 1572916 mdd_get: offset=00000080, size=00000138
M4 1572916 Calling mdd ioctl
M4 1572916 mdd_get: offset=000001b8, size=00000024
M4 1572916 Calling mdd ioctl
M4 1572916 Setting system attributes
M4 1572916 part_id_value=0x03E2412589B77712 id_to_partition=0X03E2412589B77712
M4 1572916 setattrval(sys0,id_to_partition,0X03E2412589B77712)
M4 1572916 Attr id_to_partition found
M4 1572916 Value received from getatt: 0X03E2412589B77712
M4 1572916 Attr clouddev found
M4 1572916 part_no=0x0000000000000012 id_to_system=0X03E2412589B77700
M4 1572916 setattrval(sys0,id_to_system,0X03E2412589B77700)
M4 1572916 Attr id_to_system found
M4 1572916 Value received from getatt: 0X03E2412589B77700
M4 1572916 setattrval(sys0,modelcode,0x0800004c)
M4 1572916 Attr modelcode found
M4 1572916 Value received from getatt: 0x0800004c
M4 1572916 Getting keylock state
M4 1572916 setattrval(sys0,keylock,normal)
M4 1572916 Attr keylock found
M4 1572916 Value received from getatt: normal
M4 1572916 setattrval(sys0,fwversion,IBM,AF783_022)
M4 1572916 Attr fwversion found
M4 1572916 Value received from getatt: IBM,AF783_022
M4 1572916 setattrval(sys0,rtasversion,1)
M4 1572916 Attr rtasversion found
M4 1572916 Value received from getatt: 1
M4 1572916 setattrval(sys0,modelname,IBM,7954-24X)
M4 1572916 Attr modelname found
M4 1572916 Value received from getatt: IBM,7954-24X
M4 1572916 setattrval(sys0,systemid,IBM,0321FD1FB)
M4 1572916 Attr systemid found
M4 1572916 Value received from getatt: IBM,0321FD1FB
M4 1572916 Attr cod_proc found
M4 1572916 setattrval(sys0,pci_full_cfg,1)
M4 1572916 Attr pci_full_cfg found
M4 1572916 Value received from getatt: 1
M4 1572916 Found extended-clock-freq prop cnt=8
M4 1572916 Freq value='6400000000'
M4 1572916 setattrval(sys0,frequency,6400000000)
M4 1572916 Attr frequency found
M4 1572916 Value received from getatt: 6400000000
M4 1572916 Getting NVRAM variable:'bootinfo-aix='
M4 1572916 Return code from get_nv_env() = 0
M4 1572916 bootinfo-aix found, bootinfo-aix=/vdevice/vfc-client@30000003/disk@500507680b2122b4,4000000000000:1
M4 1572916 Getting NVRAM variable:'ibm,dasd-spin-interval='
M4 1572916 Return code from get_nv_env() = 0
M4 1572916 setattrval(sys0,dasd_spin_delay,5)
M4 1572916 Attr dasd_spin_delay found
M4 1572916 Value received from getatt: 5
M4 1572916 ..handle_vpd()
M4 1572916 Setting CuDv to AVAILABLE
M4 1572916 Invoking define_children
M0 1572916 cfgsys_chrp.c 437 getattr() failed
M0 1572916 cfgsys_chrp.c 438 ODM cpuguard attribute not found.
M4 1572916 In get_mem_size
M4 1572916 num=1
M4 1572916 Memory size from nodes = 0x10000000
M4 1572916 get_mem_size_from_prop: Entered
M4 1572916 get_mem_size_from_prop: drmem_tok=0x2678c
M4 1572916 get_mem_size_from_prop: addr_cells=0x2
M4 1572916 get_mem_size_from_prop: idx1=0x1 idx2=0x1
M4 1572916 Total memory size from the property=0x1f0000000
M4 1572916 Memory size from property = 0x1f0000000
M4 1572916 Memory size = 0x200000000
M4 1572916 Exit code = 0
 
----------------
Time: 0 LEDS: 0x539
Number of running methods: 0
 cfgmgr ----------------
Attempting to configure device 'sysplanar0'
 cfgmgr Time: 0 LEDS: 0x811
Invoking /usr/lib/methods/cfgsysplanar_chrp -1 -l sysplanar0
exec(/bin/sh,-c,/usr/lib/methods/cfgsysplanar_chrp -1 -l sysplanar0){1572918,1507390}
exec(/usr/lib/methods/cfgsysplanar_chrp,-1,-l,sysplanar0){1572918,1507390}
Number of running methods: 1
----------------
Completed method for: sysplanar0, Elapsed time = 0
Return code = 0
***** stdout *****
mem0
L2cache0
proc0
vio0
 
***** stderr *****
MS 1572918 1507390 /usr/lib/methods/cfgsysplanar_chrp -1 -l sysplanar0
M4 1572918 Parallel mode = 0
M4 1572918 Get CuDv for sysplanar0
M4 1572918 Get device PdDv, uniquetype=planar/sys/sysplanar_rspc
M4 1572918 Get parent CuDv, name=sys0
M4 1572918 ..make_dvc_available()
M4 1572918 ..handle_vpd()
M4 1572918 Setting CuDv to AVAILABLE
M4 1572918 Exit code = 0
 
----------------
Time: 0 LEDS: 0x539
Number of running methods: 0
 cfgmgr ----------------
Attempting to configure device 'mem0'
 cfgmgr Time: 0 LEDS: 0x812
Invoking /usr/lib/methods/cfgmem_chrp -1 -l mem0
exec(/bin/sh,-c,/usr/lib/methods/cfgmem_chrp -1 -l mem0){1572920,1507390}
exec(/usr/lib/methods/cfgmem_chrp,-1,-l,mem0){1572920,1507390}
Number of running methods: 1
----------------
Attempting to configure device 'L2cache0'
 cfgmgr Time: 0 LEDS: 0x708
Invoking /usr/lib/methods/cfgL2cache_chrp -1 -l L2cache0
exec(/bin/sh,-c,/usr/lib/methods/cfgL2cache_chrp -1 -l L2cache0){720922,1507390}
exec(/usr/lib/methods/cfgL2cache_chrp,-1,-l,L2cache0){720922,1507390}
Number of running methods: 2
----------------
Attempting to configure device 'proc0'
 cfgmgr Time: 0 LEDS: 0x811
Invoking /usr/lib/methods/cfgproc_chrp -1 -l proc0
exec(/bin/sh,-c,/usr/lib/methods/cfgproc_chrp -1 -l proc0){1638450,1507390}
exec(/usr/lib/methods/cfgproc_chrp,-1,-l,proc0){1638450,1507390}
Number of running methods: 3
----------------
Attempting to configure device 'vio0'
 cfgmgr Time: 0 LEDS: 0x25b6
Invoking /usr/lib/methods/cfgbus_vdevice -1 -l vio0
exec(/bin/sh,-c,/usr/lib/methods/cfgbus_vdevice -1 -l vio0){1703988,1507390}
exec(/usr/lib/methods/cfgbus_vdevice,-1,-l,vio0){1703988,1507390}
Number of running methods: 4
----------------
Completed method for: mem0, Elapsed time = 0
Return code = 0
*** no stdout ****
***** stderr *****
MS 1572920 1507390 /usr/lib/methods/cfgmem_chrp -1 -l mem0
M4 1572920 Parallel mode = 1
M4 1572920 Get CuDv for mem0
M4 1572920 Get device PdDv, uniquetype=memory/sys/totmem
M4 1572920 Get parent CuDv, name=sysplanar0
M4 1572920 ..make_dvc_available()
M4 1572920 ..handle_vpd()
M4 1572920 Setting CuDv to AVAILABLE
M4 1572920 Exit code = 0
 
----------------
Time: 0 LEDS: 0x25b6 for vio0
Number of running methods: 3
 cfgmgr ----------------
Completed method for: L2cache0, Elapsed time = 0
Return code = 0
*** no stdout ****
***** stderr *****
MS 720922 1507390 /usr/lib/methods/cfgL2cache_chrp -1 -l L2cache0
M4 720922 Parallel mode = 1
M4 720922 Get CuDv for L2cache0
M4 720922 Get device PdDv, uniquetype=memory/sys/L2cache_rspc
M4 720922 Get parent CuDv, name=sysplanar0
M4 720922 ..make_dvc_available()
M4 720922 ..handle_vpd()
M4 720922 Setting CuDv to AVAILABLE
M4 720922 Exit code = 0
 
----------------
Time: 0 LEDS: 0x25b6 for vio0
Number of running methods: 2
 cfgmgr ----------------
Completed method for: proc0, Elapsed time = 0
Return code = 0
*** no stdout ****
***** stderr *****
MS 1638450 1507390 /usr/lib/methods/cfgproc_chrp -1 -l proc0
M4 1638450 Parallel mode = 1
M4 1638450 Get CuDv for proc0
M4 1638450 Get device PdDv, uniquetype=processor/sys/proc_rspc
M4 1638450 Get parent CuDv, name=sysplanar0
M4 1638450 ..make_dvc_available()
M4 1638450 Invoking set_attrs
M4 1638450 Found processor, name = proc0, connwhere = P0
M4 1638450 Found extended-clock-frequency property for processor, value=3416000000 string=3416000000
M4 1638450 ..handle_vpd()
M4 1638450 Setting CuDv to AVAILABLE
M4 1638450 Exit code = 0
 
----------------
Time: 0 LEDS: 0x25b6 for vio0
Number of running methods: 1
 cfgmgr ----------------
Completed method for: vio0, Elapsed time = 0
Return code = 0
***** stdout *****
vsa0
ent0
fcs2
fcs3
fcs0
fcs1
vscsi16
 
***** stderr *****
MS 1703988 1507390 /usr/lib/methods/cfgbus_vdevice -1 -l vio0
M4 1703988 Parallel mode = 1
M4 1703988 Get CuDv for vio0
M4 1703988 Get device PdDv, uniquetype=bus/chrp/vdevice
M4 1703988 Get parent CuDv, name=sysplanar0
M4 1703988 ..make_dvc_available()
M4 1703988 ..get_dvdr_name()
M4 1703988 driver: vdev_busdd
M4 1703988 Major number: 11
M4 1703988 Minor number: 0
M4 1703988 ..mk_sp_file()
M4 1703988 Calling build_dds()
M4 1703988 ..handle_vpd()
M4 1703988 Setting CuDv to AVAILABLE
M4 1703988 Exit code = 0
 
----------------
Time: 0 LEDS: 0x539
Number of running methods: 0
 cfgmgr ----------------
Attempting to configure device 'vsa0'
Method: /etc/methods/cfgvcon not in boot image, configure in phase 2
----------------
Attempting to configure device 'ent0'
Method: /usr/lib/methods/cfgvioent not in boot image, configure in phase 2
----------------
Attempting to configure device 'fcs2'
 cfgmgr Time: 0 LEDS: 0x2701
Invoking /usr/lib/methods/cfg_vfc -1 -l fcs2
exec(/bin/sh,-c,/usr/lib/methods/cfg_vfc -1 -l fcs2){1703990,1507390}
exec(/usr/lib/methods/cfg_vfc,-1,-l,fcs2){1703990,1507390}
Number of running methods: 1
----------------
Attempting to configure device 'fcs3'
 cfgmgr Time: 0 LEDS: 0x2701
Invoking /usr/lib/methods/cfg_vfc -1 -l fcs3
exec(/bin/sh,-c,/usr/lib/methods/cfg_vfc -1 -l fcs3){1638452,1507390}
Number of running methods: 2
exec(/usr/lib/methods/cfg_vfc,-1,-l,fcs3){1638452,1507390}
----------------
Attempting to configure device 'fcs0'
 cfgmgr Time: 0 LEDS: 0x2701
Invoking /usr/lib/methods/cfg_vfc -1 -l fcs0
exec(/bin/sh,-c,/usr/lib/methods/cfg_vfc -1 -l fcs0){720924,1507390}
Number of running methods: 3
exec(/usr/lib/methods/cfg_vfc,-1,-l,fcs0){720924,1507390}
----------------
Attempting to configure device 'fcs1'
 cfgmgr Time: 0 LEDS: 0x2701
Invoking /usr/lib/methods/cfg_vfc -1 -l fcs1
exec(/bin/sh,-c,/usr/lib/methods/cfg_vfc -1 -l fcs1){1572922,1507390}
exec(/usr/lib/methods/cfg_vfc,-1,-l,fcs1){1572922,1507390}
Number of running methods: 4
----------------
Completed method for: fcs2, Elapsed time = 0
Return code = 0
***** stdout *****
fscsi2
***** stderr *****
MS 1703990 1507390 /usr/lib/methods/cfg_vfc -1 -l fcs2
M4 1703990 Parallel mode = 1
M4 1703990 Get CuDv for fcs2
M4 1703990 Get device PdDv, uniquetype=adapter/vdevice/IBM,vfc-client
M4 1703990 Get parent CuDv, name=vio0
M4 1703990 ..make_dvc_available()
M4 1703990 ..get_dvdr_name()
M4 1703990 driver: vfcdd
M4 1703990 Instance number = 2
M4 1703990 Get addl_dvdr attribute
M4 1703990 kmid = 501e5000
M4 1703990 ..get_attr_list()
M4 1703990 Get PdAts for 'uniquetype = adapter/vdevice/IBM,vfc-client'
M4 1703990 Get CuAts for 'name = fcs2'
M4 1703990 Attr intr_priority found
M4 1703990 Attr poll_enabled not found
M4 1703990 Attr poll_threshold not found
M4 1703990 Attr abort_to not found
M4 1703990 Attr retry_count not found
M4 1703990 Attr num_cmd_elems found
M4 1703990 Attr max_xfer_size found
M4 1703990 Attr lg_term_dma found
M4 1703990 Attr small_xfers found
M4 1703990 Attr adap_flags found
M4 1703990 ..handle_vpd()
M4 1703990 Get CuVPD for name = 'fcs2' and vpd_type = '0'
M4 1703990 Setting CuDv to AVAILABLE
M0 1703990 cfg_vfc.c 547 name of child fscsi2
M0 1703990 cfg_vfc.c 601 dflt_dvdr = */vionpiv/*
M0 1703990 cfg_vfc.c 620 delimiter used for list compares = ,
M0 1703990 cfg_vfc.c 662 uniquetype of child is driver/vionpiv/efscsi
M4 1703990 Exit code = 0
 
----------------
Time: 0 LEDS: 0x2701 for fcs1
Number of running methods: 3
 cfgmgr ----------------
Attempting to configure device 'fscsi2'
 cfgmgr Time: 0 LEDS: 0x2700
Invoking /usr/lib/methods/cfgefscsi -1 -l fscsi2
exec(/bin/sh,-c,/usr/lib/methods/cfgefscsi -1 -l fscsi2){1703992,1507390}
exec(/usr/lib/methods/cfgefscsi,-1,-l,fscsi2){1703992,1507390}
Number of running methods: 4
----------------
Completed method for: fcs3, Elapsed time = 0
Return code = 0
***** stdout *****
fscsi3
***** stderr *****
MS 1638452 1507390 /usr/lib/methods/cfg_vfc -1 -l fcs3
M4 1638452 Parallel mode = 1
M4 1638452 Get CuDv for fcs3
M4 1638452 Get device PdDv, uniquetype=adapter/vdevice/IBM,vfc-client
M4 1638452 Get parent CuDv, name=vio0
M4 1638452 ..make_dvc_available()
M4 1638452 ..get_dvdr_name()
M4 1638452 driver: vfcdd
M4 1638452 Instance number = 3
M4 1638452 Get addl_dvdr attribute
M4 1638452 kmid = 501e5000
M4 1638452 ..get_attr_list()
M4 1638452 Get PdAts for 'uniquetype = adapter/vdevice/IBM,vfc-client'
M4 1638452 Get CuAts for 'name = fcs3'
M4 1638452 Attr intr_priority found
M4 1638452 Attr poll_enabled not found
M4 1638452 Attr poll_threshold not found
M4 1638452 Attr abort_to not found
M4 1638452 Attr retry_count not found
M4 1638452 Attr num_cmd_elems found
M4 1638452 Attr max_xfer_size found
M4 1638452 Attr lg_term_dma found
M4 1638452 Attr small_xfers found
M4 1638452 Attr adap_flags found
M4 1638452 ..handle_vpd()
M4 1638452 Get CuVPD for name = 'fcs3' and vpd_type = '0'
M4 1638452 Setting CuDv to AVAILABLE
M0 1638452 cfg_vfc.c 547 name of child fscsi3
M0 1638452 cfg_vfc.c 601 dflt_dvdr = */vionpiv/*
M0 1638452 cfg_vfc.c 620 delimiter used for list compares = ,
M0 1638452 cfg_vfc.c 662 uniquetype of child is driver/vionpiv/efscsi
M4 1638452 Exit code = 0
 
----------------
Time: 0 LEDS: 0x2700 for fscsi2
Number of running methods: 3
 cfgmgr ----------------
Attempting to configure device 'fscsi3'
 cfgmgr Time: 0 LEDS: 0x2700
Invoking /usr/lib/methods/cfgefscsi -1 -l fscsi3
exec(/bin/sh,-c,/usr/lib/methods/cfgefscsi -1 -l fscsi3){1638454,1507390}
exec(/usr/lib/methods/cfgefscsi,-1,-l,fscsi3){1638454,1507390}
Number of running methods: 4
----------------
Completed method for: fcs0, Elapsed time = 0
Return code = 0
***** stdout *****
fscsi0
***** stderr *****
MS 720924 1507390 /usr/lib/methods/cfg_vfc -1 -l fcs0
M4 720924 Parallel mode = 1
M4 720924 Get CuDv for fcs0
M4 720924 Get device PdDv, uniquetype=adapter/vdevice/IBM,vfc-client
M4 720924 Get parent CuDv, name=vio0
M4 720924 ..make_dvc_available()
M4 720924 ..get_dvdr_name()
M4 720924 driver: vfcdd
M4 720924 Instance number = 0
M4 720924 Get addl_dvdr attribute
M4 720924 kmid = 501e5000
M4 720924 ..get_attr_list()
M4 720924 Get PdAts for 'uniquetype = adapter/vdevice/IBM,vfc-client'
M4 720924 Get CuAts for 'name = fcs0'
M4 720924 Attr intr_priority found
M4 720924 Attr poll_enabled not found
M4 720924 Attr poll_threshold not found
M4 720924 Attr abort_to not found
M4 720924 Attr retry_count not found
M4 720924 Attr num_cmd_elems found
M4 720924 Attr max_xfer_size found
M4 720924 Attr lg_term_dma found
M4 720924 Attr small_xfers found
M4 720924 Attr adap_flags found
M4 720924 ..handle_vpd()
M4 720924 Get CuVPD for name = 'fcs0' and vpd_type = '0'
M4 720924 Setting CuDv to AVAILABLE
M0 720924 cfg_vfc.c 547 name of child fscsi0
M0 720924 cfg_vfc.c 601 dflt_dvdr = */vionpiv/*
M0 720924 cfg_vfc.c 620 delimiter used for list compares = ,
M0 720924 cfg_vfc.c 662 uniquetype of child is driver/vionpiv/efscsi
M4 720924 Exit code = 0
 
----------------
Time: 0 LEDS: 0x2700 for fscsi3
Number of running methods: 3
 cfgmgr ----------------
Attempting to configure device 'fscsi0'
 cfgmgr Time: 0 LEDS: 0x2700
Invoking /usr/lib/methods/cfgefscsi -1 -l fscsi0
exec(/bin/sh,-c,/usr/lib/methods/cfgefscsi -1 -l fscsi0){720926,1507390}
exec(/usr/lib/methods/cfgefscsi,-1,-l,fscsi0){720926,1507390}
Number of running methods: 4
----------------
Completed method for: fcs1, Elapsed time = 0
Return code = 0
***** stdout *****
fscsi1
***** stderr *****
MS 1572922 1507390 /usr/lib/methods/cfg_vfc -1 -l fcs1
M4 1572922 Parallel mode = 1
M4 1572922 Get CuDv for fcs1
M4 1572922 Get device PdDv, uniquetype=adapter/vdevice/IBM,vfc-client
M4 1572922 Get parent CuDv, name=vio0
M4 1572922 ..make_dvc_available()
M4 1572922 ..get_dvdr_name()
M4 1572922 driver: vfcdd
M4 1572922 Instance number = 1
M4 1572922 Get addl_dvdr attribute
M4 1572922 kmid = 501e5000
M4 1572922 ..get_attr_list()
M4 1572922 Get PdAts for 'uniquetype = adapter/vdevice/IBM,vfc-client'
M4 1572922 Get CuAts for 'name = fcs1'
M4 1572922 Attr intr_priority found
M4 1572922 Attr poll_enabled not found
M4 1572922 Attr poll_threshold not found
M4 1572922 Attr abort_to not found
M4 1572922 Attr retry_count not found
M4 1572922 Attr num_cmd_elems found
M4 1572922 Attr max_xfer_size found
M4 1572922 Attr lg_term_dma found
M4 1572922 Attr small_xfers found
M4 1572922 Attr adap_flags found
M4 1572922 ..handle_vpd()
M4 1572922 Get CuVPD for name = 'fcs1' and vpd_type = '0'
M4 1572922 Setting CuDv to AVAILABLE
M0 1572922 cfg_vfc.c 547 name of child fscsi1
M0 1572922 cfg_vfc.c 601 dflt_dvdr = */vionpiv/*
M0 1572922 cfg_vfc.c 620 delimiter used for list compares = ,
M0 1572922 cfg_vfc.c 662 uniquetype of child is driver/vionpiv/efscsi
M4 1572922 Exit code = 0
 
----------------
Time: 0 LEDS: 0x2700 for fscsi0
Number of running methods: 3
 cfgmgr ----------------
Attempting to configure device 'fscsi1'
 cfgmgr Time: 0 LEDS: 0x2700
Invoking /usr/lib/methods/cfgefscsi -1 -l fscsi1
exec(/bin/sh,-c,/usr/lib/methods/cfgefscsi -1 -l fscsi1){1572924,1507390}
exec(/usr/lib/methods/cfgefscsi,-1,-l,fscsi1){1572924,1507390}
Number of running methods: 4
----------------
Completed method for: fscsi0, Elapsed time = 0
Return code = 61
*** no stdout ****
***** stderr *****
MS 720926 1507390 /usr/lib/methods/cfgefscsi -1 -l fscsi0
M4 720926 Parallel mode = 1
M4 720926 Get CuDv for fscsi0
M4 720926 Get device PdDv, uniquetype=driver/vionpiv/efscsi
M4 720926 Get parent CuDv, name=fcs0
M4 720926 ..make_dvc_available()
M4 720926 ..get_dvdr_name()
M4 720926 driver: efscsidd
M4 720926 Major number: 54
M4 720926 Minor number: 0
M4 720926 ..mk_sp_file()
M4 720926 Calling build_dds()
M4 720926 ..get_attr_list()
M4 720926 Get PdAts for 'uniquetype = driver/vionpiv/efscsi'
M4 720926 Get CuAts for 'name = fscsi0'
M4 720926 ..get_attr_list()
M4 720926 Get PdAts for 'uniquetype = adapter/vdevice/IBM,vfc-client'
M4 720926 Get CuAts for 'name = fcs0'
M4 720926 Attr cancel_to found
M4 720926 Attr tg_cancel_to found
M4 720926 Attr nport_log_to not found
M4 720926 Attr pdisc_to not found
M4 720926 Attr prlog_to not found
M4 720926 Attr reset_to not found
M4 720926 Attr gen_req_to not found
M4 720926 Attr rft_id_to not found
M4 720926 Attr aopen_to not found
M4 720926 Attr linkup_to not found
M4 720926 Attr update_vport_to not found
M4 720926 Attr starve_dly not found
M4 720926 Attr fc_class not found
M4 720926 Attr sw_fc_class found
M4 720926 Attr nm_fc_class not found
M4 720926 Attr fc_err_recov found
M4 720926 Attr dyntrk found
M4 720926 Attr imm_gid_pn found
M4 720926 Attr prli_delay not found
M4 720926 Attr cmd_delay not found
M4 720926 Attr gid_pn_delay not found
M4 720926 Attr num_cmd_elems found
M4 720926 Attr intr_priority found
M4 720926 Attr retry_count not found
M4 720926 Attr relogin not found
M4 720926 Attr max_events not found
M4 720926 ..handle_vpd()
M4 720926 Setting CuDv to AVAILABLE
M4 720926 ..get_attr_list()
M4 720926 Get PdAts for 'uniquetype = driver/vionpiv/efscsi'
M4 720926 Get CuAts for 'name = fscsi0'
M0 720926 cfgefscsi.c 1110 open of /dev/fscsi0 returned 61
M0 720926 cfgcommon.c 355 define_children returned rc=47
M4 720926 Exit code = 61
 
Method error (/usr/lib/methods/cfgefscsi -1 -l fscsi0 ):
        0514-061 Cannot find a child device.
----------------
Time: 0 LEDS: 0x2700 for fscsi1
Number of running methods: 3
 cfgmgr ----------------
Completed method for: fscsi2, Elapsed time = 0
Return code = 61
*** no stdout ****
***** stderr *****
MS 1703992 1507390 /usr/lib/methods/cfgefscsi -1 -l fscsi2
M4 1703992 Parallel mode = 1
M4 1703992 Get CuDv for fscsi2
M4 1703992 Get device PdDv, uniquetype=driver/vionpiv/efscsi
M4 1703992 Get parent CuDv, name=fcs2
M4 1703992 ..make_dvc_available()
M4 1703992 ..get_dvdr_name()
M4 1703992 driver: efscsidd
M4 1703992 Major number: 54
M4 1703992 Minor number: 2
M4 1703992 ..mk_sp_file()
M4 1703992 Calling build_dds()
M4 1703992 ..get_attr_list()
M4 1703992 Get PdAts for 'uniquetype = driver/vionpiv/efscsi'
M4 1703992 Get CuAts for 'name = fscsi2'
M4 1703992 ..get_attr_list()
M4 1703992 Get PdAts for 'uniquetype = adapter/vdevice/IBM,vfc-client'
M4 1703992 Get CuAts for 'name = fcs2'
M4 1703992 Attr cancel_to found
M4 1703992 Attr tg_cancel_to found
M4 1703992 Attr nport_log_to not found
M4 1703992 Attr pdisc_to not found
M4 1703992 Attr prlog_to not found
M4 1703992 Attr reset_to not found
M4 1703992 Attr gen_req_to not found
M4 1703992 Attr rft_id_to not found
M4 1703992 Attr aopen_to not found
M4 1703992 Attr linkup_to not found
M4 1703992 Attr update_vport_to not found
M4 1703992 Attr starve_dly not found
M4 1703992 Attr fc_class not found
M4 1703992 Attr sw_fc_class found
M4 1703992 Attr nm_fc_class not found
M4 1703992 Attr fc_err_recov found
M4 1703992 Attr dyntrk found
M4 1703992 Attr imm_gid_pn found
M4 1703992 Attr prli_delay not found
M4 1703992 Attr cmd_delay not found
M4 1703992 Attr gid_pn_delay not found
M4 1703992 Attr num_cmd_elems found
M4 1703992 Attr intr_priority found
M4 1703992 Attr retry_count not found
M4 1703992 Attr relogin not found
M4 1703992 Attr max_events not found
M4 1703992 ..handle_vpd()
M4 1703992 Setting CuDv to AVAILABLE
M4 1703992 ..get_attr_list()
M4 1703992 Get PdAts for 'uniquetype = driver/vionpiv/efscsi'
M4 1703992 Get CuAts for 'name = fscsi2'
M0 1703992 cfgefscsi.c 1110 open of /dev/fscsi2 returned 61
M0 1703992 cfgcommon.c 355 define_children returned rc=47
M4 1703992 Exit code = 61
 
Method error (/usr/lib/methods/cfgefscsi -1 -l fscsi2 ):
        0514-061 Cannot find a child device.
----------------
Time: 0 LEDS: 0x2700 for fscsi1
Number of running methods: 2
 cfgmgr ----------------
Completed method for: fscsi3, Elapsed time = 0
Return code = 61
*** no stdout ****
***** stderr *****
MS 1638454 1507390 /usr/lib/methods/cfgefscsi -1 -l fscsi3
M4 1638454 Parallel mode = 1
M4 1638454 Get CuDv for fscsi3
M4 1638454 Get device PdDv, uniquetype=driver/vionpiv/efscsi
M4 1638454 Get parent CuDv, name=fcs3
M4 1638454 ..make_dvc_available()
M4 1638454 ..get_dvdr_name()
M4 1638454 driver: efscsidd
M4 1638454 Major number: 54
M4 1638454 Minor number: 3
M4 1638454 ..mk_sp_file()
M4 1638454 Calling build_dds()
M4 1638454 ..get_attr_list()
M4 1638454 Get PdAts for 'uniquetype = driver/vionpiv/efscsi'
M4 1638454 Get CuAts for 'name = fscsi3'
M4 1638454 ..get_attr_list()
M4 1638454 Get PdAts for 'uniquetype = adapter/vdevice/IBM,vfc-client'
M4 1638454 Get CuAts for 'name = fcs3'
M4 1638454 Attr cancel_to found
M4 1638454 Attr tg_cancel_to found
M4 1638454 Attr nport_log_to not found
M4 1638454 Attr pdisc_to not found
M4 1638454 Attr prlog_to not found
M4 1638454 Attr reset_to not found
M4 1638454 Attr gen_req_to not found
M4 1638454 Attr rft_id_to not found
M4 1638454 Attr aopen_to not found
M4 1638454 Attr linkup_to not found
M4 1638454 Attr update_vport_to not found
M4 1638454 Attr starve_dly not found
M4 1638454 Attr fc_class not found
M4 1638454 Attr sw_fc_class found
M4 1638454 Attr nm_fc_class not found
M4 1638454 Attr fc_err_recov found
M4 1638454 Attr dyntrk found
M4 1638454 Attr imm_gid_pn found
M4 1638454 Attr prli_delay not found
M4 1638454 Attr cmd_delay not found
M4 1638454 Attr gid_pn_delay not found
M4 1638454 Attr num_cmd_elems found
M4 1638454 Attr intr_priority found
M4 1638454 Attr retry_count not found
M4 1638454 Attr relogin not found
M4 1638454 Attr max_events not found
M4 1638454 ..handle_vpd()
M4 1638454 Setting CuDv to AVAILABLE
M4 1638454 ..get_attr_list()
M4 1638454 Get PdAts for 'uniquetype = driver/vionpiv/efscsi'
M4 1638454 Get CuAts for 'name = fscsi3'
M0 1638454 cfgefscsi.c 1110 open of /dev/fscsi3 returned 61
M0 1638454 cfgcommon.c 355 define_children returned rc=47
M4 1638454 Exit code = 61
 
Method error (/usr/lib/methods/cfgefscsi -1 -l fscsi3 ):
        0514-061 Cannot find a child device.
----------------
Time: 0 LEDS: 0x2700 for fscsi1
Number of running methods: 1
 cfgmgr ----------------
Completed method for: fscsi1, Elapsed time = 0
Return code = 61
*** no stdout ****
***** stderr *****
MS 1572924 1507390 /usr/lib/methods/cfgefscsi -1 -l fscsi1
M4 1572924 Parallel mode = 1
M4 1572924 Get CuDv for fscsi1
M4 1572924 Get device PdDv, uniquetype=driver/vionpiv/efscsi
M4 1572924 Get parent CuDv, name=fcs1
M4 1572924 ..make_dvc_available()
M4 1572924 ..get_dvdr_name()
M4 1572924 driver: efscsidd
M4 1572924 Major number: 54
M4 1572924 Minor number: 1
M4 1572924 ..mk_sp_file()
M4 1572924 Calling build_dds()
M4 1572924 ..get_attr_list()
M4 1572924 Get PdAts for 'uniquetype = driver/vionpiv/efscsi'
M4 1572924 Get CuAts for 'name = fscsi1'
M4 1572924 ..get_attr_list()
M4 1572924 Get PdAts for 'uniquetype = adapter/vdevice/IBM,vfc-client'
M4 1572924 Get CuAts for 'name = fcs1'
M4 1572924 Attr cancel_to found
M4 1572924 Attr tg_cancel_to found
M4 1572924 Attr nport_log_to not found
M4 1572924 Attr pdisc_to not found
M4 1572924 Attr prlog_to not found
M4 1572924 Attr reset_to not found
M4 1572924 Attr gen_req_to not found
M4 1572924 Attr rft_id_to not found
M4 1572924 Attr aopen_to not found
M4 1572924 Attr linkup_to not found
M4 1572924 Attr update_vport_to not found
M4 1572924 Attr starve_dly not found
M4 1572924 Attr fc_class not found
M4 1572924 Attr sw_fc_class found
M4 1572924 Attr nm_fc_class not found
M4 1572924 Attr fc_err_recov found
M4 1572924 Attr dyntrk found
M4 1572924 Attr imm_gid_pn found
M4 1572924 Attr prli_delay not found
M4 1572924 Attr cmd_delay not found
M4 1572924 Attr gid_pn_delay not found
M4 1572924 Attr num_cmd_elems found
M4 1572924 Attr intr_priority found
M4 1572924 Attr retry_count not found
M4 1572924 Attr relogin not found
M4 1572924 Attr max_events not found
M4 1572924 ..handle_vpd()
M4 1572924 Setting CuDv to AVAILABLE
M4 1572924 ..get_attr_list()
M4 1572924 Get PdAts for 'uniquetype = driver/vionpiv/efscsi'
M4 1572924 Get CuAts for 'name = fscsi1'
M0 1572924 cfgefscsi.c 1110 open of /dev/fscsi1 returned 61
M0 1572924 cfgcommon.c 355 define_children returned rc=47
M4 1572924 Exit code = 61
 
Method error (/usr/lib/methods/cfgefscsi -1 -l fscsi1 ):
        0514-061 Cannot find a child device.
----------------
Time: 0 LEDS: 0x539
Number of running methods: 0
 cfgmgr ----------------
Attempting to configure device 'vscsi16'
 cfgmgr Time: 0 LEDS: 0x25b3
Invoking /usr/lib/methods/cfg_vclient -1 -l vscsi16
exec(/bin/sh,-c,/usr/lib/methods/cfg_vclient -1 -l vscsi16){1572926,1507390}
exec(/usr/lib/methods/cfg_vclient,-1,-l,vscsi16){1572926,1507390}
Number of running methods: 1
----------------
Completed method for: vscsi16, Elapsed time = 0
Return code = 0
***** stdout *****
cd0
***** stderr *****
MS 1572926 1507390 /usr/lib/methods/cfg_vclient -1 -l vscsi16
M4 1572926 Parallel mode = 0
M4 1572926 Get CuDv for vscsi16
M4 1572926 Get device PdDv, uniquetype=adapter/vdevice/IBM,v-scsi
M4 1572926 Get parent CuDv, name=vio0
M4 1572926 ..make_dvc_available()
M4 1572926 ..get_dvdr_name()
M4 1572926 driver: vscsi_initdd
M4 1572926 Major number: 16
M4 1572926 Minor number: 16
M4 1572926 ..mk_sp_file()
M4 1572926 Calling build_dds()
M4 1572926 ..get_attr_list()
M4 1572926 Get PdAts for 'uniquetype = adapter/vdevice/IBM,v-scsi'
M4 1572926 Get CuAts for 'name = vscsi16'
M4 1572926 Attr vscsi_ping_to found
M4 1572926 Attr vscsi_path_to found
M4 1572926 Attr vscsi_err_recov found
M4 1572926 Attr rw_timeout found
M4 1572926 ..handle_vpd()
M4 1572926 Setting CuDv to AVAILABLE
M1 1572926              ...LUN = 0x8100000000000000, type = 0x5
M4 1572926 Exit code = 0
 
----------------
Time: 0 LEDS: 0x539
Number of running methods: 0
 cfgmgr ----------------
Attempting to configure device 'cd0'
Method: /usr/lib/methods/cfgscsicd not in boot image, configure in phase 2
----------------
Time: 0 LEDS: 0x538
Invoking top level program -- "/usr/lib/methods/deflvm"
 cfgmgr exec(/bin/sh,-c,/usr/lib/methods/deflvm ){1638456,1507390}
exec(/usr/lib/methods/deflvm){1638456,1507390}
 cfgmgr Time: 0 LEDS: 0x539
Return code = 0
***** stdout *****
lvdd
 
*** no stderr ****
----------------
Attempting to configure device 'lvdd'
 cfgmgr Time: 0 LEDS: 0x591
Invoking /usr/lib/methods/cfglvdd -1 -l lvdd
exec(/bin/sh,-c,/usr/lib/methods/cfglvdd -1 -l lvdd){1638458,1507390}
exec(/usr/lib/methods/cfglvdd,-1,-l,lvdd){1638458,1507390}
Number of running methods: 1
----------------
Completed method for: lvdd, Elapsed time = 0
Return code = 0
*** no stdout ****
*** no stderr ****
----------------
Time: 0 LEDS: 0x539
Number of running methods: 0
 cfgmgr ----------------
Time: 0 LEDS: 0x538
Invoking top level program -- "/etc/methods/startusb"
 cfgmgr exec(/bin/sh,-c,/etc/methods/startusb ){1638460,1507390}
 cfgmgr Time: 0 LEDS: 0x539
Return code = 127
*** no stdout ****
***** stderr *****
sh: /etc/methods/startusb:  not found
 
Method error (/etc/methods/startusb):
        0514-068 Cause not known.
sh: /etc/methods/startusb:  not found
 
----------------
Time: 0 LEDS: 0x538
Invoking top level program -- "/usr/lib/methods/lncentGotoV2 adapter/pciex/df1028e23d04000 phase1"
 cfgmgr exec(/bin/sh,-c,/usr/lib/methods/lncentGotoV2 adapter/pciex/df1028e23d04000 phase1 ){1703994,1507390}
 cfgmgr Time: 0 LEDS: 0x539
Return code = 127
*** no stdout ****
***** stderr *****
sh: /usr/lib/methods/lncentGotoV2:  not found
 
Method error (/usr/lib/methods/lncentGotoV2 adapter/pciex/df1028e23d04000 phase1):
        0514-068 Cause not known.
sh: /usr/lib/methods/lncentGotoV2:  not found
 
----------------
Time: 0 LEDS: 0x538
Invoking top level program -- "/usr/lib/methods/lncentGotoV2 adapter/pciex/df1028e23c04000 phase1"
 cfgmgr exec(/bin/sh,-c,/usr/lib/methods/lncentGotoV2 adapter/pciex/df1028e23c04000 phase1 ){1703996,1507390}
 cfgmgr Time: 0 LEDS: 0x539
Return code = 127
*** no stdout ****
***** stderr *****
sh: /usr/lib/methods/lncentGotoV2:  not found
 
Method error (/usr/lib/methods/lncentGotoV2 adapter/pciex/df1028e23c04000 phase1):
        0514-068 Cause not known.
sh: /usr/lib/methods/lncentGotoV2:  not found
 
----------------
Time: 0 LEDS: 0x538
Invoking top level program -- "/usr/lib/methods/lncentGotoV2 adapter/pciex/df1028e24204000 phase1"
 cfgmgr exec(/bin/sh,-c,/usr/lib/methods/lncentGotoV2 adapter/pciex/df1028e24204000 phase1 ){720928,1507390}
 cfgmgr Time: 0 LEDS: 0x539
Return code = 127
*** no stdout ****
***** stderr *****
sh: /usr/lib/methods/lncentGotoV2:  not found
 
Method error (/usr/lib/methods/lncentGotoV2 adapter/pciex/df1028e24204000 phase1):
        0514-068 Cause not known.
sh: /usr/lib/methods/lncentGotoV2:  not found
 
----------------
Time: 0 LEDS: 0x538
Invoking top level program -- "/usr/lib/methods/lncentGotoV2 adapter/pciex/df1028e23804000 phase1"
 cfgmgr exec(/bin/sh,-c,/usr/lib/methods/lncentGotoV2 adapter/pciex/df1028e23804000 phase1 ){720930,1507390}
 cfgmgr Time: 0 LEDS: 0x539
Return code = 127
*** no stdout ****
***** stderr *****
sh: /usr/lib/methods/lncentGotoV2:  not found
 
Method error (/usr/lib/methods/lncentGotoV2 adapter/pciex/df1028e23804000 phase1):
        0514-068 Cause not known.
sh: /usr/lib/methods/lncentGotoV2:  not found
 
----------------
Time: 0 LEDS: 0x538
Invoking top level program -- "/usr/lib/methods/lncentGotoV2 adapter/pciex/df1028e24004000 phase1"
 cfgmgr exec(/bin/sh,-c,/usr/lib/methods/lncentGotoV2 adapter/pciex/df1028e24004000 phase1 ){720932,1507390}
 cfgmgr Time: 0 LEDS: 0x539
Return code = 127
*** no stdout ****
***** stderr *****
sh: /usr/lib/methods/lncentGotoV2:  not found
 
Method error (/usr/lib/methods/lncentGotoV2 adapter/pciex/df1028e24004000 phase1):
        0514-068 Cause not known.
sh: /usr/lib/methods/lncentGotoV2:  not found
 
----------------
Time: 0 LEDS: 0x538
Invoking top level program -- "/usr/lib/methods/lncentGotoV2 adapter/pciex/df1028e23604000 phase1"
 cfgmgr exec(/bin/sh,-c,/usr/lib/methods/lncentGotoV2 adapter/pciex/df1028e23604000 phase1 ){720934,1507390}
 cfgmgr Time: 0 LEDS: 0x539
Return code = 127
*** no stdout ****
***** stderr *****
sh: /usr/lib/methods/lncentGotoV2:  not found
 
Method error (/usr/lib/methods/lncentGotoV2 adapter/pciex/df1028e23604000 phase1):
        0514-068 Cause not known.
sh: /usr/lib/methods/lncentGotoV2:  not found
 
----------------
Time: 0 LEDS: 0x538
Invoking top level program -- "/usr/lib/methods/lncentGotoV2 adapter/pciex/df1028e23b04000 phase1"
 cfgmgr exec(/bin/sh,-c,/usr/lib/methods/lncentGotoV2 adapter/pciex/df1028e23b04000 phase1 ){720936,1507390}
 cfgmgr Time: 0 LEDS: 0x539
Return code = 127
*** no stdout ****
***** stderr *****
sh: /usr/lib/methods/lncentGotoV2:  not found
 
Method error (/usr/lib/methods/lncentGotoV2 adapter/pciex/df1028e23b04000 phase1):
        0514-068 Cause not known.
sh: /usr/lib/methods/lncentGotoV2:  not found
 
----------------
Time: 0 LEDS: 0x538
Invoking top level program -- "/usr/lib/methods/lncentGotoV2 adapter/pciex/df1028e23904000 phase1"
 cfgmgr exec(/bin/sh,-c,/usr/lib/methods/lncentGotoV2 adapter/pciex/df1028e23904000 phase1 ){720938,1507390}
 cfgmgr Time: 0 LEDS: 0x539
Return code = 127
*** no stdout ****
***** stderr *****
sh: /usr/lib/methods/lncentGotoV2:  not found
 
Method error (/usr/lib/methods/lncentGotoV2 adapter/pciex/df1028e23904000 phase1):
        0514-068 Cause not known.
sh: /usr/lib/methods/lncentGotoV2:  not found
 
----------------
Time: 0 LEDS: 0x538
Invoking top level program -- "/usr/lib/methods/lncentGotoV2 adapter/pciex/df1028e23f04000 phase1"
 cfgmgr exec(/bin/sh,-c,/usr/lib/methods/lncentGotoV2 adapter/pciex/df1028e23f04000 phase1 ){720940,1507390}
 cfgmgr Time: 0 LEDS: 0x539
Return code = 127
*** no stdout ****
***** stderr *****
sh: /usr/lib/methods/lncentGotoV2:  not found
 
Method error (/usr/lib/methods/lncentGotoV2 adapter/pciex/df1028e23f04000 phase1):
        0514-068 Cause not known.
sh: /usr/lib/methods/lncentGotoV2:  not found
 
----------------
Time: 0 LEDS: 0x538
Invoking top level program -- "/usr/lib/methods/lncentGotoV2 adapter/pciex/df1028e20f04000 phase1"
 cfgmgr exec(/bin/sh,-c,/usr/lib/methods/lncentGotoV2 adapter/pciex/df1028e20f04000 phase1 ){1769526,1507390}
 cfgmgr Time: 0 LEDS: 0x539
Return code = 127
*** no stdout ****
***** stderr *****
sh: /usr/lib/methods/lncentGotoV2:  not found
 
Method error (/usr/lib/methods/lncentGotoV2 adapter/pciex/df1028e20f04000 phase1):
        0514-068 Cause not known.
sh: /usr/lib/methods/lncentGotoV2:  not found
 
----------------
Time: 0 LEDS: 0x538
Invoking top level program -- "/usr/lib/methods/iscsisw_rule"
 cfgmgr exec(/bin/sh,-c,/usr/lib/methods/iscsisw_rule ){1769528,1507390}
exec(/usr/lib/methods/iscsisw_rule){1769528,1507390}
 cfgmgr Time: 0 LEDS: 0x539
Return code = 0
***** stdout *****
iscsi0
*** no stderr ****
----------------
Attempting to configure device 'iscsi0'
 cfgmgr Time: 0 LEDS: 0x25b0
Invoking /usr/lib/methods/cfgiscsi -1 -l iscsi0
exec(/bin/sh,-c,/usr/lib/methods/cfgiscsi -1 -l iscsi0){1835064,1507390}
exec(/usr/lib/methods/cfgiscsi,-1,-l,iscsi0){1835064,1507390}
Number of running methods: 1
----------------
Completed method for: iscsi0, Elapsed time = 0
Return code = 0
*** no stdout ****
***** stderr *****
MS 1835064 1507390 /usr/lib/methods/cfgiscsi -1 -l iscsi0
M4 1835064 Parallel mode = 0
M4 1835064 Get CuDv for iscsi0
M4 1835064 Get device PdDv, uniquetype=driver/node/iscsi
M4 1835064 ..make_dvc_available()
M4 1835064 ..get_dvdr_name()
M4 1835064 driver: iscsidd
M4 1835064 Major number: 22
M4 1835064 Minor number: 0
M4 1835064 ..mk_sp_file()
M4 1835064 Calling build_dds()
M4 1835064 ..get_attr_list()
M4 1835064 Get PdAts for 'uniquetype = driver/node/iscsi'
M4 1835064 Get CuAts for 'name = iscsi0'
M4 1835064 Attr intr_priority not found
M4 1835064 Attr initiator_name found
M4 1835064 Attr num_cmd_elems found
M4 1835064 Attr max_targets found
M4 1835064 Attr max_data_rate found
M4 1835064 Attr disc_policy found
M4 1835064 Attr relogin not found
M4 1835064 Attr retry_count not found
M4 1835064 Attr starve_dly not found
M4 1835064 Attr ilog_to not found
M4 1835064 Attr cancel_to not found
M4 1835064 Attr reset_to not found
M4 1835064 Attr cmd_delay not found
M4 1835064 Attr tg_cancel_to not found
M4 1835064 Attr extra_halt_to not found
M4 1835064 Attr sconn_to not found
M4 1835064 Attr maxconnections not found
M4 1835064 Attr max_burst not found
M4 1835064 Attr max_xfersize not found
M4 1835064 Attr max_segsize not found
M4 1835064 Attr max_r2t not found
M4 1835064 Attr data_ordering not found
M4 1835064 Attr data_sequence not found
M4 1835064 Attr initial_r2t not found
M4 1835064 Attr immediatedata not found
M4 1835064 Attr error_level not found
M4 1835064 Attr time2wait not found
M4 1835064 Attr mbuf_ratio not found
M4 1835064 Attr mclust_ratio not found
M4 1835064 Attr nodelayack not found
M4 1835064 Attr isid not found
M4 1835064 ..handle_vpd()
M4 1835064 Setting CuDv to AVAILABLE
/etc/iscsi/targets: No such file or directory
M4 1835064 Exit code = 0
 
----------------
Time: 0 LEDS: 0x539
Number of running methods: 0
 cfgmgr ----------------
Time: 0 LEDS: 0x538
Invoking top level program -- "/usr/lib/methods/fdarcfgrule"
 cfgmgr exec(/bin/sh,-c,/usr/lib/methods/fdarcfgrule ){1835066,1507390}
exec(/usr/lib/methods/fdarcfgrule){1835066,1507390}
 cfgmgr Time: 0 LEDS: 0x539
Return code = 0
*** no stdout ****
*** no stderr ****
 cfgmgr Configuration time: 0 seconds
+ bootinfo -i
exec(/usr/sbin/bootinfo,-i){1507392,1441836}
exec(/usr/lib/boot/bin/bootinfo_chrp,-i){1507392,1441836}
+ [ 0 -eq 1 ]
+ /usr/lib/methods/showled 0x511 DEV CFG 1 END
exec(/usr/lib/methods/showled,0x511,DEV CFG 1 END){1507394,1441836}
 showled + + bootinfo -b
exec(/usr/sbin/bootinfo,-b){1507396,1441836}
exec(/usr/lib/boot/bin/bootinfo_chrp,-b){1507396,1441836}
dvc=
+ [ !  ]
+ bootinfo -U
exec(/usr/sbin/bootinfo,-U){1507398,1441836}
+ [ 0 -eq 1 ]
+ loopled 0x554 UNKNOWN BOOTDISK
exec(/usr/lib/methods/showled,0x554,UNKNOWN BOOTDISK){1507400,1441836}
 showled

The cause of the issue is boot process is unable to find bootdisk. Follow this post http://wp.me/p5bweg-8V to recover it

1
exec(/usr/lib/methods/showled,0x554,UNKNOWN BOOTDISK){1507400,1441836}

 

0 (0)
Article Rating (No Votes)
Rate this article
Attachments
There are no attachments for this article.
Comments
There are no comments for this article. Be the first to post a comment.
Full Name
Email Address
Security Code Security Code
Related Articles RSS Feed
AIX Encrypted File System
Viewed 5546 times since Tue, Jul 17, 2018
AIX Health Check basic
Viewed 3828 times since Fri, Jun 8, 2018
Trouble Shooting AIX Networking
Viewed 2342 times since Tue, May 22, 2018
IBM AIX MPIO: Best practices and considerations
Viewed 10653 times since Wed, May 30, 2018
AIX - How to unlock and reset user’s account
Viewed 15970 times since Fri, Jun 8, 2018
AIX alt_disk_copy
Viewed 9506 times since Sun, Jun 30, 2019
Awesome Command to show top 15 processes using memory on AIX
Viewed 23412 times since Thu, Nov 29, 2018
AIX QHA
Viewed 10796 times since Mon, Jun 3, 2019
Understanding dump devices sysdumpdev
Viewed 4249 times since Mon, Jul 9, 2018
Mount CD/DVD & ISO image in AIX 6.1
Viewed 3756 times since Tue, Jul 17, 2018