CVE-2026-31761
Race Condition in Linux Kernel IIO Gyro MPU3050 Driver
Publication date: 2026-05-01
Last updated on: 2026-05-03
Assigner: kernel.org
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| linux_kernel | linux_kernel | * |
| linux | linux_kernel | * |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-UNKNOWN |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
This vulnerability in the Linux kernel involves the improper placement of the function iio_device_register() within the probe function of the iio: gyro: mpu3050 driver.
The function iio_device_register() was not placed at the end of the probe function, which could lead to race conditions.
The fix moves iio_device_register() to the correct location at the end of the probe function and adjusts iio_device_unregister() accordingly to prevent these race conditions.
How can this vulnerability impact me? :
The vulnerability could cause race conditions during device registration in the Linux kernel's gyro driver, potentially leading to unstable or unpredictable behavior of the device.
Such race conditions might result in system crashes, data corruption, or malfunctioning of the affected hardware component.
What immediate steps should I take to mitigate this vulnerability?
The vulnerability is resolved by moving the iio_device_register() call to the correct location at the end of the probe function in the Linux kernel driver for the mpu3050 gyro sensor. To mitigate this vulnerability, you should update your Linux kernel to a version that includes this fix.