[PATCH] drm: remove the newline for CRC source name.

Sam Ravnborg sam at ravnborg.org
Sat Jun 8 11:56:08 UTC 2019


Hi Dingchen.

Patch is much better now.

On Fri, Jun 07, 2019 at 05:38:17PM -0400, Dingchen Zhang wrote:
> userspace may transfer a newline, and this terminating newline
> is replaced by a '\0' to avoid followup issues.
> 
> 'n-1' is the index to replace the newline of CRC source name.
I am a little confused where 'n' comes from here?
I you had written ' len - 1' then there was a clear connection to the
patch.

With this fixed:
Reviewed-by: Sam Ravnborg <sam at ravnborg.org>
> 
> v2: update patch subject, body and format. (Sam)
> 
> Cc: Leo Li <sunpeng.li at amd.com>
> Cc: Harry Wentland <Harry.Wentland at amd.com>
> Cc: Sam Ravnborg <sam at ravnborg.org>
> Signed-off-by: Dingchen Zhang <dingchen.zhang at amd.com>
> ---
>  drivers/gpu/drm/drm_debugfs_crc.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/gpu/drm/drm_debugfs_crc.c b/drivers/gpu/drm/drm_debugfs_crc.c
> index 585169f0dcc5..dac267e840af 100644
> --- a/drivers/gpu/drm/drm_debugfs_crc.c
> +++ b/drivers/gpu/drm/drm_debugfs_crc.c
> @@ -131,8 +131,8 @@ static ssize_t crc_control_write(struct file *file, const char __user *ubuf,
>  	if (IS_ERR(source))
>  		return PTR_ERR(source);
>  
> -	if (source[len] == '\n')
> -		source[len] = '\0';
> +	if (source[len - 1] == '\n')
> +		source[len - 1] = '\0';
>  
>  	ret = crtc->funcs->verify_crc_source(crtc, source, &values_cnt);
>  	if (ret)
> -- 
> 2.17.1


More information about the dri-devel mailing list