Skip to content

Commit

Permalink
fix(driver/bpf): fixed a typo in old ebpf probe code for linux >= 6.11.
Browse files Browse the repository at this point in the history
Signed-off-by: Federico Di Pierro <nierro92@gmail.com>
  • Loading branch information
FedeDP authored and poiana committed Oct 16, 2024
1 parent c082ec3 commit 85ec706
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion driver/bpf/fillers.h
Original file line number Diff line number Diff line change
Expand Up @@ -6553,7 +6553,7 @@ FILLER(sched_prog_exec_4, false) {
* PT_ABSTIME) */
#if LINUX_VERSION_CODE >= KERNEL_VERSION(6, 11, 0)
time.tv_sec = _READ(inode->i_ctime_sec);
time.tv_nsec = _READ((inode->i_ctime_nsec);
time.tv_nsec = _READ(inode->i_ctime_nsec);
#elif LINUX_VERSION_CODE >= KERNEL_VERSION(6, 6, 0)
time = _READ(inode->__i_ctime);
#else
Expand Down

0 comments on commit 85ec706

Please sign in to comment.