diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2009-12-02 10:15:30 -0500 |
---|---|---|
committer | Eric Anholt <eric@anholt.net> | 2009-12-07 18:44:30 -0500 |
commit | 5618ca6abc2d6f475b258badc017a5254cf43d1b (patch) | |
tree | b3b3f9016d3db00c6dc62dceb56bd4c4c00eced2 /drivers/gpu | |
parent | fcffb947668073fd9c47da33f8e72add7f62163d (diff) |
drm/i915: Set the error code after failing to insert new offset into mm ht.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Cc: stable@kernel.org
Signed-off-by: Eric Anholt <eric@anholt.net>
Diffstat (limited to 'drivers/gpu')
-rw-r--r-- | drivers/gpu/drm/i915/i915_gem.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpu/drm/i915/i915_gem.c b/drivers/gpu/drm/i915/i915_gem.c index 5b46623d62d4..917b8377ae28 100644 --- a/drivers/gpu/drm/i915/i915_gem.c +++ b/drivers/gpu/drm/i915/i915_gem.c | |||
@@ -1288,6 +1288,7 @@ i915_gem_create_mmap_offset(struct drm_gem_object *obj) | |||
1288 | list->hash.key = list->file_offset_node->start; | 1288 | list->hash.key = list->file_offset_node->start; |
1289 | if (drm_ht_insert_item(&mm->offset_hash, &list->hash)) { | 1289 | if (drm_ht_insert_item(&mm->offset_hash, &list->hash)) { |
1290 | DRM_ERROR("failed to add to map hash\n"); | 1290 | DRM_ERROR("failed to add to map hash\n"); |
1291 | ret = -ENOMEM; | ||
1291 | goto out_free_mm; | 1292 | goto out_free_mm; |
1292 | } | 1293 | } |
1293 | 1294 | ||