Skip to content

Commit

Permalink
verify: Skip kprobe session object
Browse files Browse the repository at this point in the history
Signed-off-by: Jiri Olsa <[email protected]>
  • Loading branch information
olsajiri committed Dec 29, 2024
1 parent b39fe10 commit 04af2f5
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions contrib/verify/verify.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 04af2f5

Please sign in to comment.