Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: ignore kernel 6.8 and RHEL9.4 for agent 13.0.1 #129

Merged
merged 1 commit into from
Mar 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions agent_ignorelist.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,13 +53,13 @@ ignorelist:
skip_if: "{{ (major|int > 6) or (major|int == 6 and minor|int >= 3) }}"

- description: "[https://github.com/falcosecurity/libs/pull/1632] kernel 6.8: implicit declaration of function 'strlcpy'"
probe_versions: [ 12.18.0, 12.19.0, 12.20.0, 13.0.0 ]
probe_versions: [ 12.18.0, 12.19.0, 12.20.0, 13.0.0, 13.0.1 ]
probe_kinds: [ kmod ]
matcher: generic
skip_if: "{{ (major|int > 6) or (major|int == 6 and minor|int >= 8) }}"

- description: "[SMAGENT-6649] kernel 5.14 - RHEL backport: member reference base type struct 'percpu_counter'"
probe_versions: [ 12.18.0, 12.19.0, 12.20.0, 13.0.0 ]
probe_versions: [ 12.18.0, 12.19.0, 12.20.0, 13.0.0, 13.0.1 ]
probe_kinds: [ legacy_ebpf ]
matcher: redhat
skip_if: "{{ (version == '5.14.0' and (rpmrelver|int) >= 410) }}"
Expand Down
Loading