diff options
author | Roger He <[email protected]> | 2017-12-07 12:51:19 +0800 |
---|---|---|
committer | Alex Deucher <[email protected]> | 2017-12-14 10:23:02 -0500 |
commit | 5cc636846d23ed817fdda9f00faa56284759d444 (patch) | |
tree | 99642205324444c62ebce93ffcb654e9b08cf24d | |
parent | 7364d60882bfe87aa170a5e69a84872692469088 (diff) |
drm/ttm: init locked again to prevent incorrect unlock
Signed-off-by: Roger He <[email protected]>
Reviewed-by: Christian König <[email protected]>
Signed-off-by: Alex Deucher <[email protected]>
-rw-r--r-- | drivers/gpu/drm/ttm/ttm_bo.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpu/drm/ttm/ttm_bo.c b/drivers/gpu/drm/ttm/ttm_bo.c index 97c3da6d5f17..7a9abc2a3a98 100644 --- a/drivers/gpu/drm/ttm/ttm_bo.c +++ b/drivers/gpu/drm/ttm/ttm_bo.c @@ -737,6 +737,7 @@ static int ttm_mem_evict_first(struct ttm_bo_device *bdev, place)) { if (locked) reservation_object_unlock(bo->resv); + locked = false; continue; } break; |