From 85ec7065aba8de2a541e6630bafdeb6b12f48330 Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Wed, 16 Oct 2024 10:23:25 +0200 Subject: [PATCH] fix(driver/bpf): fixed a typo in old ebpf probe code for linux >= 6.11. Signed-off-by: Federico Di Pierro --- driver/bpf/fillers.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/driver/bpf/fillers.h b/driver/bpf/fillers.h index 4a8494019a..7c65d66417 100644 --- a/driver/bpf/fillers.h +++ b/driver/bpf/fillers.h @@ -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