CVE-2026-64374

HIGHPre-NVD 7.57.5
EchelonGraph scoreMEDIUM confidence

Score 7.5 from GitHub Security Advisory (severity: HIGH) published 2026-07-25. a secondary CVSS source baseline 7.5; sources differ by 0.0.

Triggered by: GitHub Security Advisory CVSS
Sources: epss, ghsa, secondary
Trending — 4 sources updated this week
7.5EG
EchelonGraph verdictPlan a fixSerious severity, but no confirmed exploitation yet.
  • High severity, but no confirmed exploitation yet
CISA-KEV: Not listedEPSS PROB: 0%CVSS: 7.5Exploit: None knownExposed: 0

A fix is available — apply it.

In the Linux kernel, the following vulnerability has been resolved:

sched/rt: Have RT_PUSH_IPI be default off for non PREEMPT_RT

RT migration is done aggressively. When a CPU schedules out a high priority RT task for a lower priority task, it will look to see if there's any RT tasks that are waiting to run on another CPU that is of higher priority than the task this CPU is about to run. If it finds one, it will pull that task over to the CPU and allow it to run there instead.

Normally, this pulling is done by looking at the RT overloaded mask (rto) which contains all the CPUs in the scheduler domain with RT tasks that are waiting to run due to a higher priority RT task currently running on their CPU. The CPU that is about to schedule a lower priority task will grab the rq lock of the overloaded CPU and move the RT task from that CPU's runqueue to the local one and schedule the higher priority RT task.

This caused issues when a lot of CPUs would schedule a lower priority task at the same time. They would all try to grab the same runqueue lock of the CPU with the overloaded RT tasks. Only the first CPU that got in will get that task. All the others would wait until they got the runqueue lock and see there's nothing to pull and do nothing. On systems with lots of CPUs, this caused a large latency (up to 500us) which is beyond what PREEMPT_RT is to allow.

The solution to that was to create an RT_PUSH_IPI logic. When any CPU wanted to pull a task, instead of grabbing the runqueue lock of the overloaded CPU, it would start by sending an IPI to the overloaded CPU, and that IPI handler would have the CPU with the waiting RT task do a push instead. Then that handler would send an IPI to the next CPU with overloaded RT tasks, and so on. Note, after the first CPU starts this process, if another CPU wanted to do a pull, it would see that the process has already begun and would only increment a counter to have the IPIs continue again.

The RT_PUSH_IPI solved the latency problem with PREEMPT_RT but could cause a new issue with non PREEMPT_RT. Namely, softirqs run in a threaded context on PREEMPT_RT but they can run in an interrupt context in non-RT.

If an IPI lands on a CPU that has just woken up multiple RT tasks and the current CPU is running a non RT or a low priority RT task, instead of doing a push, it would simply do a schedule on that CPU. But if a softirq was also executing on this CPU, the schedule would need to wait until the softirq finished. Until then, the CPU would still be considered overloaded as there are RT tasks still waiting to run on it.

A live lock occurred on a workload that was doing heavy networking traffic on a large machine where the softirqs would run 500us out of 750us. And it would also be waking up RT tasks, causing the RT pull logic to be constantly executed.

When a softirq triggered on a CPU with RT tasks queued but not running yet, and the other CPUs would see this CPU as being overloaded, they would send an IPI over to it. The CPU would notice that the waiting RT tasks are of higher priority than the currently running task and simply schedule that CPU instead. But because the softirq was executing, before it could schedule, it would receive another IPI to do the same. The amount of IPIs would slow down the currently running softirq so much that before it could return back to task context, it would execute another softirq never allowing the CPU to schedule. This live locked that CPU.

As RT_PUSH_IPI was created to help PREEMPT_RT, make it default off if PREEMPT_RT is not enabled.

CVSS v3
7.5
EG Score
7.5(medium)
EG Risk
38(Track)
EG Risk 38/100SSVC: Track

EG Risk is EchelonGraph's 0–100 priority score: it fuses intrinsic severity with real-world exploitation and automatability so you can rank equal-severity CVEs and fix the most dangerous first. Higher = act sooner. Distinct from the 0–10 EG Score (severity).

