]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
fbdev: udlfb: avoid divide-by-zero on FBIOPUT_VSCREENINFO
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 9 Apr 2026 13:23:46 +0000 (15:23 +0200)
committerHelge Deller <deller@gmx.de>
Fri, 10 Apr 2026 14:54:38 +0000 (16:54 +0200)
Much like commit 19f953e74356 ("fbdev: fb_pm2fb: Avoid potential divide
by zero error"), we also need to prevent that same crash from happening
in the udlfb driver as it uses pixclock directly when dividing, which
will crash.

Cc: Bernie Thompson <bernie@plugable.com>
Cc: Helge Deller <deller@gmx.de>
Fixes: 59277b679f8b ("Staging: udlfb: add dynamic modeset support")
Assisted-by: gregkh_clanker_t1000
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Helge Deller <deller@gmx.de>
drivers/video/fbdev/udlfb.c

index 3c6a9b5758d95581c5a9547bb433ae930a6fd6dd..c341d76bc5646b380d9d6df401cbe9802eca0c70 100644 (file)
@@ -1018,6 +1018,9 @@ static int dlfb_ops_check_var(struct fb_var_screeninfo *var,
        struct fb_videomode mode;
        struct dlfb_data *dlfb = info->par;
 
+       if (!var->pixclock)
+               return -EINVAL;
+
        /* set device-specific elements of var unrelated to mode */
        dlfb_var_color_format(var);