From: Maarten Lankhorst Date: Thu, 1 May 2014 11:58:05 +0000 (+0200) Subject: drm/nouveau: fix another lock unbalance in nouveau_crtc_page_flip X-Git-Tag: v3.12.22~69 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=80bd602fc807604d4c82528e81cc2c9b97e3112f;p=platform%2Fkernel%2Flinux-stable.git drm/nouveau: fix another lock unbalance in nouveau_crtc_page_flip commit 806cbc5026933a781b66adecf6d1658fde9138e6 upstream. Fixes a regression introduced by 060810d7abaabca "drm/nouveau: fix locking issues in page flipping paths". chan->cli->mutex is unlocked a second time in the fail_unreserve path, fix this by moving mutex_unlock down. Signed-off-by: Maarten Lankhorst Signed-off-by: Ben Skeggs Signed-off-by: Jiri Slaby --- diff --git a/drivers/gpu/drm/nouveau/nouveau_display.c b/drivers/gpu/drm/nouveau/nouveau_display.c index 7848590f5568..fb072e6a361d 100644 --- a/drivers/gpu/drm/nouveau/nouveau_display.c +++ b/drivers/gpu/drm/nouveau/nouveau_display.c @@ -586,9 +586,9 @@ nouveau_crtc_page_flip(struct drm_crtc *crtc, struct drm_framebuffer *fb, } ret = nouveau_page_flip_emit(chan, old_bo, new_bo, s, &fence); - mutex_unlock(&chan->cli->mutex); if (ret) goto fail_unreserve; + mutex_unlock(&chan->cli->mutex); /* Update the crtc struct and cleanup */ crtc->fb = fb;