CVE-2025-68321
BaseFortify
Publication date: 2025-12-16
Last updated on: 2025-12-18
Assigner: kernel.org
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| 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 relates to the Linux kernel's page pool mechanism where driver authors often forget to add the GFP_NOWARN flag for page allocations made with ATOMIC context. Without GFP_NOWARN, allocation failures during out-of-memory (OOM) conditions can cause unnecessary warnings or issues. The fix ensures that page pool allocations add GFP_NOWARN by default for ATOMIC allocations to avoid these problems.
How can this vulnerability impact me? :
The vulnerability can cause annoying warnings or failures during network receive (Rx) operations when the system is under out-of-memory (OOM) conditions, potentially affecting network performance or stability. By not adding GFP_NOWARN, the system may generate unnecessary warnings that could disrupt normal operation or debugging.