The SentinelOne Annual Threat Report - A Defenders Guide from the FrontlinesThe SentinelOne Annual Threat ReportGet the Report
Experiencing a Breach?Blog
Get StartedContact Us
SentinelOne
  • Platform
    Platform Overview
    • Singularity Platform
      Welcome to Integrated Enterprise Security
    • AI for Security
      Leading the Way in AI-Powered Security Solutions
    • Securing AI
      Accelerate AI Adoption with Secure AI Tools, Apps, and Agents.
    • How It Works
      The Singularity XDR Difference
    • Singularity Marketplace
      One-Click Integrations to Unlock the Power of XDR
    • Pricing & Packaging
      Comparisons and Guidance at a Glance
    Data & AI
    • Purple AI
      Accelerate SecOps with Generative AI
    • Singularity Hyperautomation
      Easily Automate Security Processes
    • AI-SIEM
      The AI SIEM for the Autonomous SOC
    • AI Data Pipelines
      Security Data Pipeline for AI SIEM and Data Optimization
    • Singularity Data Lake
      AI-Powered, Unified Data Lake
    • Singularity Data Lake for Log Analytics
      Seamlessly Ingest Data from On-Prem, Cloud or Hybrid Environments
    Endpoint Security
    • Singularity Endpoint
      Autonomous Prevention, Detection, and Response
    • Singularity XDR
      Native & Open Protection, Detection, and Response
    • Singularity RemoteOps Forensics
      Orchestrate Forensics at Scale
    • Singularity Threat Intelligence
      Comprehensive Adversary Intelligence
    • Singularity Vulnerability Management
      Application & OS Vulnerability Management
    • Singularity Identity
      Identity Threat Detection and Response
    Cloud Security
    • Singularity Cloud Security
      Block Attacks with an AI-Powered CNAPP
    • Singularity Cloud Native Security
      Secure Cloud and Development Resources
    • Singularity Cloud Workload Security
      Real-Time Cloud Workload Protection Platform
    • Singularity Cloud Data Security
      AI-Powered Threat Detection for Cloud Storage
    • Singularity Cloud Security Posture Management
      Detect and Remediate Cloud Misconfigurations
    Securing AI
    • Prompt Security
      Secure AI Tools Across Your Enterprise
  • Why SentinelOne?
    Why SentinelOne?
    • Why SentinelOne?
      Cybersecurity Built for What’s Next
    • Our Customers
      Trusted by the World’s Leading Enterprises
    • Industry Recognition
      Tested and Proven by the Experts
    • About Us
      The Industry Leader in Autonomous Cybersecurity
    Compare SentinelOne
    • Arctic Wolf
    • Broadcom
    • CrowdStrike
    • Cybereason
    • Microsoft
    • Palo Alto Networks
    • Sophos
    • Splunk
    • Trellix
    • Trend Micro
    • Wiz
    Verticals
    • Energy
    • Federal Government
    • Finance
    • Healthcare
    • Higher Education
    • K-12 Education
    • Manufacturing
    • Retail
    • State and Local Government
  • Services
    Managed Services
    • Managed Services Overview
      Wayfinder Threat Detection & Response
    • Threat Hunting
      World-Class Expertise and Threat Intelligence
    • Managed Detection & Response
      24/7/365 Expert MDR Across Your Entire Environment
    • Incident Readiness & Response
      DFIR, Breach Readiness, & Compromise Assessments
    Support, Deployment, & Health
    • Technical Account Management
      Customer Success with Personalized Service
    • SentinelOne GO
      Guided Onboarding & Deployment Advisory
    • SentinelOne University
      Live and On-Demand Training
    • Services Overview
      Comprehensive Solutions for Seamless Security Operations
    • SentinelOne Community
      Community Login
  • Partners
    Our Network
    • MSSP Partners
      Succeed Faster with SentinelOne
    • Singularity Marketplace
      Extend the Power of S1 Technology
    • Cyber Risk Partners
      Enlist Pro Response and Advisory Teams
    • Technology Alliances
      Integrated, Enterprise-Scale Solutions
    • SentinelOne for AWS
      Hosted in AWS Regions Around the World
    • Channel Partners
      Deliver the Right Solutions, Together
    • SentinelOne for Google Cloud
      Unified, Autonomous Security Giving Defenders the Advantage at Global Scale
    • Partner Locator
      Your Go-to Source for Our Top Partners in Your Region
    Partner Portal→
  • Resources
    Resource Center
    • Case Studies
    • Data Sheets
    • eBooks
    • Reports
    • Videos
    • Webinars
    • Whitepapers
    • Events
    View All Resources→
    Blog
    • Feature Spotlight
    • For CISO/CIO
    • From the Front Lines
    • Identity
    • Cloud
    • macOS
    • SentinelOne Blog
    Blog→
    Tech Resources
    • SentinelLABS
    • Ransomware Anthology
    • Cybersecurity 101
  • About
    About SentinelOne
    • About SentinelOne
      The Industry Leader in Cybersecurity
    • Investor Relations
      Financial Information & Events
    • SentinelLABS
      Threat Research for the Modern Threat Hunter
    • Careers
      The Latest Job Opportunities
    • Press & News
      Company Announcements
    • Cybersecurity Blog
      The Latest Cybersecurity Threats, News, & More
    • FAQ
      Get Answers to Our Most Frequently Asked Questions
    • DataSet
      The Live Data Platform
    • S Foundation
      Securing a Safer Future for All
    • S Ventures
      Investing in the Next Generation of Security, Data and AI
  • Pricing
