32858 matches found
CVE-2026-72377 afs: Remove setting of AS_RELEASE_ALWAYS for symlinks and mountpoints
In the Linux kernel, the following vulnerability has been resolved: afs: Remove setting of ASRELEASEALWAYS for symlinks and mountpoints Regular AFS files correctly use afsfileaops which have releasefolio set as netfsreleasefolio, so ASRELEASEALWAYS is valid for them when fscache is enabled set vi...
CVE-2026-72377
Summary of CVE-2026-72377 : In the Linux kernel, a defect in AFS handling caused symlinks and mountpoints to incorrectly inherit AS_RELEASE_ALWAYS due to afs_apply_status(), even though they use afs_dir_aops which have no release_folio callback. This mismatch allowed memory management code to mis...
CVE-2026-72373
CVE-2026-72373 is a Linux kernel vulnerability in the AFS code path. The issue: afs_break_some_callbacks() does not safely handle a NULL result from afs_lookup_volume_rcu(), which can occur if the specified volume is unknown. A patch has been developed to add a NULL pointer check in afs_break_som...
CVE-2026-72373 afs: Fix missing NULL pointer check in afs_break_some_callbacks()
In the Linux kernel, the following vulnerability has been resolved: afs: Fix missing NULL pointer check in afsbreaksomecallbacks Fix afsbreaksomecallbacks to check to see if afslookupvolumercu returned NULL e.g. the specified volume is unknown...
CVE-2026-72362 drm/xe/pt: Fix NULL pointer dereference in xe_pt_zap_ptes_entry()
In the Linux kernel, the following vulnerability has been resolved: drm/xe/pt: Fix NULL pointer dereference in xeptzapptesentry The page-table walk framework may pass a NULL child pointer for unpopulated entries. xeptzapptesentry called containerofchild before checking for NULL, then dereferenced...
CVE-2026-72362
The CVE-2026-72362 issue affects the Linux kernel DRM/XE PT path (xe_pt_zap_ptes_entry). The vulnerability arises when a NULL child pointer for unpopulated entries is dereferenced because container_of(*child) is called before a NULL check, causing a crash. The fix moves the container_of() call af...
EUVD-2026-59261
In the Linux kernel, the following vulnerability has been resolved: drm/xe/pt: Fix NULL pointer dereference in xeptzapptesentry The page-table walk framework may pass a NULL child pointer for unpopulated entries. xeptzapptesentry called containerofchild before checking for NULL, then dereferenced...
CVE-2026-72359
The CVE relates to the Linux kernel DRM/XE driver. A buffer object (BO) may have its ttm.resource set to NULL during the purge step in the TTM pipeline, but the BO may remain in the client’s object list until the GEM handle is closed. If memory statistics are queried during this window, dereferen...
CVE-2026-72359 drm/xe: fix NPD in bo_meminfo()
In the Linux kernel, the following vulnerability has been resolved: drm/xe: fix NPD in bomeminfo When a buffer object is purged, its ttm.resource is set to NULL via the TTM pipeline gutting flow. However, the BO remains in the client's object list until userspace explicitly closes the GEM handle...
EUVD-2026-59258
In the Linux kernel, the following vulnerability has been resolved: drm/xe: fix NPD in bomeminfo When a buffer object is purged, its ttm.resource is set to NULL via the TTM pipeline gutting flow. However, the BO remains in the client's object list until userspace explicitly closes the GEM handle...
CVE-2026-72349
In the Linux kernel, the following vulnerability has been resolved: netfilter: xtrateest: fix u64 truncation in xtrateestmt On links faster than 34 Gbps, where byte rate may exceed 2^32-1 4.3 GBps, the comparison result becomes incorrect because the truncated value no longer reflects the actual...
EUVD-2026-59245
In the Linux kernel, the following vulnerability has been resolved: platform/x86: bitland-mifs-wmi: Fix NULL pointer dereference during suspend/resume The driver registers two distinct WMI devices: a control device BITLANDWMICONTROL and an event device BITLANDWMIEVENT. During the probe phase, the...
CVE-2026-72346
The CVE describes a NULL pointer dereference in the Linux kernel's platform/x86 bitland-mifs-wmi driver during suspend/resume. The kernel initializes two WMI devices (BITLAND_WMI_CONTROL and BITLAND_WMI_EVENT); during probe, the event path exits early, leaving data->pp_dev NULL. Global PM slee...
CVE-2026-72346 platform/x86: bitland-mifs-wmi: Fix NULL pointer dereference during suspend/resume
In the Linux kernel, the following vulnerability has been resolved: platform/x86: bitland-mifs-wmi: Fix NULL pointer dereference during suspend/resume The driver registers two distinct WMI devices: a control device BITLANDWMICONTROL and an event device BITLANDWMIEVENT. During the probe phase, the...
CVE-2026-72343 net/mlx5e: Fix HV VHCA stats zero-sized buffer allocation
In the Linux kernel, the following vulnerability has been resolved: net/mlx5e: Fix HV VHCA stats zero-sized buffer allocation mlx5ehvvhcastatscreate is called from mlx5enicenable, before mlx5eopen. At that point priv-statsnch is still zero, because it is only ever incremented in...
EUVD-2026-59243
In the Linux kernel, the following vulnerability has been resolved: net/mlx5e: TC, skip peer flow cleanup when LAG seq is unavailable mlx5laggetdevseq will return error when the peer isn't in the LAG or when no device is marked as master. Result bad memory access and kernel crash1. Hence, skip th...
EUVD-2026-59242
In the Linux kernel, the following vulnerability has been resolved: net/mlx5e: Fix HV VHCA stats zero-sized buffer allocation mlx5ehvvhcastatscreate is called from mlx5enicenable, before mlx5eopen. At that point priv-statsnch is still zero, because it is only ever incremented in...
CVE-2026-72343
CVE-2026-72343 describes a Linux kernel issue in the net/mlx5e subsystem where HV VHCA stats buffer allocation could allocate a non-null ZERO_SIZE_PTR due to kvzalloc(0). The root cause was that mlx5e_hv_vhca_stats_create() could complete successfully with priv->stats_agent.buf set to ZERO_SIZ...
CVE-2026-72344
In the Linux kernel, CVE-2026-72344 affects the mlx5e TC offload path. The issue arises when mlx5_lag_get_dev_seq() errors if the peer isn’t in the LAG or no master is marked, causing a bad memory access and potential kernel crash. The fix is to skip the peer lookup when it fails, with peer flows...
CVE-2026-72342 net/mlx5e: Fix HV VHCA stats agent registration race
In the Linux kernel, the following vulnerability has been resolved: net/mlx5e: Fix HV VHCA stats agent registration race mlx5ehvvhcastatscreate registers the stats agent through mlx5hvvhcaagentcreate. The helper publishes the agent in hvvhca-agentstype under agentslock and immediately schedules a...