AUGUST 22, 2026
Live Feed
Back to database
Case File

CVE-2026-68092

UNKNOWN · CVSS N/A EPSS 0.17%

Source: NVD + CISA KEV + EPSS · Published 2026-08-10 · Last synced 2026-08-22

CyberRota Analysis

AI-Generated

The vulnerability affects the Linux kernel, specifically in the handling of the jiffies clocksource during early boot processes. This flaw can lead to significant boot delays, as the clocksource is utilized before being properly registered, resulting in timekeeping issues. Organizations using Linux systems, particularly those leveraging XEN HVM, should prioritize addressing this vulnerability to ensure optimal boot performance and system reliability.

CVE
CVE-2026-68092
Severity
UNKNOWN
CVSS
N/A
EPSS
0.17%
Linux

Original NVD Description

In the Linux kernel, the following vulnerability has been resolved: time/jiffies: Register jiffies clocksource before usage Teddy reported that a XEN HVM has a long boot delay, which was bisected to the recent enhancements to the negative motion detection. It turned out that the jiffies clocksource is used in early boot before it is registered, which leaves the max_delta_raw field at zero. That causes the read out to be clamped to the max delta of 0, which means time is not making progress. Cure it by ensuring that it is initialized before its first usage in timekeeping_init().