Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(tests, bpf): correct build and test case failures on s390x #1150

Merged
merged 2 commits into from
Jun 13, 2023

Commits on Jun 13, 2023

  1. fix(tests/drivers): correct build break on s390x

    Signed-off-by: Hendrik Brueckner <[email protected]>
    hbrueckner committed Jun 13, 2023
    Configuration menu
    Copy the full SHA
    1667048 View commit details
    Browse the repository at this point in the history
  2. fix(bpf): prctlX correctly read GET_CHILD_SUBREAPER arg2 value

    The prctl GET_CHILD_SUBREAPER function stores the PID as
    `(int *) arg2`.
    Previously, the arg2 value has been read as `unsigned long`
    causing endianess issue on s390x resulting in test case failures.
    
    Change this to read an integer value similar as in modern BPF.
    
    Signed-off-by: Hendrik Brueckner <[email protected]>
    hbrueckner committed Jun 13, 2023
    Configuration menu
    Copy the full SHA
    ed1afac View commit details
    Browse the repository at this point in the history