]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/commitdiff
drm/i915: Remove waiting & retiring from shrinker paths
authorChris Wilson <chris@chris-wilson.co.uk>
Fri, 21 Jun 2019 18:37:57 +0000 (19:37 +0100)
committerChris Wilson <chris@chris-wilson.co.uk>
Fri, 21 Jun 2019 18:47:48 +0000 (19:47 +0100)
i915_gem_wait_for_idle() and i915_retire_requests() introduce a
dependency on the timeline->mutex. This is problematic as we want to
later perform allocations underneath i915_active.mutex, forming a link
between the shrinker, the timeline and active mutexes. Nip this cycle in
the bud by removing the acquisition of the timeline mutex (i.e.
retiring) from inside the shrinker.

Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Reviewed-by: Matthew Auld <matthew.auld@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20190621183801.23252-1-chris@chris-wilson.co.uk
drivers/gpu/drm/i915/gem/i915_gem_shrinker.c
drivers/gpu/drm/i915/gem/selftests/i915_gem_context.c
drivers/gpu/drm/i915/gt/intel_gt_types.h
drivers/gpu/drm/i915/gt/intel_timeline.c

index 3a926a8755c6cfb690a50f359f69dca90a6524c6..1bbc690494c7058de7f8a05f6832b0f2eb1cc53a 100644 (file)
@@ -169,7 +169,6 @@ i915_gem_shrink(struct drm_i915_private *i915,
         */
 
        trace_i915_gem_shrink(i915, target, shrink);
-       i915_retire_requests(i915);
 
        /*
         * Unbinding of objects will require HW access; Let us not wake the
@@ -269,8 +268,6 @@ i915_gem_shrink(struct drm_i915_private *i915,
        if (shrink & I915_SHRINK_BOUND)
                intel_runtime_pm_put(&i915->runtime_pm, wakeref);
 
-       i915_retire_requests(i915);
-
        shrinker_unlock(i915, unlock);
 
        if (nr_scanned)
@@ -427,12 +424,6 @@ i915_gem_shrinker_vmap(struct notifier_block *nb, unsigned long event, void *ptr
        if (!shrinker_lock(i915, 0, &unlock))
                return NOTIFY_DONE;
 
-       /* Force everything onto the inactive lists */
-       if (i915_gem_wait_for_idle(i915,
-                                  I915_WAIT_LOCKED,
-                                  MAX_SCHEDULE_TIMEOUT))
-               goto out;
-
        with_intel_runtime_pm(&i915->runtime_pm, wakeref)
                freed_pages += i915_gem_shrink(i915, -1UL, NULL,
                                               I915_SHRINK_BOUND |
@@ -455,7 +446,6 @@ i915_gem_shrinker_vmap(struct notifier_block *nb, unsigned long event, void *ptr
        }
        mutex_unlock(&i915->ggtt.vm.mutex);
 
-out:
        shrinker_unlock(i915, unlock);
 
        *(unsigned long *)ptr += freed_pages;
index 167c4a57c4cd7b29c6c05991ffda233238c750e9..53c81b5dfd696dbbfd8a4b9cbd0ec7949290c0eb 100644 (file)
@@ -427,6 +427,9 @@ create_test_object(struct i915_gem_context *ctx,
        u64 size;
        int err;
 
+       /* Keep in GEM's good graces */
+       i915_retire_requests(ctx->i915);
+
        size = min(vm->total / 2, 1024ull * DW_PER_PAGE * PAGE_SIZE);
        size = round_down(size, DW_PER_PAGE * PAGE_SIZE);
 
index 722506b7cec06a11ea2b2df2d34e25b49e48894e..c03e56628ee2c1089b41df1cddd064802200de50 100644 (file)
@@ -26,7 +26,7 @@ struct intel_gt {
        struct i915_ggtt *ggtt;
 
        struct intel_gt_timelines {
-               struct mutex mutex; /* protects list, tainted by GPU */
+               struct mutex mutex; /* protects list */
                struct list_head active_list;
 
                /* Pack multiple timelines' seqnos into the same page */
index d6accef50f8eb36bcfc37540e7d4e780648be473..44273b7c96f8ff21bfdf3dc8e335c5efb08d9b3f 100644 (file)
@@ -268,9 +268,6 @@ static void timelines_init(struct intel_gt *gt)
 
        spin_lock_init(&timelines->hwsp_lock);
        INIT_LIST_HEAD(&timelines->hwsp_free_list);
-
-       /* via i915_gem_wait_for_idle() */
-       i915_gem_shrinker_taints_mutex(gt->i915, &timelines->mutex);
 }
 
 void intel_timelines_init(struct drm_i915_private *i915)