83436 matches found
CVE-2026-68245 drm/amdgpu: fix lifetime issue of amdgpu_vm_get_task_info_pasid()
In the Linux kernel, the following vulnerability has been resolved: drm/amdgpu: fix lifetime issue of amdgpuvmgettaskinfopasid The vm pointer returned from amdgpuvmgetvmfrompasid is only valid while the lock is still being held. Once xaunlockirqrestore is called and returned, the pointer is no...
EUVD-2026-55344
In the Linux kernel, the following vulnerability has been resolved: drm/i915/gem: Fix NULL deref in I915CONTEXTPARAMSSEU Setting context engine slot N into I915ENGINECLASSINVALID / I915ENGINECLASSINVALIDNONE and attempting to apply I915CONTEXTPARAMSSEU to the same slot N will deref NULL. Fix that...
CVE-2026-68239 drm/ttm: Account for NULL and handle pages in ttm_pool_backup
In the Linux kernel, the following vulnerability has been resolved: drm/ttm: Account for NULL and handle pages in ttmpoolbackup Pages in ttmpoolbackup can be NULL or backup handles ttmbackuppageptrishandle, neither of which can be passed to setpagesarraywb or freed. Add a dedicated WB pass before...
CVE-2026-68236
The CVE concerns the Linux kernel DRM/AMD Display path. In dm_update_crtc_state(), the skip_modeset path releases the dc_stream via dc_stream_release() but fails to NULL the new_stream pointer. If a subsequent error triggers a fail path, dc_stream_release() runs again on the dangling pointer, ris...
CVE-2026-68235 drm/amd/display: dce100: skip non-DP stream encoders for DP MST
In the Linux kernel, the following vulnerability has been resolved: drm/amd/display: dce100: skip non-DP stream encoders for DP MST On DCE8-class ASICs e.g. Bonaire, the resource pool contains digital DIG stream encoders plus one analog DAC encoder. When assigning a stream encoder for a second...
EUVD-2026-55329
In the Linux kernel, the following vulnerability has been resolved: media: chips-media: wave5: Move srcbuf Removal to finishencode During encoder processing, there is a case where the IRQ response could return the buffer back to userspace via v4l2m2mbufdone call. In this time, userspace could que...
CVE-2026-68226
The CVE affects the Linux kernel component media: cx23885. A vulnerability was resolved by adding a check for the return value of pci_ioremap_bar() in cx23885_dev_setup(). If ioremap for BAR0 fails, the code now releases the allocated PCI memory region, decrements the device count, and returns -E...
CVE-2026-68226 media: cx23885: add ioremap return check and cleanup
In the Linux kernel, the following vulnerability has been resolved: media: cx23885: add ioremap return check and cleanup Add a check for the return value of pciioremapbar in cx23885devsetup. If ioremap for BAR0 fails, release the already allocated PCI memory region, decrement the device count, an...
EUVD-2026-55326
In the Linux kernel, the following vulnerability has been resolved: media: i2c: alvium: fix critical pointer access in alviumctrlinit The current implementation of alviumctrlinit creates several controls in function alviumctrlinit and uses the returned pointer without check. That can cause write...
CVE-2026-68225
The CVE-2026-68225 entry covers a Linux kernel issue in the media: i2c/alvium driver where alvium_ctrl_init creates several controls and uses the returned pointer without validating it, enabling potential write access to a NULL pointer for multiple controls. The fix reworked alvium_ctrl_init to c...
CVE-2026-68225 media: i2c: alvium: fix critical pointer access in alvium_ctrl_init
In the Linux kernel, the following vulnerability has been resolved: media: i2c: alvium: fix critical pointer access in alviumctrlinit The current implementation of alviumctrlinit creates several controls in function alviumctrlinit and uses the returned pointer without check. That can cause write...
EUVD-2026-55325
In the Linux kernel, the following vulnerability has been resolved: media: mali-c55: Fix possible ERRPTR in enablestreams The mediapadremotepadunique function returns either a valid pointer or an ERRPTR on failure -ENOTUNIQ if multiple links are enabled, -ENOLINK if no connected pad is found. The...
CVE-2026-68209
In the Linux kernel, the following vulnerability has been resolved: media: sun4i-csi: Return queued buffers on startstreaming failure The vb2 framework hands buffers to the driver via bufqueue before calling startstreaming. If startstreaming returns an error without first returning those buffers...
CVE-2026-68208 media: ti: vpe: Fix the error code of devm_kzalloc() in vip_probe_slice()
In the Linux kernel, the following vulnerability has been resolved: media: ti: vpe: Fix the error code of devmkzalloc in vipprobeslice In vipprobeslice, the error check for devmkzalloc incorrectly uses PTRERRORZERO which returns 0 for NULL pointer. Return -ENOMEM for devmkzalloc failure...
EUVD-2026-55298
In the Linux kernel, the following vulnerability has been resolved: wifi: mwifiex: fix NULL dereference when the AP has HT-cap but no HT-oper mwifiextdlsaddhtoper gates its follow-the-AP-bandwidth path on bssdesc-bcnhtcap being present, but then dereferences a different pointer, bssdesc-bcnhtoper...
CVE-2026-68197
The CVE-2026-68197 entry describes a Linux kernel vulnerability in mwifiex where a NULL dereference can occur when connecting to an AP that advertises HT Capabilities but not HT Operation. The root cause is that bcn_ht_cap and bcn_ht_oper are populated independently while parsing beacon data; if ...
CVE-2026-68195
The CVE describes a Linux kernel issue in the mt76/mt7615 wireless driver where PKT_TYPE_TXRX_NOTIFY is mmio-only but was dispatched on non-mmio buses, causing a NULL dereference when mt7615_mac_tx_free() calls tx_cleanup() with a NULL queue_ops->tx_cleanup(). The fix drops TXRX_NOTIFY on non-...
CVE-2026-68195 wifi: mt76: mt7615: drop TXRX_NOTIFY on non-mmio buses
In the Linux kernel, the following vulnerability has been resolved: wifi: mt76: mt7615: drop TXRXNOTIFY on non-mmio buses PKTTYPETXRXNOTIFY is an mmio-only event, but mt7615rxcheck and mt7615queuerxskb dispatch it to mt7615mactxfree on every bus. mt7615mactxfree cleans the DMA tx queues with...
EUVD-2026-55295
In the Linux kernel, the following vulnerability has been resolved: wifi: mt76: mt7921: drop TXRXNOTIFY on non-mmio buses PKTTYPETXRXNOTIFY is an mmio-only event, but mt7921rxcheck and mt7921queuerxskb dispatch it to mt7921mactxfree on every bus. mt7921mactxfree cleans the DMA tx queues with...
CVE-2026-68194
The CVE-2026-68194 issue affects Linux kernel wifi driver stack mt76/mt7921: TXRX_NOTIFY is an mmio-only event but was dispatched on non-mmio buses (USB/SDIO) via mt7921_rx_check()/mt7921_queue_rx_skb(), causing a NULL pointer dereference in mt7921_mac_tx_free() when mt76_queue_tx_cleanup() calls...