summaryrefslogtreecommitdiff
path: root/linux-core/drm_fence.c
diff options
context:
space:
mode:
authorThomas Hellstrom <thomas-at-tungstengraphics-dot-com>2006-10-19 16:58:00 +0200
committerThomas Hellstrom <thomas-at-tungstengraphics-dot-com>2006-10-19 16:58:00 +0200
commite8ba62db722eb0b915377269d7e1c3a039928669 (patch)
treed45fe5a5eeff6105a1056a9fd970d6f28fb3089b /linux-core/drm_fence.c
parente172945d668f1de1243ac2ae91ab77f3b2bda40a (diff)
Make sure delayed delete list is empty on lastclose.
Fix some refcounting errors. Fix some error messages.
Diffstat (limited to 'linux-core/drm_fence.c')
-rw-r--r--linux-core/drm_fence.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/linux-core/drm_fence.c b/linux-core/drm_fence.c
index aa382046..f656340e 100644
--- a/linux-core/drm_fence.c
+++ b/linux-core/drm_fence.c
@@ -311,7 +311,9 @@ int drm_fence_object_wait(drm_device_t * dev,
ret = -EBUSY;
if (ret) {
if (ret == -EBUSY) {
- DRM_ERROR("Fence timout. GPU lockup.\n");
+ DRM_ERROR("Fence timeout. "
+ "GPU lockup or fence driver was "
+ "taken down.\n");
}
return ((ret == -EINTR) ? -EAGAIN : ret);
}