CVE-2023-53343

Publication date 18 September 2025

Last updated 19 September 2025


Ubuntu priority

In the Linux kernel, the following vulnerability has been resolved: icmp6: Fix null-ptr-deref of ip6_null_entry->rt6i_idev in icmp6_dev(). With some IPv6 Ext Hdr (RPL, SRv6, etc.), we can send a packet that has the link-local address as src and dst IP and will be forwarded to an external IP in the IPv6 Ext Hdr. For example, the script below generates a packet whose src IP is the link-local address and dst is updated to 11::. # for f in $(find /proc/sys/net/ -name *seg6_enabled*); do echo 1 > $f; done # python3 >>> from socket import * >>> from scapy.all import * >>> >>> SRC_ADDR = DST_ADDR = "fe80::5054:ff:fe12:3456" >>> >>> pkt = IPv6(src=SRC_ADDR, dst=DST_ADDR) >>> pkt /= IPv6ExtHdrSegmentRouting(type=4, addresses=["11::", "22::"], segleft=1) >>> >>> sk = socket(AF_INET6, SOCK_RAW, IPPROTO_RAW) >>> sk.sendto(bytes(pkt), (DST_ADDR, 0)) For such a packet, we call ip6_route_input() to look up a route for the next destination in these three functions depending on the header type. * ipv6_rthdr_rcv() * ipv6_rpl_srh_rcv() * ipv6_srh_rcv() If no route is found, ip6_null_entry is set to skb, and the following dst_input(skb) calls ip6_pkt_drop(). Finally, in icmp6_dev(), we dereference skb_rt6_info(skb)->rt6i_idev->dev as the input device is the loopback interface. Then, we have to check if skb_rt6_info(skb)->rt6i_idev is NULL or not to avoid NULL pointer deref for ip6_null_entry. BUG: kernel NULL pointer dereference, address: 0000000000000000 PF: supervisor read access in kernel mode PF: error_code(0x0000) - not-present page PGD 0 P4D 0 Oops: 0000 [#1] PREEMPT SMP PTI CPU: 0 PID: 157 Comm: python3 Not tainted 6.4.0-11996-gb121d614371c #35 Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS rel-1.16.0-0-gd239552ce722-prebuilt.qemu.org 04/01/2014 RIP: 0010:icmp6_send (net/ipv6/icmp.c:436 net/ipv6/icmp.c:503) Code: fe ff ff 48 c7 40 30 c0 86 5d 83 e8 c6 44 1c 00 e9 c8 fc ff ff 49 8b 46 58 48 83 e0 fe 0f 84 4a fb ff ff 48 8b 80 d0 00 00 00 <48> 8b 00 44 8b 88 e0 00 00 00 e9 34 fb ff ff 4d 85 ed 0f 85 69 01 RSP: 0018:ffffc90000003c70 EFLAGS: 00000286 RAX: 0000000000000000 RBX: 0000000000000001 RCX: 00000000000000e0 RDX: 0000000000000021 RSI: 0000000000000000 RDI: ffff888006d72a18 RBP: ffffc90000003d80 R08: 0000000000000000 R09: 0000000000000001 R10: ffffc90000003d98 R11: 0000000000000040 R12: ffff888006d72a10 R13: 0000000000000000 R14: ffff8880057fb800 R15: ffffffff835d86c0 FS: 00007f9dc72ee740(0000) GS:ffff88807dc00000(0000) knlGS:0000000000000000 CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 CR2: 0000000000000000 CR3: 00000000057b2000 CR4: 00000000007506f0 PKRU: 55555554 Call Trace: <IRQ> ip6_pkt_drop (net/ipv6/route.c:4513) ipv6_rthdr_rcv (net/ipv6/exthdrs.c:640 net/ipv6/exthdrs.c:686) ip6_protocol_deliver_rcu (net/ipv6/ip6_input.c:437 (discriminator 5)) ip6_input_finish (./include/linux/rcupdate.h:781 net/ipv6/ip6_input.c:483) __netif_receive_skb_one_core (net/core/dev.c:5455) process_backlog (./include/linux/rcupdate.h:781 net/core/dev.c:5895) __napi_poll (net/core/dev.c:6460) net_rx_action (net/core/dev.c:6529 net/core/dev.c:6660) __do_softirq (./arch/x86/include/asm/jump_label.h:27 ./include/linux/jump_label.h:207 ./include/trace/events/irq.h:142 kernel/softirq.c:554) do_softirq (kernel/softirq.c:454 kernel/softirq.c:441) </IRQ> <TASK> __local_bh_enable_ip (kernel/softirq.c:381) __dev_queue_xmit (net/core/dev.c:4231) ip6_finish_output2 (./include/net/neighbour.h:544 net/ipv6/ip6_output.c:135) rawv6_sendmsg (./include/net/dst.h:458 ./include/linux/netfilter.h:303 net/ipv6/raw.c:656 net/ipv6/raw.c:914) sock_sendmsg (net/socket.c:725 net/socket.c:748) __sys_sendto (net/socket.c:2134) __x64_sys_sendto (net/socket.c:2146 net/socket.c:2142 net/socket.c:2142) do_syscall_64 (arch/x86/entry/common.c:50 arch/x86/entry/common.c:80) entry_SYSCALL_64_after_hwframe (arch/x86/entry/entry_64.S:120) RIP: 0033:0x7f9dc751baea Code: d8 64 89 02 48 c7 c0 ff f ---truncated---

