CVE-2026-46116

EUVD-2026-32875
In the Linux kernel, the following vulnerability has been resolved:

xfrm: defensively unhash xfrm_state lists in __xfrm_state_delete

KASAN reproduces a slab-use-after-free in __xfrm_state_delete()'s
hlist_del_rcu calls under syzkaller load on linux-6.12.y stable
(reproduced on 6.12.47, also reachable via the same code path on
torvalds/master and on the ipsec tree). Nine unique signatures cluster
in the xfrm_state lifecycle, the load-bearing one being:

  BUG: KASAN: slab-use-after-free in __hlist_del include/linux/list.h:990 [inline]
  BUG: KASAN: slab-use-after-free in hlist_del_rcu include/linux/rculist.h:516 [inline]
  BUG: KASAN: slab-use-after-free in __xfrm_state_delete net/xfrm/xfrm_state.c
  Write of size 8 at addr ffff8881198bcb70 by task kworker/u8:9/435

  Workqueue: netns cleanup_net
  Call Trace:
   __hlist_del / hlist_del_rcu
   __xfrm_state_delete
   xfrm_state_delete
   xfrm_state_flush
   xfrm_state_fini
   ops_exit_list
   cleanup_net

The other observed signatures hit the same slab object from
__xfrm_state_lookup, xfrm_alloc_spi, __xfrm_state_insert and an OOB
write variant of __xfrm_state_delete, all on the byseq/byspi
hash chains.

__xfrm_state_delete() guards its byseq and byspi unhashes with
value-based predicates:

	if (x->km.seq)
		hlist_del_rcu(&x->byseq);
	if (x->id.spi)
		hlist_del_rcu(&x->byspi);

while everywhere else in the file (e.g. state_cache, state_cache_input)
the safer hlist_unhashed() check is used. xfrm_alloc_spi() sets
x->id.spi = newspi inside xfrm_state_lock and then immediately inserts
into byspi, but a path that observes x->id.spi != 0 outside of
xfrm_state_lock can still skip-or-hit the byspi unhash inconsistently
with whether x is actually on the list. The same holds for x->km.seq
versus byseq, and the bydst/bysrc unhashes have no predicate at all,
so a second __xfrm_state_delete() on the same object writes through
LIST_POISON pprev.

The defensive change here:

  - Use hlist_del_init_rcu() instead of hlist_del_rcu() on bydst,
    bysrc, byseq and byspi so a second deletion is a no-op rather
    than a write through LIST_POISON pprev. The byseq/byspi nodes
    are already initialised in xfrm_state_alloc().
  - Test hlist_unhashed() rather than the value predicate for
    byseq/byspi, so the unhash decision tracks list state rather than
    mutable scalar fields.

Empirical verification: applied this patch on top of v6.12.47, rebuilt,
and re-ran the same syzkaller harness for 1h16m on a previously-crashy
configuration that produced ~100 hits each of slab-use-after-free
Read in xfrm_alloc_spi / Read in __xfrm_state_lookup / Write in
__xfrm_state_delete. After the patch, 7.1M execs across 32 VMs at
~1550 exec/sec produced zero xfrm_state UAF/OOB hits. /proc/slabinfo
confirms the xfrm_state slab is actively allocated and freed during
the run (~143 KiB resident), so the fuzzer is still exercising those
code paths -- they just no longer crash.

Reproduction:

  - Linux 6.12.47 x86_64 + KASAN_GENERIC + KASAN_INLINE + KCOV
  - syzkaller @ 746545b8b1e4c3a128db8652b340d3df90ce61db
  - 32 QEMU/KVM VMs x 2 vCPU on AWS c5.metal bare metal
  - 9 unique signatures collected in ~9h, all within xfrm_state
    lifecycle
