[PATCH 1/2] drm/amdgpu/mst: Stop ignoring error codes and deadlocking

Lin, Wayne Wayne.Lin at amd.com
Wed Nov 16 04:35:48 UTC 2022


[Public]



> -----Original Message-----
> From: Lyude Paul <lyude at redhat.com>
> Sent: Tuesday, November 15, 2022 5:55 AM
> To: Lin, Wayne <Wayne.Lin at amd.com>; amd-gfx at lists.freedesktop.org
> Cc: Wentland, Harry <Harry.Wentland at amd.com>; stable at vger.kernel.org;
> Li, Sun peng (Leo) <Sunpeng.Li at amd.com>; Siqueira, Rodrigo
> <Rodrigo.Siqueira at amd.com>; Deucher, Alexander
> <Alexander.Deucher at amd.com>; Koenig, Christian
> <Christian.Koenig at amd.com>; Pan, Xinhui <Xinhui.Pan at amd.com>; David
> Airlie <airlied at gmail.com>; Daniel Vetter <daniel at ffwll.ch>; Kazlauskas,
> Nicholas <Nicholas.Kazlauskas at amd.com>; Pillai, Aurabindo
> <Aurabindo.Pillai at amd.com>; Li, Roman <Roman.Li at amd.com>; Zuo, Jerry
> <Jerry.Zuo at amd.com>; Wu, Hersen <hersenxs.wu at amd.com>; Thomas
> Zimmermann <tzimmermann at suse.de>; Mahfooz, Hamza
> <Hamza.Mahfooz at amd.com>; Hung, Alex <Alex.Hung at amd.com>; Francis,
> David <David.Francis at amd.com>; Mikita Lipski <mikita.lipski at amd.com>; Liu,
> Wenjing <Wenjing.Liu at amd.com>; open list:DRM DRIVERS <dri-
> devel at lists.freedesktop.org>; open list <linux-kernel at vger.kernel.org>
> Subject: Re: [PATCH 1/2] drm/amdgpu/mst: Stop ignoring error codes and
> deadlocking
> 
> On Wed, 2022-11-09 at 09:48 +0000, Lin, Wayne wrote:
> > >   	}
> > > -	if (!drm_dp_mst_atomic_check(state) && !debugfs_overwrite) {
> > > +	ret = drm_dp_mst_atomic_check(state);
> > > +	if (ret == 0 && !debugfs_overwrite) {
> > >   		set_dsc_configs_from_fairness_vars(params, vars, count, k);
> > > -		return true;
> > > +		return 0;
> > > +	} else if (ret == -EDEADLK) {
> > > +		return ret;
> >
> > I think we should return here whenever there is an error. Not just for
> > EDEADLK case.
> 
> Are we sure about this one? I think we may actually want to make this so it
> returns on ret != -ENOSPC, since we want the function to continue if there's
> no space in the atomic state available so it can try recomputing things with
> compression enabled. On ret == 0 it should return early without doing
> compression, and on ret == -ENOSPC it should just continue the function
> from there
> 
Oh, right.. Thanks for saving me from causing disaster : )

> --
> Cheers,
>  Lyude Paul (she/her)
>  Software Engineer at Red Hat
--
Regards,
Wayne


More information about the dri-devel mailing list