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

libbpf bump #324

Merged
merged 3 commits into from
May 3, 2023
Merged

libbpf bump #324

merged 3 commits into from
May 3, 2023

Commits on May 2, 2023

  1. libbpf: bump to v1.2.0

    rafaeldtinoco committed May 2, 2023
    Configuration menu
    Copy the full SHA
    c291411 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    eba93d9 View commit details
    Browse the repository at this point in the history

Commits on May 3, 2023

  1. selftest: fix set-attach test

    After commit d6e6286a12e7 ("libbpf: disassociate section handler on explicit
    bpf_program__set_type() call"), bpf_program__set_type() will force cleanup
    the program's SEC() definition.
    
    The program type should only be set if it differs from the desired one:
    
      if (type != BPF_PROG_TYPE_UNSPEC && bpf_program__type(prog) != type)
        bpf_program__set_type(prog, type);
    rafaeldtinoco committed May 3, 2023
    Configuration menu
    Copy the full SHA
    0460c7c View commit details
    Browse the repository at this point in the history