Skip to content

Commit

Permalink
fix(kmod): disable driver build for kmod on Kernel 6.10 (#136)
Browse files Browse the repository at this point in the history
* fix(kmod): disable driver build for kmod on Kernel 6.10

* fix(kmod): disable driver build for kmod on Kernel 6.10 for other agent versions
  • Loading branch information
mavimo authored Jun 12, 2024
1 parent e776966 commit 0052b11
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: [ 12.20.0, 13.0.0, 13.0.1, 13.0.2, 13.0.3, 13.0.4, 13.1.0, 13.1.1, 13.2.0, 13.2.1, 13.3.0 ]
probe_kinds: [ kmod ]
matcher: generic
skip_if: "{{ major|int == 6 and minor|int == 10 }}"

0 comments on commit 0052b11

Please sign in to comment.