CVE-2025-38234

| EUVD-2025-20022 MEDIUM
2025-07-04 416baaa9-dc9f-4396-8d5f-8c081fb06d67
4.7
CVSS 3.1
Share

CVSS Vector

CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:N/I:N/A:H
Attack Vector
Local
Attack Complexity
High
Privileges Required
Low
User Interaction
None
Scope
Unchanged
Confidentiality
None
Integrity
None
Availability
High

Lifecycle Timeline

4
Analysis Generated
Mar 16, 2026 - 02:42 vuln.today
EUVD ID Assigned
Mar 16, 2026 - 02:42 euvd
EUVD-2025-20022
Patch Released
Mar 16, 2026 - 02:42 nvd
Patch available
CVE Published
Jul 04, 2025 - 14:15 nvd
MEDIUM 4.7

Description

In the Linux kernel, the following vulnerability has been resolved: sched/rt: Fix race in push_rt_task Overview ======== When a CPU chooses to call push_rt_task and picks a task to push to another CPU's runqueue then it will call find_lock_lowest_rq method which would take a double lock on both CPUs' runqueues. If one of the locks aren't readily available, it may lead to dropping the current runqueue lock and reacquiring both the locks at once. During this window it is possible that the task is already migrated and is running on some other CPU. These cases are already handled. However, if the task is migrated and has already been executed and another CPU is now trying to wake it up (ttwu) such that it is queued again on the runqeue (on_rq is 1) and also if the task was run by the same CPU, then the current checks will pass even though the task was migrated out and is no longer in the pushable tasks list. Crashes ======= This bug resulted in quite a few flavors of crashes triggering kernel panics with various crash signatures such as assert failures, page faults, null pointer dereferences, and queue corruption errors all coming from scheduler itself. Some of the crashes: -> kernel BUG at kernel/sched/rt.c:1616! BUG_ON(idx >= MAX_RT_PRIO) Call Trace: ? __die_body+0x1a/0x60 ? die+0x2a/0x50 ? do_trap+0x85/0x100 ? pick_next_task_rt+0x6e/0x1d0 ? do_error_trap+0x64/0xa0 ? pick_next_task_rt+0x6e/0x1d0 ? exc_invalid_op+0x4c/0x60 ? pick_next_task_rt+0x6e/0x1d0 ? asm_exc_invalid_op+0x12/0x20 ? pick_next_task_rt+0x6e/0x1d0 __schedule+0x5cb/0x790 ? update_ts_time_stats+0x55/0x70 schedule_idle+0x1e/0x40 do_idle+0x15e/0x200 cpu_startup_entry+0x19/0x20 start_secondary+0x117/0x160 secondary_startup_64_no_verify+0xb0/0xbb -> BUG: kernel NULL pointer dereference, address: 00000000000000c0 Call Trace: ? __die_body+0x1a/0x60 ? no_context+0x183/0x350 ? __warn+0x8a/0xe0 ? exc_page_fault+0x3d6/0x520 ? asm_exc_page_fault+0x1e/0x30 ? pick_next_task_rt+0xb5/0x1d0 ? pick_next_task_rt+0x8c/0x1d0 __schedule+0x583/0x7e0 ? update_ts_time_stats+0x55/0x70 schedule_idle+0x1e/0x40 do_idle+0x15e/0x200 cpu_startup_entry+0x19/0x20 start_secondary+0x117/0x160 secondary_startup_64_no_verify+0xb0/0xbb -> BUG: unable to handle page fault for address: ffff9464daea5900 kernel BUG at kernel/sched/rt.c:1861! BUG_ON(rq->cpu != task_cpu(p)) -> kernel BUG at kernel/sched/rt.c:1055! BUG_ON(!rq->nr_running) Call Trace: ? __die_body+0x1a/0x60 ? die+0x2a/0x50 ? do_trap+0x85/0x100 ? dequeue_top_rt_rq+0xa2/0xb0 ? do_error_trap+0x64/0xa0 ? dequeue_top_rt_rq+0xa2/0xb0 ? exc_invalid_op+0x4c/0x60 ? dequeue_top_rt_rq+0xa2/0xb0 ? asm_exc_invalid_op+0x12/0x20 ? dequeue_top_rt_rq+0xa2/0xb0 dequeue_rt_entity+0x1f/0x70 dequeue_task_rt+0x2d/0x70 __schedule+0x1a8/0x7e0 ? blk_finish_plug+0x25/0x40 schedule+0x3c/0xb0 futex_wait_queue_me+0xb6/0x120 futex_wait+0xd9/0x240 do_futex+0x344/0xa90 ? get_mm_exe_file+0x30/0x60 ? audit_exe_compare+0x58/0x70 ? audit_filter_rules.constprop.26+0x65e/0x1220 __x64_sys_futex+0x148/0x1f0 do_syscall_64+0x30/0x80 entry_SYSCALL_64_after_hwframe+0x62/0xc7 -> BUG: unable to handle page fault for address: ffff8cf3608bc2c0 Call Trace: ? __die_body+0x1a/0x60 ? no_context+0x183/0x350 ? spurious_kernel_fault+0x171/0x1c0 ? exc_page_fault+0x3b6/0x520 ? plist_check_list+0x15/0x40 ? plist_check_list+0x2e/0x40 ? asm_exc_page_fault+0x1e/0x30 ? _cond_resched+0x15/0x30 ? futex_wait_queue_me+0xc8/0x120 ? futex_wait+0xd9/0x240 ? try_to_wake_up+0x1b8/0x490 ? futex_wake+0x78/0x160 ? do_futex+0xcd/0xa90 ? plist_check_list+0x15/0x40 ? plist_check_list+0x2e/0x40 ? plist_del+0x6a/0xd0 ? plist_check_list+0x15/0x40 ? plist_check_list+0x2e/0x40 ? dequeue_pushable_task+0x20/0x70 ? __schedule+0x382/0x7e0 ? asm_sysvec_reschedule_i ---truncated---

