-
Notifications
You must be signed in to change notification settings - Fork 450
Libbpf sync 2025-06-13T21:51:44.090Z #905
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
Merged
anakryiko
merged 19 commits into
libbpf:master
from
ameryhung:libbpf-sync-2025-06-13T17-56-37.539Z
Jun 16, 2025
Merged
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
8ca6d4e
bpf: Clarify handling of mark and tstamp by redirect_peer
pchaigno 98b1866
net: devmem: TCP tx netlink api
89f9b53
libbpf: Use mmap to parse vmlinux BTF from sysfs
lmb a395716
perf/uapi: Fix PERF_RECORD_SAMPLE comments in <uapi/linux/perf_event.h>
captain5050 7217e0f
perf/uapi: Clean up <uapi/linux/perf_event.h> a bit
feeb361
libbpf: Support creating and destroying qdisc
b726541
selftests/bpf: Fix bpf selftest build warning
cf904d9
libbpf/btf: Fix string handling to support multi-split BTF
alan-maguire f525166
bpf: Add cookie to raw_tp bpf_link_info
d9984ff
libbpf: Correct some typos and syntax issues in usdt doc
Phoenix500526 672d552
libbpf: Add support for printing BTF character arrays as strings
blakej11 681e4a4
bpf: Implement mprog API on top of existing cgroup progs
cd25bad
libbpf: Support link-based cgroup attach with options
837ed00
bpf: Add cookie to tracing bpf_link_info
fc40305
libbpf: Handle unsupported mmap-based /sys/kernel/btf/vmlinux correctly
anakryiko a2e524a
bpf: adjust path to trace_output sample eBPF program
tklauser a8cd512
bpf: Fix L4 csum update on IPv6 in CHECKSUM_COMPLETE
pchaigno 4f095f4
sync: auto-generate latest BPF helpers
ameryhung 066ea3e
sync: latest libbpf changes from kernel
ameryhung File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
b4432656b36e5cc1d50a1f2dc15357543add530e | ||
d60d09eadb7cb17690c847f1623436cd4b58c19c |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
9325d53fe9adff354b6a93fda5f38c165947da0f | ||
4a4b84ba9e453295c746d81cb245c0c5d80050f0 |
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
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we raced a bit, I just landed an update to sync script that strips _UAPI prefix here, because we ran into issues internally. Can you please re-run with the lates script again (no need to recreate the PR, just force-push into it and maybe update the PR description with latest log)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have rerun the script. The title and the description of the PR has been updated.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's still
_UAPI_LINUX_IF_XDP_H
, while it should be_LINUX_IF_XDP_H
... I guess I need to fix up my script,s/_UAPI__LINUX/__LINUX/
doesn't catch this case