Skip to content

Commit

Permalink
Merge branch 'vmwgfx-fixes-4.17' of git://people.freedesktop.org/~tho…
Browse files Browse the repository at this point in the history
…mash/linux into drm-fixes

Two fixes for now, one for a long standing problem uncovered by a commit
in the 4.17 merge window, one for a regression introduced by a previous
bugfix, Cc'd stable.

* 'vmwgfx-fixes-4.17' of git://people.freedesktop.org/~thomash/linux:
  drm/vmwgfx: Fix a buffer object leak
  drm/vmwgfx: Clean up fbdev modeset locking
  • Loading branch information
Dave Airlie committed May 4, 2018
2 parents 1e5fbc0 + 13f149d commit a02cbe2
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 24 deletions.
31 changes: 10 additions & 21 deletions drivers/gpu/drm/vmwgfx/vmwgfx_fb.c
Original file line number Diff line number Diff line change
Expand Up @@ -441,11 +441,11 @@ static int vmwgfx_set_config_internal(struct drm_mode_set *set)
struct drm_crtc *crtc = set->crtc;
struct drm_framebuffer *fb;
struct drm_crtc *tmp;
struct drm_modeset_acquire_ctx *ctx;
struct drm_device *dev = set->crtc->dev;
struct drm_modeset_acquire_ctx ctx;
int ret;

ctx = dev->mode_config.acquire_ctx;
drm_modeset_acquire_init(&ctx, 0);

restart:
/*
Expand All @@ -458,7 +458,7 @@ static int vmwgfx_set_config_internal(struct drm_mode_set *set)

fb = set->fb;

ret = crtc->funcs->set_config(set, ctx);
ret = crtc->funcs->set_config(set, &ctx);
if (ret == 0) {
crtc->primary->crtc = crtc;
crtc->primary->fb = fb;
Expand All @@ -473,20 +473,13 @@ static int vmwgfx_set_config_internal(struct drm_mode_set *set)
}

if (ret == -EDEADLK) {
dev->mode_config.acquire_ctx = NULL;

retry_locking:
drm_modeset_backoff(ctx);

ret = drm_modeset_lock_all_ctx(dev, ctx);
if (ret)
goto retry_locking;

dev->mode_config.acquire_ctx = ctx;

drm_modeset_backoff(&ctx);
goto restart;
}

drm_modeset_drop_locks(&ctx);
drm_modeset_acquire_fini(&ctx);

return ret;
}

Expand Down Expand Up @@ -624,7 +617,6 @@ static int vmw_fb_set_par(struct fb_info *info)
}

mutex_lock(&par->bo_mutex);
drm_modeset_lock_all(vmw_priv->dev);
ret = vmw_fb_kms_framebuffer(info);
if (ret)
goto out_unlock;
Expand Down Expand Up @@ -657,7 +649,6 @@ static int vmw_fb_set_par(struct fb_info *info)
drm_mode_destroy(vmw_priv->dev, old_mode);
par->set_mode = mode;

drm_modeset_unlock_all(vmw_priv->dev);
mutex_unlock(&par->bo_mutex);

return ret;
Expand Down Expand Up @@ -713,18 +704,14 @@ int vmw_fb_init(struct vmw_private *vmw_priv)
par->max_width = fb_width;
par->max_height = fb_height;

drm_modeset_lock_all(vmw_priv->dev);
ret = vmw_kms_fbdev_init_data(vmw_priv, 0, par->max_width,
par->max_height, &par->con,
&par->crtc, &init_mode);
if (ret) {
drm_modeset_unlock_all(vmw_priv->dev);
if (ret)
goto err_kms;
}

info->var.xres = init_mode->hdisplay;
info->var.yres = init_mode->vdisplay;
drm_modeset_unlock_all(vmw_priv->dev);

/*
* Create buffers and alloc memory
Expand Down Expand Up @@ -832,7 +819,9 @@ int vmw_fb_close(struct vmw_private *vmw_priv)
cancel_delayed_work_sync(&par->local_work);
unregister_framebuffer(info);

mutex_lock(&par->bo_mutex);
(void) vmw_fb_kms_detach(par, true, true);
mutex_unlock(&par->bo_mutex);

vfree(par->vmalloc);
framebuffer_release(info);
Expand Down
14 changes: 11 additions & 3 deletions drivers/gpu/drm/vmwgfx/vmwgfx_kms.c
Original file line number Diff line number Diff line change
Expand Up @@ -2595,6 +2595,7 @@ void vmw_kms_helper_resource_finish(struct vmw_validation_ctx *ctx,
vmw_kms_helper_buffer_finish(res->dev_priv, NULL, ctx->buf,
out_fence, NULL);

vmw_dmabuf_unreference(&ctx->buf);
vmw_resource_unreserve(res, false, NULL, 0);
mutex_unlock(&res->dev_priv->cmdbuf_mutex);
}
Expand Down Expand Up @@ -2680,7 +2681,9 @@ int vmw_kms_fbdev_init_data(struct vmw_private *dev_priv,
struct vmw_display_unit *du;
struct drm_display_mode *mode;
int i = 0;
int ret = 0;

mutex_lock(&dev_priv->dev->mode_config.mutex);
list_for_each_entry(con, &dev_priv->dev->mode_config.connector_list,
head) {
if (i == unit)
Expand All @@ -2691,15 +2694,17 @@ int vmw_kms_fbdev_init_data(struct vmw_private *dev_priv,

if (i != unit) {
DRM_ERROR("Could not find initial display unit.\n");
return -EINVAL;
ret = -EINVAL;
goto out_unlock;
}

if (list_empty(&con->modes))
(void) vmw_du_connector_fill_modes(con, max_width, max_height);

if (list_empty(&con->modes)) {
DRM_ERROR("Could not find initial display mode.\n");
return -EINVAL;
ret = -EINVAL;
goto out_unlock;
}

du = vmw_connector_to_du(con);
Expand All @@ -2720,7 +2725,10 @@ int vmw_kms_fbdev_init_data(struct vmw_private *dev_priv,
head);
}

return 0;
out_unlock:
mutex_unlock(&dev_priv->dev->mode_config.mutex);

return ret;
}

/**
Expand Down

0 comments on commit a02cbe2

Please sign in to comment.