drm/nouveau: remove use of -ERESTART
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
This commit is contained in:
parent
81a5487756
commit
9ddc8c52f5
2 changed files with 1 additions and 8 deletions
|
@ -205,7 +205,7 @@ nouveau_fence_wait(void *sync_obj, void *sync_arg, bool lazy, bool intr)
|
||||||
schedule_timeout(1);
|
schedule_timeout(1);
|
||||||
|
|
||||||
if (intr && signal_pending(current)) {
|
if (intr && signal_pending(current)) {
|
||||||
ret = -ERESTART;
|
ret = -ERESTARTSYS;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -342,8 +342,6 @@ retry:
|
||||||
}
|
}
|
||||||
|
|
||||||
ret = ttm_bo_wait_cpu(&nvbo->bo, false);
|
ret = ttm_bo_wait_cpu(&nvbo->bo, false);
|
||||||
if (ret == -ERESTART)
|
|
||||||
ret = -EAGAIN;
|
|
||||||
if (ret)
|
if (ret)
|
||||||
return ret;
|
return ret;
|
||||||
goto retry;
|
goto retry;
|
||||||
|
@ -915,8 +913,6 @@ nouveau_gem_ioctl_cpu_prep(struct drm_device *dev, void *data,
|
||||||
goto out;
|
goto out;
|
||||||
|
|
||||||
ret = ttm_bo_wait_cpu(&nvbo->bo, no_wait);
|
ret = ttm_bo_wait_cpu(&nvbo->bo, no_wait);
|
||||||
if (ret == -ERESTART)
|
|
||||||
ret = -EAGAIN;
|
|
||||||
if (ret)
|
if (ret)
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
|
@ -925,9 +921,6 @@ nouveau_gem_ioctl_cpu_prep(struct drm_device *dev, void *data,
|
||||||
ret = ttm_bo_wait(&nvbo->bo, false, false, no_wait);
|
ret = ttm_bo_wait(&nvbo->bo, false, false, no_wait);
|
||||||
} else {
|
} else {
|
||||||
ret = ttm_bo_synccpu_write_grab(&nvbo->bo, no_wait);
|
ret = ttm_bo_synccpu_write_grab(&nvbo->bo, no_wait);
|
||||||
if (ret == -ERESTART)
|
|
||||||
ret = -EAGAIN;
|
|
||||||
else
|
|
||||||
if (ret == 0)
|
if (ret == 0)
|
||||||
nvbo->cpu_filp = file_priv;
|
nvbo->cpu_filp = file_priv;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue