[PATCH] fbdev: nvidia: Release write-combining handle on probe failure

Myeonghun Pak posted 1 patch 1 week, 3 days ago
drivers/video/fbdev/nvidia/nvidia.c | 1 +
1 file changed, 1 insertion(+)
[PATCH] fbdev: nvidia: Release write-combining handle on probe failure
Posted by Myeonghun Pak 1 week, 3 days ago
Failures in nvidia_set_fbinfo() or register_framebuffer() leave the handle
from arch_phys_wc_add() allocated. Release it in the shared error path,
as nvidiafb_remove() already does on normal removal.

The missing cleanup was already present in the initial Git import,
when the driver used mtrr_add() directly.

This issue was identified during our ongoing static-analysis research
while reviewing kernel code.

Fixes: 1da177e4c3f4 ("Linux-2.6.12-rc2")
Cc: stable@vger.kernel.org
Assisted-by: LLM
Co-developed-by: Ijae Kim <ae878000@gmail.com>
Signed-off-by: Ijae Kim <ae878000@gmail.com>
Signed-off-by: Myeonghun Pak <mhun512@gmail.com>
---
 drivers/video/fbdev/nvidia/nvidia.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/video/fbdev/nvidia/nvidia.c b/drivers/video/fbdev/nvidia/nvidia.c
--- a/drivers/video/fbdev/nvidia/nvidia.c
+++ b/drivers/video/fbdev/nvidia/nvidia.c
@@ -1424,6 +1424,7 @@ static int nvidiafb_probe(struct pci_dev *pd, const struct pci_device_id *ent)
 	return 0;
 
 err_out_iounmap_fb:
+	arch_phys_wc_del(par->wc_cookie);
 	fb_destroy_modelist(&info->modelist);
 err_out_free_base1:
 	fb_destroy_modedb(info->monspecs.modedb);
-- 
2.51.0
Re: [PATCH] fbdev: nvidia: Release write-combining handle on probe failure
Posted by Helge Deller 1 week, 3 days ago
On 9/15/26 02:54, Myeonghun Pak wrote:
> Failures in nvidia_set_fbinfo() or register_framebuffer() leave the handle
> from arch_phys_wc_add() allocated. Release it in the shared error path,
> as nvidiafb_remove() already does on normal removal.
> 
> The missing cleanup was already present in the initial Git import,
> when the driver used mtrr_add() directly.
> 
> This issue was identified during our ongoing static-analysis research
> while reviewing kernel code.
> 
> Fixes: 1da177e4c3f4 ("Linux-2.6.12-rc2")
> Cc: stable@vger.kernel.org
> Assisted-by: LLM
> Co-developed-by: Ijae Kim <ae878000@gmail.com>
> Signed-off-by: Ijae Kim <ae878000@gmail.com>
> Signed-off-by: Myeonghun Pak <mhun512@gmail.com>
> ---
>   drivers/video/fbdev/nvidia/nvidia.c | 1 +
>   1 file changed, 1 insertion(+)
Thanks for your patches!
I've added this one and the two similar ones regarding kyro and gxt4500
to the fbdev git tree.

Helge