qxl/ttm: drop the unusued no wait flag to reserve function
Reviewed-by: Gerd Hoffmann <kraxel@redhat.com> Signed-off-by: Dave Airlie <airlied@redhat.com> Link: https://patchwork.freedesktop.org/patch/msgid/20200804025632.3868079-5-airlied@gmail.com
This commit is contained in:
parent
bd549d35b4
commit
9c4cbb3a66
@ -588,7 +588,7 @@ static int qxl_reap_surf(struct qxl_device *qdev, struct qxl_bo *surf, bool stal
|
|||||||
{
|
{
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
ret = qxl_bo_reserve(surf, false);
|
ret = qxl_bo_reserve(surf);
|
||||||
if (ret)
|
if (ret)
|
||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
|
@ -322,7 +322,7 @@ static int qxl_update_area_ioctl(struct drm_device *dev, void *data,
|
|||||||
|
|
||||||
qobj = gem_to_qxl_bo(gobj);
|
qobj = gem_to_qxl_bo(gobj);
|
||||||
|
|
||||||
ret = qxl_bo_reserve(qobj, false);
|
ret = qxl_bo_reserve(qobj);
|
||||||
if (ret)
|
if (ret)
|
||||||
goto out;
|
goto out;
|
||||||
|
|
||||||
|
@ -284,7 +284,7 @@ int qxl_bo_pin(struct qxl_bo *bo)
|
|||||||
{
|
{
|
||||||
int r;
|
int r;
|
||||||
|
|
||||||
r = qxl_bo_reserve(bo, false);
|
r = qxl_bo_reserve(bo);
|
||||||
if (r)
|
if (r)
|
||||||
return r;
|
return r;
|
||||||
|
|
||||||
@ -302,7 +302,7 @@ int qxl_bo_unpin(struct qxl_bo *bo)
|
|||||||
{
|
{
|
||||||
int r;
|
int r;
|
||||||
|
|
||||||
r = qxl_bo_reserve(bo, false);
|
r = qxl_bo_reserve(bo);
|
||||||
if (r)
|
if (r)
|
||||||
return r;
|
return r;
|
||||||
|
|
||||||
|
@ -27,11 +27,11 @@
|
|||||||
|
|
||||||
#include "qxl_drv.h"
|
#include "qxl_drv.h"
|
||||||
|
|
||||||
static inline int qxl_bo_reserve(struct qxl_bo *bo, bool no_wait)
|
static inline int qxl_bo_reserve(struct qxl_bo *bo)
|
||||||
{
|
{
|
||||||
int r;
|
int r;
|
||||||
|
|
||||||
r = ttm_bo_reserve(&bo->tbo, true, no_wait, NULL);
|
r = ttm_bo_reserve(&bo->tbo, true, false, NULL);
|
||||||
if (unlikely(r != 0)) {
|
if (unlikely(r != 0)) {
|
||||||
if (r != -ERESTARTSYS) {
|
if (r != -ERESTARTSYS) {
|
||||||
struct drm_device *ddev = bo->tbo.base.dev;
|
struct drm_device *ddev = bo->tbo.base.dev;
|
||||||
|
Loading…
Reference in New Issue
Block a user