On Thu, Jun 20, 2019 at 01:28:55PM +0200, Daniel Vetter wrote: > On Wed, Jun 19, 2019 at 02:19:47PM -0400, Sean Paul wrote: > > From: Sean Paul <seanpaul@xxxxxxxxxxxx> > > > > If state allocation fails, we still try to give back the reference on > > it. Also initialize ret in case the crtc is not enabled and we hit the > > eject button. > > > > Fixes: 1452c25b0e60 ("drm: Add helpers to kick off self refresh mode in drivers") > > Cc: Daniel Vetter <daniel@xxxxxxxx> > > Cc: Jose Souza <jose.souza@xxxxxxxxx> > > Cc: Zain Wang <wzz@xxxxxxxxxxxxxx> > > Cc: Tomasz Figa <tfiga@xxxxxxxxxxxx> > > Cc: Ville Syrjälä <ville.syrjala@xxxxxxxxxxxxxxx> > > Cc: Sam Ravnborg <sam@xxxxxxxxxxxx> > > Cc: Sean Paul <seanpaul@xxxxxxxxxxxx> > > Cc: Maarten Lankhorst <maarten.lankhorst@xxxxxxxxxxxxxxx> > > Cc: Maxime Ripard <maxime.ripard@xxxxxxxxxxx> > > Cc: Sean Paul <sean@xxxxxxxxxx> > > Cc: David Airlie <airlied@xxxxxxxx> > > Cc: dri-devel@xxxxxxxxxxxxxxxxxxxxx > > Reported-by: Dan Carpenter <dan.carpenter@xxxxxxxxxx> > > Signed-off-by: Sean Paul <seanpaul@xxxxxxxxxxxx> > > Reviewed-by: Daniel Vetter <daniel.vetter@xxxxxxxx> > Applied to -misc-next, thanks! Sean > > --- > > drivers/gpu/drm/drm_self_refresh_helper.c | 6 ++++-- > > 1 file changed, 4 insertions(+), 2 deletions(-) > > > > diff --git a/drivers/gpu/drm/drm_self_refresh_helper.c b/drivers/gpu/drm/drm_self_refresh_helper.c > > index e0d2ad1f070cb..4b9424a8f1f1c 100644 > > --- a/drivers/gpu/drm/drm_self_refresh_helper.c > > +++ b/drivers/gpu/drm/drm_self_refresh_helper.c > > @@ -69,14 +69,14 @@ static void drm_self_refresh_helper_entry_work(struct work_struct *work) > > struct drm_connector *conn; > > struct drm_connector_state *conn_state; > > struct drm_crtc_state *crtc_state; > > - int i, ret; > > + int i, ret = 0; > > > > drm_modeset_acquire_init(&ctx, 0); > > > > state = drm_atomic_state_alloc(dev); > > if (!state) { > > ret = -ENOMEM; > > - goto out; > > + goto out_drop_locks; > > } > > > > retry: > > @@ -116,6 +116,8 @@ static void drm_self_refresh_helper_entry_work(struct work_struct *work) > > } > > > > drm_atomic_state_put(state); > > + > > +out_drop_locks: > > drm_modeset_drop_locks(&ctx); > > drm_modeset_acquire_fini(&ctx); > > } > > -- > > Sean Paul, Software Engineer, Google / Chromium OS > > > > -- > Daniel Vetter > Software Engineer, Intel Corporation > http://blog.ffwll.ch -- Sean Paul, Software Engineer, Google / Chromium OS _______________________________________________ dri-devel mailing list dri-devel@xxxxxxxxxxxxxxxxxxxxx https://lists.freedesktop.org/mailman/listinfo/dri-devel