summaryrefslogtreecommitdiff
path: root/linux-core
diff options
context:
space:
mode:
authorThomas Hellstrom <thomas-at-tungstengraphics-dot-com>2008-03-30 21:30:43 +0200
committerThomas Hellstrom <thomas-at-tungstengraphics-dot-com>2008-03-30 21:30:43 +0200
commit22d931f9664e1857e07ce7ab8aad760a4a22f15e (patch)
tree85f4c1b4ac27d0bc3b1926d75c73fa7f0b83453d /linux-core
parent1f4ba62567d32fdd32786273326e1aab17d5d412 (diff)
Initialize the fence::error member.
Diffstat (limited to 'linux-core')
-rw-r--r--linux-core/drm_fence.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/linux-core/drm_fence.c b/linux-core/drm_fence.c
index 0ca0c408..7c78e09f 100644
--- a/linux-core/drm_fence.c
+++ b/linux-core/drm_fence.c
@@ -445,6 +445,7 @@ int drm_fence_object_emit(struct drm_fence_object *fence, uint32_t fence_flags,
fence->type = type;
fence->waiting_types = 0;
fence->signaled_types = 0;
+ fence->error = 0;
fence->sequence = sequence;
fence->native_types = native_types;
if (list_empty(&fc->ring))
@@ -482,6 +483,7 @@ static int drm_fence_object_init(struct drm_device *dev, uint32_t fence_class,
fence->signaled_types = 0;
fence->waiting_types = 0;
fence->sequence = 0;
+ fence->error = 0;
fence->dev = dev;
write_unlock_irqrestore(&fm->lock, flags);
if (fence_flags & DRM_FENCE_FLAG_EMIT) {