lkml.org 
[lkml]   [2023]   [Mar]   [6]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH 66/99] fbdev/rivafb: Duplicate video-mode option string
    Date
    Assume that the driver does not own the option string or its substrings
    and hence duplicate the option string for the video mode. The driver only
    parses the option string once as part of module initialization, so use
    a static buffer to store the duplicated mode option. Linux automatically
    frees the memory upon releasing the module.

    Done in preparation of switching the driver to struct option_iter and
    constifying the option string.

    Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
    ---
    drivers/video/fbdev/riva/fbdev.c | 13 +++++++++++--
    1 file changed, 11 insertions(+), 2 deletions(-)

    diff --git a/drivers/video/fbdev/riva/fbdev.c b/drivers/video/fbdev/riva/fbdev.c
    index 41edc6e79460..affb7c5ef69c 100644
    --- a/drivers/video/fbdev/riva/fbdev.c
    +++ b/drivers/video/fbdev/riva/fbdev.c
    @@ -2132,8 +2132,17 @@ static int rivafb_setup(char *options)
    strictmode = 1;
    } else if (!strncmp(this_opt, "noaccel", 7)) {
    noaccel = 1;
    - } else
    - mode_option = this_opt;
    + } else {
    + static char mode_option_buf[256];
    + int ret;
    +
    + ret = snprintf(mode_option_buf, sizeof(mode_option_buf), "%s", this_opt);
    + if (WARN(ret < 0, "rivafb: ignoring invalid option, ret=%d\n", ret))
    + continue;
    + if (WARN(ret >= sizeof(mode_option_buf), "rivafb: option too long\n"))
    + continue;
    + mode_option = mode_option_buf;
    + }
    }
    NVTRACE_LEAVE();
    return 0;
    --
    2.39.2
    \
     
     \ /
      Last update: 2023-03-27 00:45    [W:4.154 / U:0.076 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site