diff options
author | Thomas Hellstrom <thellstrom@vmware.com> | 2012-11-20 16:16:50 +0400 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2012-11-28 12:36:14 +0400 |
commit | ae8df2ae8aa27bfeb8d1b99e8adaac5810a97fa8 (patch) | |
tree | 4f51e38c49344d3a097a9deef5965a61721c66ef /drivers/gpu/drm/ttm | |
parent | 35f62a582947ab151c013eaa8cf339e00a5941ab (diff) | |
download | linux-ae8df2ae8aa27bfeb8d1b99e8adaac5810a97fa8.tar.xz |
drm/ttm: Fix locking in an error path
Signed-off-by: Thomas Hellstrom <thellstrom@vmware.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'drivers/gpu/drm/ttm')
-rw-r--r-- | drivers/gpu/drm/ttm/ttm_object.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/gpu/drm/ttm/ttm_object.c b/drivers/gpu/drm/ttm/ttm_object.c index f18eeb458139..0e13d9f059ff 100644 --- a/drivers/gpu/drm/ttm/ttm_object.c +++ b/drivers/gpu/drm/ttm/ttm_object.c @@ -174,7 +174,9 @@ int ttm_base_object_init(struct ttm_object_file *tfile, return 0; out_err1: + spin_lock(&tdev->object_lock); (void)drm_ht_remove_item(&tdev->object_hash, &base->hash); + spin_unlock(&tdev->object_lock); out_err0: return ret; } |