555826 matches found
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-72362
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...
CVE-2026-72342
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...
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...
EUVD-2026-59241
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...
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...
CVE-2026-72342
The CVE-2026-72342 issue affects the Linux kernel’s net/mlx5e HV VHCA stats path. The race occurs in mlx5e_hv_vhca_stats_create() when publishing the stats agent via mlx5_hv_vhca_agent_create(): the agent is published and a delayed invalidation is scheduled before priv->stats_agent.agent and p...
EUVD-2026-59213
In the Linux kernel, the following vulnerability has been resolved: regulator: core: regulatorlocktwo should test for EDEADLK not EDEADLOCK Compare against -EDEADLK, which is what wwmutexlock actually returns and what every other deadlock check in this file already uses. Function regulatorlocktwo...
CVE-2026-72314
In the Linux kernel, the following vulnerability has been resolved: regulator: core: regulatorlocktwo should test for EDEADLK not EDEADLOCK Compare against -EDEADLK, which is what wwmutexlock actually returns and what every other deadlock check in this file already uses. Function regulatorlocktwo...
CVE-2026-72314
CVE-2026-72314 in the Linux kernel fixes a bug in regulator_lock_two() where the code compared the return value to -EDEADLOCK instead of -EDEADLK after ww_mutex_lock() returns -EDEADLK on contention. This mismatch could cause the lock to not back off and retry correctly, resulting in only one of ...
CVE-2026-72314 regulator: core: regulator_lock_two() should test for EDEADLK not EDEADLOCK
In the Linux kernel, the following vulnerability has been resolved: regulator: core: regulatorlocktwo should test for EDEADLK not EDEADLOCK Compare against -EDEADLK, which is what wwmutexlock actually returns and what every other deadlock check in this file already uses. Function regulatorlocktwo...
CVE-2026-72314 regulator: core: regulator_lock_two() should test for EDEADLK not EDEADLOCK
In the Linux kernel, the following vulnerability has been resolved: regulator: core: regulatorlocktwo should test for EDEADLK not EDEADLOCK Compare against -EDEADLK, which is what wwmutexlock actually returns and what every other deadlock check in this file already uses. Function regulatorlocktwo...
CVE-2026-72308
In the Linux kernel, the following vulnerability has been resolved: mlxsw: fix refcount leak in mlxswspportlagjoin When mlxswspportlagindexget fails, mlxswspportlagjoin returns an error without releasing the lag reference obtained by the earlier mlxswsplagget. All other error paths in the functio...
CVE-2026-72308
CVE-2026-72308 affects the Linux kernel’s mlxsw port code, where mlxsw_sp_port_lag_join() can leak a refcount if mlxsw_sp_port_lag_index_get() fails. The issue arises when an error path bypasses the standard cleanup that releases the lag reference with mlxsw_sp_lag_put(), leading to a single miss...
EUVD-2026-59207
In the Linux kernel, the following vulnerability has been resolved: mlxsw: fix refcount leak in mlxswspportlagjoin When mlxswspportlagindexget fails, mlxswspportlagjoin returns an error without releasing the lag reference obtained by the earlier mlxswsplagget. All other error paths in the functio...
CVE-2026-72308 mlxsw: fix refcount leak in mlxsw_sp_port_lag_join()
In the Linux kernel, the following vulnerability has been resolved: mlxsw: fix refcount leak in mlxswspportlagjoin When mlxswspportlagindexget fails, mlxswspportlagjoin returns an error without releasing the lag reference obtained by the earlier mlxswsplagget. All other error paths in the functio...
CVE-2026-72308 mlxsw: fix refcount leak in mlxsw_sp_port_lag_join()
In the Linux kernel, the following vulnerability has been resolved: mlxsw: fix refcount leak in mlxswspportlagjoin When mlxswspportlagindexget fails, mlxswspportlagjoin returns an error without releasing the lag reference obtained by the earlier mlxswsplagget. All other error paths in the functio...
CVE-2026-72294
The CVE-2026-72294 case affects the Linux kernel on LoongArch under KVM. The vulnerable component is kvm_vcpu_ioctl_interrupt() where irq validity checking was previously missing, allowing potential misvalidation when called from userspace. The root cause is insufficient validation of IRQs in the...
EUVD-2026-59193
In the Linux kernel, the following vulnerability has been resolved: LoongArch: KVM: Check irq validity in kvmvcpuioctlinterrupt Function kvmvcpuioctlinterrupt can be called from userspace, here add irq validility cheking in kvmvcpuioctlinterrupt...