Get StartedContact Us
CVE Vulnerability Database
Vulnerability Database/CVE-2026-23469

CVE-2026-23469: Linux Kernel Race Condition Vulnerability

CVE-2026-23469 is a race condition vulnerability in the Linux kernel's DRM/Imagination driver that causes kernel crashes during GPU suspend operations. This article covers the technical details, affected systems, and mitigation.

Published: April 10, 2026

CVE-2026-23469 Overview

A race condition vulnerability exists in the Linux kernel's drm/imagination GPU driver where the runtime power management (PM) suspend callback fails to synchronize with interrupt handlers running on other CPU cores. This oversight can result in the IRQ handler attempting to access GPU registers after the GPU has been suspended, leading to kernel panics and system crashes.

The vulnerability occurs because the suspend callback does not call synchronize_irq() before proceeding with the power-off sequence, allowing concurrent execution of the IRQ handler while GPU resources are being disabled.

Critical Impact

This vulnerability can cause kernel panics and system crashes when the GPU IRQ handler runs concurrently with a runtime PM suspend operation, potentially leading to denial of service on affected systems.

Affected Products

  • Linux kernel with drm/imagination GPU driver
  • Systems using PowerVR GPU with runtime PM enabled
  • Texas Instruments AM68 SK and similar embedded platforms

Discovery Timeline

  • 2026-04-03 - CVE CVE-2026-23469 published to NVD
  • 2026-04-07 - Last updated in NVD database

Technical Details for CVE-2026-23469

Vulnerability Analysis

This vulnerability represents a classic race condition in the Linux kernel's power management subsystem for the Imagination Technologies GPU driver. The core issue lies in the runtime PM suspend callback's failure to ensure that all interrupt handlers have completed execution before initiating the GPU power-off sequence.

When the system decides to suspend the GPU to save power, it invokes the runtime PM suspend callback. However, this callback does not check whether the IRQ handler (pvr_device_irq_thread_handler) is currently executing on another CPU core. If an interrupt was serviced just before or during the suspend operation, the threaded IRQ handler may continue to run and attempt to access GPU registers through functions like pvr_riscv_irq_pending().

Since the GPU is in the process of being powered down or already suspended, these register accesses result in an asynchronous SError interrupt on ARM64 platforms, causing a kernel panic with error code 0x00000000bf000000.

Root Cause

The root cause is twofold:

  1. Missing synchronization barrier: The runtime PM suspend callback does not call synchronize_irq() to wait for any in-progress IRQ handlers to complete before proceeding with the power-off sequence.

  2. Improper PM resume/put placement: The driver had runtime PM resume and put calls placed inside the threaded IRQ handler, which was both incorrect in approach and positioned improperly (not wrapping all GPU register accesses). This design could also lead to deadlocks between synchronize_irq() called from the suspend callback (holding the device power lock) and the resume callback requiring the same lock.

Attack Vector

This vulnerability is triggered through local system conditions rather than external attack vectors. The race condition manifests under the following circumstances:

The exploitation scenario involves timing-dependent behavior where an interrupt is generated by the GPU just as the runtime PM subsystem initiates a suspend operation. The IRQ handler is dispatched to a different CPU core than the one executing the suspend callback. Without proper synchronization, both operations proceed concurrently.

On ARM64 platforms like the Texas Instruments AM68 SK, attempting to read GPU registers after the device is suspended generates an asynchronous SError interrupt. The kernel's error handling routine then triggers a panic, as the crash signature demonstrates with the call trace showing pvr_riscv_irq_pending+0xc/0x24 being executed when the error occurs.

While this is not a remotely exploitable vulnerability, a local attacker with the ability to influence GPU workloads and system power management policies could potentially trigger denial of service conditions on affected systems.

Detection Methods for CVE-2026-23469

