-
Notifications
You must be signed in to change notification settings - Fork 7
/
hercmsdl.html
1705 lines (1704 loc) · 57.3 KB
/
hercmsdl.html
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
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 3.0//EN" "html.dtd">
<HTML>
<HEAD><TITLE>
Hercules Version 3: System Messages: DL - dasdload</TITLE>
<LINK REL=STYLESHEET TYPE="text/css" HREF="hercules.css">
</HEAD>
<BODY BGCOLOR="#ffffcc" TEXT="#000000" LINK="#0000A0"
VLINK="#008040" ALINK="#000000">
<h1>Hercules Version 3: System Messages: DL - dasdload</h1>
<p>
This page describes the messages for the Hercules S/370,
ESA/390, and z/Architecture emulator utility program <code>dasdload</code>.
<p>
Information messages (<code>I</code> suffix) from <code>dasdload</code>
have an associated message level. They are only issued if the third
argument to <code>dasdload</code>, the verbosity level, is no lower than the
message level. The default verbosity level is 1, which causes level 0 and 1
information messages to be issued.
<h3>Messages</h3>
<dl class="messages">
<dt><code><a name="HHCDL001E">
HHCDL001E Cannot open <em>filename</em>: <em>error</em>
</a></code>
<dd><dl>
<dt>Meaning
<dd>The control file named <code><em>filename</em></code> cannot be opened. The error is
described by <code><em>error</em></code>.
<dt>Action
<dd>Correct the error and rerun <code>dasdload</code>.
<dt>Issued by
<dd>dasdload.c, function main
</dl>
<dt><code><a name="HHCDL002E">
HHCDL002E Volume serial statement missing from <em>filename</em>
</a></code>
<dd><dl>
<dt>Meaning
<dd>The control file named <code><em>filename</em></code> does not contain a volume
serial statement. One is required.
<dt>Action
<dd>Supply a volume serial statement and rerun <code>dasdload</code>.
<dt>Issued by
<dd>dasdload.c, function main
</dl>
<dt><code><a name="HHCDL003E">
HHCDL003E Volume serial <em>serial</em> in <em>filename</em>
line <em>lineno</em> is not valid
</a></code>
<dd><dl>
<dt>Meaning
<dd>The volume serial <code><em>serial</em></code> supplied in line <code><em>lineno</em></code>
of the control file named <code><em>filename</em></code> is not valid. It must be from one
to six characters long.
<dt>Action
<dd>Supply a valid volume serial and rerun <code>dasdload</code>.
<dt>Issued by
<dd>dasdload.c, function main
</dl>
<dt><code><a name="HHCDL004E">
HHCDL004E Device type <em>type</em> in <em>filename</em>
line <em>lineno</em> is not recognized
</a></code>
<dd><dl>
<dt>Meaning
<dd>The device type <code><em>type</em></code> specified in line <code><em>lineno</em></code> of the
control file named <code><em>filename</em></code> is not a supported CKD device.
<dt>Action
<dd>Specify a supported CKD device type and rerun <code>dasdload</code>.
<dt>Issued by
<dd>dasdload.c, function main
</dl>
<dt><code><a name="HHCDL005E">
HHCDL005E <em>count</em> in <em>filename</em> line <em>lineno</em>
is not a valid cylinder count
</a></code>
<dd><dl>
<dt>Meaning
<dd>The requested number, <code><em>count</em></code>, of cylinders for the volume in
line <code><em>lineno</em></code> of the control file named <code><em>filename</em></code> is invalid.
It must be a decimal number.
<dt>Action
<dd>Supply a valid cylinder count and rerun <code>dasdload</code>.
<dt>Issued by
<dd>dasdload.c, function main
</dl>
<dt><code><a name="HHCDL006I">
HHCDL006I Creating <em>type</em> volume <em>serial</em>: <em>tracks</em>
trks/cyl, <em>length</em> bytes/track
</a></code>
<dd><dl>
<dt>Meaning
<dd>The volume named <code><em>serial</em></code>, of type <code><em>type</em></code>, is being created,
with <code><em>tracks</em></code> tracks per cylinder and <code><em>length</em></code> bytes per track.
<dt>Message level
<dd>0
<dt>Issued by
<dd>dasdload.c, function main
</dl>
<dt><code><a name="HHCDL007E">
HHCDL007E Cannot create <em>filename</em>
</a></code>
<dd><dl>
<dt>Meaning
<dd>The DASD image file named <code><em>filename</em></code> cannot be
created. A previous message described the problem.
<dt>Action
<dd>Correct the reported error and rerun <code>dasdload</code>.
<dt>Issued by
<dd>dasdload.c, function main
</dl>
<dt><code><a name="HHCDL008E">
HHCDL008E Cannot open <em>filename</em>
</a></code>
<dd><dl>
<dt>Meaning
<dd>The DASD image file named <code><em>filename</em></code> could not
be opened. A previous message described the problem.
<dt>Action
<dd>Correct the reported error and rerun <code>dasdload</code>.
<dt>Issued by
<dd>dasdload.c, function main
</dl>
<dt><code><a name="HHCDL009I">
HHCDL009I Loading <em>type</em> volume <em>serial</em>
</a></code>
<dd><dl>
<dt>Meaning
<dd>The newly created volume with serial <code><em>serial</em></code>, of
type <code><em>type</em></code>, is being loaded.
<dt>Message level
<dd>0
<dt>Issued by
<dd>dasdload.c, function main
</dl>
<dt><code><a name="HHCDL010E">
HHCDL010E Cannot obtain storage for DSCB pointer array: <em>error</em>
</a></code>
<dd><dl>
<dt>Meaning
<dd>An attempt to obtain storage for the array of DSCB pointers, which
will populate the VTOC, failed. The error is described by <code><em>error</em></code>.
<dt>Action
<dd>Correct the error and rerun <code>dasdload</code>.
<dt>Issued by
<dd>dasdload.c, function process_control_file
</dl>
<dt><code><a name="HHCDL011E">
HHCDL011E Invalid statement in <em>filename</em> line <em>lineno</em>
</a></code>
<dd><dl>
<dt>Meaning
<dd>An invalid control statement was found at line <code><em>lineno</em></code> of the
control file named <code><em>filename</em></code>.
<dt>Action
<dd>Correct the invalid statement and rerun <code>dasdload</code>.
<dt>Issued by
<dd>dasdload.c, function process_control_file
</dl>
<dt><code><a name="HHCDL012I">
HHCDL012I Creating dataset <em>dsn</em> at cyl <em>cylinder</em>
head <em>head</em>
</a></code>
<dd><dl>
<dt>Meaning
<dd>The dataset named <code><em>dsn</em></code> is being created. It begins at
cylinder <code><em>cylinder</em></code>, head <code><em>head</em></code>.
<dt>Message level
<dd>1
<dt>Issued by
<dd>dasdload.c, function process_control_file
</dl>
<dt><code><a name="HHCDL013I">
HHCDL013I Dataset <em>dsn</em> contains <em>size</em> tracks
</a></code>
<dd><dl>
<dt>Meaning
<dd>The dataset named <code><em>dsn</em></code> is <code><em>size</em></code> tracks long.
<dt>Message level
<dd>2
<dt>Issued by
<dd>dasdload.c, function process_control_file
</dl>
<dt><code><a name="HHCDL014I">
HHCDL014I Free space starts at cyl <em>cylinder</em> head <em>head</em>
</a></code>
<dd><dl>
<dt>Meaning
<dd>Free space on the volume begins at cylinder <code><em>cylinder</em></code>, head
<code><em>head</em></code>, and extends to the end of the volume.
<dt>Message level
<dd>1
<dt>Issued by
<dd>dasdload.c, function process_control_file
</dl>
<dt><code><a name="HHCDL015W">
HHCDL015W Volume exceeds <em>cylinders</em>
</a></code>
<dd><dl>
<dt>Meaning
<dd>The amount of space used on the volume exceeds the number
of cylinders, <code><em>cylinders</em></code>, requested in the control file. The number
of cylinders was explicitly requested instead of being allowed to default
to the size of a full volume for the device type. The volume has
been extended to accomodate the data written.
<dt>Action
<dd>Specify more cylinders in the control file, or allow the number to
default.
<dt>Issued by
<dd>dasdload.c, function process_control_file
</dl>
<dt><code><a name="HHCDL016I">
HHCDL016I Total of <em>count</em> cylinders written to <em>filename</em>
</a></code>
<dd><dl>
<dt>Meaning
<dd>A total of <code><em>count</em></code> cylinders have been written to the DASD image
file named <code><em>filename</em></code>.
<dt>Message level
<dd>0
<dt>Issued by
<dd>dasdload.c, function process_control_file
</dl>
<dt><code><a name="HHCDL017I">
HHCDL017I Updating VTOC pointer <em>pointer</em>
</a></code>
<dd><dl>
<dt>Meaning
<dd>The pointer to the VTOC in the volume label is being updated
to point to the VTOC, at location <code><em>pointer</em></code>.
<dt>Message level
<dd>5
<dt>Issued by
<dd>dasdload.c, function process_control_file
</dl>
<dt><code><a name="HHCDL018E">
HHCDL018E Cannot read VOL1 record
</a></code>
<dd><dl>
<dt>Meaning
<dd>An attempt to read the volume label failed. A previous message
described the error.
<dt>Action
<dd>Correct the error and rerun <code>dasdload</code>.
<dt>Issued by
<dd>dasdload.c, function process_control_file
</dl>
<dt><code><a name="HHCDL019E">
HHCDL019E Cannot read <em>filename</em> line <em>lineno</em>: <em>error</em>
</a></code>
<dd><dl>
<dt>Meaning
<dd>An error was encountered while trying to read the statement at
line number <code><em>lineno</em></code> of the control
file named <code><em>filename</em></code>. The error is described by <code><em>error</em></code>.
<dt>Action
<dd>Correct the error and rerun <code>dasdload</code>.
<dt>Issued by
<dd>dasdload.c, function read_ctrl_stmt
</dl>
<dt><code><a name="HHCDL020E">
HHCDL020E Line too long in <em>filename</em> line <em>lineno</em>
</a></code>
<dd><dl>
<dt>Meaning
<dd>The line at line number <code><em>lineno</em></code> of the control file named
<code><em>filename</em></code> is too long to be processed. This error can be caused
by failing to terminate the last line with an end-of-line marker.
<dt>Action
<dd>Correct the error and rerun <code>dasdload</code>.
<dt>Issued by
<dd>dasdload.c, function read_ctrl_stmt
</dl>
<dt><code><a name="HHCDL021E">
HHCDL021E DSNAME or initialization method missing
</a></code>
<dd><dl>
<dt>Meaning
<dd>Either the dataset name, or the method to be used to initialize it,
is missing from the control file. Both are required.
<dt>Action
<dd>Supply the missing value and rerun <code>dasdload</code>.
<dt>Issued by
<dd>dasdload.c, function parse_ctrl_stmt
</dl>
<dt><code><a name="HHCDL022E">
HHCDL022E Invalid initialization method: <em>method</em>
</a></code>
<dd><dl>
<dt>Meaning
<dd>The method specified to initialize the dataset, <code><em>method</em></code>, is
invalid. It must be one of <code>xmit</code>, <code>vs</code>,
<code>empty</code>, <code>dip</code>, <code>cvol</code>,
<code>vtoc</code>, or <code>seq</code>.
<dt>Action
<dd>Correct the initialization method and rerun <code>dasdload</code>.
<dt>Issued by
<dd>dasdload.c, function parse_ctrl_stmt
</dl>
<dt><code><a name="HHCDL023E">
HHCDL023E Initialization file name missing
</a></code>
<dd><dl>
<dt>Meaning
<dd>A dataset was specified as being initialized by either the
<code>xmit</code>, <em>vs</em>, or <em>seq</em> initialization
methods, but no source file was specified to provide the data to be loaded.
<dt>Action
<dd>Specify a source file name, or specify the
<code>empty</code> dataset initialization method if the dataset is not to
be loaded.
<dt>Issued by
<dd>dasdload.c, function parse_ctrl_stmt
</dl>
<dt><code><a name="HHCDL024E">
HHCDL024E Invalid allocation units: <em>units</em>
</a></code>
<dd><dl>
<dt>Meaning
<dd>The allocation unit specified, <code><em>units</em></code>, is invalid. It must be
either <code>cyl</code> or <code>trk</code>.
<dt>Action
<dd>Specify a valid allocation unit and rerun <code>dasdload</code>.
<dt>Issued by
<dd>dasdload.c, function parse_ctrl_stmt
</dl>
<dt><code><a name="HHCDL025E">
HHCDL025E Invalid primary space: <em>space</em>
</a></code>
<dd><dl>
<dt>Meaning
<dd>The primary space requested, <code><em>space</em></code>, is not a valid decimal
number greater than 0.
<dt>Action
<dd>Specify a valid space request and rerun <code>dasdload</code>.
<dt>Issued by
<dd>dasdload.c, function parse_ctrl_stmt
</dl>
<dt><code><a name="HHCDL026E">
HHCDL026E Invalid secondary space: <em>space</em>
</a></code>
<dd><dl>
<dt>Meaning
<dd>The secondary space requested, <code><em>space</em></code>, is not a valid decimal
number greater than 0.
<dt>Action
<dd>Specify a valid space request and rerun <code>dasdload</code>.
<dt>Issued by
<dd>dasdload.c, function parse_ctrl_stmt
</dl>
<dt><code><a name="HHCDL027E">
HHCDL027E Invalid directory space: <em>space</em>
</a></code>
<dd><dl>
<dt>Meaning
<dd>The PDS directory space requested, <code><em>space</em></code>, is not a valid decimal
number greater than 0.
<dt>Action
<dd>Specify a valid space request and rerun <code>dasdload</code>.
<dt>Issued by
<dd>dasdload.c, function parse_ctrl_stmt
</dl>
<dt><code><a name="HHCDL028E">
HHCDL028E Invalid dataset organization: <em>dsorg</em>
</a></code>
<dd><dl>
<dt>Meaning
<dd>The requested dataset organization, <code><em>dsorg</em></code>, is invalid. It must
be one of <code>is</code>, <code>ps</code>, <code>da</code>,
or <code>po</code>.
<dt>Action
<dd>Specify a valid dataset organization and rerun <code>dasdload</code>.
<dt>Issued by
<dd>dasdload.c, function parse_ctrl_stmt
</dl>
<dt><code><a name="HHCDL029E">
HHCDL029E Invalid record format: <em>recfm</em>
</a></code>
<dd><dl>
<dt>Meaning
<dd>The requested record format, <code><em>recfm</em></code>, is invalid. It must be one
of <code>f</code>,
<code>fb</code>, <code>fbs</code>, <code>v</code>,
<code>vb</code>, <code>vbs</code>, or <code>u</code>.
<dt>Action
<dd>Specify a valid record format and rerun <code>dasdload</code>.
<dt>Issued by
<dd>dasdload.c, function parse_ctrl_stmt
</dl>
<dt><code><a name="HHCDL030E">
HHCDL030E Invalid logical record length: <em>lrecl</em>
</a></code>
<dd><dl>
<dt>Meaning
<dd>The requested logical record length, <code><em>lrecl</em></code>, is invalid. It
must be a decimal number between 0 and 32767.
<dt>Action
<dd>Specify a valid logical record length and rerun <code>dasdload</code>.
<dt>Issued by
<dd>dasdload.c, function parse_ctrl_stmt
</dl>
<dt><code><a name="HHCDL031E">
HHCDL031E Invalid block size: <em>blksize</em>
</a></code>
<dd><dl>
<dt>Meaning
<dd>The requested block size, <code><em>blksize</em></code>, is invalid. It must
be a decimal number between 0 and 32767.
<dt>Action
<dd>Specify a valid block size and rerun <code>dasdload</code>.
<dt>Issued by
<dd>dasdload.c, function parse_ctrl_stmt
</dl>
<dt><code><a name="HHCDL032E">
HHCDL032E Invalid key length: <em>keylen</em>
</a></code>
<dd><dl>
<dt>Meaning
<dd>The requested key length, <code><em>keylen</em></code>, is invalid. It must be a
decimal number between 0 and 255.
<dt>Action
<dd>Specify a valid key length and rerun <code>dasdload</code>.
<dt>Issued by
<dd>dasdload.c, function parse_ctrl_stmt
</dl>
<dt><code><a name="HHCDL033E">
HHCDL033E CCHH=<em>cchh</em> not found in extent table
</a></code>
<dd><dl>
<dt>Meaning
<dd>The absolute track address, <code><em>cchh</em></code>, was not found in the table
listing the locations occupied by the dataset being loaded. There is
likely a problem with the input file.
<dt>Action
<dd>Correct the input file and rerun <code>dasdload</code>.
<dt>Issued by
<dd>dasdload.c, function calculate_ttr
</dl>
<dt><code><a name="HHCDL034E">
HHCDL034E Cannot open <em>filename</em>: <em>error</em>
</a></code>
<dd><dl>
<dt>Meaning
<dd>The file named <code><em>filename</em></code>, which was specified as the source
of IPL text to be written to the volume, could not be opened. The error is
described by <code><em>error</em></code>.
<dt>Action
<dd>Correct the error and rerun <code>dasdload</code>.
<dt>Issued by
<dd>dasdload.c, function read_ipl_text
</dl>
<dt><code><a name="HHCDL035E">
HHCDL035E Cannot read <em>filename</em>: <em>error</em>
</a></code>
<dd><dl>
<dt>Meaning
<dd>An error was encountered while reading the IPL text file named
<code><em>filename</em></code>. The error is described by <code><em>error</em></code>. If no error
is reported, the file did not contain an integral number of 80-byte card
images.
<dt>Action
<dd>Correct the reported error, or supply a valid IPL text file
consisting of 80-byte card images, and rerun <code>dasdload</code>.
<dt>Issued by
<dd>dasdload.c, function read_ipl_text
</dl>
<dt><code><a name="HHCDL036E">
HHCDL036E <em>filename</em> is not a valid object file
</a></code>
<dd><dl>
<dt>Meaning
<dd>The IPL text file named <code><em>filename</em></code> is not a valid object file. A
record read from the file did not contain the required flag in the first
byte.
<dt>Action
<dd>Supply a valid object file and rerun <code>dasdload</code>.
<dt>Issued by
<dd>dasdload.c, function read_ipl_text
</dl>
<dt><code><a name="HHCDL037I">
HHCDL037I IPL text address=<em>addr</em> length=<em>length</em>
</a></code>
<dd><dl>
<dt>Meaning
<dd>The object code from the current record of the IPL text file will be
loaded into memory at address <code><em>address</em></code>, and is <code><em>length</em></code> bytes long.
<dt>Message level
<dd>5
<dt>Issued by
<dd>dasdload.c, function read_ipl_text
</dl>
<dt><code><a name="HHCDL038E">
HHCDL038E TXT record in <em>filename</em> has invalid count <em>length</em>
</a></code>
<dd><dl>
<dt>Meaning
<dd>A text record in the IPL text file named <code><em>filename</em></code> has
an invalid length, <code><em>length</em></code>. The length cannot exceed 56.
<dt>Action
<dd>Supply a valid IPL text file and rerun <code>dasdload</code>.
<dt>Issued by
<dd>dasdload.c, function read_ipl_text
</dl>
<dt><code><a name="HHCDL039E">
HHCDL039E IPL text in <em>filename</em> exceeds <em>buflen</em> bytes
</a></code>
<dd><dl>
<dt>Meaning
<dd>The IPL text file named <code><em>filename</em></code> is too long to fit in the
available space on the volume. The IPL text cannot exceed
<code><em>buflen</em></code> bytes in length.
<dt>Action
<dd>Supply a shorter IPL text file, or specify a volume with a
larger track size, and rerun <code>dasdload</code>.
<dt>Issued by
<dd>dasdload.c, function read_ipl_text
</dl>
<dt><code><a name="HHCDL040E">
HHCDL040E Input record CCHHR=<em>cchhr</em> exceeds output device track size
</a></code>
<dd><dl>
<dt>Meaning
<dd>The block to be written at absolute address <code><em>cchhr</em></code> is too large
to fit on a track on the disk being loaded.
<dt>Action
<dd>Specify a device with a larger track
size and rerun <code>dasdload</code>.
<dt>Issued by
<dd>dasdload.c, function write_block
</dl>
<dt><code><a name="HHCDL041E">
HHCDL041E Dataset exceeds extent size:
reltrk=<em>track</em>, maxtrk=<em>maxtrk</em>
</a></code>
<dd><dl>
<dt>Meaning
<dd>The data to be written to the dataset is too large for the space
requested for it. If the space request was allowed to default, the input
file is corrupt.
<dt>Action
<dd>If the space request was made explicitly, request more space. If the
request was defaulted,
supply a valid input file. Rerun <code>dasdload</code>.
<dt>Issued by
<dd>dasdload.c, function write_block
</dl>
<dt><code><a name="HHCDL042E">
HHCDL042E Input record CCHHR=<em>cchhr</em> exceeds virtual device track size
</a></code>
<dd><dl>
<dt>Meaning
<dd>The block to be written at absolute address <code><em>cchhr</em></code> is too large
to fit on a track on the disk being loaded. In addition,
this message being issued instead of
<a href="#HHCDL040E">message HHCDL040E</a> indicates an internal
inconsistency in the way Hercules computes the space available on a track.
<dt>Action
<dd>Specify a device with a larger track
size and rerun <code>dasdload</code>. Report the inconsistenct
to the Hercules development team.
<dt>Issued by
<dd>dasdload.c, function write_block
</dl>
<dt><code><a name="HHCDL043E">
HHCDL043E <em>filename</em> cyl <em>cylinder</em> head <em>head</em>
read error
</a></code>
<dd><dl>
<dt>Meaning
<dd>The data at cylinder <code><em>cylinder</em></code>, head <code><em>head</em></code> of the
disk image file named <code><em>filename</em></code> could not be read in order to
be updated. A previous message described the error.
<dt>Action
<dd>Correct the previously reported error and rerun <code>dasdload</code>.
<dt>Issued by
<dd>dasdload.c, function update_block
</dl>
<dt><code><a name="HHCDL044E">
HHCDL044E <em>filename</em> cyl <em>cylinder</em>
head <em>head</em> invalid track header <em>header</em>
</a></code>
<dd><dl>
<dt>Meaning
<dd>The track header <code><em>header</em></code> at cylinder <code><em>cylinder</em></code>, head
<code><em>head</em></code> in the disk image file named <code><em>filename</em></code> contained
an address that did not match the actual address.
<dt>Action
<dd>Rerun <code>dasdload</code>. If the error persists, report it to the
Hercules development team.
<dt>Issued by
<dd>dasdload.c, function update_block
</dl>
<dt><code><a name="HHCDL045E">
HHCDL045E <em>filename</em> cyl <em>cylinder</em> head <em>head</em>
record <em>record</em> record not found
</a></code>
<dd><dl>
<dt>Meaning
<dd>The record requested for update at cylinder <code><em>cylinder</em></code>, head
<code><em>head</em></code>, record <code><em>record</em></code> of the DASD image file named
<code><em>filename</em></code> was not found.
<dt>Action
<dd>Rerun <code>dasdload</code>. If the error persists, report it to the
Hercules development team.
<dt>Issued by
<dd>dasdload.c, function update_block
</dl>
<dt><code><a name="HHCDL046E">
HHCDL046E Cannot update cyl <em>cylinder</em> head <em>head</em> rec
<em>record</em>: Unmatched KL/DL
</a></code>
<dd><dl>
<dt>Meaning
<dd>The record to be written at cylinder <code><em>cylinder</em></code>,
head <code><em>head</em></code>, record<code><em>head</em></code> does not have the same key or data
length as the record that already exists at that location. This is not
allowed for a record update operation.
<dt>Action
<dd>Rerun <code>dasdload</code>. If the error persists, report it to the
Hercules development team.
<dt>Issued by
<dd>dasdload.c, function update_block
</dl>
<dt><code><a name="HHCDL047E">
HHCDL047E <em>filename</em> cyl <em>cylinder</em> head <em>head</em>
read error
</a></code>
<dd><dl>
<dt>Meaning
<dd>A read error was encountered when reading the track at
cylinder <code><em>cylinder</em></code>, head <code><em>head</em></code>, in the disk image file named
<code><em>filename</em></code>. A previous message described the error.
<dt>Action
<dd>Correct the error reported by the previous message and
rereun <code>dasdload</code>.
<dt>Issued by
<dd>dasdload.c, function update_block
</dl>
<dt><code><a name="HHCDL048I">
HHCDL048I Updating cyl <em>cylinder</em>
head <em>head</em> rec <em>record</em> kl <em>keylen</em> dl
<em>datalen</em>
</a></code>
<dd><dl>
<dt>Meaning
<dd>The record at cylinder <code><em>cylinder</em></code>, head <code><em>head</em></code>, record
<code><em>record</em></code> is being updated. It has a key length of <code><em>keylen</em></code> and
data length <code><em>datalen</em></code>.
<dt>Message level
<dd>4
<dt>Issued by
<dd>dasdload.c, function update_block
</dl>
<dt><code><a name="HHCDL049E">
HHCDL049E Cannot obtain storage for DSCB: <em>error</em>
</a></code>
<dd><dl>
<dt>Meaning
<dd>An attempt to obtain storage to build a DSCB to describe a dataset
on the volume being loaded failed. The error is described by <code><em>error</em></code>.
<dt>Action
<dd>Correct the error and rerun <code>dasdload</code>.
<dt>Issued by
<dd>dasdload.c, function build_format1_dscb
</dl>
<dt><code><a name="HHCDL050E">
HHCDL050E DSCB count exceeds <em>maximum</em>, increase MAXDSCB
</a></code>
<dd><dl>
<dt>Meaning
<dd>There are too many datasets on the volume being loaded, and an
internal structure in <code>dasdload</code> is full.
<dt>Action
<dd>Increase the value of the symbol <code>MAXDSCB</code> in the
source program and recompile <code>dasdload</code>, then rerun the program.
<dt>Issued by
<dd>dasdload.c, function build_format1_dscb
</dl>
<dt><code><a name="HHCDL051E">
HHCDL051E Cannot obtain storage for DSCB: <em>error</em>
</a></code>
<dd><dl>
<dt>Meaning
<dd>An attempt to obtain storage to build a DSCB to describe the VTOC
on the volume being loaded failed. The error is described by <code><em>error</em></code>.
<dt>Action
<dd>Correct the error and rerun <code>dasdload</code>.
<dt>Issued by
<dd>dasdload.c, function build_format4_dscb
</dl>
<dt><code><a name="HHCDL052E">
HHCDL052E DSCB count exceeds <em>maximum</em>, increase MAXDSCB
</a></code>
<dd><dl>
<dt>Meaning
<dd>There are too many datasets on the volume being loaded, and an
internal structure in <code>dasdload</code> is full.
<dt>Action
<dd>Increase the value of the symbol <code>MAXDSCB</code> in the
source program and recompile <code>dasdload</code>, then rerun the program.
<dt>Issued by
<dd>dasdload.c, function build_format4_dscb
</dl>
<dt><code><a name="HHCDL053E">
HHCDL053E Cannot obtain storage for DSCB: <em>error</em>
</a></code>
<dd><dl>
<dt>Meaning
<dd>An attempt to obtain storage to build a DSCB to describe the
free space on the volume being loaded failed. The error is described
by <code><em>error</em></code>.
<dt>Action
<dd>Correct the error and rerun <code>dasdload</code>.
<dt>Issued by
<dd>dasdload.c, function build_format5_dscb
</dl>
<dt><code><a name="HHCDL054E">
HHCDL054E DSCB count exceeds <em>maximum</em>, increase MAXDSCB
</a></code>
<dd><dl>
<dt>Meaning
<dd>There are too many datasets on the volume being loaded, and an
internal structure in <code>dasdload</code> is full.
<dt>Action
<dd>Increase the value of the symbol <code>MAXDSCB</code> in the
source program and recompile <code>dasdload</code>, then rerun the program.
<dt>Issued by
<dd>dasdload.c, function build_format5_dscb
</dl>
<dt><code><a name="HHCDL055E">
HHCDL055E VTOC too small, <em>tracks</em> tracks required
</a></code>
<dd><dl>
<dt>Meaning
<dd>The VTOC allocation of <code><em>tracks</em></code> is too small to hold the VTOC.
<dt>Action
<dd>Specify at least <code><em>tracks</em></code> tracks for the VTOC and rerun
<code>dasdload</code>.
<dt>Issued by
<dd>dasdload.c, function write_vtoc
</dl>
<dt><code><a name="HHCDL056E">
HHCDL056E Error reading VTOC cyl <code><em>cylinder</em></code> head <code><em>head</em></code>
</a></code>
<dd><dl>
<dt>Meaning
<dd>The first track of the VTOC could not be read so it could be
updated. A previous message described the error.
<dt>Action
<dd>Correct the error reported by the previous message and rerun
<code>dasdload</code>.
<dt>Issued by
<dd>dasdload.c, function write_vtoc
</dl>
<dt><code><a name="HHCDL057I">
HHCDL057I VTOC starts at cyl <em>cylinder</em> head <em>head</em> and is
<em>tracks</em> tracks
</a></code>
<dd><dl>
<dt>Meaning
<dd>The VTOC on the volume being loaded starts at
cylinder <code><em>cylinder</em></code>, head <code><em>head</em></code> and is <code><em>tracks</em></code> tracks long.
<dt>Message level
<dd>1
<dt>Issued by
<dd>dasdload.c, function write_vtoc
</dl>
<dt><code><a name="HHCDL058I">
HHCDL058I Format <em>format</em> DSCB CCHHR=<em>cchhr</em>
(TTR=<em>ttr</em>) <em>dsname</em>
</a></code>
<dd><dl>
<dt>Meaning
<dd>The format <code><em>format</em></code> DSCB is located at
absolute address <code><em>cchhr</em></code>, and relative address within the VTOC
<code><em>ttr</em></code>. If <code><em>format</em></code> is 1, the dataset described by the DSCB
is named <code><em>dsname</em></code>.
<dt>Message level
<dd>4
<dt>Issued by
<dd>dasdload.c, function write_vtoc
</dl>
<dt><code><a name="HHCDL059I">
HHCDL059I Format 0 DSCB CCHHR <em>cchhr</em> (TTR=<em>ttr</em>)
</a></code>
<dd><dl>
<dt>Meaning
<dd>A format 0 (empty) DSCB is located at
absolute address <code><em>cchhr</em></code>, and relative address within the VTOC
<code><em>ttr</em></code>.
<dt>Message level
<dd>4
<dt>Issued by
<dd>dasdload.c, function write_vtoc
</dl>
<dt><code><a name="HHCDL060E">
HHCDL060E Error reading track cyl <em>cylinder</em> head <em>head</em>
</a></code>
<dd><dl>
<dt>Meaning
<dd>An error was encountered reading the track at cylinder <code><em>cyl</em></code>,
head <code><em>head</em></code>. A previous message described the error.
<dt>Action
<dd>Correct the error reported by the previous message and rerun
<code>dasdload</code>.
<dt>Issued by
<dd>dasdload.c, function write_vtoc
</dl>
<dt><code><a name="HHCDL061E">
HHCDL061E Incomplete text unit
</a></code>
<dd><dl>
<dt>Meaning
<dd>An text unit read from the input file was too short
to contain a valid header. The input data is probably corrupt.
<dt>Action
<dd>Supply a valid input file and rerun <code>dasdload</code>.
<dt>Issued by
<dd>dasdload.c, function next_tu
</dl>
<dt><code><a name="HHCDL062I">
HHCDL062I <em>position</em> <em>tuname</em> <em>key</em> <em>fields</em>
</a></code>
<dd><dl>
<dt>Meaning
<dd>The text unit at <code><em>position</em></code> of the input buffer has the name
<code><em>tuname</em></code> and the numeric key value <code><em>key</em></code>. There are <code><em>fields</em></code>
fields in the text unit.
<dt>Message level
<dd>4
<dt>Issued by
<dd>dasdload.c, function next_tu
</dl>
<dt><code><a name="HHCDL063E">
HHCDL063E Too many fields in text unit
</a></code>
<dd><dl>
<dt>Meaning
<dd>A text unit was read from the input file that had too many fields in
the header for that type of text unit. The input file is probably corrupt.
<dt>Action
<dd>Supply a valid input file and rerun <code>dasdload</code>.
<dt>Issued by
<dd>dasdload.c, function next_tu
</dl>
<dt><code><a name="HHCDL064E">
HHCDL064E Incomplete text unit
</a></code>
<dd><dl>
<dt>Meaning
<dd>An text unit read from the input file was too short
to contain a valid field length. The input data is probably corrupt.
<dt>Action
<dd>Supply a valid input file and rerun <code>dasdload</code>.
<dt>Issued by
<dd>dasdload.c, function next_tu
</dl>
<dt><code><a name="HHCDL065E">
HHCDL065E Incomplete text unit
</a></code>
<dd><dl>
<dt>Meaning
<dd>An text unit read from the input file was shorter than the length in
the field header. The input data is probably corrupt.
<dt>Action
<dd>Supply a valid input file and rerun <code>dasdload</code>.
<dt>Issued by
<dd>dasdload.c, function next_tu
</dl>
<dt><code><a name="HHCDL066E">
HHCDL066E <em>filename</em> read error: <em>error</em>
</a></code>
<dd><dl>
<dt>Meaning
<dd>An error was encountered when reading the input file named
<code><em>filename</em></code>. The error is described by <code><em>error</em></code>.
<dt>Action
<dd>Correct the error and rerun <code>dasdload</code>.
<dt>Issued by
<dd>dasdload.c, function read_xmit_rec
</dl>
<dt><code><a name="HHCDL067E">
HHCDL067E <em>filename</em> invalid segment header: <em>header</em>
</a></code>
<dd><dl>
<dt>Meaning
<dd>A segment read from the file named <code><em>filename</em></code> has an invalid
header, <code><em>header</em></code>. The input file is probably corrupt.
<dt>Action
<dd>Supply a valid input file and rerun <code>dasdload</code>.
<dt>Issued by
<dd>dasdload.c, function read_xmit_rec
</dl>
<dt><code><a name="HHCDL068E">
HHCDL068E <em>filename</em> first segment indicator expected
</a></code>
<dd><dl>
<dt>Meaning
<dd>A segment read from the file named <code><em>filename</em></code> should
have the first segment indicator set, but does not. The input file
is probably corrupt.
<dt>Action
<dd>Supply a valid input file and rerun <code>dasdload</code>.
<dt>Issued by
<dd>dasdload.c, function read_xmit_rec
</dl>
<dt><code><a name="HHCDL069E">
HHCDL069E <em>filename</em> first segment indicator not expected
</a></code>
<dd><dl>
<dt>Meaning
<dd>A segment read from the file named <code><em>filename</em></code> should
not have the first segment indicator set, but does. The input file
is probably corrupt.
<dt>Action
<dd>Supply a valid input file and rerun <code>dasdload</code>.
<dt>Issued by
<dd>dasdload.c, function read_xmit_rec
</dl>
<dt><code><a name="HHCDL070E">
HHCDL070E <em>filename</em> control record indicator mismatch
</a></code>
<dd><dl>
<dt>Meaning
<dd>There was a
mismatch between the first segment and the control record. The input file
is probably corrupt.
<dt>Action
<dd>Supply a valid input file and rerun <code>dasdload</code>.
<dt>Issued by
<dd>dasdload.c, function read_xmit_rec
</dl>
<dt><code><a name="HHCDL071E">
HHCDL071E <em>filename</em> read error: <em>error</em>
</a></code>
<dd><dl>
<dt>Meaning
<dd>An error was encountered when reading a segment from the input
file named <code><em>filename</em></code>. The error is described by <code><em>error</em></code>.
<dt>Action
<dd>Correct the error and rerun <code>dasdload</code>.
<dt>Issued by
<dd>dasdload.c, function read_xmit_rec
</dl>
<dt><code><a name="HHCDL072E">
HHCDL072E <em>filename</em> read error: <em>error</em>
</a></code>
<dd><dl>
<dt>Meaning
<dd>An error was encountered when reading a COPYR1 record from the input
file named <code><em>filename</em></code>. The error is described by <code><em>error</em></code>.
<dt>Action
<dd>Correct the error and rerun <code>dasdload</code>.
<dt>Issued by
<dd>dasdload.c, function read_vs_rec
</dl>
<dt><code><a name="HHCDL073E">
HHCDL073E <em>filename</em> read error: <em>error</em>
</a></code>
<dd><dl>
<dt>Meaning
<dd>An error was encountered when reading a COPYR2 record from the input
file named <code><em>filename</em></code>. The error is described by <code><em>error</em></code>.
<dt>Action
<dd>Correct the error and rerun <code>dasdload</code>.
<dt>Issued by
<dd>dasdload.c, function read_vs_rec
</dl>
<dt><code><a name="HHCDL074E">
HHCDL074E <em>filename</em> read error: <em>error</em>
</a></code>
<dd><dl>
<dt>Meaning
<dd>An error was encountered when reading a data block header from the input
file named <code><em>filename</em></code>. The error is described by <code><em>error</em></code>.
<dt>Action
<dd>Correct the error and rerun <code>dasdload</code>.
<dt>Issued by
<dd>dasdload.c, function read_vs_rec
</dl>
<dt><code><a name="HHCDL075E">
HHCDL075E <em>filename</em> read error: <em>error</em>
</a></code>
<dd><dl>
<dt>Meaning
<dd>An error was encountered when reading a data block from the input
file named <code><em>filename</em></code>. The error is described by <code><em>error</em></code>.
<dt>Action
<dd>Correct the error and rerun <code>dasdload</code>.
<dt>Issued by
<dd>dasdload.c, function read_vs_rec
</dl>
<dt><code><a name="HHCDL076I">
HHCDL076I File number: <em>number</em>
</a></code>
<dd><dl>
<dt>Meaning
<dd>The file being processed is number <code><em>number</em></code>.
<dt>Message level
<dd>4
<dt>Issued by