Skip to content

Commit

Permalink
experiment - what happens when i just use atomic nonblocking commit ?
Browse files Browse the repository at this point in the history
  • Loading branch information
Consti10 committed Apr 8, 2024
1 parent 620deff commit 26f77c1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion drivers/gpu/drm/rockchip/rockchip_drm_vop2.c
Original file line number Diff line number Diff line change
Expand Up @@ -5375,7 +5375,9 @@ rockchip_atomic_helper_update_plane(struct drm_plane *plane,
if (plane == crtc->cursor || vpstate->async_commit)
state->legacy_cursor_update = true;

ret = drm_atomic_commit(state);
// Consti10
ret = drm_atomic_nonblocking_commit(state);
//ret = drm_atomic_commit(state);
fail:
drm_atomic_state_put(state);
return ret;
Expand Down

0 comments on commit 26f77c1

Please sign in to comment.