Stop HTTPD908E guessing at STEPLIB for load failures - #215
Merged
Conversation
When LINK takes its error-return exit, no abend code reaches httpd -- libc370's __link() returns only -1 -- so HTTPD908E named a cause it had not established, and "not found in STEPLIB?" pointed away from the answer when the real cause was an S106-0F fetch failure. Say only what is known -- the module could not be loaded -- and leave the cause to the console log, where MVS already reports it. Fixes #210
mgrossmann
force-pushed
the
issue-210-httpd908e-wording
branch
from
August 20, 2026 16:16
0fe00b6 to
79bed78
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixes #210
HTTPD908E … could not be loaded (not found in STEPLIB?)named a cause it had not established. On theHTTP_LINK_ENOLOADpath the LINK SVC took its error-return exit and no abend code reaches httpd — libc370's__link()returns only-1— so the parenthetical was a guess, and in the measured case (#210, S106-0F fetch failure) it pointed away from the answer.The message now says only what is established:
could not be loaded. The cause is on the console, where MVS already reports it (IEA703Iin the storage case).docs/messages.mdis updated to match.Carrying the abend code in the message itself would need the ERRET register contents captured in libc370 first; that remains a possible follow-up there.