How it’s computed
Severity75% × 45%
Exploitation0% × 40%
Automatability30% × 15%
Action: Routine — remediate on your standard cadence.
EPSS PROB
0%
EPSS %ILE
33%
KEV
Not listed

Published

July 25, 2026

Last Modified

September 8, 2026

Advisory Details (8)

Auto-updated Jul 27, 2026
No patch confirmed yet.
generic

sched/rt: Have RT_PUSH_IPI be default off for non PREEMPT_RT - kernel/git/stable/linux.git - Linux kernel stable tree

https://git.kernel.org/stable/c/dd29c017aed628076e915fe4cdfb5392fd4c5cab
generic

sched/rt: Have RT_PUSH_IPI be default off for non PREEMPT_RT - kernel/git/stable/linux.git - Linux kernel stable tree

https://git.kernel.org/stable/c/d8312a56d9a162e3ec76476aa487e7d20bc602e9
generic

sched/rt: Have RT_PUSH_IPI be default off for non PREEMPT_RT - kernel/git/stable/linux.git - Linux kernel stable tree

https://git.kernel.org/stable/c/b99f04ae3d200d2f8844aa29145bd18eccbeecde
generic

sched/rt: Have RT_PUSH_IPI be default off for non PREEMPT_RT - kernel/git/stable/linux.git - Linux kernel stable tree

https://git.kernel.org/stable/c/a18f80bf5359238c4f067d691b96af00286fdd89
generic

sched/rt: Have RT_PUSH_IPI be default off for non PREEMPT_RT - kernel/git/stable/linux.git - Linux kernel stable tree

https://git.kernel.org/stable/c/89237c8fc15d8016a194076e648ccb57d75e65ae
generic

sched/rt: Have RT_PUSH_IPI be default off for non PREEMPT_RT - kernel/git/stable/linux.git - Linux kernel stable tree

https://git.kernel.org/stable/c/860aaff72c8446fed5e576249e19952883a18885
generic

sched/rt: Have RT_PUSH_IPI be default off for non PREEMPT_RT - kernel/git/stable/linux.git - Linux kernel stable tree

https://git.kernel.org/stable/c/4bd0da48fbc1dbef6774175129107fbbdd353e26
generic

sched/rt: Have RT_PUSH_IPI be default off for non PREEMPT_RT - kernel/git/stable/linux.git - Linux kernel stable tree

https://git.kernel.org/stable/c/44aae426dbfd51286f7eb601cfa14bc32164812a

Vendor Advisories for CVE-2026-64374(2)

These vendors published their own advisory mentioning this CVE — often with vendor-specific remediation steps + affected product lists not in NVD.

Patch Availability(5)

Patches are aggregated from vendor advisories (Red Hat, Microsoft, Cisco, GitHub) and package ecosystems (OSV, GHSA). Multiple rows for the same upstream release have been deduplicated.

Affected Packages

(6 across 4 ecosystems)
Debian:11(2)
PackageVulnerable rangeFixed inDependents
linux5.10.103-1 ... 5.10.92-2 (55 versions)5.10.262-1
linux-6.16.1.106-3~deb11u1 ... 6.1.177-1~deb11u1 (22 versions)6.1.180-1~deb11u1
Debian:12(2)
PackageVulnerable rangeFixed inDependents
linux6.1.106-1 ... 6.1.99-1 (55 versions)6.1.180-1
linux-6.126.12.100-1~deb12u1
Debian:13(1)
PackageVulnerable rangeFixed inDependents
linux6.12.38-1 ... 6.12.95-1~bpo12+1 (30 versions)6.12.96-1
Debian:14(1)
PackageVulnerable rangeFixed inDependents
linux6.12.100-1 ... 7.1~rc7-1~exp1 (158 versions)7.1.4-1

Weakness Classification(1)

MITRE Common Weakness Enumeration — the root-cause categories this CVE belongs to.

Additional Vendor Advisories

(5)

Data Freshness Timeline

(refreshed 27× in last 7d / 122× in last 30d)

Each row is a source pipeline that fetched or updated this CVE on that date, with what changed. For example, "NVD update" means NVD published or revised its analysis for this CVE; "MITRE cvelistV5" means we ingested or refreshed it from the CNA feed. Most recent first.

