This is a note to let you know that I've just added the patch titled drm/tilcdc: panel: fix leak when unloading the module to the 3.10-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: drm-tilcdc-panel-fix-leak-when-unloading-the-module.patch and it can be found in the queue-3.10 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. >From 3a49012224ca9016658a831a327ff6a7fe5bb4f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Guido=20Mart=C3=ADnez?= <guido@xxxxxxxxxxxxxxxxxxxx> Date: Tue, 17 Jun 2014 11:17:07 -0300 Subject: drm/tilcdc: panel: fix leak when unloading the module MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit From: =?UTF-8?q?Guido=20Mart=C3=ADnez?= <guido@xxxxxxxxxxxxxxxxxxxx> commit 3a49012224ca9016658a831a327ff6a7fe5bb4f9 upstream. The driver did not unregister the allocated framebuffer, which caused memory leaks (and memory manager WARNs) when unloading. Also, the framebuffer device under /dev still existed after unloading. Add a call to drm_fbdev_cma_fini when unloading the module to prevent both issues. Signed-off-by: Guido Martínez <guido@xxxxxxxxxxxxxxxxxxxx> Tested-by: Darren Etheridge <detheridge@xxxxxx> Signed-off-by: Dave Airlie <airlied@xxxxxxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- drivers/gpu/drm/tilcdc/tilcdc_drv.c | 1 + 1 file changed, 1 insertion(+) --- a/drivers/gpu/drm/tilcdc/tilcdc_drv.c +++ b/drivers/gpu/drm/tilcdc/tilcdc_drv.c @@ -116,6 +116,7 @@ static int tilcdc_unload(struct drm_devi struct tilcdc_drm_private *priv = dev->dev_private; struct tilcdc_module *mod, *cur; + drm_fbdev_cma_fini(priv->fbdev); drm_kms_helper_poll_fini(dev); drm_mode_config_cleanup(dev); drm_vblank_cleanup(dev); Patches currently in stable-queue which might be from guido@xxxxxxxxxxxxxxxxxxxx are queue-3.10/drm-tilcdc-panel-fix-dangling-sysfs-connector-node.patch queue-3.10/drm-tilcdc-fix-release-order-on-exit.patch queue-3.10/drm-tilcdc-fix-double-kfree.patch queue-3.10/drm-tilcdc-panel-fix-leak-when-unloading-the-module.patch queue-3.10/drm-tilcdc-tfp410-fix-dangling-sysfs-connector-node.patch queue-3.10/drm-tilcdc-slave-fix-dangling-sysfs-connector-node.patch -- To unsubscribe from this list: send the line "unsubscribe stable" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html