1
0
Fork 0

drm/vmwgfx: unlock on error path in vmw_execbuf_process()

There is a missing unlock on error here.

Fixes: 30f82d816d ('drm/vmwgfx: Reemit context bindings when necessary v2')
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Reviewed-by: Thomas Hellstrom <thellstrom@vmware.com>
hifive-unleashed-5.1
Dan Carpenter 2014-02-11 19:03:47 +03:00 committed by Thomas Hellstrom
parent 857aea1c57
commit b2ad9881d6
1 changed files with 1 additions and 1 deletions

View File

@ -2469,7 +2469,7 @@ int vmw_execbuf_process(struct drm_file *file_priv,
if (dev_priv->has_mob) {
ret = vmw_rebind_contexts(sw_context);
if (unlikely(ret != 0))
goto out_err;
goto out_unlock_binding;
}
cmd = vmw_fifo_reserve(dev_priv, command_size);