]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
fbdev: flush deferred IO before closing
authorNam Cao <namcao@linutronix.de>
Mon, 18 Dec 2023 09:57:31 +0000 (10:57 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 23 Feb 2024 07:55:13 +0000 (08:55 +0100)
[ Upstream commit 33cd6ea9c0673517cdb06ad5c915c6f22e9615fc ]

When framebuffer gets closed, the queued deferred IO gets cancelled. This
can cause some last display data to vanish. This is problematic for users
who send a still image to the framebuffer, then close the file: the image
may never appear.

To ensure none of display data get lost, flush the queued deferred IO
first before closing.

Another possible solution is to delete the cancel_delayed_work_sync()
instead. The difference is that the display may appear some time after
closing. However, the clearing of page mapping after this needs to be
removed too, because the page mapping is used by the deferred work. It is
not completely obvious whether it is okay to not clear the page mapping.
For a patch intended for stable trees, go with the simple and obvious
solution.

Fixes: 60b59beafba8 ("fbdev: mm: Deferred IO support")
Cc: stable@vger.kernel.org
Signed-off-by: Nam Cao <namcao@linutronix.de>
Reviewed-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
Signed-off-by: Helge Deller <deller@gmx.de>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/video/fbdev/core/fb_defio.c

index 7e76e53b83d5fb71f62c793b28bcb1e5af7f976a..1f12c204360352e1d91ded4fbf27475ea4956c81 100644 (file)
@@ -300,7 +300,7 @@ static void fb_deferred_io_lastclose(struct fb_info *info)
        struct page *page;
        int i;
 
-       cancel_delayed_work_sync(&info->deferred_work);
+       flush_delayed_work(&info->deferred_work);
 
        /* clear out the mapping that we setup */
        for (i = 0 ; i < info->fix.smem_len; i += PAGE_SIZE) {