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(driver/bpf): fixed old bpf probe with clang-18. #1874

Merged
merged 1 commit into from
May 20, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions driver/bpf/fillers.h
Original file line number Diff line number Diff line change
Expand Up @@ -469,7 +469,7 @@ FILLER(sys_write_x, true)
static __always_inline int bpf_poll_parse_fds(struct filler_data *data,
bool enter_event)
{
unsigned int read_size;
unsigned long read_size;
unsigned int fds_count;
int res = PPM_SUCCESS;
unsigned long nfds;
Expand Down Expand Up @@ -579,7 +579,7 @@ static __always_inline int bpf_parse_readv_writev_bufs(struct filler_data *data,
{
const struct iovec *iov;
int res = PPM_SUCCESS;
unsigned int copylen;
unsigned long copylen;
long size = 0;
int j;

Expand Down
Loading