-
Notifications
You must be signed in to change notification settings - Fork 431
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(ebpf): adjust inode struct to kernel v6.11
- Add support for three different ranges of kernel versions. - For kernel 6.11 and newer, struct inode uses the fields i_ctime_sec and i_ctime_nsec for time. - For kernels 6.6 to 6.10, struct inode uses __i_ctime. - For kernels 6.5 and older, struct inode uses i_ctime. - Align struct inode to the kernel 6.11 structure and mock the inode struct for kernels older than 6.11.
- Loading branch information
Showing
3 changed files
with
24 additions
and
7 deletions.
There are no files selected for viewing
This file contains 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 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 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