From 04af2f5bd7d7322e474f43111cb8a557f128e30e Mon Sep 17 00:00:00 2001 From: Jiri Olsa Date: Sun, 29 Dec 2024 10:49:54 +0000 Subject: [PATCH] verify: Skip kprobe session object Signed-off-by: Jiri Olsa --- contrib/verify/verify.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/contrib/verify/verify.sh b/contrib/verify/verify.sh index b87be0556ee..b2ae000adda 100755 --- a/contrib/verify/verify.sh +++ b/contrib/verify/verify.sh @@ -64,6 +64,11 @@ for obj in "$TETRAGONDIR"/*.o; do continue fi + # Session kprobe support is still not widely around, skip the object + if [[ "$B" == bpf_session_* ]]; then + continue + fi + # Skip v6.1 objects check for kernel < 6.1 if [[ "$B" == *61.o && $(echo "$KERNEL < 6.1" | bc) == 1 ]]; then continue