ProviderTypeBase ScoreAtk. VectorAtk. ComplexityPriv. RequiredVector
NISTPrimary
7.8 HIGH
LOCAL
LOW
LOW
CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
Base Score
CVSS 3.x
EPSS Score
Percentile: 2.85%
Affected Products (NVD)
VendorProductVersion
linuxlinux_kernel
2.6.19 ≤
𝑥
< 5.15.210
linuxlinux_kernel
5.16 ≤
𝑥
< 6.1.176
linuxlinux_kernel
6.2 ≤
𝑥
< 6.6.140
linuxlinux_kernel
6.7 ≤
𝑥
< 6.12.88
linuxlinux_kernel
6.13 ≤
𝑥
< 6.18.30
linuxlinux_kernel
6.19 ≤
𝑥
< 7.0.7
linuxlinux_kernel
7.1:rc1
linuxlinux_kernel
7.1:rc2
𝑥
= Vulnerable software versions
Early Detection
Affected products identified ahead of NVD analysis through intelligence sources.
VendorProductVersionSource
Red HatRed Hat Enterprise Linux 10
0:6.12.0-211.37.1.el10_2 ≤
𝑥
< *
ADP
Red HatRed Hat Enterprise Linux 10.0 Extended Update Support
0:6.12.0-55.88.1.el10_0 ≤
𝑥
< *
ADP
Red HatRed Hat Enterprise Linux 7 Extended Lifecycle Support
0:3.10.0-1160.156.1.rt56.1308.el7 ≤
𝑥
< *
ADP
Red HatRed Hat Enterprise Linux 7 Extended Lifecycle Support
0:3.10.0-1160.156.1.el7 ≤
𝑥
< *
ADP
Red HatRed Hat Enterprise Linux 8
0:4.18.0-553.144.1.rt7.485.el8_10 ≤
𝑥
< *
ADP
Red HatRed Hat Enterprise Linux 8
0:4.18.0-553.144.1.el8_10 ≤
𝑥
< *
ADP
Red HatRed Hat Enterprise Linux 8.4 Advanced Mission Critical Update Support
0:4.18.0-305.199.1.el8_4 ≤
𝑥
< *
ADP
Red HatRed Hat Enterprise Linux 8.4 Extended Update Support Long-Life Add-On
0:4.18.0-305.199.1.el8_4 ≤
𝑥
< *
ADP
Red HatRed Hat Enterprise Linux 8.6 Advanced Mission Critical Update Support
0:4.18.0-372.204.1.el8_6 ≤
𝑥
< *
ADP
Red HatRed Hat Enterprise Linux 8.6 Extended Update Support Long-Life Add-On
0:4.18.0-372.204.1.el8_6 ≤
𝑥
< *
ADP
Red HatRed Hat Enterprise Linux 8.8 Telecommunications Update Service
0:4.18.0-477.156.1.el8_8 ≤
𝑥
< *
ADP
Red HatRed Hat Enterprise Linux 8.8 Update Services for SAP Solutions
0:4.18.0-477.156.1.el8_8 ≤
𝑥
< *
ADP
Red HatRed Hat Enterprise Linux 9
0:5.14.0-687.22.1.el9_8 ≤
𝑥
< *
ADP
Red HatRed Hat Enterprise Linux 9.2 Update Services for SAP Solutions
0:5.14.0-284.183.1.el9_2 ≤
𝑥
< *
ADP
Red HatRed Hat Enterprise Linux 9.2 Update Services for SAP Solutions
0:5.14.0-284.183.1.rt14.468.el9_2 ≤
𝑥
< *
ADP
Red HatRed Hat Enterprise Linux 9.4 Update Services for SAP Solutions
0:5.14.0-427.139.1.el9_4 ≤
𝑥
< *
ADP
Red HatRed Hat Enterprise Linux 9.6 Extended Update Support
0:5.14.0-570.129.1.el9_6 ≤
𝑥
< *
ADP
Debian logo
Debian Releases
Debian Product
Codename
linux
bookworm
6.1.176-1
fixed
bookworm (security)
6.1.180-1
fixed
bullseye
vulnerable
bullseye (security)
5.10.262-1
fixed
forky
7.1.8-2
fixed
sid
7.1.9-1
fixed
trixie
6.12.94-1
fixed
trixie (security)
6.12.101-1
fixed
linux-6.1
bullseye (security)
6.1.180-1~deb11u1
fixed
Ubuntu logo
Ubuntu Releases
Ubuntu Product
Codename
linux
bionic
needed
focal
needed
jammy
needed
noble
Fixed 6.8.0-136.136
released
questing
ignored
resolute
Fixed 7.0.0-28.28
released
trusty
ignored
xenial
needed
linux-hwe
bionic
ignored
focal
dne
jammy
dne
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
needed
linux-hwe-5.4
bionic
needed
focal
dne
jammy
dne
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-hwe-5.15
bionic
dne
focal
needed
jammy
dne
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-hwe-6.8
bionic
dne
focal
dne
jammy
Fixed 6.8.0-136.136~22.04.1
released
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-hwe-6.14
bionic
dne
focal
dne
jammy
dne
noble
ignored
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-hwe-6.17
bionic
dne
focal
dne
jammy
dne
noble
needed
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-lts-xenial
bionic
dne
focal
dne
jammy
dne
noble
dne
questing
dne
resolute
dne
trusty
ignored
xenial
dne
linux-kvm
bionic
needed
focal
needed
jammy
needed
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
needed
linux-aws
bionic
needed
focal
needed
jammy
needed
noble
Fixed 6.8.0-1061.64
released
questing
ignored
resolute
Fixed 7.0.0-1009.9
released
trusty
ignored
xenial
needed
linux-aws-5.4
bionic
needed
focal
dne
jammy
dne
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-aws-5.15
bionic
dne
focal
needed
jammy
dne
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-aws-6.8
bionic
dne
focal
dne
jammy
Fixed 6.8.0-1061.64~22.04.1
released
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-aws-6.14
bionic
dne
focal
dne
jammy
dne
noble
ignored
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-aws-6.17
bionic
dne
focal
dne
jammy
dne
noble
ignored
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-aws-hwe
bionic
dne
focal
dne
jammy
dne
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
needed
linux-azure
bionic
ignored
focal
needed
jammy
needed
noble
Fixed 6.8.0-1063.71
released
questing
ignored
resolute
Fixed 7.0.0-1010.10
released
trusty
ignored
xenial
needed
linux-azure-4.15
bionic
needed
focal
dne
jammy
dne
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-azure-5.4
bionic
needed
focal
dne
jammy
dne
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-azure-5.15
bionic
dne
focal
needed
jammy
dne
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-azure-6.8
bionic
dne
focal
dne
jammy
Fixed 6.8.0-1063.71~22.04.1
released
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-azure-6.14
bionic
dne
focal
dne
jammy
dne
noble
ignored
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-azure-6.17
bionic
dne
focal
dne
jammy
dne
noble
ignored
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-azure-fde
bionic
dne
focal
ignored
jammy
needed
noble
Fixed 6.8.0-1062.69
released
questing
ignored
resolute
Fixed 7.0.0-1009.9
released
trusty
dne
xenial
dne
linux-azure-fde-5.15
bionic
dne
focal
needed
jammy
dne
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-azure-fde-6.8
bionic
dne
focal
dne
jammy
Fixed 6.8.0-1062.69~22.04.1
released
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-azure-fde-6.14
bionic
dne
focal
dne
jammy
dne
noble
ignored
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-azure-fde-6.17
bionic
dne
focal
dne
jammy
dne
noble
not-affected
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-azure-nvidia
bionic
dne
focal
dne
jammy
dne
noble
pending
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-azure-nvidia-6.14
bionic
dne
focal
dne
jammy
dne
noble
ignored
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-bluefield
bionic
dne
focal
needed
jammy
dne
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-fips
bionic
needed
focal
needed
jammy
needed
noble
Fixed 6.8.0-136.136+fips2
released
questing
dne
resolute
dne
trusty
dne
xenial
needed
linux-aws-fips
bionic
needed
focal
needed
jammy
needed
noble
Fixed 6.8.0-1061.64+fips1
released
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-azure-fips
bionic
needed
focal
needed
jammy
needed
noble
Fixed 6.8.0-1063.71+fips2
released
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-gcp-fips
bionic
needed
focal
needed
jammy
needed
noble
Fixed 6.8.0-1064.72+fips1
released
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-gcp
bionic
ignored
focal
needed
jammy
needed
noble
Fixed 6.8.0-1064.72
released
questing
ignored
resolute
Fixed 7.0.0-1008.8
released
trusty
dne
xenial
needed
linux-gcp-4.15
bionic
needed
focal
dne
jammy
dne
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-gcp-5.4
bionic
needed
focal
dne
jammy
dne
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-gcp-5.15
bionic
dne
focal
needed
jammy
dne
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-gcp-6.8
bionic
dne
focal
dne
jammy
Fixed 6.8.0-1064.72~22.04.1
released
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-gcp-6.14
bionic
dne
focal
dne
jammy
dne
noble
ignored
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-gcp-6.17
bionic
dne
focal
dne
jammy
dne
noble
needed
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-gke
bionic
dne
focal
ignored
jammy
needed
noble
Fixed 6.8.0-1059.67
released
questing
dne
resolute
Fixed 7.0.0-1003.4
released
trusty
dne
xenial
ignored
linux-gkeop
bionic
dne
focal
ignored
jammy
needed
noble
Fixed 6.8.0-1046.50
released
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-gkeop-5.15
bionic
dne
focal
ignored
jammy
dne
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-ibm
bionic
dne
focal
needed
jammy
needed
noble
Fixed 6.8.0-1061.62
released
questing
dne
resolute
Fixed 7.0.0-1010.10
released
trusty
dne
xenial
dne
linux-ibm-5.4
bionic
needed
focal
dne
jammy
dne
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-ibm-5.15
bionic
dne
focal
needed
jammy
dne
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-ibm-6.8
bionic
dne
focal
dne
jammy
Fixed 6.8.0-1061.62~22.04.1
released
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-intel-iotg
bionic
dne
focal
dne
jammy
needed
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-intel-iotg-5.15
bionic
dne
focal
needed
jammy
dne
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-iot
bionic
dne
focal
needed
jammy
dne
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-intel-iot-realtime
bionic
dne
focal
dne
jammy
needed
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-lowlatency
bionic
dne
focal
dne
jammy
needed
noble
Fixed 6.8.0-136.136.2
released
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-lowlatency-hwe-5.15
bionic
dne
focal
needed
jammy
dne
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-lowlatency-hwe-6.8
bionic
dne
focal
dne
jammy
Fixed 6.8.0-136.136.2~22.04.1
released
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-nvidia
bionic
dne
focal
dne
jammy
needed
noble
Fixed 6.8.0-1059.62
released
questing
dne
resolute
pending
trusty
dne
xenial
dne
linux-nvidia-6.8
bionic
dne
focal
dne
jammy
Fixed 6.8.0-1059.62~22.04.1
released
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-nvidia-6.17
bionic
dne
focal
dne
jammy
dne
noble
needed
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-nvidia-lowlatency
bionic
dne
focal
dne
jammy
dne
noble
Fixed 6.8.0-1059.62.1
released
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-nvidia-tegra
bionic
dne
focal
dne
jammy
needed
noble
Fixed 6.8.0-1030.31
released
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-nvidia-tegra-5.15
bionic
dne
focal
needed
jammy
dne
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-nvidia-tegra-igx
bionic
dne
focal
dne
jammy
needed
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-oracle
bionic
needed
focal
needed
jammy
needed
noble
Fixed 6.8.0-1058.61
released
questing
ignored
resolute
Fixed 7.0.0-1008.8
released
trusty
dne
xenial
needed
linux-oracle-5.4
bionic
needed
focal
dne
jammy
dne
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-oracle-5.15
bionic
dne
focal
needed
jammy
dne
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-oracle-6.8
bionic
dne
focal
dne
jammy
Fixed 6.8.0-1058.61~22.04.1
released
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-oracle-6.14
bionic
dne
focal
dne
jammy
dne
noble
ignored
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-oracle-6.17
bionic
dne
focal
dne
jammy
dne
noble
ignored
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-oem-6.14
bionic
dne
focal
dne
jammy
dne
noble
ignored
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-oem-6.17
bionic
dne
focal
dne
jammy
dne
noble
needed
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-raspi
bionic
dne
focal
needed
jammy
needed
noble
pending
questing
ignored
resolute
Fixed 7.0.0-1015.15
released
trusty
dne
xenial
dne
linux-raspi-5.4
bionic
needed
focal
dne
jammy
dne
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-raspi-realtime
bionic
dne
focal
dne
jammy
dne
noble
pending
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-realtime
bionic
dne
focal
dne
jammy
needed
noble
Fixed 6.8.1-1056.57
released
questing
ignored
resolute
Fixed 7.0.0-28.28.1
released
trusty
dne
xenial
dne
linux-realtime-6.8
bionic
dne
focal
dne
jammy
Fixed 6.8.1-1056.57~22.04.2
released
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-realtime-6.14
bionic
dne
focal
dne
jammy
dne
noble
ignored
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-riscv
bionic
dne
focal
ignored
jammy
ignored
noble
ignored
questing
ignored
resolute
Fixed 7.0.0-28.28.1
released
trusty
dne
xenial
dne
linux-riscv-5.15
bionic
dne
focal
needed
jammy
dne
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-riscv-6.8
bionic
dne
focal
dne
jammy
Fixed 6.8.0-136.136~22.04.3
released
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-riscv-6.17
bionic
dne
focal
dne
jammy
dne
noble
ignored
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-xilinx
bionic
dne
focal
dne
jammy
dne
noble
Fixed 6.8.0-1033.34
released
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-xilinx-zynqmp
bionic
dne
focal
needed
jammy
needed
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-realtime-6.17
bionic
dne
focal
dne
jammy
dne
noble
ignored
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-hwe-7.0
bionic
dne
focal
dne
jammy
dne
noble
Fixed 7.0.0-28.28~24.04.1
released
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-oem-7.0
bionic
dne
focal
dne
jammy
dne
noble
dne
questing
dne
resolute
Fixed 7.0.0-1009.9
released
trusty
dne
xenial
dne
linux-nvidia-7.0
bionic
dne
focal
dne
jammy
dne
noble
pending
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-nvidia-bos
bionic
dne
focal
dne
jammy
dne
noble
dne
questing
dne
resolute
pending
trusty
dne
xenial
dne
linux-aws-7.0
bionic
dne
focal
dne
jammy
dne
noble
not-affected
resolute
dne
trusty
dne
xenial
dne
linux-allwinner-5.19
bionic
dne
focal
dne
jammy
ignored
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-aws-5.0
bionic
ignored
focal
dne
jammy
dne
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-aws-5.11
bionic
dne
focal
ignored
jammy
dne
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-aws-5.13
bionic
dne
focal
ignored
jammy
dne
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-aws-5.19
bionic
dne
focal
dne
jammy
ignored
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-aws-5.3
bionic
ignored
focal
dne
jammy
dne
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-aws-5.8
bionic
dne
focal
ignored
jammy
dne
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-aws-6.2
bionic
dne
focal
dne
jammy
ignored
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-aws-6.5
bionic
dne
focal
dne
jammy
ignored
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-azure-5.11
bionic
dne
focal
ignored
jammy
dne
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-azure-5.13
bionic
dne
focal
ignored
jammy
dne
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-azure-5.19
bionic
dne
focal
dne
jammy
ignored
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-azure-5.3
bionic
ignored
focal
dne
jammy
dne
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-azure-5.8
bionic
dne
focal
ignored
jammy
dne
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-azure-6.11
bionic
dne
focal
dne
jammy
dne
noble
ignored
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-azure-6.2
bionic
dne
focal
dne
jammy
ignored
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-azure-6.5
bionic
dne
focal
dne
jammy
ignored
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-azure-edge
bionic
ignored
focal
dne
jammy
dne
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-azure-fde-5.19
bionic
dne
focal
dne
jammy
ignored
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-azure-fde-6.2
bionic
dne
focal
dne
jammy
ignored
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-gcp-5.11
bionic
dne
focal
ignored
jammy
dne
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-gcp-5.13
bionic
dne
focal
ignored
jammy
dne
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-gcp-5.19
bionic
dne
focal
dne
jammy
ignored
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-gcp-5.3
bionic
ignored
focal
dne
jammy
dne
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-gcp-5.8
bionic
dne
focal
ignored
jammy
dne
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-gcp-6.11
bionic
dne
focal
dne
jammy
dne
noble
ignored
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-gcp-6.2
bionic
dne
focal
dne
jammy
ignored
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-gcp-6.5
bionic
dne
focal
dne
jammy
ignored
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-gke-4.15
bionic
ignored
focal
dne
jammy
dne
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-gke-5.15
bionic
dne
focal
ignored
jammy
dne
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-gke-5.4
bionic
ignored
focal
dne
jammy
dne
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-gkeop-5.4
bionic
ignored
focal
dne
jammy
dne
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-hwe-5.11
bionic
dne
focal
ignored
jammy
dne
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-hwe-5.13
bionic
dne
focal
ignored
jammy
dne
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-hwe-5.19
bionic
dne
focal
dne
jammy
ignored
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-hwe-5.8
bionic
dne
focal
ignored
jammy
dne
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-hwe-6.11
bionic
dne
focal
dne
jammy
dne
noble
ignored
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-hwe-6.2
bionic
dne
focal
dne
jammy
ignored
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-hwe-6.5
bionic
dne
focal
dne
jammy
ignored
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-hwe-edge
bionic
ignored
focal
dne
jammy
dne
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
ignored
linux-intel-5.13
bionic
dne
focal
ignored
jammy
dne
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-lowlatency-hwe-5.19
bionic
dne
focal
dne
jammy
ignored
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-lowlatency-hwe-6.11
bionic
dne
focal
dne
jammy
dne
noble
ignored
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-lowlatency-hwe-6.2
bionic
dne
focal
dne
jammy
ignored
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-lowlatency-hwe-6.5
bionic
dne
focal
dne
jammy
ignored
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-nvidia-6.11
bionic
dne
focal
dne
jammy
dne
noble
ignored
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-nvidia-6.2
bionic
dne
focal
dne
jammy
ignored
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-nvidia-6.5
bionic
dne
focal
dne
jammy
ignored
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-oem
bionic
ignored
focal
dne
jammy
dne
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
ignored
linux-oem-5.10
bionic
dne
focal
ignored
jammy
dne
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-oem-5.13
bionic
dne
focal
ignored
jammy
dne
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-oem-5.14
bionic
dne
focal
ignored
jammy
dne
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-oem-5.17
bionic
dne
focal
dne
jammy
ignored
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-oem-5.6
bionic
dne
focal
ignored
jammy
dne
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-oem-6.0
bionic
dne
focal
dne
jammy
ignored
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-oem-6.1
bionic
dne
focal
dne
jammy
ignored
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-oem-6.11
bionic
dne
focal
dne
jammy
dne
noble
ignored
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-oem-6.5
bionic
dne
focal
dne
jammy
ignored
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-oem-6.8
bionic
dne
focal
dne
jammy
dne
noble
ignored
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-oracle-5.0
bionic
ignored
focal
dne
jammy
dne
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-oracle-5.11
bionic
dne
focal
ignored
jammy
dne
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-oracle-5.13
bionic
dne
focal
ignored
jammy
dne
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-oracle-5.3
bionic
ignored
focal
dne
jammy
dne
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-oracle-5.8
bionic
dne
focal
ignored
jammy
dne
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-oracle-6.5
bionic
dne
focal
dne
jammy
ignored
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-raspi2
bionic
ignored
focal
ignored
jammy
dne
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
ignored
linux-riscv-5.11
bionic
dne
focal
ignored
jammy
dne
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-riscv-5.19
bionic
dne
focal
dne
jammy
ignored
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-riscv-5.8
bionic
dne
focal
ignored
jammy
dne
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-riscv-6.14
bionic
dne
focal
dne
jammy
dne
noble
ignored
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-riscv-6.5
bionic
dne
focal
dne
jammy
ignored
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-starfive-5.19
bionic
dne
focal
dne
jammy
ignored
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-starfive-6.2
bionic
dne
focal
dne
jammy
ignored
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
linux-starfive-6.5
bionic
dne
focal
dne
jammy
ignored
noble
dne
questing
dne
resolute
dne
trusty
dne
xenial
dne
openSUSE logo
openSUSE / SLES Releases
openSUSE Product
Release
cluster-md-kmp-default
suse enterprise server 12 SP5
4.12.14-122.317.1
fixed
suse enterprise server 15 SP5
5.14.21-150500.55.172.2
fixed
suse enterprise server 15 SP6
6.4.0-150600.23.125.1
fixed
dlm-kmp-default
suse enterprise server 12 SP5
4.12.14-122.317.1
fixed
suse enterprise server 15 SP5
5.14.21-150500.55.172.2
fixed
suse enterprise server 15 SP6
6.4.0-150600.23.125.1
fixed
gfs2-kmp-default
suse enterprise server 12 SP5
4.12.14-122.317.1
fixed
suse enterprise server 15 SP5
5.14.21-150500.55.172.2
fixed
suse enterprise server 15 SP6
6.4.0-150600.23.125.1
fixed
kernel-64kb
suse enterprise desktop 15 SP7
6.4.0-150700.53.66.1
fixed
suse enterprise sap 15 SP7
6.4.0-150700.53.66.1
fixed
suse enterprise server 15 SP4
5.14.21-150400.24.225.2
fixed
suse enterprise server 15 SP5
5.14.21-150500.55.172.2
fixed
suse enterprise server 15 SP6
6.4.0-150600.23.125.1
fixed
suse enterprise server 15 SP7
6.4.0-150700.53.66.1
fixed
kernel-default
suse enterprise desktop 15 SP7
6.4.0-150700.53.66.1
fixed
suse enterprise sap 15 SP7
6.4.0-150700.53.66.1
fixed
suse enterprise server 12 SP5
4.12.14-122.317.1
fixed
suse enterprise server 15 SP4
5.14.21-150400.24.225.2
fixed
suse enterprise server 15 SP5
5.14.21-150500.55.172.2
fixed
suse enterprise server 15 SP6
6.4.0-150600.23.125.1
fixed
suse enterprise server 15 SP7
6.4.0-150700.53.66.1
fixed
kernel-default-base
suse enterprise desktop 15 SP7
6.4.0-150700.53.66.1.150700.17.39.1
fixed
suse enterprise sap 15 SP7
6.4.0-150700.53.66.1.150700.17.39.1
fixed
suse enterprise server 12 SP5
4.12.14-122.317.1
fixed
suse enterprise server 15 SP4
5.14.21-150400.24.225.2.150400.24.114.2
fixed
suse enterprise server 15 SP5
5.14.21-150500.55.172.2.150500.6.81.2
fixed
suse enterprise server 15 SP6
6.4.0-150600.23.125.1.150600.12.58.3
fixed
suse enterprise server 15 SP7
6.4.0-150700.53.66.1.150700.17.39.1
fixed
kernel-default-man
suse enterprise server 12 SP5
4.12.14-122.317.1
fixed
kernel-obs-build
suse enterprise desktop 15 SP7
6.4.0-150700.53.66.1
fixed
suse enterprise sap 15 SP7
6.4.0-150700.53.66.1
fixed
suse enterprise server 15 SP4
5.14.21-150400.24.225.2
fixed
suse enterprise server 15 SP5
5.14.21-150500.55.172.2
fixed
suse enterprise server 15 SP6
6.4.0-150600.23.125.1
fixed
suse enterprise server 15 SP7
6.4.0-150700.53.66.1
fixed
kernel-source
suse enterprise desktop 15 SP7
6.4.0-150700.53.66.1
fixed
suse enterprise sap 15 SP7
6.4.0-150700.53.66.1
fixed
suse enterprise server 12 SP5
4.12.14-122.317.1
fixed
suse enterprise server 15 SP4
5.14.21-150400.24.225.2
fixed
suse enterprise server 15 SP5
5.14.21-150500.55.172.2
fixed
suse enterprise server 15 SP6
6.4.0-150600.23.125.1
fixed
suse enterprise server 15 SP7
6.4.0-150700.53.66.1
fixed
kernel-zfcpdump
suse enterprise desktop 15 SP7
6.4.0-150700.53.66.1
fixed
suse enterprise sap 15 SP7
6.4.0-150700.53.66.1
fixed
suse enterprise server 15 SP4
5.14.21-150400.24.225.2
fixed
suse enterprise server 15 SP5
5.14.21-150500.55.172.2
fixed
suse enterprise server 15 SP6
6.4.0-150600.23.125.1
fixed
suse enterprise server 15 SP7
6.4.0-150700.53.66.1
fixed
ocfs2-kmp-default
suse enterprise server 12 SP5
4.12.14-122.317.1
fixed
suse enterprise server 15 SP5
5.14.21-150500.55.172.2
fixed
suse enterprise server 15 SP6
6.4.0-150600.23.125.1
fixed
reiserfs-kmp-default
suse enterprise server 15 SP4
5.14.21-150400.24.225.2
fixed
suse enterprise server 15 SP5
5.14.21-150500.55.172.2
fixed
suse enterprise server 15 SP6
6.4.0-150600.23.125.1
fixed
Red Hat logo
Red Hat Enterprise Linux Releases
Red Hat Product
Release
bpftool
RHEL 8
0:4.18.0-553.144.1.el8_10
fixed
RHEL 8.4 AUS
0:4.18.0-305.199.1.el8_4
fixed
RHEL 8.6 AUS
0:4.18.0-372.204.1.el8_6
fixed
RHEL 8.8 E4S
0:4.18.0-477.156.1.el8_8
fixed
RHEL 8.8 TUS
0:4.18.0-477.156.1.el8_8
fixed
kernel
RHEL 8
0:4.18.0-553.144.1.el8_10
fixed
RHEL 8.4 AUS
0:4.18.0-305.199.1.el8_4
fixed
RHEL 8.6 AUS
0:4.18.0-372.204.1.el8_6
fixed
RHEL 8.8 E4S
0:4.18.0-477.156.1.el8_8
fixed
RHEL 8.8 TUS
0:4.18.0-477.156.1.el8_8
fixed
RHEL 9
0:5.14.0-687.22.1.el9_8
fixed
kernel-64k
RHEL 9
0:5.14.0-687.22.1.el9_8
fixed
kernel-64k-core
RHEL 9
0:5.14.0-687.22.1.el9_8
fixed
kernel-64k-debug
RHEL 9
0:5.14.0-687.22.1.el9_8
fixed
kernel-64k-debug-core
RHEL 9
0:5.14.0-687.22.1.el9_8
fixed
kernel-64k-debug-devel
RHEL 9
0:5.14.0-687.22.1.el9_8
fixed
kernel-64k-debug-devel-matched
RHEL 9
0:5.14.0-687.22.1.el9_8
fixed
kernel-64k-debug-modules
RHEL 9
0:5.14.0-687.22.1.el9_8
fixed
kernel-64k-debug-modules-core
RHEL 9
0:5.14.0-687.22.1.el9_8
fixed
kernel-64k-debug-modules-extra
RHEL 9
0:5.14.0-687.22.1.el9_8
fixed
kernel-64k-devel
RHEL 9
0:5.14.0-687.22.1.el9_8
fixed
kernel-64k-devel-matched
RHEL 9
0:5.14.0-687.22.1.el9_8
fixed
kernel-64k-modules
RHEL 9
0:5.14.0-687.22.1.el9_8
fixed
kernel-64k-modules-core
RHEL 9
0:5.14.0-687.22.1.el9_8
fixed
kernel-64k-modules-extra
RHEL 9
0:5.14.0-687.22.1.el9_8
fixed
kernel-abi-stablelists
RHEL 8
0:4.18.0-553.144.1.el8_10
fixed
RHEL 8.4 AUS
0:4.18.0-305.199.1.el8_4
fixed
RHEL 8.6 AUS
0:4.18.0-372.204.1.el8_6
fixed
RHEL 8.8 E4S
0:4.18.0-477.156.1.el8_8
fixed
RHEL 8.8 TUS
0:4.18.0-477.156.1.el8_8
fixed
RHEL 9
0:5.14.0-687.22.1.el9_8
fixed
kernel-core
RHEL 8
0:4.18.0-553.144.1.el8_10
fixed
RHEL 8.4 AUS
0:4.18.0-305.199.1.el8_4
fixed
RHEL 8.6 AUS
0:4.18.0-372.204.1.el8_6
fixed
RHEL 8.8 E4S
0:4.18.0-477.156.1.el8_8
fixed
RHEL 8.8 TUS
0:4.18.0-477.156.1.el8_8
fixed
RHEL 9
0:5.14.0-687.22.1.el9_8
fixed
kernel-debug
RHEL 8
0:4.18.0-553.144.1.el8_10
fixed
RHEL 8.4 AUS
0:4.18.0-305.199.1.el8_4
fixed
RHEL 8.6 AUS
0:4.18.0-372.204.1.el8_6
fixed
RHEL 8.8 E4S
0:4.18.0-477.156.1.el8_8
fixed
RHEL 8.8 TUS
0:4.18.0-477.156.1.el8_8
fixed
RHEL 9
0:5.14.0-687.22.1.el9_8
fixed
kernel-debug-core
RHEL 8
0:4.18.0-553.144.1.el8_10
fixed
RHEL 8.4 AUS
0:4.18.0-305.199.1.el8_4
fixed
RHEL 8.6 AUS
0:4.18.0-372.204.1.el8_6
fixed
RHEL 8.8 E4S
0:4.18.0-477.156.1.el8_8
fixed
RHEL 8.8 TUS
0:4.18.0-477.156.1.el8_8
fixed
RHEL 9
0:5.14.0-687.22.1.el9_8
fixed
kernel-debug-devel
RHEL 8
0:4.18.0-553.144.1.el8_10
fixed
RHEL 8.4 AUS
0:4.18.0-305.199.1.el8_4
fixed
RHEL 8.6 AUS
0:4.18.0-372.204.1.el8_6
fixed
RHEL 8.8 E4S
0:4.18.0-477.156.1.el8_8
fixed
RHEL 8.8 TUS
0:4.18.0-477.156.1.el8_8
fixed
RHEL 9
0:5.14.0-687.22.1.el9_8
fixed
kernel-debug-devel-matched
RHEL 9
0:5.14.0-687.22.1.el9_8
fixed
kernel-debug-modules
RHEL 8
0:4.18.0-553.144.1.el8_10
fixed
RHEL 8.4 AUS
0:4.18.0-305.199.1.el8_4
fixed
RHEL 8.6 AUS
0:4.18.0-372.204.1.el8_6
fixed
RHEL 8.8 E4S
0:4.18.0-477.156.1.el8_8
fixed
RHEL 8.8 TUS
0:4.18.0-477.156.1.el8_8
fixed
RHEL 9
0:5.14.0-687.22.1.el9_8
fixed
kernel-debug-modules-core
RHEL 9
0:5.14.0-687.22.1.el9_8
fixed
kernel-debug-modules-extra
RHEL 8
0:4.18.0-553.144.1.el8_10
fixed
RHEL 8.4 AUS
0:4.18.0-305.199.1.el8_4
fixed
RHEL 8.6 AUS
0:4.18.0-372.204.1.el8_6
fixed
RHEL 8.8 E4S
0:4.18.0-477.156.1.el8_8
fixed
RHEL 8.8 TUS
0:4.18.0-477.156.1.el8_8
fixed
RHEL 9
0:5.14.0-687.22.1.el9_8
fixed
kernel-debug-uki-virt
RHEL 9
0:5.14.0-687.22.1.el9_8
fixed
kernel-devel
RHEL 8
0:4.18.0-553.144.1.el8_10
fixed
RHEL 8.4 AUS
0:4.18.0-305.199.1.el8_4
fixed
RHEL 8.6 AUS
0:4.18.0-372.204.1.el8_6
fixed
RHEL 8.8 E4S
0:4.18.0-477.156.1.el8_8
fixed
RHEL 8.8 TUS
0:4.18.0-477.156.1.el8_8
fixed
RHEL 9
0:5.14.0-687.22.1.el9_8
fixed
kernel-devel-matched
RHEL 9
0:5.14.0-687.22.1.el9_8
fixed
kernel-doc
RHEL 8
0:4.18.0-553.144.1.el8_10
fixed
RHEL 8.4 AUS
0:4.18.0-305.199.1.el8_4
fixed
RHEL 8.6 AUS
0:4.18.0-372.204.1.el8_6
fixed
RHEL 8.8 E4S
0:4.18.0-477.156.1.el8_8
fixed
RHEL 8.8 TUS
0:4.18.0-477.156.1.el8_8
fixed
RHEL 9
0:5.14.0-687.22.1.el9_8
fixed
kernel-modules
RHEL 8
0:4.18.0-553.144.1.el8_10
fixed
RHEL 8.4 AUS
0:4.18.0-305.199.1.el8_4
fixed
RHEL 8.6 AUS
0:4.18.0-372.204.1.el8_6
fixed
RHEL 8.8 E4S
0:4.18.0-477.156.1.el8_8
fixed
RHEL 8.8 TUS
0:4.18.0-477.156.1.el8_8
fixed
RHEL 9
0:5.14.0-687.22.1.el9_8
fixed
kernel-modules-core
RHEL 9
0:5.14.0-687.22.1.el9_8
fixed
kernel-modules-extra
RHEL 8
0:4.18.0-553.144.1.el8_10
fixed
RHEL 8.4 AUS
0:4.18.0-305.199.1.el8_4
fixed
RHEL 8.6 AUS
0:4.18.0-372.204.1.el8_6
fixed
RHEL 8.8 E4S
0:4.18.0-477.156.1.el8_8
fixed
RHEL 8.8 TUS
0:4.18.0-477.156.1.el8_8
fixed
RHEL 9
0:5.14.0-687.22.1.el9_8
fixed
kernel-rt
RHEL 8
0:4.18.0-553.144.1.rt7.485.el8_10
fixed
RHEL 9
0:5.14.0-687.22.1.el9_8
fixed
kernel-rt-64k
RHEL 9
0:5.14.0-687.22.1.el9_8
fixed
kernel-rt-64k-core
RHEL 9
0:5.14.0-687.22.1.el9_8
fixed
kernel-rt-64k-debug
RHEL 9
0:5.14.0-687.22.1.el9_8
fixed
kernel-rt-64k-debug-core
RHEL 9
0:5.14.0-687.22.1.el9_8
fixed
kernel-rt-64k-debug-devel
RHEL 9
0:5.14.0-687.22.1.el9_8
fixed
kernel-rt-64k-debug-modules
RHEL 9
0:5.14.0-687.22.1.el9_8
fixed
kernel-rt-64k-debug-modules-core
RHEL 9
0:5.14.0-687.22.1.el9_8
fixed
kernel-rt-64k-debug-modules-extra
RHEL 9
0:5.14.0-687.22.1.el9_8
fixed
kernel-rt-64k-devel
RHEL 9
0:5.14.0-687.22.1.el9_8
fixed
kernel-rt-64k-modules
RHEL 9
0:5.14.0-687.22.1.el9_8
fixed
kernel-rt-64k-modules-core
RHEL 9
0:5.14.0-687.22.1.el9_8
fixed
kernel-rt-64k-modules-extra
RHEL 9
0:5.14.0-687.22.1.el9_8
fixed
kernel-rt-core
RHEL 8
0:4.18.0-553.144.1.rt7.485.el8_10
fixed
RHEL 9
0:5.14.0-687.22.1.el9_8
fixed
kernel-rt-debug
RHEL 8
0:4.18.0-553.144.1.rt7.485.el8_10
fixed
RHEL 9
0:5.14.0-687.22.1.el9_8
fixed
kernel-rt-debug-core
RHEL 8
0:4.18.0-553.144.1.rt7.485.el8_10
fixed
RHEL 9
0:5.14.0-687.22.1.el9_8
fixed
kernel-rt-debug-devel
RHEL 8
0:4.18.0-553.144.1.rt7.485.el8_10
fixed
RHEL 9
0:5.14.0-687.22.1.el9_8
fixed
kernel-rt-debug-kvm
RHEL 8
0:4.18.0-553.144.1.rt7.485.el8_10
fixed
kernel-rt-debug-modules
RHEL 8
0:4.18.0-553.144.1.rt7.485.el8_10
fixed
RHEL 9
0:5.14.0-687.22.1.el9_8
fixed
kernel-rt-debug-modules-core
RHEL 9
0:5.14.0-687.22.1.el9_8
fixed
kernel-rt-debug-modules-extra
RHEL 8
0:4.18.0-553.144.1.rt7.485.el8_10
fixed
RHEL 9
0:5.14.0-687.22.1.el9_8
fixed
kernel-rt-devel
RHEL 8
0:4.18.0-553.144.1.rt7.485.el8_10
fixed
RHEL 9
0:5.14.0-687.22.1.el9_8
fixed
kernel-rt-kvm
RHEL 8
0:4.18.0-553.144.1.rt7.485.el8_10
fixed
kernel-rt-modules
RHEL 8
0:4.18.0-553.144.1.rt7.485.el8_10
fixed
RHEL 9
0:5.14.0-687.22.1.el9_8
fixed
kernel-rt-modules-core
RHEL 9
0:5.14.0-687.22.1.el9_8
fixed
kernel-rt-modules-extra
RHEL 8
0:4.18.0-553.144.1.rt7.485.el8_10
fixed
RHEL 9
0:5.14.0-687.22.1.el9_8
fixed
kernel-tools
RHEL 8
0:4.18.0-553.144.1.el8_10
fixed
RHEL 8.4 AUS
0:4.18.0-305.199.1.el8_4
fixed
RHEL 8.6 AUS
0:4.18.0-372.204.1.el8_6
fixed
RHEL 8.8 E4S
0:4.18.0-477.156.1.el8_8
fixed
RHEL 8.8 TUS
0:4.18.0-477.156.1.el8_8
fixed
RHEL 9
0:5.14.0-687.22.1.el9_8
fixed
kernel-tools-libs
RHEL 8
0:4.18.0-553.144.1.el8_10
fixed
RHEL 8.4 AUS
0:4.18.0-305.199.1.el8_4
fixed
RHEL 8.6 AUS
0:4.18.0-372.204.1.el8_6
fixed
RHEL 8.8 E4S
0:4.18.0-477.156.1.el8_8
fixed
RHEL 8.8 TUS
0:4.18.0-477.156.1.el8_8
fixed
RHEL 9
0:5.14.0-687.22.1.el9_8
fixed
kernel-tools-libs-devel
RHEL 8
0:4.18.0-553.144.1.el8_10
fixed
RHEL 9
0:5.14.0-687.22.1.el9_8
fixed
kernel-uki-virt
RHEL 9
0:5.14.0-687.22.1.el9_8
fixed
kernel-uki-virt-addons
RHEL 9
0:5.14.0-687.22.1.el9_8
fixed
kernel-zfcpdump
RHEL 8
0:4.18.0-553.144.1.el8_10
fixed
RHEL 9
0:5.14.0-687.22.1.el9_8
fixed
kernel-zfcpdump-core
RHEL 8
0:4.18.0-553.144.1.el8_10
fixed
RHEL 9
0:5.14.0-687.22.1.el9_8
fixed
kernel-zfcpdump-devel
RHEL 8
0:4.18.0-553.144.1.el8_10
fixed
RHEL 9
0:5.14.0-687.22.1.el9_8
fixed
kernel-zfcpdump-devel-matched
RHEL 9
0:5.14.0-687.22.1.el9_8
fixed
kernel-zfcpdump-modules
RHEL 8
0:4.18.0-553.144.1.el8_10
fixed
RHEL 9
0:5.14.0-687.22.1.el9_8
fixed
kernel-zfcpdump-modules-core
RHEL 9
0:5.14.0-687.22.1.el9_8
fixed
kernel-zfcpdump-modules-extra
RHEL 8
0:4.18.0-553.144.1.el8_10
fixed
RHEL 9
0:5.14.0-687.22.1.el9_8
fixed
libperf
RHEL 9
0:5.14.0-687.22.1.el9_8
fixed
perf
RHEL 8
0:4.18.0-553.144.1.el8_10
fixed
RHEL 8.4 AUS
0:4.18.0-305.199.1.el8_4
fixed
RHEL 8.6 AUS
0:4.18.0-372.204.1.el8_6
fixed
RHEL 8.8 E4S
0:4.18.0-477.156.1.el8_8
fixed
RHEL 8.8 TUS
0:4.18.0-477.156.1.el8_8
fixed
RHEL 9
0:5.14.0-687.22.1.el9_8
fixed
python3-perf
RHEL 8
0:4.18.0-553.144.1.el8_10
fixed
RHEL 8.4 AUS
0:4.18.0-305.199.1.el8_4
fixed
RHEL 8.6 AUS
0:4.18.0-372.204.1.el8_6
fixed
RHEL 8.8 E4S
0:4.18.0-477.156.1.el8_8
fixed
RHEL 8.8 TUS
0:4.18.0-477.156.1.el8_8
fixed
RHEL 9
0:5.14.0-687.22.1.el9_8
fixed
rtla
RHEL 9
0:5.14.0-687.22.1.el9_8
fixed
rv
RHEL 9
0:5.14.0-687.22.1.el9_8
fixed
Amazon Linux logo
Amazon Linux Releases
Amazon Package
Release
bpftool
Amazon Linux 2023
1:6.1.176-220.358.amzn2023
fixed
bpftool-debuginfo
Amazon Linux 2023
1:6.1.176-220.358.amzn2023
fixed
bpftool6.12
Amazon Linux 2023
1:6.12.88-119.157.amzn2023
fixed
bpftool6.12-debuginfo
Amazon Linux 2023
1:6.12.88-119.157.amzn2023
fixed
bpftool6.18
Amazon Linux 2023
1:6.18.30-61.116.amzn2023
fixed
bpftool6.18-debuginfo
Amazon Linux 2023
1:6.18.30-61.116.amzn2023
fixed
kernel
Amazon Linux 2023
1:6.1.176-220.358.amzn2023
fixed
kernel-debuginfo
Amazon Linux 2023
1:6.1.176-220.358.amzn2023
fixed
kernel-debuginfo-common-aarch64
Amazon Linux 2023
1:6.1.176-220.358.amzn2023
fixed
kernel-debuginfo-common-x86_64
Amazon Linux 2023
1:6.1.176-220.358.amzn2023
fixed
kernel-devel
Amazon Linux 2023
1:6.1.176-220.358.amzn2023
fixed
kernel-headers
Amazon Linux 2023
1:6.1.176-220.358.amzn2023
fixed
kernel-livepatch-6.1.176-220.358
Amazon Linux 2023
1:1.0-0.amzn2023
fixed
kernel-livepatch-6.12.88-119.157
Amazon Linux 2023
1:1.0-0.amzn2023
fixed
kernel-livepatch-6.18.30-61.116
Amazon Linux 2023
1:1.0-0.amzn2023
fixed
kernel-modules-extra
Amazon Linux 2023
1:6.1.176-220.358.amzn2023
fixed
kernel-modules-extra-common
Amazon Linux 2023
1:6.1.176-220.358.amzn2023
fixed
kernel-tools
Amazon Linux 2023
1:6.1.176-220.358.amzn2023
fixed
kernel-tools-debuginfo
Amazon Linux 2023
1:6.1.176-220.358.amzn2023
fixed
kernel-tools-devel
Amazon Linux 2023
1:6.1.176-220.358.amzn2023
fixed
kernel6.12
Amazon Linux 2023
1:6.12.88-119.157.amzn2023
fixed
kernel6.12-debuginfo
Amazon Linux 2023
1:6.12.88-119.157.amzn2023
fixed
kernel6.12-debuginfo-common-aarch64
Amazon Linux 2023
1:6.12.88-119.157.amzn2023
fixed
kernel6.12-debuginfo-common-x86_64
Amazon Linux 2023
1:6.12.88-119.157.amzn2023
fixed
kernel6.12-devel
Amazon Linux 2023
1:6.12.88-119.157.amzn2023
fixed
kernel6.12-headers
Amazon Linux 2023
1:6.12.88-119.157.amzn2023
fixed
kernel6.12-modules-extra
Amazon Linux 2023
1:6.12.88-119.157.amzn2023
fixed
kernel6.12-modules-extra-common
Amazon Linux 2023
1:6.12.88-119.157.amzn2023
fixed
kernel6.12-tools
Amazon Linux 2023
1:6.12.88-119.157.amzn2023
fixed
kernel6.12-tools-debuginfo
Amazon Linux 2023
1:6.12.88-119.157.amzn2023
fixed
kernel6.12-tools-devel
Amazon Linux 2023
1:6.12.88-119.157.amzn2023
fixed
kernel6.18
Amazon Linux 2023
1:6.18.30-61.116.amzn2023
fixed
kernel6.18-debuginfo
Amazon Linux 2023
1:6.18.30-61.116.amzn2023
fixed
kernel6.18-debuginfo-common-aarch64
Amazon Linux 2023
1:6.18.30-61.116.amzn2023
fixed
kernel6.18-debuginfo-common-x86_64
Amazon Linux 2023
1:6.18.30-61.116.amzn2023
fixed
kernel6.18-devel
Amazon Linux 2023
1:6.18.30-61.116.amzn2023
fixed
kernel6.18-headers
Amazon Linux 2023
1:6.18.30-61.116.amzn2023
fixed
kernel6.18-modules-extra
Amazon Linux 2023
1:6.18.30-61.116.amzn2023
fixed
kernel6.18-modules-extra-common
Amazon Linux 2023
1:6.18.30-61.116.amzn2023
fixed
kernel6.18-tools
Amazon Linux 2023
1:6.18.30-61.116.amzn2023
fixed
kernel6.18-tools-debuginfo
Amazon Linux 2023
1:6.18.30-61.116.amzn2023
fixed
kernel6.18-tools-devel
Amazon Linux 2023
1:6.18.30-61.116.amzn2023
fixed
perf
Amazon Linux 2023
1:6.1.176-220.358.amzn2023
fixed
perf-debuginfo
Amazon Linux 2023
1:6.1.176-220.358.amzn2023
fixed
perf6.12
Amazon Linux 2023
1:6.12.88-119.157.amzn2023
fixed
perf6.12-debuginfo
Amazon Linux 2023
1:6.12.88-119.157.amzn2023
fixed
perf6.18
Amazon Linux 2023
1:6.18.30-61.116.amzn2023
fixed
perf6.18-debuginfo
Amazon Linux 2023
1:6.18.30-61.116.amzn2023
fixed
python3-perf
Amazon Linux 2023
1:6.1.176-220.358.amzn2023
fixed
python3-perf-debuginfo
Amazon Linux 2023
1:6.1.176-220.358.amzn2023
fixed
python3-perf6.12
Amazon Linux 2023
1:6.12.88-119.157.amzn2023
fixed
python3-perf6.12-debuginfo
Amazon Linux 2023
1:6.12.88-119.157.amzn2023
fixed
python3-perf6.18
Amazon Linux 2023
1:6.18.30-61.116.amzn2023
fixed
python3-perf6.18-debuginfo
Amazon Linux 2023
1:6.18.30-61.116.amzn2023
fixed
Azure Linux logo
Azure Linux Releases
Azure Package
Release
kernel
Azure Linux 3.0
0:6.6.141.1-1.azl3
fixed
References