Skip to content

Commit

Permalink
fix(ubuntu,fedora): agent driver broken on kernel 6.6 (#119)
Browse files Browse the repository at this point in the history
ignore kernel 6.6 when building driver for agent
release <= 12.17.1.
This applies to both legacy eBPF and kernel module.
  • Loading branch information
iurly authored Nov 29, 2023
1 parent 2748321 commit 042666e
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 @@ -4,6 +4,12 @@ matchers:
generic: ^(?P<major>[0-9])\.(?P<minor>[0-9]+)\..*

ignorelist:
- description: "[SMAGENT-6088] Kernel 6.6 on agent <= 12.17.1"
probe_versions: [ 12.15.0, 12.16.0, 12.16.1, 12.16.2, 12.16.3, 12.17.0, 12.17.1 ]
probe_kinds: [ kmod, legacy_ebpf ]
matcher: generic
skip_if: "{{ (major|int > 6) or (major|int == 6 and minor|int >= 6) }}"

- description: "[SMAGENT-5378] RHEL8.9 kernels ~492..500 do not include backported patch"
probe_versions: [ 12.16.0, 12.16.1, 12.16.2, 12.16.3, 12.17.0, 12.17.1 ]
probe_kinds: [ kmod ]
Expand Down

0 comments on commit 042666e

Please sign in to comment.