diff options
author | Ben Skeggs <bskeggs@redhat.com> | 2013-11-13 00:18:32 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-12-04 13:57:14 -0500 |
commit | 31278c7029bfeb279e367a437ddeeb45307321a7 (patch) | |
tree | fe46e60b448279bbfce84c55ad0a0355debd2d45 | |
parent | 0c405f5ffe3415927a937fec905393cae640e24e (diff) |
drm/nouveau: when bailing out of a pushbuf ioctl, do not remove previous fence
commit 9360bd1112d8874d21942e2ae74f5416b00a8db6 upstream.
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/gpu/drm/nouveau/nouveau_gem.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/gpu/drm/nouveau/nouveau_gem.c b/drivers/gpu/drm/nouveau/nouveau_gem.c index b4b4d0c1f4af..5bccf31cc974 100644 --- a/drivers/gpu/drm/nouveau/nouveau_gem.c +++ b/drivers/gpu/drm/nouveau/nouveau_gem.c | |||
@@ -287,7 +287,8 @@ validate_fini_list(struct list_head *list, struct nouveau_fence *fence) | |||
287 | list_for_each_safe(entry, tmp, list) { | 287 | list_for_each_safe(entry, tmp, list) { |
288 | nvbo = list_entry(entry, struct nouveau_bo, entry); | 288 | nvbo = list_entry(entry, struct nouveau_bo, entry); |
289 | 289 | ||
290 | nouveau_bo_fence(nvbo, fence); | 290 | if (likely(fence)) |
291 | nouveau_bo_fence(nvbo, fence); | ||
291 | 292 | ||
292 | if (unlikely(nvbo->validate_mapped)) { | 293 | if (unlikely(nvbo->validate_mapped)) { |
293 | ttm_bo_kunmap(&nvbo->kmap); | 294 | ttm_bo_kunmap(&nvbo->kmap); |