drm/ttm: Optimize ttm_eu_backoff_reservation
authorThomas Hellstrom <thellstrom@vmware.com>
Wed, 17 Nov 2010 12:28:27 +0000 (12:28 +0000)
committerDave Airlie <airlied@redhat.com>
Mon, 22 Nov 2010 03:25:15 +0000 (13:25 +1000)
Avoid the ttm_bo_unreserve() spinlocks by calling
ttm_eu_backoff_reservation_locked under the lru spinlock.

Signed-off-by: Thomas Hellstrom <thellstrom@vmware.com>
Reviewed-by: Jerome Glisse <j.glisse@gmail.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
drivers/gpu/drm/ttm/ttm_execbuf_util.c

index 201a71d111ec334726baa67758d09726ab019570..7dcc6470e2f59ef36921c904804e9fe8d0926c85 100644 (file)
@@ -101,15 +101,16 @@ static int ttm_eu_wait_unreserved_locked(struct list_head *list,
 void ttm_eu_backoff_reservation(struct list_head *list)
 {
        struct ttm_validate_buffer *entry;
+       struct ttm_bo_global *glob;
 
-       list_for_each_entry(entry, list, head) {
-               struct ttm_buffer_object *bo = entry->bo;
-               if (!entry->reserved)
-                       continue;
+       if (list_empty(list))
+               return;
 
-               entry->reserved = false;
-               ttm_bo_unreserve(bo);
-       }
+       entry = list_first_entry(list, struct ttm_validate_buffer, head);
+       glob = entry->bo->glob;
+       spin_lock(&glob->lru_lock);
+       ttm_eu_backoff_reservation_locked(list);
+       spin_unlock(&glob->lru_lock);
 }
 EXPORT_SYMBOL(ttm_eu_backoff_reservation);