Showing the most recent 100 of 259 total refreshes for this CVE.

  1. 2026-09-18 19:47 UTCEG score recompute
  2. 2026-09-18 19:47 UTCVendor advisory
  3. 2026-09-18 19:47 UTCGHSA enrichment
  4. 2026-09-18 19:28 UTCEPSS rescore
  5. 2026-09-18 02:47 UTCEG score recompute
  6. 2026-09-18 02:47 UTCVendor advisory
  7. 2026-09-18 02:47 UTCGHSA enrichment
  8. 2026-09-17 01:54 UTCEG score recompute
  9. 2026-09-17 01:54 UTCVendor advisory
  10. 2026-09-17 01:54 UTCGHSA enrichment
  11. 2026-09-16 14:08 UTCEPSS rescore
  12. 2026-09-16 06:31 UTCEG score recompute
  13. 2026-09-16 06:31 UTCVendor advisory
  14. 2026-09-16 06:31 UTCGHSA enrichment
  15. 2026-09-16 05:15 UTCEPSS rescore
  16. 2026-09-15 09:24 UTCEG score recompute
  17. 2026-09-15 09:24 UTCVendor advisory
  18. 2026-09-15 09:24 UTCGHSA enrichment
  19. 2026-09-14 15:53 UTCVendor advisory
  20. 2026-09-14 15:53 UTCGHSA enrichment
  21. 2026-09-14 02:59 UTCEG score recompute
  22. 2026-09-14 02:59 UTCVendor advisory
  23. 2026-09-14 02:59 UTCGHSA enrichment
  24. 2026-09-13 15:23 UTCVendor advisory
  25. 2026-09-13 15:23 UTCGHSA enrichment
