disp: msm: sde: retry preclose commit in cases of -ERESTARTSYS

This change allows the commit in preclose to be attempted a
number of times in the event that the return value is -ERESTARTSYS.
This can happen if there is some timing delay which is preventing
the commit to go through completely and an error code is returned.

Change-Id: I26d85d777be182bc153532d7c06f816c934783a4
Signed-off-by: Samantha Tran <samtran@codeaurora.org>
This commit is contained in:
Samantha Tran
2021-08-24 11:43:16 -07:00
committad av Gerrit - the friendly Code Review server
förälder 3a2c526376
incheckning e1cb09ad31

Visa fil

@@ -2559,7 +2559,10 @@ error:
list_for_each_entry_safe(fb, tfb, &fbs, filp_head)
list_move_tail(&fb->filp_head, &file->fbs);
SDE_ERROR("atomic commit failed in preclose, ret:%d\n", ret);
if (ret == -EDEADLK || ret == -ERESTARTSYS)
SDE_DEBUG("atomic commit failed in preclose, ret:%d\n", ret);
else
SDE_ERROR("atomic commit failed in preclose, ret:%d\n", ret);
goto end;
}
@@ -2608,7 +2611,7 @@ retry:
for (i = 0; i < TEARDOWN_DEADLOCK_RETRY_MAX; i++) {
ret = _sde_kms_remove_fbs(sde_kms, file, state);
if (ret != -EDEADLK)
if (ret != -EDEADLK && ret != -ERESTARTSYS)
break;
drm_atomic_state_clear(state);
drm_modeset_backoff(&ctx);