Analysis

In the Linux kernel, the following vulnerability has been resolved: sched/rt: Fix race in push_rt_task Overview ==== When a CPU chooses to call push_rt_task and picks a task to push to another CPU's runqueue then it will call...

Technical Context

A race condition occurs when the behavior of software depends on the timing of events, such as the order of execution of threads or processes.

Affected Products

Affected products: Linux Linux Kernel

Remediation

A vendor patch is available — apply it immediately. Use proper synchronization mechanisms (locks, mutexes, atomic operations). Implement file locking for filesystem operations. Avoid TOCTOU patterns.

Priority Score

24
Low Medium High Critical
KEV: 0
EPSS: +0.0
CVSS: +24
POC: 0

Vendor Status

Ubuntu

Priority: Medium
linux-hwe
Release Status Version
bionic ignored end of standard support
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
trusty DNE -
focal DNE -
upstream released 6.16~rc1
questing DNE -
xenial needed -
linux-hwe-5.4
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
trusty DNE -
xenial DNE -
focal DNE -
upstream released 6.16~rc1
questing DNE -
bionic needed -
linux-hwe-5.8
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-hwe-5.11
trusty DNE -
xenial DNE -
bionic DNE -
questing DNE -
focal ignored end of standard support
linux-hwe-5.11
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-hwe-5.13
trusty DNE -
xenial DNE -
bionic DNE -
questing DNE -
focal ignored end of standard support
linux-hwe-5.13
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-hwe-5.15
trusty DNE -
xenial DNE -
bionic DNE -
questing DNE -
focal ignored end of standard support
linux-hwe-5.15
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
trusty DNE -
xenial DNE -
bionic DNE -
upstream released 6.16~rc1
questing DNE -
focal needed -
linux-hwe-5.19
Release Status Version
jammy ignored superseded by linux-hwe-6.2
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-hwe-6.2
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
linux-hwe-6.2
Release Status Version
jammy ignored superseded by linux-hwe-6.5
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-hwe-6.5
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
linux-hwe-6.5
Release Status Version
jammy ignored superseded by linux-hwe-6.8
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-hwe-6.8
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
linux-hwe-6.8
Release Status Version
noble DNE -
oracular DNE -
plucky DNE -
jammy needed -
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
upstream released 6.16~rc1
questing DNE -
linux-hwe-6.11
Release Status Version
jammy DNE -
oracular DNE -
plucky DNE -
noble ignored superseded by linux-hwe-6.14, was needs-triage
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
upstream released 6.16~rc1
questing DNE -
linux-hwe-edge
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored end of life
trusty DNE -
focal DNE -
questing DNE -
bionic ignored end of standard support
xenial ignored end of standard support
linux-lts-xenial
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
trusty ignored end of standard support, was needed
xenial DNE -
bionic DNE -
focal DNE -
upstream released 6.16~rc1
questing DNE -
linux-kvm
Release Status Version
noble DNE -
oracular DNE -
plucky DNE -
jammy needed -
trusty DNE -
upstream released 6.16~rc1
questing DNE -
bionic needed -
focal needed -
xenial needed -
linux-allwinner-5.19
Release Status Version
jammy ignored end of kernel support
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored end of life
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
linux-aws-5.0
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-aws-5.3
trusty DNE -
xenial DNE -
focal DNE -
questing DNE -
bionic ignored end of standard support
linux-aws-5.3
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-aws-5.4
trusty DNE -
xenial DNE -
focal DNE -
questing DNE -
bionic ignored end of standard support
linux-aws-5.4
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
trusty DNE -
xenial DNE -
focal DNE -
upstream released 6.16~rc1
questing DNE -
bionic needed -
linux-aws-5.8
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-aws-5.11
trusty DNE -
xenial DNE -
bionic DNE -
questing DNE -
focal ignored end of standard support
linux-aws-5.11
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-aws-5.13
trusty DNE -
xenial DNE -
bionic DNE -
questing DNE -
focal ignored end of standard support
linux-aws-5.13
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-aws-5.15
trusty DNE -
xenial DNE -
bionic DNE -
questing DNE -
focal ignored end of standard support
linux-aws-5.15
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
trusty DNE -
xenial DNE -
bionic DNE -
upstream released 6.16~rc1
questing DNE -
focal needed -
linux-aws-5.19
Release Status Version
jammy ignored superseded by linux-aws-6.2
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-aws-6.2
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
linux-aws-6.2
Release Status Version
jammy ignored superseded by linux-aws-6.5
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-aws-6.5
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
linux-aws-6.5
Release Status Version
jammy ignored superseded by linux-aws-6.8
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-aws-6.8
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
linux-aws-6.8
Release Status Version
noble DNE -
oracular DNE -
plucky DNE -
jammy needed -
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
upstream released 6.16~rc1
questing DNE -
linux-aws-hwe
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
trusty DNE -
bionic DNE -
focal DNE -
upstream released 6.16~rc1
questing DNE -
xenial needed -
linux-azure-4.15
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
trusty DNE -
xenial DNE -
focal DNE -
upstream released 6.16~rc1
questing DNE -
bionic needed -
linux-azure-5.3
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-azure-5.4
trusty DNE -
xenial DNE -
focal DNE -
questing DNE -
bionic ignored end of standard support
linux-azure-5.4
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
trusty DNE -
xenial DNE -
focal DNE -
upstream released 6.16~rc1
questing DNE -
bionic needed -
linux-azure-5.8
Release Status Version
focal ignored end of standard support
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-azure-5.11
trusty DNE -
xenial DNE -
bionic DNE -
questing DNE -
linux-azure-5.11
Release Status Version
focal ignored end of standard support
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-azure-5.13
trusty DNE -
xenial DNE -
bionic DNE -
questing DNE -
linux-azure-5.13
Release Status Version
focal ignored end of standard support
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-azure-5.15
trusty DNE -
xenial DNE -
bionic DNE -
questing DNE -
linux-azure-5.15
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
trusty DNE -
xenial DNE -
bionic DNE -
upstream released 6.16~rc1
questing DNE -
focal needed -
linux-azure-5.19
Release Status Version
jammy ignored superseded by linux-azure-6.2
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-azure-6.2
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
linux-azure-6.2
Release Status Version
jammy ignored superseded by linux-azure-6.5
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-azure-6.5
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
linux-azure-6.5
Release Status Version
jammy ignored superseded by linux-azure-6.8
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-azure-6.8
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
linux-azure-6.8
Release Status Version
noble DNE -
oracular DNE -
plucky DNE -
jammy needed -
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
upstream released 6.16~rc1
questing DNE -
linux-azure-6.11
Release Status Version
jammy DNE -
oracular DNE -
plucky DNE -
noble ignored superseded by linux-azure-6.14, was needs-triage
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
upstream released 6.16~rc1
questing DNE -
linux-azure-fde
Release Status Version
oracular DNE -
noble needed -
jammy needed -
trusty DNE -
xenial DNE -
bionic DNE -
upstream released 6.16~rc1
plucky not-affected 6.14.0-1014.14
questing needs-triage -
focal ignored end of standard support
linux-azure-fde-5.15
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
trusty DNE -
xenial DNE -
bionic DNE -
upstream released 6.16~rc1
questing DNE -
focal needed -
linux-azure-fde-5.19
Release Status Version
jammy ignored superseded by linux-azure-fde-6.2
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-azure-fde-6.2
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
linux-azure-fde-6.2
Release Status Version
jammy ignored replaced by linux-azure-6.5
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored replaced by linux-azure-6.5
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
linux-azure-nvidia
Release Status Version
jammy DNE -
oracular DNE -
plucky DNE -
noble needed -
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
upstream released 6.16~rc1
questing DNE -
linux-bluefield
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
trusty DNE -
xenial DNE -
bionic DNE -
upstream released 6.16~rc1
questing DNE -
focal needed -
linux-azure-edge
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-azure-5.3
trusty DNE -
xenial DNE -
focal DNE -
questing DNE -
bionic ignored end of standard support
linux-fips
Release Status Version
oracular DNE -
plucky DNE -
bionic needed -
focal needed -
jammy needed -
xenial needed -
trusty DNE -
upstream released 6.16~rc1
questing DNE -
noble needed -
linux-aws-fips
Release Status Version
oracular DNE -
plucky DNE -
noble needed -
bionic needed -
focal needed -
jammy needed -
trusty DNE -
upstream released 6.16~rc1
questing DNE -
xenial DNE -
linux-azure-fips
Release Status Version
oracular DNE -
plucky DNE -
bionic needed -
focal needed -
jammy needed -
trusty DNE -
upstream released 6.16~rc1
questing DNE -
noble needed -
xenial DNE -
linux-gcp-fips
Release Status Version
oracular DNE -
plucky DNE -
bionic needed -
focal needed -
jammy needed -
trusty DNE -
upstream released 6.16~rc1
questing DNE -
noble needed -
xenial DNE -
linux-gcp-4.15
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
bionic needed -
trusty DNE -
xenial DNE -
focal DNE -
upstream released 6.16~rc1
questing DNE -
linux-gcp-5.3
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-gcp-5.4
trusty DNE -
xenial DNE -
focal DNE -
questing DNE -
bionic ignored end of standard support
linux-gcp-5.4
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
trusty DNE -
xenial DNE -
focal DNE -
upstream released 6.16~rc1
questing DNE -
bionic needed -
linux-gcp-5.8
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-gcp-5.11
trusty DNE -
xenial DNE -
bionic DNE -
questing DNE -
focal ignored end of standard support
linux-gcp-5.11
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-gcp-5.13
trusty DNE -
xenial DNE -
bionic DNE -
questing DNE -
focal ignored end of standard support
linux-gcp-5.13
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-gcp-5.15
trusty DNE -
xenial DNE -
bionic DNE -
questing DNE -
focal ignored end of standard support
linux-gcp-5.15
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
focal needed -
trusty DNE -
xenial DNE -
bionic DNE -
upstream released 6.16~rc1
questing DNE -
linux-gcp-5.19
Release Status Version
jammy ignored superseded by linux-gcp-6.2
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-gcp-6.2
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
linux-gcp-6.2
Release Status Version
jammy ignored superseded by linux-gcp-6.5
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-gcp-6.5
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
linux-gcp-6.5
Release Status Version
jammy ignored superseded by linux-gcp-6.8
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-gcp-6.8
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
linux-gcp-6.8
Release Status Version
noble DNE -
oracular DNE -
plucky DNE -
jammy needed -
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
upstream released 6.16~rc1
questing DNE -
linux-gcp-6.11
Release Status Version
jammy DNE -
oracular DNE -
plucky DNE -
noble ignored superseded by linux-gcp-6.14, was needs-triage
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
upstream released 6.16~rc1
questing DNE -
linux-gke
Release Status Version
focal ignored end of kernel support
oracular DNE -
plucky DNE -
jammy needed -
noble needed -
upstream released 6.16~rc1
trusty DNE -
xenial ignored end of standard support
bionic DNE -
questing DNE -
linux-gke-4.15
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-gke-5.0
trusty DNE -
xenial DNE -
focal DNE -
questing DNE -
bionic ignored end of standard support
linux-gke-5.4
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored end of life
trusty DNE -
xenial DNE -
focal DNE -
questing DNE -
bionic ignored end of standard support
linux-gke-5.15
Release Status Version
focal ignored end of kernel support
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored end of life
trusty DNE -
xenial DNE -
bionic DNE -
questing DNE -
linux-gkeop
Release Status Version
focal ignored end of kernel support
oracular DNE -
plucky DNE -
jammy needed -
noble needed -
upstream released 6.16~rc1
trusty DNE -
xenial DNE -
bionic DNE -
questing DNE -
linux-gkeop-5.4
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored end of life
trusty DNE -
xenial DNE -
focal DNE -
questing DNE -
bionic ignored end of standard support
linux-gkeop-5.15
Release Status Version
focal ignored end of kernel support
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream released 6.16~rc1
trusty DNE -
xenial DNE -
bionic DNE -
questing DNE -
linux-ibm
Release Status Version
oracular DNE -
plucky DNE -
jammy needed -
noble needed -
trusty DNE -
xenial DNE -
bionic DNE -
upstream released 6.16~rc1
questing DNE -
focal needed -
linux-ibm-5.4
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
trusty DNE -
xenial DNE -
focal DNE -
upstream released 6.16~rc1
questing DNE -
bionic needed -
linux-ibm-5.15
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
trusty DNE -
xenial DNE -
bionic DNE -
upstream released 6.16~rc1
questing DNE -
focal needed -
linux-ibm-6.8
Release Status Version
noble DNE -
oracular DNE -
plucky DNE -
jammy needed -
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
upstream released 6.16~rc1
questing DNE -
linux-intel-5.13
Release Status Version
focal ignored end of kernel support
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored end of life
trusty DNE -
xenial DNE -
bionic DNE -
questing DNE -
linux-intel-iotg
Release Status Version
noble DNE -
oracular DNE -
plucky DNE -
jammy needed -
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
upstream released 6.16~rc1
questing DNE -
linux-intel-iotg-5.15
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
trusty DNE -
xenial DNE -
bionic DNE -
upstream released 6.16~rc1
questing DNE -
focal needed -
linux-iot
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
trusty DNE -
xenial DNE -
bionic DNE -
upstream released 6.16~rc1
questing DNE -
focal needed -
linux-intel-iot-realtime
Release Status Version
noble DNE -
oracular DNE -
plucky DNE -
jammy needed -
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
upstream released 6.16~rc1
questing DNE -
linux-lowlatency
Release Status Version
plucky DNE -
jammy needed -
noble needed -
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
oracular ignored end of life, was needed
upstream released 6.16~rc1
questing DNE -
linux-lowlatency-hwe-5.15
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
trusty DNE -
xenial DNE -
bionic DNE -
upstream released 6.16~rc1
questing DNE -
focal needed -
linux-lowlatency-hwe-5.19
Release Status Version
jammy ignored superseded by linux-lowlatency-hwe-6.2
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-lowlatency-hwe-6.2
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
linux-lowlatency-hwe-6.2
Release Status Version
jammy ignored superseded by linux-lowlatency-hwe-6.5
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-lowlatency-hwe-6.5
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
linux-lowlatency-hwe-6.5
Release Status Version
jammy ignored superseded by linux-lowlatency-hwe-6.8
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-lowlatency-hwe-6.8
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
linux-lowlatency-hwe-6.8
Release Status Version
noble DNE -
oracular DNE -
plucky DNE -
jammy needed -
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
upstream released 6.16~rc1
questing DNE -
linux-lowlatency-hwe-6.11
Release Status Version
jammy DNE -
oracular DNE -
plucky DNE -
noble ignored replaced by linux-hwe-6.14, was needs-triage
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
upstream released 6.16~rc1
questing DNE -
linux-nvidia
Release Status Version
oracular DNE -
plucky DNE -
jammy needed -
noble needed -
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
upstream released 6.16~rc1
questing DNE -
linux-nvidia-6.2
Release Status Version
jammy ignored superseded by linux-nvidia-6.5
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-nvidia-6.5
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
linux-nvidia-6.5
Release Status Version
jammy ignored superseded by linux-nvidia-6.8
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-nvidia-6.8
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
linux-nvidia-6.8
Release Status Version
noble DNE -
oracular DNE -
plucky DNE -
jammy needed -
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
upstream released 6.16~rc1
questing DNE -
linux-nvidia-lowlatency
Release Status Version
jammy DNE -
oracular DNE -
plucky DNE -
noble needed -
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
upstream released 6.16~rc1
questing DNE -
linux-nvidia-tegra
Release Status Version
oracular DNE -
plucky DNE -
jammy needed -
noble needed -
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
upstream released 6.16~rc1
questing DNE -
linux-nvidia-tegra-5.15
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
trusty DNE -
xenial DNE -
bionic DNE -
upstream released 6.16~rc1
questing DNE -
focal needed -
linux-nvidia-tegra-igx
Release Status Version
noble DNE -
oracular DNE -
plucky DNE -
jammy needed -
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
upstream released 6.16~rc1
questing DNE -
linux-oracle-5.0
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-oracle-5.3
trusty DNE -
xenial DNE -
focal DNE -
questing DNE -
bionic ignored end of standard support
linux-oracle-5.3
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-oracle-5.4
trusty DNE -
xenial DNE -
focal DNE -
questing DNE -
bionic ignored end of standard support
linux-oracle-5.4
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
trusty DNE -
xenial DNE -
focal DNE -
upstream released 6.16~rc1
questing DNE -
bionic needed -
linux-oracle-5.8
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-oracle-5.11
trusty DNE -
xenial DNE -
bionic DNE -
questing DNE -
focal ignored end of standard support
linux-oracle-5.11
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-oracle-5.13
trusty DNE -
xenial DNE -
bionic DNE -
questing DNE -
focal ignored end of standard support
linux-oracle-5.13
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-oracle-5.15
trusty DNE -
xenial DNE -
bionic DNE -
questing DNE -
focal ignored end of standard support
linux-oracle-5.15
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
trusty DNE -
xenial DNE -
bionic DNE -
upstream released 6.16~rc1
questing DNE -
focal needed -
linux-oracle-6.5
Release Status Version
jammy ignored superseded by linux-oracle-6.8
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-oracle-6.8
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
linux-oracle-6.8
Release Status Version
noble DNE -
oracular DNE -
plucky DNE -
jammy needed -
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
upstream released 6.16~rc1
questing DNE -
linux-oem
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored end of life
trusty DNE -
xenial ignored end of standard support
focal DNE -
questing DNE -
bionic ignored end of standard support
linux-oem-5.6
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-oem-5.10
trusty DNE -
xenial DNE -
bionic DNE -
questing DNE -
focal ignored end of standard support
linux-oem-5.10
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-oem-5.13
trusty DNE -
xenial DNE -
bionic DNE -
questing DNE -
focal ignored end of standard support
linux-oem-5.13
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-oem-5.14
trusty DNE -
xenial DNE -
bionic DNE -
questing DNE -
focal ignored end of standard support
linux-oem-5.14
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored replaced by linux-hwe-5.15
trusty DNE -
xenial DNE -
bionic DNE -
questing DNE -
focal ignored end of standard support
linux-oem-5.17
Release Status Version
jammy ignored superseded by linux-oem-6.1
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-oem-6.1
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
linux-oem-6.0
Release Status Version
jammy ignored superseded by linux-oem-6.1
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-oem-6.1
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
linux-oem-6.1
Release Status Version
jammy ignored superseded by linux-oem-6.5
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-oem-6.5
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
linux-oem-6.5
Release Status Version
jammy ignored superseded by linux-oem-6.8
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-oem-6.8
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
linux-oem-6.8
Release Status Version
jammy DNE -
oracular DNE -
plucky DNE -
noble ignored superseded by linux-oem-6.14, was needed
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
upstream released 6.16~rc1
questing DNE -
linux-oem-6.11
Release Status Version
jammy DNE -
oracular DNE -
plucky DNE -
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
upstream released 6.16~rc1
questing DNE -
noble ignored superseded by linux-oem-6.14, was needed
linux-raspi2
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored replaced by linux-raspi
trusty DNE -
xenial ignored end of standard support
bionic ignored end of standard support
questing DNE -
focal ignored end of standard support
linux-raspi-5.4
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream released 6.16~rc1
trusty DNE -
xenial DNE -
focal DNE -
questing DNE -
bionic needed -
linux-raspi-realtime
Release Status Version
jammy DNE -
oracular DNE -
plucky DNE -
noble needed -
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
upstream released 6.16~rc1
questing DNE -
linux-riscv
Release Status Version
jammy ignored end of kernel support
noble ignored replaced by linux-riscv-6.14
trusty DNE -
xenial DNE -
bionic DNE -
oracular ignored end of life, was needed
upstream released 6.16~rc1
plucky released 6.14.0-34.34.1
questing not-affected 6.17.0-4.4.1
focal ignored end of standard support
linux-riscv-5.8
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-riscv-5.11
trusty DNE -
xenial DNE -
bionic DNE -
questing DNE -
focal ignored end of standard support
linux-riscv-5.11
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-riscv-5.13
trusty DNE -
xenial DNE -
bionic DNE -
questing DNE -
focal ignored end of standard support
linux-riscv-5.15
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
trusty DNE -
xenial DNE -
bionic DNE -
upstream released 6.16~rc1
questing DNE -
focal needed -
linux-riscv-5.19
Release Status Version
jammy ignored end of kernel support
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored end of life
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
linux-riscv-6.5
Release Status Version
jammy ignored superseded by linux-riscv-6.8
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-riscv-6.8
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
linux-riscv-6.8
Release Status Version
noble DNE -
oracular DNE -
plucky DNE -
jammy needed -
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
upstream released 6.16~rc1
questing DNE -
linux-starfive-5.19
Release Status Version
jammy ignored end of kernel support
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored end of life
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
linux-starfive-6.2
Release Status Version
jammy ignored superseded by linux-starfive-6.5
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-starfive-6.5
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
linux-starfive-6.5
Release Status Version
jammy ignored end of kernel support
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored end of life
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
linux-xilinx-zynqmp
Release Status Version
noble DNE -
oracular DNE -
plucky DNE -
jammy needed -
trusty DNE -
xenial DNE -
bionic DNE -
upstream released 6.16~rc1
questing DNE -
focal needed -
linux
Release Status Version
jammy needed -
trusty ignored end of standard support, was needed
bionic needed -
noble pending -
upstream released 6.16~rc1
oracular ignored end of life, was needed
plucky released 6.14.0-34.34
questing not-affected 6.16.0-13.13
focal needed -
xenial needed -
linux-aws
Release Status Version
jammy needed -
noble needed -
trusty ignored end of standard support, was needed
upstream released 6.16~rc1
oracular ignored end of life, was needed
plucky released 6.14.0-1015.15
questing not-affected 6.16.0-1001.1
bionic needed -
focal needed -
xenial needed -
linux-azure
Release Status Version
jammy needed -
noble needed -
trusty ignored end of standard support, was needed
oracular ignored end of life, was needed
upstream released 6.16~rc1
plucky released 6.14.0-1014.14
questing not-affected 6.16.0-1001.1
focal needed -
xenial needed -
bionic ignored end of standard support
linux-gcp
Release Status Version
jammy needed -
noble needed -
plucky released 6.14.0-1018.19
xenial needed -
trusty DNE -
oracular ignored end of life, was needed
upstream released 6.16~rc1
questing not-affected 6.16.0-1001.1
focal needed -
bionic ignored end of standard support
linux-oracle
Release Status Version
jammy needed -
noble needed -
plucky released 6.14.0-1015.15
trusty DNE -
oracular ignored end of life, was needed
upstream released 6.16~rc1
questing not-affected 6.16.0-1001.1
bionic needed -
focal needed -
xenial needed -
linux-raspi
Release Status Version
jammy needed -
noble needed -
upstream released 6.16~rc1
trusty DNE -
xenial DNE -
bionic DNE -
oracular ignored end of life, was needed
questing not-affected 6.17.0-1003.3
plucky released 6.14.0-1016.16
focal needed -
linux-realtime
Release Status Version
jammy needed -
noble needed -
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
oracular ignored end of life, was needed
upstream released 6.16~rc1
questing not-affected 6.17.0-1001.2
plucky released 6.14.0-1014.14
linux-intel
Release Status Version
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
jammy DNE -
oracular DNE -
plucky DNE -
noble ignored end of kernel support, was needed
upstream released 6.16~rc1
questing DNE -
linux-oem-6.14
Release Status Version
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
jammy DNE -
oracular DNE -
plucky DNE -
upstream released 6.16~rc1
noble released 6.14.0-1014.14
questing DNE -
linux-riscv-6.14
Release Status Version
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
jammy DNE -
oracular DNE -
plucky DNE -
upstream released 6.16~rc1
questing DNE -
noble released 6.14.0-34.34.1~24.04.1
linux-aws-6.14
Release Status Version
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
jammy DNE -
plucky DNE -
upstream released 6.16~rc1
questing DNE -
noble released 6.14.0-1015.15~24.04.1
linux-gcp-6.14
Release Status Version
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
jammy DNE -
plucky DNE -
noble released 6.14.0-1018.19~24.04.1
upstream released 6.16~rc1
questing DNE -
linux-hwe-6.14
Release Status Version
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
jammy DNE -
plucky DNE -
upstream released 6.16~rc1
noble not-affected -
questing DNE -
linux-oracle-6.14
Release Status Version
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
jammy DNE -
plucky DNE -
noble released 6.14.0-1015.15~24.04.1
upstream released 6.16~rc1
questing DNE -
linux-nvidia-6.11
Release Status Version
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
jammy DNE -
plucky DNE -
upstream released 6.16~rc1
noble ignored end of kernel support, was needed
questing DNE -
linux-realtime-6.14
Release Status Version
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
jammy DNE -
plucky DNE -
upstream released 6.16~rc1
noble released 6.14.0-1014.14~24.04.1
questing DNE -
linux-realtime-6.8
Release Status Version
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
jammy needed -
noble DNE -
plucky DNE -
upstream released 6.16~rc1
questing DNE -
linux-azure-6.14
Release Status Version
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
jammy DNE -
plucky DNE -
questing DNE -
upstream released 6.16~rc1
noble released 6.14.0-1014.14~24.04.1
linux-azure-fde-6.14
Release Status Version
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
jammy DNE -
plucky DNE -
questing DNE -
noble not-affected 6.14.0-1014.14~24.04.1
upstream released 6.16~rc1
linux-azure-nvidia-6.14
Release Status Version
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
jammy DNE -
plucky DNE -
questing DNE -
noble released 6.14.0-1007.7
upstream released 6.16~rc1
linux-xilinx
Release Status Version
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
jammy DNE -
noble needed -
plucky not-affected -
questing DNE -
upstream released 6.16~rc1
linux-oem-6.17
Release Status Version
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
jammy DNE -
noble not-affected 6.17.0-1005.5
plucky DNE -
questing DNE -
upstream released 6.16~rc1
linux-azure-fde-6.8
Release Status Version
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
jammy needed -
noble DNE -
plucky DNE -
questing DNE -
upstream released 6.16~rc1
linux-aws-6.17
Release Status Version
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
jammy DNE -
questing DNE -
noble not-affected 6.17.0-1005.5~24.04.2
upstream released 6.16~rc1
linux-gcp-6.17
Release Status Version
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
jammy DNE -
questing DNE -
noble not-affected 6.17.0-1004.4~24.04.3
upstream released 6.16~rc1
linux-hwe-6.17
Release Status Version
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
jammy DNE -
questing DNE -
noble not-affected 6.17.0-14.14~24.04.1
upstream released 6.16~rc1
linux-oracle-6.17
Release Status Version
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
jammy DNE -
questing DNE -
noble not-affected 6.17.0-1004.4~24.04.2
upstream released 6.16~rc1
linux-riscv-6.17
Release Status Version
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
jammy DNE -
questing DNE -
noble not-affected 6.17.0-14.14.1~24.04.1
upstream released 6.16~rc1
linux-azure-6.17
Release Status Version
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
jammy DNE -
questing DNE -
noble not-affected 6.17.0-1008.8~24.04.1
upstream released 6.16~rc1
linux-azure-fde-6.17
Release Status Version
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
jammy DNE -
noble needs-triage -
questing DNE -
upstream released 6.16~rc1

Debian

linux
Release Status Fixed Version Urgency
bullseye vulnerable 5.10.223-1 -
bullseye (security) vulnerable 5.10.251-1 -
bookworm vulnerable 6.1.159-1 -
bookworm (security) vulnerable 6.1.164-1 -
trixie fixed 6.12.69-1 -
trixie (security) fixed 6.12.74-2 -
forky fixed 6.19.6-2 -
sid fixed 6.19.8-1 -
(unstable) fixed 6.16.3-1 -

Share

CVE-2025-38234 vulnerability details – vuln.today

This site uses cookies essential for authentication and security. No tracking or analytics cookies are used. Privacy Policy