Show 75 more
  1. 2026-09-13 03:19 UTCVendor advisory
  2. 2026-09-13 03:19 UTCGHSA enrichment
  3. 2026-09-12 15:43 UTCEG score recompute
  4. 2026-09-12 15:43 UTCVendor advisory
  5. 2026-09-12 15:43 UTCGHSA enrichment
  6. 2026-09-12 04:07 UTCVendor advisory
  7. 2026-09-12 04:07 UTCGHSA enrichment
  8. 2026-09-11 16:23 UTCEG score recompute
  9. 2026-09-11 16:23 UTCVendor advisory
  10. 2026-09-11 16:23 UTCGHSA enrichment
  11. 2026-09-11 14:53 UTCEPSS rescore
  12. 2026-09-11 09:37 UTCEPSS rescore
  13. 2026-09-11 02:16 UTCVendor advisory
  14. 2026-09-11 02:15 UTCGHSA enrichment
  15. 2026-09-10 13:20 UTCEG score recompute
  16. 2026-09-10 13:20 UTCVendor advisory
  17. 2026-09-10 13:20 UTCGHSA enrichment
  18. 2026-09-09 08:36 UTCEG score recompute
  19. 2026-09-09 08:36 UTCVendor advisory
  20. 2026-09-09 08:36 UTCGHSA enrichment
  21. 2026-09-08 22:01 UTCEPSS rescore
  22. 2026-09-08 16:13 UTCVendor advisory
  23. 2026-09-08 16:13 UTCGHSA enrichment
  24. 2026-09-07 21:16 UTCEG score recompute
  25. 2026-09-07 21:16 UTCVendor advisory
  26. 2026-09-07 21:16 UTCGHSA enrichment
  27. 2026-09-07 16:01 UTCEPSS rescore
  28. 2026-09-06 13:47 UTCEPSS rescore
  29. 2026-09-06 07:58 UTCGHSA enrichment
  30. 2026-09-05 19:20 UTCEG score recompute
  31. 2026-09-05 19:20 UTCVendor advisory
  32. 2026-09-05 19:20 UTCGHSA enrichment
  33. 2026-09-05 15:31 UTCEPSS rescore
  34. 2026-09-05 06:04 UTCEG score recompute
  35. 2026-09-05 06:04 UTCVendor advisory
  36. 2026-09-05 06:03 UTCGHSA enrichment
  37. 2026-09-04 12:41 UTCEG score recompute
  38. 2026-09-04 12:41 UTCVendor advisory
  39. 2026-09-04 12:41 UTCGHSA enrichment
  40. 2026-09-04 05:07 UTCEPSS rescore
  41. 2026-09-02 14:12 UTCEPSS rescore
  42. 2026-09-01 23:13 UTCEG score recompute
  43. 2026-09-01 23:13 UTCVendor advisory
  44. 2026-09-01 23:13 UTCGHSA enrichment
  45. 2026-09-01 13:54 UTCEPSS rescore
  46. 2026-09-01 04:40 UTCEPSS rescore
  47. 2026-08-30 23:20 UTCEG score recompute
  48. 2026-08-30 23:20 UTCVendor advisory
  49. 2026-08-30 23:20 UTCGHSA enrichment
  50. 2026-08-30 19:17 UTCEPSS rescore
  51. 2026-08-30 11:44 UTCEG score recompute
  52. 2026-08-30 11:44 UTCVendor advisory
  53. 2026-08-30 11:44 UTCGHSA enrichment
  54. 2026-08-30 01:22 UTCEPSS rescore
  55. 2026-08-30 00:08 UTCEG score recompute
  56. 2026-08-30 00:08 UTCVendor advisory
  57. 2026-08-30 00:07 UTCGHSA enrichment
  58. 2026-08-28 21:42 UTCEPSS rescore
  59. 2026-08-27 21:32 UTCEG score recompute
  60. 2026-08-27 21:32 UTCVendor advisory
  61. 2026-08-27 21:32 UTCGHSA enrichment
  62. 2026-08-27 09:57 UTCVendor advisory
  63. 2026-08-27 09:57 UTCGHSA enrichment
  64. 2026-08-26 19:50 UTCEG score recompute
  65. 2026-08-26 19:50 UTCVendor advisory
  66. 2026-08-26 19:50 UTCGHSA enrichment
  67. 2026-08-26 14:47 UTCEPSS rescore
  68. 2026-08-26 05:37 UTCVendor advisory
  69. 2026-08-26 05:37 UTCGHSA enrichment
  70. 2026-08-25 17:43 UTCEG score recompute
  71. 2026-08-25 17:43 UTCVendor advisory
  72. 2026-08-25 17:43 UTCGHSA enrichment
  73. 2026-08-25 13:49 UTCEPSS rescore
  74. 2026-08-25 05:37 UTCVendor advisory
  75. 2026-08-25 05:37 UTCGHSA enrichment

Frequently asked(5)

What is CVE-2026-64374?
CVE-2026-64374 is a high vulnerability published on July 25, 2026. In the Linux kernel, the following vulnerability has been resolved: sched/rt: Have RTPUSHIPI be default off for non PREEMPT_RT RT migration is done aggressively. When a CPU schedules out a high priority RT task for a lower priority task, it will look to see if there's any RT tasks that are waiting…
When was CVE-2026-64374 disclosed?
CVE-2026-64374 was first published in the National Vulnerability Database on July 25, 2026, with the most recent update on September 8, 2026. EchelonGraph re-ingests CVE updates from NVD on a 2-hour cycle, so this page reflects the latest published state.
Is CVE-2026-64374 actively exploited?
CVE-2026-64374 is not currently on CISA's Known Exploited Vulnerabilities catalog. FIRST EPSS estimates a 0% probability of exploitation in the next 30 days, which ranks it in the top 67.4% of all scored CVEs.
What is the CVSS score of CVE-2026-64374?
CVE-2026-64374 has a CVSS v3 base score of 7.5 (NVD).
How do I remediate CVE-2026-64374?
Patch to the fixed version published by the affected vendor. Where vendor advisories exist for CVE-2026-64374, EchelonGraph cross-links them in the Vendor Advisories panel below — those typically contain the canonical remediation steps, fixed version numbers, and any vendor-specific mitigations.

Dependency Blast Radius

See which npm, PyPI, Go, and Maven packages are affected by CVE-2026-64374

Explore →

Is Your Infrastructure Affected by CVE-2026-64374?

EchelonGraph automatically scans your cloud infrastructure and maps CVE exposure using blast radius analysis.