Indicators of Compromise

  • Kernel panic messages containing SError Interrupt with code 0x00000000bf000000
  • Stack traces showing pvr_riscv_irq_pending or pvr_device_irq_thread_handler in the call path
  • System crashes coinciding with GPU suspend/resume cycles
  • irq/234-gpu or similar GPU IRQ thread names in panic logs

Detection Strategies

  • Monitor kernel logs for SError interrupts originating from the drm/imagination driver components
  • Implement kernel oops/panic monitoring to capture stack traces involving pvr_* functions during power management operations
  • Deploy system stability monitoring to detect unexpected reboots correlating with GPU idle periods
  • Use ftrace or perf to trace runtime PM callbacks and IRQ handler execution timing

Monitoring Recommendations

  • Enable kernel crash dump collection (kdump) to capture full diagnostic information when panics occur
  • Configure persistent logging to preserve kernel messages across reboots
  • Monitor for MACHINE_CHECK taint flags ([M]) in kernel logs which indicate hardware-related errors
  • Set up alerting for GPU driver-related errors in dmesg output

How to Mitigate CVE-2026-23469

Immediate Actions Required

  • Apply the kernel patches from the stable branch immediately on affected systems
  • Consider disabling runtime PM for the drm/imagination driver as a temporary workaround if patching is not immediately possible
  • Monitor systems for stability issues and kernel panics until patches are applied
  • Review system logs for any evidence of exploitation or impact from this vulnerability

Patch Information

The Linux kernel developers have released patches to address this vulnerability. The fix adds a call to synchronize_irq() in the power-off sequence to ensure any IRQ handlers in progress on other CPU cores complete before proceeding with GPU suspension. Additionally, the improper runtime PM resume/put calls within the threaded IRQ handler have been removed.

The patches are available through the following kernel git commits:

  • Kernel Git Commit 2d7f05c
  • Kernel Git Commit 772f365
  • Kernel Git Commit 8e0c15e

Workarounds

  • Disable runtime power management for the GPU by setting the appropriate sysfs parameters under /sys/devices/.../power/control to on
  • Reduce GPU workload variability to minimize suspend/resume frequency
  • Pin GPU-related IRQ handlers to specific CPU cores to reduce race condition timing windows
  • Consider kernel parameter adjustments to increase PM autosuspend delay, reducing the frequency of suspend operations
bash
# Disable runtime PM for the GPU device (temporary workaround)
echo "on" > /sys/class/drm/card0/device/power/control

# Increase autosuspend delay to reduce suspend frequency (alternative workaround)
echo 60000 > /sys/class/drm/card0/device/power/autosuspend_delay_ms

Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

  • Vulnerability Details
  • TypeRace Condition

  • Vendor/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.02%

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Kernel Git Commit 2d7f05c

  • Kernel Git Commit 772f365

  • Kernel Git Commit 8e0c15e
  • Related CVEs
  • CVE-2026-31740: Linux Kernel Race Condition Vulnerability

  • CVE-2026-31751: Linux Kernel Race Condition Vulnerability

  • CVE-2026-31726: Linux Kernel Race Condition Vulnerability

  • CVE-2026-31700: Linux Kernel Race Condition Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the World’s Most Advanced Cybersecurity Platform

See how our intelligent, autonomous cybersecurity platform can protect your organization now and into the future.

Try SentinelOne
  • Get Started
  • Get a Demo
  • Product Tour
  • Why SentinelOne
  • Pricing & Packaging
  • FAQ
  • Contact
  • Contact Us
  • Customer Support
  • SentinelOne Status
  • Language
  • Platform
  • Singularity Platform
  • Singularity Endpoint
  • Singularity Cloud
  • Singularity AI-SIEM
  • Singularity Identity
  • Singularity Marketplace
  • Purple AI
  • Services
  • Wayfinder TDR
  • SentinelOne GO
  • Technical Account Management
  • Support Services
  • Verticals
  • Energy
  • Federal Government
  • Finance
  • Healthcare
  • Higher Education
  • K-12 Education
  • Manufacturing
  • Retail
  • State and Local Government
  • Cybersecurity for SMB
  • Resources
  • Blog
  • Labs
  • Case Studies
  • Videos
  • Product Tours
  • Events
  • Cybersecurity 101
  • eBooks
  • Webinars
  • Whitepapers
  • Press
  • News
  • Ransomware Anthology
  • Company
  • About Us
  • Our Customers
  • Careers
  • Partners
  • Legal & Compliance
  • Security & Compliance
  • Investor Relations
  • S Foundation
  • S Ventures

©2026 SentinelOne, All Rights Reserved.

Privacy Notice Terms of Use

English