]> rtime.felk.cvut.cz Git - linux-imx.git/commitdiff
drm/ttm: remove ttm_mem_global->queue
authorMarcin Slusarz <marcin.slusarz@gmail.com>
Tue, 6 Nov 2012 21:49:54 +0000 (21:49 +0000)
committerDave Airlie <airlied@redhat.com>
Tue, 20 Nov 2012 06:06:22 +0000 (16:06 +1000)
It's unused.

Signed-off-by: Marcin Slusarz <marcin.slusarz@gmail.com>
Reviewed-by: Thomas Hellstrom <thellstrom@vmware.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
drivers/gpu/drm/ttm/ttm_memory.c
include/drm/ttm/ttm_memory.h

index 479c6b0467caefc21e2082d6f24bb1ed5bfdbba0..dbc2def887cdbb6008d1d3ec7bec9f188d570b1a 100644 (file)
@@ -367,7 +367,6 @@ int ttm_mem_global_init(struct ttm_mem_global *glob)
        spin_lock_init(&glob->lock);
        glob->swap_queue = create_singlethread_workqueue("ttm_swap");
        INIT_WORK(&glob->work, ttm_shrink_work);
-       init_waitqueue_head(&glob->queue);
        ret = kobject_init_and_add(
                &glob->kobj, &ttm_mem_glob_kobj_type, ttm_get_kobj(), "memory_accounting");
        if (unlikely(ret != 0)) {
index d6d1da468c9729404b17fc324dec192266da1417..72dcbe81dd0706ee1e7e8c95c5f7d06ef38158da 100644 (file)
@@ -60,7 +60,6 @@ struct ttm_mem_shrink {
  * for the GPU, and this will otherwise block other workqueue tasks(?)
  * At this point we use only a single-threaded workqueue.
  * @work: The workqueue callback for the shrink queue.
- * @queue: Wait queue for processes suspended waiting for memory.
  * @lock: Lock to protect the @shrink - and the memory accounting members,
  * that is, essentially the whole structure with some exceptions.
  * @zones: Array of pointers to accounting zones.
@@ -80,7 +79,6 @@ struct ttm_mem_global {
        struct ttm_mem_shrink *shrink;
        struct workqueue_struct *swap_queue;
        struct work_struct work;
-       wait_queue_head_t queue;
        spinlock_t lock;
        struct ttm_mem_zone *zones[TTM_MEM_MAX_ZONES];
        unsigned int num_zones;