Skip to content

Commit

Permalink
fix(kmod): disable driver build for kmod on Kernel 6.10
Browse files Browse the repository at this point in the history
  • Loading branch information
mavimo committed Jun 12, 2024
1 parent e776966 commit b4ca815
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions agent_ignorelist.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -70,3 +70,9 @@ ignorelist:
probe_kinds: [ kmod ]
matcher: generic
skip_if: "{{ (major|int > 6) or (major|int == 6 and minor|int >= 3) }}"

- description: "[https://github.com/falcosecurity/libs/pull/1884] kernel 6.10: implicit declaration of function 'fd_is_open'"
probe_versions: [ 13.1.0, 13.1.1, 13.2.0, 13.2.1 ]
probe_kinds: [ kmod ]
matcher: generic
skip_if: "{{ major|int == 6 and minor|int == 10 }}"

0 comments on commit b4ca815

Please sign in to comment.