"Failure: unmarshaling error" occurs when running the jbpf_verifier_cli to verify a new codelet
#32
-
|
Hello, I ran the Thanks. |
Beta Was this translation helpful? Give feedback.
Answered by
amurgZainar
Jan 13, 2025
Replies: 1 comment 3 replies
-
|
Can you share the codelet? You can comment out line by line to identify which causes errror or you can start with an empty codelet and add code incrementally. |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I managed to get my head around this issue, by commenting out the helper function call. The
Failure: unmarshaling errorwas coming from the fact that the helper function was not declared (known) to the codelet1, even though the codelet1 build process was successful.Now, after commenting out the helper function call, the
jbpf_verifier_clifails as expected, because thejbpf_verifier_cliis not extended to verify the codelet's context/program, which is necessary for the verification process to succeed.