Status

Package Ubuntu Release Status
linux 25.04 plucky
Needs evaluation
24.04 LTS noble
Needs evaluation
22.04 LTS jammy
Needs evaluation
20.04 LTS focal
Needs evaluation
18.04 LTS bionic
Needs evaluation
16.04 LTS xenial
Needs evaluation
14.04 LTS trusty
Needs evaluation
linux-hwe 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy Not in release
18.04 LTS bionic Ignored replaced by linux-hwe-5.4
16.04 LTS xenial
Needs evaluation
linux-hwe-5.4 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy Not in release
18.04 LTS bionic
Needs evaluation
linux-hwe-5.8 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy Not in release
20.04 LTS focal Ignored superseded by linux-hwe-5.11
linux-hwe-5.11 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy Not in release
20.04 LTS focal Ignored superseded by linux-hwe-5.13
linux-hwe-5.13 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy Not in release
20.04 LTS focal Ignored superseded by linux-hwe-5.15
linux-hwe-5.15 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy Not in release
20.04 LTS focal
Needs evaluation
linux-hwe-5.19 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy Ignored superseded by linux-hwe-6.2
linux-hwe-6.2 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy Ignored superseded by linux-hwe-6.5
linux-hwe-6.5 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy Ignored superseded by linux-hwe-6.8
linux-hwe-6.8 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy
Needs evaluation
linux-hwe-6.11 25.04 plucky Not in release
24.04 LTS noble Ignored superseded by linux-hwe-6.14
22.04 LTS jammy Not in release
linux-hwe-6.14 25.04 plucky Not in release
24.04 LTS noble
Needs evaluation
22.04 LTS jammy Not in release
linux-hwe-edge 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy Not in release
18.04 LTS bionic Ignored superseded by linux-hwe-5.4
16.04 LTS xenial Ignored superseded by linux-hwe
linux-lts-xenial 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy Not in release
14.04 LTS trusty
Needs evaluation
linux-kvm 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy
Needs evaluation
20.04 LTS focal
Needs evaluation
18.04 LTS bionic
Needs evaluation
16.04 LTS xenial
Needs evaluation
linux-allwinner-5.19 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy Ignored end of kernel support
linux-aws 25.04 plucky
Needs evaluation
24.04 LTS noble
Needs evaluation
22.04 LTS jammy
Needs evaluation
20.04 LTS focal
Needs evaluation
18.04 LTS bionic
Needs evaluation
16.04 LTS xenial
Needs evaluation
14.04 LTS trusty
Needs evaluation
linux-aws-5.0 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy Not in release
18.04 LTS bionic Ignored superseded by linux-aws-5.3
linux-aws-5.3 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy Not in release
18.04 LTS bionic Ignored superseded by linux-aws-5.4
linux-aws-5.4 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy Not in release
18.04 LTS bionic
Needs evaluation
linux-aws-5.8 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy Not in release
20.04 LTS focal Ignored superseded by linux-aws-5.11
linux-aws-5.11 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy Not in release
20.04 LTS focal Ignored superseded by linux-aws-5.13
linux-aws-5.13 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy Not in release
20.04 LTS focal Ignored superseded by linux-aws-5.15
linux-aws-5.15 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy Not in release
20.04 LTS focal
Needs evaluation
linux-aws-5.19 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy Ignored superseded by linux-aws-6.2
linux-aws-6.2 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy Ignored superseded by linux-aws-6.5
linux-aws-6.5 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy Ignored superseded by linux-aws-6.8
linux-aws-6.8 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy
Needs evaluation
linux-aws-6.14 25.04 plucky Not in release
24.04 LTS noble
Needs evaluation
22.04 LTS jammy Not in release
linux-aws-hwe 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy Not in release
16.04 LTS xenial
Needs evaluation
linux-azure 25.04 plucky
Needs evaluation
24.04 LTS noble
Needs evaluation
22.04 LTS jammy
Needs evaluation
20.04 LTS focal
Needs evaluation
18.04 LTS bionic Ignored superseded by linux-azure-5.3
16.04 LTS xenial
Needs evaluation
14.04 LTS trusty
Needs evaluation
linux-azure-4.15 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy Not in release
18.04 LTS bionic
Needs evaluation
linux-azure-5.3 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy Not in release
18.04 LTS bionic Ignored superseded by linux-azure-5.4
linux-azure-5.4 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy Not in release
18.04 LTS bionic
Needs evaluation
linux-azure-5.8 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy Not in release
20.04 LTS focal Ignored superseded by linux-azure-5.11
linux-azure-5.11 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy Not in release
20.04 LTS focal Ignored superseded by linux-azure-5.13
linux-azure-5.13 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy Not in release
20.04 LTS focal Ignored superseded by linux-azure-5.15
linux-azure-5.15 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy Not in release
20.04 LTS focal
Needs evaluation
linux-azure-5.19 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy Ignored superseded by linux-azure-6.2
linux-azure-6.2 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy Ignored superseded by linux-azure-6.5
linux-azure-6.5 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy Ignored superseded by linux-azure-6.8
linux-azure-6.8 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy
Needs evaluation
linux-azure-6.11 25.04 plucky Not in release
24.04 LTS noble Ignored superseded by linux-azure-6.14
22.04 LTS jammy Not in release
linux-azure-fde 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy
Needs evaluation
20.04 LTS focal Ignored superseded by linux-azure-fde-5.15
linux-azure-fde-5.15 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy Not in release
20.04 LTS focal
Needs evaluation
linux-azure-fde-5.19 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy Ignored superseded by linux-azure-fde-6.2
linux-azure-fde-6.2 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy Ignored replaced by linux-azure-6.5
linux-azure-nvidia 25.04 plucky Not in release
24.04 LTS noble
Needs evaluation
22.04 LTS jammy Not in release
linux-bluefield 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy Not in release
20.04 LTS focal
Needs evaluation
linux-azure-edge 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy Not in release
18.04 LTS bionic Ignored superseded by linux-azure-5.3
linux-fips 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy  
Needs evaluation
20.04 LTS focal  
Needs evaluation
18.04 LTS bionic  
Needs evaluation
16.04 LTS xenial  
Needs evaluation
linux-aws-fips 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy  
Needs evaluation
20.04 LTS focal  
Needs evaluation
18.04 LTS bionic  
Needs evaluation
linux-azure-fips 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy  
Needs evaluation
20.04 LTS focal  
Needs evaluation
18.04 LTS bionic  
Needs evaluation
linux-gcp-fips 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy  
Needs evaluation
20.04 LTS focal  
Needs evaluation
18.04 LTS bionic  
Needs evaluation
linux-gcp 25.04 plucky
Needs evaluation
24.04 LTS noble
Needs evaluation
22.04 LTS jammy
Needs evaluation
20.04 LTS focal
Needs evaluation
18.04 LTS bionic Ignored superseded by linux-gcp-5.3
16.04 LTS xenial
Needs evaluation
linux-gcp-4.15 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy Not in release
18.04 LTS bionic
Needs evaluation
linux-gcp-5.3 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy Not in release
18.04 LTS bionic Ignored superseded by linux-gcp-5.4
linux-gcp-5.4 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy Not in release
18.04 LTS bionic
Needs evaluation
linux-gcp-5.8 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy Not in release
20.04 LTS focal Ignored superseded by linux-gcp-5.11
linux-gcp-5.11 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy Not in release
20.04 LTS focal Ignored superseded by linux-gcp-5.13
linux-gcp-5.13 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy Not in release
20.04 LTS focal Ignored superseded by linux-gcp-5.15
linux-gcp-5.15 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy Not in release
20.04 LTS focal
Needs evaluation
linux-gcp-5.19 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy Ignored superseded by linux-gcp-6.2
linux-gcp-6.2 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy Ignored superseded by linux-gcp-6.5
linux-gcp-6.5 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy Ignored superseded by linux-gcp-6.8
linux-gcp-6.8 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy
Needs evaluation
linux-gcp-6.11 25.04 plucky Not in release
24.04 LTS noble Ignored superseded by linux-gcp-6.14
22.04 LTS jammy Not in release
linux-gcp-6.14 25.04 plucky Not in release
24.04 LTS noble
Needs evaluation
22.04 LTS jammy Not in release
linux-gke 25.04 plucky Not in release
24.04 LTS noble
Needs evaluation
22.04 LTS jammy
Needs evaluation
20.04 LTS focal Ignored end of kernel support
linux-gke-4.15 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy Not in release
18.04 LTS bionic Ignored superseded by linux-gke-5.0
linux-gke-5.4 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy Not in release
18.04 LTS bionic Ignored end of kernel support
linux-gke-5.15 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy Not in release
20.04 LTS focal Ignored end of kernel support
linux-gkeop 25.04 plucky Not in release
24.04 LTS noble
Needs evaluation
22.04 LTS jammy
Needs evaluation
20.04 LTS focal Ignored end of kernel support
linux-gkeop-5.4 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy Not in release
18.04 LTS bionic Ignored end of kernel support
linux-gkeop-5.15 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy Not in release
20.04 LTS focal Ignored end of kernel support
linux-ibm 25.04 plucky Not in release
24.04 LTS noble
Needs evaluation
22.04 LTS jammy
Needs evaluation
20.04 LTS focal
Needs evaluation
linux-ibm-5.4 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy Not in release
18.04 LTS bionic
Needs evaluation
linux-ibm-5.15 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy Not in release
20.04 LTS focal
Needs evaluation
linux-ibm-6.8 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy
Needs evaluation
linux-intel-5.13 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy Not in release
20.04 LTS focal Ignored end of kernel support
linux-intel-iotg 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy
Needs evaluation
linux-intel-iotg-5.15 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy Not in release
20.04 LTS focal
Needs evaluation
linux-iot 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy Not in release
20.04 LTS focal
Needs evaluation
linux-intel-iot-realtime 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy  
Needs evaluation
linux-lowlatency 25.04 plucky Not in release
24.04 LTS noble
Needs evaluation
22.04 LTS jammy
Needs evaluation
linux-lowlatency-hwe-5.15 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy Not in release
20.04 LTS focal
Needs evaluation
linux-lowlatency-hwe-5.19 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy Ignored superseded by linux-lowlatency-hwe-6.2
linux-lowlatency-hwe-6.2 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy Ignored superseded by linux-lowlatency-hwe-6.5
linux-lowlatency-hwe-6.5 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy Ignored superseded by linux-lowlatency-hwe-6.8
linux-lowlatency-hwe-6.8 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy
Needs evaluation
linux-lowlatency-hwe-6.11 25.04 plucky Not in release
24.04 LTS noble Ignored replaced by linux-hwe-6.14
22.04 LTS jammy Not in release
linux-nvidia 25.04 plucky Not in release
24.04 LTS noble
Needs evaluation
22.04 LTS jammy
Needs evaluation
linux-nvidia-6.2 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy Ignored superseded by linux-nvidia-6.5
linux-nvidia-6.5 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy Ignored superseded by linux-nvidia-6.8
linux-nvidia-6.8 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy
Needs evaluation
linux-nvidia-6.11 25.04 plucky Not in release
24.04 LTS noble
Needs evaluation
22.04 LTS jammy Not in release
linux-nvidia-lowlatency 25.04 plucky Not in release
24.04 LTS noble
Needs evaluation
22.04 LTS jammy Not in release
linux-nvidia-tegra 25.04 plucky Not in release
24.04 LTS noble
Needs evaluation
22.04 LTS jammy
Needs evaluation
linux-nvidia-tegra-5.15 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy Not in release
20.04 LTS focal
Needs evaluation
linux-nvidia-tegra-igx 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy
Needs evaluation
linux-oracle 25.04 plucky
Needs evaluation
24.04 LTS noble
Needs evaluation
22.04 LTS jammy
Needs evaluation
20.04 LTS focal
Needs evaluation
18.04 LTS bionic
Needs evaluation
16.04 LTS xenial
Needs evaluation
linux-oracle-5.0 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy Not in release
18.04 LTS bionic Ignored superseded by linux-oracle-5.3
linux-oracle-5.3 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy Not in release
18.04 LTS bionic Ignored superseded by linux-oracle-5.4
linux-oracle-5.4 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy Not in release
18.04 LTS bionic
Needs evaluation
linux-oracle-5.8 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy Not in release
20.04 LTS focal Ignored superseded by linux-oracle-5.11
linux-oracle-5.11 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy Not in release
20.04 LTS focal Ignored superseded by linux-oracle-5.13
linux-oracle-5.13 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy Not in release
20.04 LTS focal Ignored superseded by linux-oracle-5.15
linux-oracle-5.15 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy Not in release
20.04 LTS focal
Needs evaluation
linux-oracle-6.5 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy Ignored superseded by linux-oracle-6.8
linux-oracle-6.8 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy
Needs evaluation
linux-oracle-6.14 25.04 plucky Not in release
24.04 LTS noble
Needs evaluation
22.04 LTS jammy Not in release
linux-oem 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy Not in release
18.04 LTS bionic Ignored replaced by linux-hwe-5.4
linux-oem-5.6 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy Not in release
20.04 LTS focal Ignored superseded by linux-oem-5.10
linux-oem-5.10 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy Not in release
20.04 LTS focal Ignored superseded by linux-oem-5.13
linux-oem-5.13 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy Not in release
20.04 LTS focal Ignored superseded by linux-oem-5.14
linux-oem-5.14 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy Not in release
20.04 LTS focal Ignored replaced by linux-hwe-5.15
linux-oem-5.17 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy Ignored superseded by linux-oem-6.1
linux-oem-6.0 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy Ignored superseded by linux-oem-6.1
linux-oem-6.1 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy Ignored superseded by linux-oem-6.5
linux-oem-6.5 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy Ignored superseded by linux-oem-6.8
linux-oem-6.8 25.04 plucky Not in release
24.04 LTS noble
Needs evaluation
22.04 LTS jammy Not in release
linux-oem-6.11 25.04 plucky Not in release
24.04 LTS noble
Needs evaluation
22.04 LTS jammy Not in release
linux-oem-6.14 25.04 plucky Not in release
24.04 LTS noble
Needs evaluation
22.04 LTS jammy Not in release
linux-raspi 25.04 plucky
Needs evaluation
24.04 LTS noble
Needs evaluation
22.04 LTS jammy
Needs evaluation
20.04 LTS focal
Needs evaluation
linux-raspi2 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy Not in release
20.04 LTS focal Ignored replaced by linux-raspi
linux-raspi-5.4 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy Not in release
18.04 LTS bionic
Needs evaluation
linux-raspi-realtime 25.04 plucky Not in release
24.04 LTS noble  
Needs evaluation
22.04 LTS jammy Not in release
linux-realtime 25.04 plucky
Needs evaluation
24.04 LTS noble  
Needs evaluation
22.04 LTS jammy  
Needs evaluation
linux-realtime-6.8 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy  
Needs evaluation
linux-realtime-6.14 25.04 plucky Not in release
24.04 LTS noble  
Needs evaluation
22.04 LTS jammy Not in release
linux-riscv 25.04 plucky
Needs evaluation
24.04 LTS noble Ignored replaced by linux-riscv-6.14
22.04 LTS jammy Ignored end of kernel support
20.04 LTS focal Ignored superseded by linux-riscv-5.8
linux-riscv-5.8 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy Not in release
20.04 LTS focal Ignored superseded by linux-riscv-5.11
linux-riscv-5.11 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy Not in release
20.04 LTS focal Ignored superseded by linux-riscv-5.13
linux-riscv-5.15 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy Not in release
20.04 LTS focal
Needs evaluation
linux-riscv-5.19 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy Ignored end of kernel support
linux-riscv-6.5 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy Ignored superseded by linux-riscv-6.8
linux-riscv-6.8 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy
Needs evaluation
linux-riscv-6.14 25.04 plucky Not in release
24.04 LTS noble
Needs evaluation
22.04 LTS jammy Not in release
linux-starfive-5.19 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy Ignored end of kernel support
linux-starfive-6.2 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy Ignored superseded by linux-starfive-6.5
linux-starfive-6.5 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy Ignored end of kernel support
linux-xilinx-zynqmp 25.04 plucky Not in release
24.04 LTS noble Not in release
22.04 LTS jammy
Needs evaluation
20.04 LTS focal
Needs evaluation

Patch details

For informational purposes only. We recommend not to cherry-pick updates. How can I get the fixes?

Package Patch details
linux