]> www.infradead.org Git - users/dwmw2/linux.git/commit
drm/hyperv: Fix address space leak when Hyper-V DRM device is removed
authorMichael Kelley <mhklinux@outlook.com>
Mon, 10 Feb 2025 19:34:41 +0000 (11:34 -0800)
committerWei Liu <wei.liu@kernel.org>
Sun, 9 Mar 2025 23:46:56 +0000 (23:46 +0000)
commitaed709355fd05ef747e1af24a1d5d78cd7feb81e
treec7f500bd8224970c74ddd26e21c1eb49fa237b95
parent7241c886a71797cc51efc6fadec7076fcf6435c2
drm/hyperv: Fix address space leak when Hyper-V DRM device is removed

When a Hyper-V DRM device is probed, the driver allocates MMIO space for
the vram, and maps it cacheable. If the device removed, or in the error
path for device probing, the MMIO space is released but no unmap is done.
Consequently the kernel address space for the mapping is leaked.

Fix this by adding iounmap() calls in the device removal path, and in the
error path during device probing.

Fixes: f1f63cbb705d ("drm/hyperv: Fix an error handling path in hyperv_vmbus_probe()")
Fixes: a0ab5abced55 ("drm/hyperv : Removing the restruction of VRAM allocation with PCI bar size")
Signed-off-by: Michael Kelley <mhklinux@outlook.com>
Reviewed-by: Saurabh Sengar <ssengar@linux.microsoft.com>
Tested-by: Saurabh Sengar <ssengar@linux.microsoft.com>
Link: https://lore.kernel.org/r/20250210193441.2414-1-mhklinux@outlook.com
Signed-off-by: Wei Liu <wei.liu@kernel.org>
Message-ID: <20250210193441.2414-1-mhklinux@outlook.com>
drivers/gpu/drm/hyperv/hyperv_drm_drv.c