2015-03-18 09:46:04 +00:00
|
|
|
/*
|
2019-05-28 09:29:49 +00:00
|
|
|
* SPDX-License-Identifier: MIT
|
2015-03-18 09:46:04 +00:00
|
|
|
*
|
2019-05-28 09:29:49 +00:00
|
|
|
* Copyright © 2008-2015 Intel Corporation
|
2015-03-18 09:46:04 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/oom.h>
|
2018-07-11 07:36:02 +00:00
|
|
|
#include <linux/sched/mm.h>
|
2015-03-18 09:46:04 +00:00
|
|
|
#include <linux/shmem_fs.h>
|
|
|
|
#include <linux/slab.h>
|
|
|
|
#include <linux/swap.h>
|
|
|
|
#include <linux/pci.h>
|
|
|
|
#include <linux/dma-buf.h>
|
2016-04-04 13:46:43 +00:00
|
|
|
#include <linux/vmalloc.h>
|
2015-03-18 09:46:04 +00:00
|
|
|
#include <drm/i915_drm.h>
|
|
|
|
|
|
|
|
#include "i915_trace.h"
|
|
|
|
|
2019-01-07 11:54:24 +00:00
|
|
|
static bool shrinker_lock(struct drm_i915_private *i915,
|
|
|
|
unsigned int flags,
|
|
|
|
bool *unlock)
|
2015-03-18 09:46:04 +00:00
|
|
|
{
|
2019-01-09 16:42:03 +00:00
|
|
|
struct mutex *m = &i915->drm.struct_mutex;
|
|
|
|
|
|
|
|
switch (mutex_trylock_recursive(m)) {
|
2016-12-13 17:35:09 +00:00
|
|
|
case MUTEX_TRYLOCK_RECURSIVE:
|
2016-10-28 12:58:37 +00:00
|
|
|
*unlock = false;
|
2016-12-13 17:35:09 +00:00
|
|
|
return true;
|
2017-06-09 11:03:49 +00:00
|
|
|
|
|
|
|
case MUTEX_TRYLOCK_FAILED:
|
2017-08-04 10:41:35 +00:00
|
|
|
*unlock = false;
|
2019-01-09 16:42:03 +00:00
|
|
|
if (flags & I915_SHRINK_ACTIVE &&
|
|
|
|
mutex_lock_killable_nested(m, I915_MM_SHRINKER) == 0)
|
2019-01-07 11:54:24 +00:00
|
|
|
*unlock = true;
|
2017-08-04 10:41:35 +00:00
|
|
|
return *unlock;
|
2017-06-09 11:03:49 +00:00
|
|
|
|
2017-08-04 10:41:35 +00:00
|
|
|
case MUTEX_TRYLOCK_SUCCESS:
|
|
|
|
*unlock = true;
|
|
|
|
return true;
|
2016-10-28 12:58:37 +00:00
|
|
|
}
|
|
|
|
|
2016-12-13 17:35:09 +00:00
|
|
|
BUG();
|
2016-10-28 12:58:37 +00:00
|
|
|
}
|
|
|
|
|
2017-11-23 11:53:38 +00:00
|
|
|
static void shrinker_unlock(struct drm_i915_private *i915, bool unlock)
|
2017-04-07 10:49:34 +00:00
|
|
|
{
|
|
|
|
if (!unlock)
|
|
|
|
return;
|
|
|
|
|
2017-11-23 11:53:38 +00:00
|
|
|
mutex_unlock(&i915->drm.struct_mutex);
|
2017-04-07 10:49:34 +00:00
|
|
|
}
|
|
|
|
|
2015-12-04 15:58:54 +00:00
|
|
|
static bool swap_available(void)
|
|
|
|
{
|
|
|
|
return get_nr_swap_pages() > 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool can_release_pages(struct drm_i915_gem_object *obj)
|
|
|
|
{
|
2016-11-01 14:44:10 +00:00
|
|
|
/* Consider only shrinkable ojects. */
|
|
|
|
if (!i915_gem_object_is_shrinkable(obj))
|
2016-04-20 11:09:52 +00:00
|
|
|
return false;
|
|
|
|
|
2015-12-04 15:58:54 +00:00
|
|
|
/* Only report true if by unbinding the object and putting its pages
|
|
|
|
* we can actually make forward progress towards freeing physical
|
|
|
|
* pages.
|
|
|
|
*
|
|
|
|
* If the pages are pinned for any other reason than being bound
|
|
|
|
* to the GPU, simply unbinding from the GPU is not going to succeed
|
|
|
|
* in releasing our pin count on the pages themselves.
|
|
|
|
*/
|
2019-06-12 10:57:20 +00:00
|
|
|
if (atomic_read(&obj->mm.pages_pin_count) > atomic_read(&obj->bind_count))
|
2016-08-04 06:52:26 +00:00
|
|
|
return false;
|
|
|
|
|
2017-10-13 20:26:16 +00:00
|
|
|
/* If any vma are "permanently" pinned, it will prevent us from
|
|
|
|
* reclaiming the obj->mm.pages. We only allow scanout objects to claim
|
|
|
|
* a permanent pin, along with a few others like the context objects.
|
|
|
|
* To simplify the scan, and to avoid walking the list of vma under the
|
|
|
|
* object, we just check the count of its permanently pinned.
|
|
|
|
*/
|
2017-10-16 11:40:37 +00:00
|
|
|
if (READ_ONCE(obj->pin_global))
|
2015-12-04 15:58:54 +00:00
|
|
|
return false;
|
|
|
|
|
|
|
|
/* We can only return physical pages to the system if we can either
|
|
|
|
* discard the contents (because the user has marked them as being
|
|
|
|
* purgeable) or if we can move their contents out to swap.
|
|
|
|
*/
|
2016-10-28 12:58:35 +00:00
|
|
|
return swap_available() || obj->mm.madv == I915_MADV_DONTNEED;
|
2015-12-04 15:58:54 +00:00
|
|
|
}
|
|
|
|
|
2019-07-03 09:17:17 +00:00
|
|
|
static bool unsafe_drop_pages(struct drm_i915_gem_object *obj,
|
|
|
|
unsigned long shrink)
|
2016-10-28 12:58:36 +00:00
|
|
|
{
|
2019-07-03 09:17:17 +00:00
|
|
|
unsigned long flags;
|
|
|
|
|
|
|
|
flags = 0;
|
|
|
|
if (shrink & I915_SHRINK_ACTIVE)
|
|
|
|
flags = I915_GEM_OBJECT_UNBIND_ACTIVE;
|
|
|
|
|
|
|
|
if (i915_gem_object_unbind(obj, flags) == 0)
|
2016-11-01 12:11:34 +00:00
|
|
|
__i915_gem_object_put_pages(obj, I915_MM_SHRINKER);
|
2019-07-03 09:17:17 +00:00
|
|
|
|
2017-10-13 20:26:13 +00:00
|
|
|
return !i915_gem_object_has_pages(obj);
|
2015-12-04 15:58:54 +00:00
|
|
|
}
|
|
|
|
|
2019-05-28 09:29:46 +00:00
|
|
|
static void try_to_writeback(struct drm_i915_gem_object *obj,
|
|
|
|
unsigned int flags)
|
drm/i915: Start writeback from the shrinker
When we are called to relieve mempressue via the shrinker, the only way
we can make progress is either by discarding unwanted pages (those
objects that userspace has marked MADV_DONTNEED) or by reclaiming the
dirty objects via swap. As we know that is the only way to make further
progress, we can initiate the writeback as we invalidate the objects.
This means the objects we put onto the inactive anon lru list are
already marked for reclaim+writeback and so will trigger a wait upon the
writeback inside direct reclaim, greatly improving the success rate of
direct reclaim on i915 objects.
The corollary is that we may start a slow swap on opportunistic
mempressure from the likes of the compaction + migration kthreads. This
is limited by those threads only being allowed to shrink idle pages, but
also that if we reactivate the page before it is swapped out by gpu
activity, we only page the cost of repinning the page. The cost is most
felt when an object is reused after mempressure, which hopefully
excludes the latency sensitive tasks (as we are just extending the
impact of swap thrashing to them).
Apparently this is not the first time we've had this idea. Back in
commit 5537252b6b6d ("drm/i915: Invalidate our pages under memory
pressure") we wanted to start writeback but settled on invalidate after
Hugh Dickins warned us about a possibility of a deadlock within shmemfs
if we started writeback from shrink_slab. Looking at the callchain,
using writeback from i915_gem_shrink should be equivalent to the pageout
also employed by shrink_slab, i.e. it should not be any riskier afaict.
v2: Leave mmapings intact. At this point, the only mmapings of our
objects will be via CPU mmaps on the shmemfs filp, which are
out-of-scope for our LRU tracking. Instead leave those pages to the
inactive anon LRU page list for aging and pageout as normal.
v3: Be selective on which paths trigger writeback, in particular
excluding paths shrinking just to reclaim vm space (e.g. mmap, vmap
reapers) and avoid starting writeback on the entire process space from
within the pm freezer.
References: https://bugs.freedesktop.org/show_bug.cgi?id=108686
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Mika Kuoppala <mika.kuoppala@linux.intel.com>
Cc: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Cc: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Cc: Matthew Auld <matthew.auld@intel.com>
Cc: Daniel Vetter <daniel.vetter@ffwll.ch>
Cc: Michal Hocko <mhocko@suse.com>
Reviewed-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com> #v1
Link: https://patchwork.freedesktop.org/patch/msgid/20190420115539.29081-1-chris@chris-wilson.co.uk
2019-04-20 11:55:39 +00:00
|
|
|
{
|
|
|
|
switch (obj->mm.madv) {
|
|
|
|
case I915_MADV_DONTNEED:
|
2019-05-28 09:29:46 +00:00
|
|
|
i915_gem_object_truncate(obj);
|
drm/i915: Start writeback from the shrinker
When we are called to relieve mempressue via the shrinker, the only way
we can make progress is either by discarding unwanted pages (those
objects that userspace has marked MADV_DONTNEED) or by reclaiming the
dirty objects via swap. As we know that is the only way to make further
progress, we can initiate the writeback as we invalidate the objects.
This means the objects we put onto the inactive anon lru list are
already marked for reclaim+writeback and so will trigger a wait upon the
writeback inside direct reclaim, greatly improving the success rate of
direct reclaim on i915 objects.
The corollary is that we may start a slow swap on opportunistic
mempressure from the likes of the compaction + migration kthreads. This
is limited by those threads only being allowed to shrink idle pages, but
also that if we reactivate the page before it is swapped out by gpu
activity, we only page the cost of repinning the page. The cost is most
felt when an object is reused after mempressure, which hopefully
excludes the latency sensitive tasks (as we are just extending the
impact of swap thrashing to them).
Apparently this is not the first time we've had this idea. Back in
commit 5537252b6b6d ("drm/i915: Invalidate our pages under memory
pressure") we wanted to start writeback but settled on invalidate after
Hugh Dickins warned us about a possibility of a deadlock within shmemfs
if we started writeback from shrink_slab. Looking at the callchain,
using writeback from i915_gem_shrink should be equivalent to the pageout
also employed by shrink_slab, i.e. it should not be any riskier afaict.
v2: Leave mmapings intact. At this point, the only mmapings of our
objects will be via CPU mmaps on the shmemfs filp, which are
out-of-scope for our LRU tracking. Instead leave those pages to the
inactive anon LRU page list for aging and pageout as normal.
v3: Be selective on which paths trigger writeback, in particular
excluding paths shrinking just to reclaim vm space (e.g. mmap, vmap
reapers) and avoid starting writeback on the entire process space from
within the pm freezer.
References: https://bugs.freedesktop.org/show_bug.cgi?id=108686
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Mika Kuoppala <mika.kuoppala@linux.intel.com>
Cc: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Cc: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Cc: Matthew Auld <matthew.auld@intel.com>
Cc: Daniel Vetter <daniel.vetter@ffwll.ch>
Cc: Michal Hocko <mhocko@suse.com>
Reviewed-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com> #v1
Link: https://patchwork.freedesktop.org/patch/msgid/20190420115539.29081-1-chris@chris-wilson.co.uk
2019-04-20 11:55:39 +00:00
|
|
|
case __I915_MADV_PURGED:
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-05-28 09:29:46 +00:00
|
|
|
if (flags & I915_SHRINK_WRITEBACK)
|
|
|
|
i915_gem_object_writeback(obj);
|
drm/i915: Start writeback from the shrinker
When we are called to relieve mempressue via the shrinker, the only way
we can make progress is either by discarding unwanted pages (those
objects that userspace has marked MADV_DONTNEED) or by reclaiming the
dirty objects via swap. As we know that is the only way to make further
progress, we can initiate the writeback as we invalidate the objects.
This means the objects we put onto the inactive anon lru list are
already marked for reclaim+writeback and so will trigger a wait upon the
writeback inside direct reclaim, greatly improving the success rate of
direct reclaim on i915 objects.
The corollary is that we may start a slow swap on opportunistic
mempressure from the likes of the compaction + migration kthreads. This
is limited by those threads only being allowed to shrink idle pages, but
also that if we reactivate the page before it is swapped out by gpu
activity, we only page the cost of repinning the page. The cost is most
felt when an object is reused after mempressure, which hopefully
excludes the latency sensitive tasks (as we are just extending the
impact of swap thrashing to them).
Apparently this is not the first time we've had this idea. Back in
commit 5537252b6b6d ("drm/i915: Invalidate our pages under memory
pressure") we wanted to start writeback but settled on invalidate after
Hugh Dickins warned us about a possibility of a deadlock within shmemfs
if we started writeback from shrink_slab. Looking at the callchain,
using writeback from i915_gem_shrink should be equivalent to the pageout
also employed by shrink_slab, i.e. it should not be any riskier afaict.
v2: Leave mmapings intact. At this point, the only mmapings of our
objects will be via CPU mmaps on the shmemfs filp, which are
out-of-scope for our LRU tracking. Instead leave those pages to the
inactive anon LRU page list for aging and pageout as normal.
v3: Be selective on which paths trigger writeback, in particular
excluding paths shrinking just to reclaim vm space (e.g. mmap, vmap
reapers) and avoid starting writeback on the entire process space from
within the pm freezer.
References: https://bugs.freedesktop.org/show_bug.cgi?id=108686
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Mika Kuoppala <mika.kuoppala@linux.intel.com>
Cc: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Cc: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Cc: Matthew Auld <matthew.auld@intel.com>
Cc: Daniel Vetter <daniel.vetter@ffwll.ch>
Cc: Michal Hocko <mhocko@suse.com>
Reviewed-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com> #v1
Link: https://patchwork.freedesktop.org/patch/msgid/20190420115539.29081-1-chris@chris-wilson.co.uk
2019-04-20 11:55:39 +00:00
|
|
|
}
|
|
|
|
|
2015-03-18 13:47:59 +00:00
|
|
|
/**
|
|
|
|
* i915_gem_shrink - Shrink buffer object caches
|
2017-11-23 11:53:38 +00:00
|
|
|
* @i915: i915 device
|
2015-03-18 13:47:59 +00:00
|
|
|
* @target: amount of memory to make available, in pages
|
2017-09-06 23:19:30 +00:00
|
|
|
* @nr_scanned: optional output for number of pages scanned (incremental)
|
2019-06-12 15:13:11 +00:00
|
|
|
* @shrink: control flags for selecting cache types
|
2015-03-18 13:47:59 +00:00
|
|
|
*
|
|
|
|
* This function is the main interface to the shrinker. It will try to release
|
|
|
|
* up to @target pages of main memory backing storage from buffer objects.
|
|
|
|
* Selection of the specific caches can be done with @flags. This is e.g. useful
|
|
|
|
* when purgeable objects should be removed from caches preferentially.
|
|
|
|
*
|
|
|
|
* Note that it's not guaranteed that released amount is actually available as
|
|
|
|
* free system memory - the pages might still be in-used to due to other reasons
|
|
|
|
* (like cpu mmaps) or the mm core has reused them before we could grab them.
|
|
|
|
* Therefore code that needs to explicitly shrink buffer objects caches (e.g. to
|
|
|
|
* avoid deadlocks in memory reclaim) must fall back to i915_gem_shrink_all().
|
|
|
|
*
|
|
|
|
* Also note that any kind of pinning (both per-vma address space pins and
|
|
|
|
* backing storage pins at the buffer object level) result in the shrinker code
|
|
|
|
* having to skip the object.
|
|
|
|
*
|
|
|
|
* Returns:
|
|
|
|
* The number of pages of backing storage actually released.
|
|
|
|
*/
|
2015-03-18 09:46:04 +00:00
|
|
|
unsigned long
|
2017-11-23 11:53:38 +00:00
|
|
|
i915_gem_shrink(struct drm_i915_private *i915,
|
2017-09-06 23:19:30 +00:00
|
|
|
unsigned long target,
|
|
|
|
unsigned long *nr_scanned,
|
2019-06-10 14:54:30 +00:00
|
|
|
unsigned int shrink)
|
2015-03-18 09:46:04 +00:00
|
|
|
{
|
|
|
|
const struct {
|
|
|
|
struct list_head *list;
|
|
|
|
unsigned int bit;
|
|
|
|
} phases[] = {
|
2019-05-30 20:34:59 +00:00
|
|
|
{ &i915->mm.purge_list, ~0u },
|
2019-06-12 10:57:20 +00:00
|
|
|
{
|
|
|
|
&i915->mm.shrink_list,
|
|
|
|
I915_SHRINK_BOUND | I915_SHRINK_UNBOUND
|
|
|
|
},
|
2015-03-18 09:46:04 +00:00
|
|
|
{ NULL, 0 },
|
|
|
|
}, *phase;
|
2019-01-14 14:21:18 +00:00
|
|
|
intel_wakeref_t wakeref = 0;
|
2015-03-18 09:46:04 +00:00
|
|
|
unsigned long count = 0;
|
2017-09-06 23:19:30 +00:00
|
|
|
unsigned long scanned = 0;
|
2016-10-28 12:58:37 +00:00
|
|
|
bool unlock;
|
|
|
|
|
2019-06-10 14:54:30 +00:00
|
|
|
if (!shrinker_lock(i915, shrink, &unlock))
|
2016-10-28 12:58:37 +00:00
|
|
|
return 0;
|
2015-03-18 09:46:04 +00:00
|
|
|
|
2017-11-08 09:44:00 +00:00
|
|
|
/*
|
drm/i915: Keep contexts pinned until after the next kernel context switch
We need to keep the context image pinned in memory until after the GPU
has finished writing into it. Since it continues to write as we signal
the final breadcrumb, we need to keep it pinned until the request after
it is complete. Currently we know the order in which requests execute on
each engine, and so to remove that presumption we need to identify a
request/context-switch we know must occur after our completion. Any
request queued after the signal must imply a context switch, for
simplicity we use a fresh request from the kernel context.
The sequence of operations for keeping the context pinned until saved is:
- On context activation, we preallocate a node for each physical engine
the context may operate on. This is to avoid allocations during
unpinning, which may be from inside FS_RECLAIM context (aka the
shrinker)
- On context deactivation on retirement of the last active request (which
is before we know the context has been saved), we add the
preallocated node onto a barrier list on each engine
- On engine idling, we emit a switch to kernel context. When this
switch completes, we know that all previous contexts must have been
saved, and so on retiring this request we can finally unpin all the
contexts that were marked as deactivated prior to the switch.
We can enhance this in future by flushing all the idle contexts on a
regular heartbeat pulse of a switch to kernel context, which will also
be used to check for hung engines.
v2: intel_context_active_acquire/_release
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Mika Kuoppala <mika.kuoppala@linux.intel.com>
Reviewed-by: Mika Kuoppala <mika.kuoppala@linux.intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20190614164606.15633-1-chris@chris-wilson.co.uk
2019-06-14 16:46:04 +00:00
|
|
|
* When shrinking the active list, we should also consider active
|
|
|
|
* contexts. Active contexts are pinned until they are retired, and
|
|
|
|
* so can not be simply unbound to retire and unpin their pages. To
|
|
|
|
* shrink the contexts, we must wait until the gpu is idle and
|
|
|
|
* completed its switch to the kernel context. In short, we do
|
|
|
|
* not have a good mechanism for idling a specific context.
|
2017-11-08 09:44:00 +00:00
|
|
|
*/
|
|
|
|
|
2019-06-10 14:54:30 +00:00
|
|
|
trace_i915_gem_shrink(i915, target, shrink);
|
2015-10-01 11:18:26 +00:00
|
|
|
|
2016-05-02 08:40:28 +00:00
|
|
|
/*
|
|
|
|
* Unbinding of objects will require HW access; Let us not wake the
|
|
|
|
* device just to recover a little memory. If absolutely necessary,
|
|
|
|
* we will force the wake during oom-notifier.
|
|
|
|
*/
|
2019-06-10 14:54:30 +00:00
|
|
|
if (shrink & I915_SHRINK_BOUND) {
|
2019-06-13 23:21:54 +00:00
|
|
|
wakeref = intel_runtime_pm_get_if_in_use(&i915->runtime_pm);
|
2019-01-14 14:21:18 +00:00
|
|
|
if (!wakeref)
|
2019-06-10 14:54:30 +00:00
|
|
|
shrink &= ~I915_SHRINK_BOUND;
|
2019-01-14 14:21:18 +00:00
|
|
|
}
|
2016-05-02 08:40:28 +00:00
|
|
|
|
2015-03-18 09:46:04 +00:00
|
|
|
/*
|
|
|
|
* As we may completely rewrite the (un)bound list whilst unbinding
|
|
|
|
* (due to retiring requests) we have to strictly process only
|
|
|
|
* one element of the list at the time, and recheck the list
|
|
|
|
* on every iteration.
|
|
|
|
*
|
|
|
|
* In particular, we must hold a reference whilst removing the
|
|
|
|
* object as we may end up waiting for and/or retiring the objects.
|
|
|
|
* This might release the final reference (held by the active list)
|
|
|
|
* and result in the object being freed from under us. This is
|
|
|
|
* similar to the precautions the eviction code must take whilst
|
|
|
|
* removing objects.
|
|
|
|
*
|
|
|
|
* Also note that although these lists do not hold a reference to
|
|
|
|
* the object we can safely grab one here: The final object
|
|
|
|
* unreferencing and the bound_list are both protected by the
|
|
|
|
* dev->struct_mutex and so we won't ever be able to observe an
|
|
|
|
* object on the bound_list with a reference count equals 0.
|
|
|
|
*/
|
|
|
|
for (phase = phases; phase->list; phase++) {
|
|
|
|
struct list_head still_in_list;
|
2016-07-26 11:01:51 +00:00
|
|
|
struct drm_i915_gem_object *obj;
|
2019-06-10 14:54:30 +00:00
|
|
|
unsigned long flags;
|
2015-03-18 09:46:04 +00:00
|
|
|
|
2019-06-10 14:54:30 +00:00
|
|
|
if ((shrink & phase->bit) == 0)
|
2015-03-18 09:46:04 +00:00
|
|
|
continue;
|
|
|
|
|
|
|
|
INIT_LIST_HEAD(&still_in_list);
|
2017-10-16 11:40:37 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* We serialize our access to unreferenced objects through
|
|
|
|
* the use of the struct_mutex. While the objects are not
|
|
|
|
* yet freed (due to RCU then a workqueue) we still want
|
|
|
|
* to be able to shrink their pages, so they remain on
|
|
|
|
* the unbound/bound list until actually freed.
|
|
|
|
*/
|
2019-06-10 14:54:30 +00:00
|
|
|
spin_lock_irqsave(&i915->mm.obj_lock, flags);
|
2016-07-26 11:01:51 +00:00
|
|
|
while (count < target &&
|
|
|
|
(obj = list_first_entry_or_null(phase->list,
|
|
|
|
typeof(*obj),
|
2017-10-16 11:40:37 +00:00
|
|
|
mm.link))) {
|
|
|
|
list_move_tail(&obj->mm.link, &still_in_list);
|
2015-03-18 09:46:04 +00:00
|
|
|
|
2019-06-10 14:54:30 +00:00
|
|
|
if (shrink & I915_SHRINK_VMAPS &&
|
2016-10-28 12:58:35 +00:00
|
|
|
!is_vmalloc_addr(obj->mm.mapping))
|
2016-04-08 11:11:12 +00:00
|
|
|
continue;
|
|
|
|
|
2019-06-10 14:54:30 +00:00
|
|
|
if (!(shrink & I915_SHRINK_ACTIVE) &&
|
2019-07-03 09:17:17 +00:00
|
|
|
i915_gem_object_is_framebuffer(obj))
|
2015-10-01 11:18:29 +00:00
|
|
|
continue;
|
|
|
|
|
2019-06-10 14:54:30 +00:00
|
|
|
if (!(shrink & I915_SHRINK_BOUND) &&
|
2019-06-12 10:57:20 +00:00
|
|
|
atomic_read(&obj->bind_count))
|
2019-05-30 20:34:59 +00:00
|
|
|
continue;
|
|
|
|
|
2015-12-04 15:58:54 +00:00
|
|
|
if (!can_release_pages(obj))
|
|
|
|
continue;
|
|
|
|
|
2019-06-18 07:41:29 +00:00
|
|
|
if (!kref_get_unless_zero(&obj->base.refcount))
|
|
|
|
continue;
|
|
|
|
|
2019-06-10 14:54:30 +00:00
|
|
|
spin_unlock_irqrestore(&i915->mm.obj_lock, flags);
|
2017-10-16 11:40:37 +00:00
|
|
|
|
2019-07-03 09:17:17 +00:00
|
|
|
if (unsafe_drop_pages(obj, shrink)) {
|
2016-10-31 12:40:48 +00:00
|
|
|
/* May arrive from get_pages on another bo */
|
|
|
|
mutex_lock_nested(&obj->mm.lock,
|
2016-11-01 12:11:34 +00:00
|
|
|
I915_MM_SHRINKER);
|
2017-10-13 20:26:13 +00:00
|
|
|
if (!i915_gem_object_has_pages(obj)) {
|
2019-06-10 14:54:30 +00:00
|
|
|
try_to_writeback(obj, shrink);
|
2016-10-28 12:58:37 +00:00
|
|
|
count += obj->base.size >> PAGE_SHIFT;
|
|
|
|
}
|
|
|
|
mutex_unlock(&obj->mm.lock);
|
|
|
|
}
|
2019-06-18 07:41:29 +00:00
|
|
|
|
2017-10-13 20:26:18 +00:00
|
|
|
scanned += obj->base.size >> PAGE_SHIFT;
|
2019-06-18 07:41:29 +00:00
|
|
|
i915_gem_object_put(obj);
|
2017-10-16 11:40:37 +00:00
|
|
|
|
2019-06-10 14:54:30 +00:00
|
|
|
spin_lock_irqsave(&i915->mm.obj_lock, flags);
|
2015-03-18 09:46:04 +00:00
|
|
|
}
|
2016-11-01 08:48:43 +00:00
|
|
|
list_splice_tail(&still_in_list, phase->list);
|
2019-06-10 14:54:30 +00:00
|
|
|
spin_unlock_irqrestore(&i915->mm.obj_lock, flags);
|
2015-03-18 09:46:04 +00:00
|
|
|
}
|
|
|
|
|
2019-06-10 14:54:30 +00:00
|
|
|
if (shrink & I915_SHRINK_BOUND)
|
2019-06-13 23:21:54 +00:00
|
|
|
intel_runtime_pm_put(&i915->runtime_pm, wakeref);
|
2016-05-02 08:40:28 +00:00
|
|
|
|
2017-11-23 11:53:38 +00:00
|
|
|
shrinker_unlock(i915, unlock);
|
2015-10-01 11:18:27 +00:00
|
|
|
|
2017-09-06 23:19:30 +00:00
|
|
|
if (nr_scanned)
|
|
|
|
*nr_scanned += scanned;
|
2015-03-18 09:46:04 +00:00
|
|
|
return count;
|
|
|
|
}
|
|
|
|
|
2015-03-18 13:47:59 +00:00
|
|
|
/**
|
2015-10-06 12:47:55 +00:00
|
|
|
* i915_gem_shrink_all - Shrink buffer object caches completely
|
2017-11-23 11:53:38 +00:00
|
|
|
* @i915: i915 device
|
2015-03-18 13:47:59 +00:00
|
|
|
*
|
|
|
|
* This is a simple wraper around i915_gem_shrink() to aggressively shrink all
|
|
|
|
* caches completely. It also first waits for and retires all outstanding
|
|
|
|
* requests to also be able to release backing storage for active objects.
|
|
|
|
*
|
|
|
|
* This should only be used in code to intentionally quiescent the gpu or as a
|
|
|
|
* last-ditch effort when memory seems to have run out.
|
|
|
|
*
|
|
|
|
* Returns:
|
|
|
|
* The number of pages of backing storage actually released.
|
|
|
|
*/
|
2017-11-23 11:53:38 +00:00
|
|
|
unsigned long i915_gem_shrink_all(struct drm_i915_private *i915)
|
2015-03-18 09:46:04 +00:00
|
|
|
{
|
2019-01-14 14:21:18 +00:00
|
|
|
intel_wakeref_t wakeref;
|
2019-01-14 14:21:23 +00:00
|
|
|
unsigned long freed = 0;
|
drm/i915: Enable lockless lookup of request tracking via RCU
If we enable RCU for the requests (providing a grace period where we can
inspect a "dead" request before it is freed), we can allow callers to
carefully perform lockless lookup of an active request.
However, by enabling deferred freeing of requests, we can potentially
hog a lot of memory when dealing with tens of thousands of requests per
second - with a quick insertion of a synchronize_rcu() inside our
shrinker callback, that issue disappears.
v2: Currently, it is our responsibility to handle reclaim i.e. to avoid
hogging memory with the delayed slab frees. At the moment, we wait for a
grace period in the shrinker, and block for all RCU callbacks on oom.
Suggested alternatives focus on flushing our RCU callback when we have a
certain number of outstanding request frees, and blocking on that flush
after a second high watermark. (So rather than wait for the system to
run out of memory, we stop issuing requests - both are nondeterministic.)
Paul E. McKenney wrote:
Another approach is synchronize_rcu() after some largish number of
requests. The advantage of this approach is that it throttles the
production of callbacks at the source. The corresponding disadvantage
is that it slows things up.
Another approach is to use call_rcu(), but if the previous call_rcu()
is still in flight, block waiting for it. Yet another approach is
the get_state_synchronize_rcu() / cond_synchronize_rcu() pair. The
idea is to do something like this:
cond_synchronize_rcu(cookie);
cookie = get_state_synchronize_rcu();
You would of course do an initial get_state_synchronize_rcu() to
get things going. This would not block unless there was less than
one grace period's worth of time between invocations. But this
assumes a busy system, where there is almost always a grace period
in flight. But you can make that happen as follows:
cond_synchronize_rcu(cookie);
cookie = get_state_synchronize_rcu();
call_rcu(&my_rcu_head, noop_function);
Note that you need additional code to make sure that the old callback
has completed before doing a new one. Setting and clearing a flag
with appropriate memory ordering control suffices (e.g,. smp_load_acquire()
and smp_store_release()).
v3: More comments on compiler and processor order of operations within
the RCU lookup and discover we can use rcu_access_pointer() here instead.
v4: Wrap i915_gem_active_get_rcu() to take the rcu_read_lock itself.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
Cc: "Goel, Akash" <akash.goel@intel.com>
Cc: Josh Triplett <josh@joshtriplett.org>
Cc: Daniel Vetter <daniel.vetter@ffwll.ch>
Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Link: http://patchwork.freedesktop.org/patch/msgid/1470324762-2545-25-git-send-email-chris@chris-wilson.co.uk
2016-08-04 15:32:41 +00:00
|
|
|
|
2019-06-13 23:21:55 +00:00
|
|
|
with_intel_runtime_pm(&i915->runtime_pm, wakeref) {
|
2019-01-14 14:21:23 +00:00
|
|
|
freed = i915_gem_shrink(i915, -1UL, NULL,
|
|
|
|
I915_SHRINK_BOUND |
|
|
|
|
I915_SHRINK_UNBOUND |
|
|
|
|
I915_SHRINK_ACTIVE);
|
|
|
|
}
|
2017-02-08 10:47:10 +00:00
|
|
|
|
drm/i915: Enable lockless lookup of request tracking via RCU
If we enable RCU for the requests (providing a grace period where we can
inspect a "dead" request before it is freed), we can allow callers to
carefully perform lockless lookup of an active request.
However, by enabling deferred freeing of requests, we can potentially
hog a lot of memory when dealing with tens of thousands of requests per
second - with a quick insertion of a synchronize_rcu() inside our
shrinker callback, that issue disappears.
v2: Currently, it is our responsibility to handle reclaim i.e. to avoid
hogging memory with the delayed slab frees. At the moment, we wait for a
grace period in the shrinker, and block for all RCU callbacks on oom.
Suggested alternatives focus on flushing our RCU callback when we have a
certain number of outstanding request frees, and blocking on that flush
after a second high watermark. (So rather than wait for the system to
run out of memory, we stop issuing requests - both are nondeterministic.)
Paul E. McKenney wrote:
Another approach is synchronize_rcu() after some largish number of
requests. The advantage of this approach is that it throttles the
production of callbacks at the source. The corresponding disadvantage
is that it slows things up.
Another approach is to use call_rcu(), but if the previous call_rcu()
is still in flight, block waiting for it. Yet another approach is
the get_state_synchronize_rcu() / cond_synchronize_rcu() pair. The
idea is to do something like this:
cond_synchronize_rcu(cookie);
cookie = get_state_synchronize_rcu();
You would of course do an initial get_state_synchronize_rcu() to
get things going. This would not block unless there was less than
one grace period's worth of time between invocations. But this
assumes a busy system, where there is almost always a grace period
in flight. But you can make that happen as follows:
cond_synchronize_rcu(cookie);
cookie = get_state_synchronize_rcu();
call_rcu(&my_rcu_head, noop_function);
Note that you need additional code to make sure that the old callback
has completed before doing a new one. Setting and clearing a flag
with appropriate memory ordering control suffices (e.g,. smp_load_acquire()
and smp_store_release()).
v3: More comments on compiler and processor order of operations within
the RCU lookup and discover we can use rcu_access_pointer() here instead.
v4: Wrap i915_gem_active_get_rcu() to take the rcu_read_lock itself.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
Cc: "Goel, Akash" <akash.goel@intel.com>
Cc: Josh Triplett <josh@joshtriplett.org>
Cc: Daniel Vetter <daniel.vetter@ffwll.ch>
Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Link: http://patchwork.freedesktop.org/patch/msgid/1470324762-2545-25-git-send-email-chris@chris-wilson.co.uk
2016-08-04 15:32:41 +00:00
|
|
|
return freed;
|
2015-03-18 09:46:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static unsigned long
|
|
|
|
i915_gem_shrinker_count(struct shrinker *shrinker, struct shrink_control *sc)
|
|
|
|
{
|
2017-10-13 20:26:19 +00:00
|
|
|
struct drm_i915_private *i915 =
|
2015-03-18 09:46:04 +00:00
|
|
|
container_of(shrinker, struct drm_i915_private, mm.shrinker);
|
2019-05-30 20:35:00 +00:00
|
|
|
unsigned long num_objects;
|
|
|
|
unsigned long count;
|
2015-03-18 09:46:04 +00:00
|
|
|
|
2019-05-30 20:35:00 +00:00
|
|
|
count = READ_ONCE(i915->mm.shrink_memory) >> PAGE_SHIFT;
|
|
|
|
num_objects = READ_ONCE(i915->mm.shrink_count);
|
2017-10-13 20:26:19 +00:00
|
|
|
|
2019-05-30 20:35:00 +00:00
|
|
|
/*
|
|
|
|
* Update our preferred vmscan batch size for the next pass.
|
2017-10-13 20:26:19 +00:00
|
|
|
* Our rough guess for an effective batch size is roughly 2
|
|
|
|
* available GEM objects worth of pages. That is we don't want
|
|
|
|
* the shrinker to fire, until it is worth the cost of freeing an
|
|
|
|
* entire GEM object.
|
|
|
|
*/
|
|
|
|
if (num_objects) {
|
|
|
|
unsigned long avg = 2 * count / num_objects;
|
|
|
|
|
|
|
|
i915->mm.shrinker.batch =
|
|
|
|
max((i915->mm.shrinker.batch + avg) >> 1,
|
|
|
|
128ul /* default SHRINK_BATCH */);
|
|
|
|
}
|
2015-03-18 09:46:04 +00:00
|
|
|
|
|
|
|
return count;
|
|
|
|
}
|
|
|
|
|
|
|
|
static unsigned long
|
|
|
|
i915_gem_shrinker_scan(struct shrinker *shrinker, struct shrink_control *sc)
|
|
|
|
{
|
2017-11-23 11:53:38 +00:00
|
|
|
struct drm_i915_private *i915 =
|
2015-03-18 09:46:04 +00:00
|
|
|
container_of(shrinker, struct drm_i915_private, mm.shrinker);
|
|
|
|
unsigned long freed;
|
|
|
|
bool unlock;
|
|
|
|
|
2017-09-06 23:19:30 +00:00
|
|
|
sc->nr_scanned = 0;
|
|
|
|
|
2019-01-07 11:54:24 +00:00
|
|
|
if (!shrinker_lock(i915, 0, &unlock))
|
2015-03-18 09:46:04 +00:00
|
|
|
return SHRINK_STOP;
|
|
|
|
|
2017-11-23 11:53:38 +00:00
|
|
|
freed = i915_gem_shrink(i915,
|
2015-03-18 09:46:04 +00:00
|
|
|
sc->nr_to_scan,
|
2017-09-06 23:19:30 +00:00
|
|
|
&sc->nr_scanned,
|
2015-03-18 09:46:04 +00:00
|
|
|
I915_SHRINK_BOUND |
|
|
|
|
I915_SHRINK_UNBOUND |
|
drm/i915: Start writeback from the shrinker
When we are called to relieve mempressue via the shrinker, the only way
we can make progress is either by discarding unwanted pages (those
objects that userspace has marked MADV_DONTNEED) or by reclaiming the
dirty objects via swap. As we know that is the only way to make further
progress, we can initiate the writeback as we invalidate the objects.
This means the objects we put onto the inactive anon lru list are
already marked for reclaim+writeback and so will trigger a wait upon the
writeback inside direct reclaim, greatly improving the success rate of
direct reclaim on i915 objects.
The corollary is that we may start a slow swap on opportunistic
mempressure from the likes of the compaction + migration kthreads. This
is limited by those threads only being allowed to shrink idle pages, but
also that if we reactivate the page before it is swapped out by gpu
activity, we only page the cost of repinning the page. The cost is most
felt when an object is reused after mempressure, which hopefully
excludes the latency sensitive tasks (as we are just extending the
impact of swap thrashing to them).
Apparently this is not the first time we've had this idea. Back in
commit 5537252b6b6d ("drm/i915: Invalidate our pages under memory
pressure") we wanted to start writeback but settled on invalidate after
Hugh Dickins warned us about a possibility of a deadlock within shmemfs
if we started writeback from shrink_slab. Looking at the callchain,
using writeback from i915_gem_shrink should be equivalent to the pageout
also employed by shrink_slab, i.e. it should not be any riskier afaict.
v2: Leave mmapings intact. At this point, the only mmapings of our
objects will be via CPU mmaps on the shmemfs filp, which are
out-of-scope for our LRU tracking. Instead leave those pages to the
inactive anon LRU page list for aging and pageout as normal.
v3: Be selective on which paths trigger writeback, in particular
excluding paths shrinking just to reclaim vm space (e.g. mmap, vmap
reapers) and avoid starting writeback on the entire process space from
within the pm freezer.
References: https://bugs.freedesktop.org/show_bug.cgi?id=108686
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Mika Kuoppala <mika.kuoppala@linux.intel.com>
Cc: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Cc: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Cc: Matthew Auld <matthew.auld@intel.com>
Cc: Daniel Vetter <daniel.vetter@ffwll.ch>
Cc: Michal Hocko <mhocko@suse.com>
Reviewed-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com> #v1
Link: https://patchwork.freedesktop.org/patch/msgid/20190420115539.29081-1-chris@chris-wilson.co.uk
2019-04-20 11:55:39 +00:00
|
|
|
I915_SHRINK_WRITEBACK);
|
2018-01-15 21:24:46 +00:00
|
|
|
if (sc->nr_scanned < sc->nr_to_scan && current_is_kswapd()) {
|
2019-01-14 14:21:18 +00:00
|
|
|
intel_wakeref_t wakeref;
|
|
|
|
|
2019-06-13 23:21:55 +00:00
|
|
|
with_intel_runtime_pm(&i915->runtime_pm, wakeref) {
|
2019-01-14 14:21:23 +00:00
|
|
|
freed += i915_gem_shrink(i915,
|
|
|
|
sc->nr_to_scan - sc->nr_scanned,
|
|
|
|
&sc->nr_scanned,
|
|
|
|
I915_SHRINK_ACTIVE |
|
|
|
|
I915_SHRINK_BOUND |
|
drm/i915: Start writeback from the shrinker
When we are called to relieve mempressue via the shrinker, the only way
we can make progress is either by discarding unwanted pages (those
objects that userspace has marked MADV_DONTNEED) or by reclaiming the
dirty objects via swap. As we know that is the only way to make further
progress, we can initiate the writeback as we invalidate the objects.
This means the objects we put onto the inactive anon lru list are
already marked for reclaim+writeback and so will trigger a wait upon the
writeback inside direct reclaim, greatly improving the success rate of
direct reclaim on i915 objects.
The corollary is that we may start a slow swap on opportunistic
mempressure from the likes of the compaction + migration kthreads. This
is limited by those threads only being allowed to shrink idle pages, but
also that if we reactivate the page before it is swapped out by gpu
activity, we only page the cost of repinning the page. The cost is most
felt when an object is reused after mempressure, which hopefully
excludes the latency sensitive tasks (as we are just extending the
impact of swap thrashing to them).
Apparently this is not the first time we've had this idea. Back in
commit 5537252b6b6d ("drm/i915: Invalidate our pages under memory
pressure") we wanted to start writeback but settled on invalidate after
Hugh Dickins warned us about a possibility of a deadlock within shmemfs
if we started writeback from shrink_slab. Looking at the callchain,
using writeback from i915_gem_shrink should be equivalent to the pageout
also employed by shrink_slab, i.e. it should not be any riskier afaict.
v2: Leave mmapings intact. At this point, the only mmapings of our
objects will be via CPU mmaps on the shmemfs filp, which are
out-of-scope for our LRU tracking. Instead leave those pages to the
inactive anon LRU page list for aging and pageout as normal.
v3: Be selective on which paths trigger writeback, in particular
excluding paths shrinking just to reclaim vm space (e.g. mmap, vmap
reapers) and avoid starting writeback on the entire process space from
within the pm freezer.
References: https://bugs.freedesktop.org/show_bug.cgi?id=108686
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Mika Kuoppala <mika.kuoppala@linux.intel.com>
Cc: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Cc: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Cc: Matthew Auld <matthew.auld@intel.com>
Cc: Daniel Vetter <daniel.vetter@ffwll.ch>
Cc: Michal Hocko <mhocko@suse.com>
Reviewed-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com> #v1
Link: https://patchwork.freedesktop.org/patch/msgid/20190420115539.29081-1-chris@chris-wilson.co.uk
2019-04-20 11:55:39 +00:00
|
|
|
I915_SHRINK_UNBOUND |
|
|
|
|
I915_SHRINK_WRITEBACK);
|
2019-01-14 14:21:23 +00:00
|
|
|
}
|
2017-06-01 13:33:29 +00:00
|
|
|
}
|
2017-04-07 10:49:34 +00:00
|
|
|
|
2017-11-23 11:53:38 +00:00
|
|
|
shrinker_unlock(i915, unlock);
|
2015-03-18 09:46:04 +00:00
|
|
|
|
2017-09-06 23:19:30 +00:00
|
|
|
return sc->nr_scanned ? freed : SHRINK_STOP;
|
2015-03-18 09:46:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
i915_gem_shrinker_oom(struct notifier_block *nb, unsigned long event, void *ptr)
|
|
|
|
{
|
2017-11-23 11:53:38 +00:00
|
|
|
struct drm_i915_private *i915 =
|
2015-03-18 09:46:04 +00:00
|
|
|
container_of(nb, struct drm_i915_private, mm.oom_notifier);
|
|
|
|
struct drm_i915_gem_object *obj;
|
2019-06-12 10:57:20 +00:00
|
|
|
unsigned long unevictable, available, freed_pages;
|
2019-01-14 14:21:18 +00:00
|
|
|
intel_wakeref_t wakeref;
|
2019-06-10 14:54:30 +00:00
|
|
|
unsigned long flags;
|
2015-03-18 09:46:04 +00:00
|
|
|
|
2019-01-14 14:21:23 +00:00
|
|
|
freed_pages = 0;
|
2019-06-13 23:21:55 +00:00
|
|
|
with_intel_runtime_pm(&i915->runtime_pm, wakeref)
|
2019-01-14 14:21:23 +00:00
|
|
|
freed_pages += i915_gem_shrink(i915, -1UL, NULL,
|
|
|
|
I915_SHRINK_BOUND |
|
drm/i915: Start writeback from the shrinker
When we are called to relieve mempressue via the shrinker, the only way
we can make progress is either by discarding unwanted pages (those
objects that userspace has marked MADV_DONTNEED) or by reclaiming the
dirty objects via swap. As we know that is the only way to make further
progress, we can initiate the writeback as we invalidate the objects.
This means the objects we put onto the inactive anon lru list are
already marked for reclaim+writeback and so will trigger a wait upon the
writeback inside direct reclaim, greatly improving the success rate of
direct reclaim on i915 objects.
The corollary is that we may start a slow swap on opportunistic
mempressure from the likes of the compaction + migration kthreads. This
is limited by those threads only being allowed to shrink idle pages, but
also that if we reactivate the page before it is swapped out by gpu
activity, we only page the cost of repinning the page. The cost is most
felt when an object is reused after mempressure, which hopefully
excludes the latency sensitive tasks (as we are just extending the
impact of swap thrashing to them).
Apparently this is not the first time we've had this idea. Back in
commit 5537252b6b6d ("drm/i915: Invalidate our pages under memory
pressure") we wanted to start writeback but settled on invalidate after
Hugh Dickins warned us about a possibility of a deadlock within shmemfs
if we started writeback from shrink_slab. Looking at the callchain,
using writeback from i915_gem_shrink should be equivalent to the pageout
also employed by shrink_slab, i.e. it should not be any riskier afaict.
v2: Leave mmapings intact. At this point, the only mmapings of our
objects will be via CPU mmaps on the shmemfs filp, which are
out-of-scope for our LRU tracking. Instead leave those pages to the
inactive anon LRU page list for aging and pageout as normal.
v3: Be selective on which paths trigger writeback, in particular
excluding paths shrinking just to reclaim vm space (e.g. mmap, vmap
reapers) and avoid starting writeback on the entire process space from
within the pm freezer.
References: https://bugs.freedesktop.org/show_bug.cgi?id=108686
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Mika Kuoppala <mika.kuoppala@linux.intel.com>
Cc: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Cc: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Cc: Matthew Auld <matthew.auld@intel.com>
Cc: Daniel Vetter <daniel.vetter@ffwll.ch>
Cc: Michal Hocko <mhocko@suse.com>
Reviewed-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com> #v1
Link: https://patchwork.freedesktop.org/patch/msgid/20190420115539.29081-1-chris@chris-wilson.co.uk
2019-04-20 11:55:39 +00:00
|
|
|
I915_SHRINK_UNBOUND |
|
|
|
|
I915_SHRINK_WRITEBACK);
|
2015-03-18 09:46:04 +00:00
|
|
|
|
|
|
|
/* Because we may be allocating inside our own driver, we cannot
|
|
|
|
* assert that there are no objects with pinned pages that are not
|
|
|
|
* being pointed to by hardware.
|
|
|
|
*/
|
2019-06-12 10:57:20 +00:00
|
|
|
available = unevictable = 0;
|
2019-06-10 14:54:30 +00:00
|
|
|
spin_lock_irqsave(&i915->mm.obj_lock, flags);
|
2019-06-12 10:57:20 +00:00
|
|
|
list_for_each_entry(obj, &i915->mm.shrink_list, mm.link) {
|
2016-04-20 11:09:51 +00:00
|
|
|
if (!can_release_pages(obj))
|
|
|
|
unevictable += obj->base.size >> PAGE_SHIFT;
|
2015-03-18 09:46:04 +00:00
|
|
|
else
|
2019-06-12 10:57:20 +00:00
|
|
|
available += obj->base.size >> PAGE_SHIFT;
|
2015-03-18 09:46:04 +00:00
|
|
|
}
|
2019-06-10 14:54:30 +00:00
|
|
|
spin_unlock_irqrestore(&i915->mm.obj_lock, flags);
|
2015-03-18 09:46:04 +00:00
|
|
|
|
2019-06-12 10:57:20 +00:00
|
|
|
if (freed_pages || available)
|
2016-04-20 11:09:51 +00:00
|
|
|
pr_info("Purging GPU memory, %lu pages freed, "
|
2019-06-12 10:57:20 +00:00
|
|
|
"%lu pages still pinned, %lu pages left available.\n",
|
|
|
|
freed_pages, unevictable, available);
|
2015-03-18 09:46:04 +00:00
|
|
|
|
|
|
|
*(unsigned long *)ptr += freed_pages;
|
|
|
|
return NOTIFY_DONE;
|
|
|
|
}
|
|
|
|
|
2016-04-04 13:46:43 +00:00
|
|
|
static int
|
|
|
|
i915_gem_shrinker_vmap(struct notifier_block *nb, unsigned long event, void *ptr)
|
|
|
|
{
|
2017-11-23 11:53:38 +00:00
|
|
|
struct drm_i915_private *i915 =
|
2016-04-04 13:46:43 +00:00
|
|
|
container_of(nb, struct drm_i915_private, mm.vmap_notifier);
|
2016-04-28 08:56:39 +00:00
|
|
|
struct i915_vma *vma, *next;
|
|
|
|
unsigned long freed_pages = 0;
|
2019-01-14 14:21:18 +00:00
|
|
|
intel_wakeref_t wakeref;
|
2017-04-07 10:49:35 +00:00
|
|
|
bool unlock;
|
2016-04-04 13:46:43 +00:00
|
|
|
|
2019-01-09 16:42:04 +00:00
|
|
|
if (!shrinker_lock(i915, 0, &unlock))
|
2016-04-04 13:46:43 +00:00
|
|
|
return NOTIFY_DONE;
|
|
|
|
|
2019-06-13 23:21:55 +00:00
|
|
|
with_intel_runtime_pm(&i915->runtime_pm, wakeref)
|
2019-01-14 14:21:23 +00:00
|
|
|
freed_pages += i915_gem_shrink(i915, -1UL, NULL,
|
|
|
|
I915_SHRINK_BOUND |
|
|
|
|
I915_SHRINK_UNBOUND |
|
|
|
|
I915_SHRINK_VMAPS);
|
2016-04-28 08:56:39 +00:00
|
|
|
|
|
|
|
/* We also want to clear any cached iomaps as they wrap vmap */
|
2019-01-28 10:23:53 +00:00
|
|
|
mutex_lock(&i915->ggtt.vm.mutex);
|
2016-04-28 08:56:39 +00:00
|
|
|
list_for_each_entry_safe(vma, next,
|
2019-01-28 10:23:52 +00:00
|
|
|
&i915->ggtt.vm.bound_list, vm_link) {
|
2016-04-28 08:56:39 +00:00
|
|
|
unsigned long count = vma->node.size >> PAGE_SHIFT;
|
2019-01-28 10:23:52 +00:00
|
|
|
|
|
|
|
if (!vma->iomap || i915_vma_is_active(vma))
|
|
|
|
continue;
|
|
|
|
|
2019-01-28 10:23:53 +00:00
|
|
|
mutex_unlock(&i915->ggtt.vm.mutex);
|
2019-01-28 10:23:52 +00:00
|
|
|
if (i915_vma_unbind(vma) == 0)
|
2016-04-28 08:56:39 +00:00
|
|
|
freed_pages += count;
|
2019-01-28 10:23:53 +00:00
|
|
|
mutex_lock(&i915->ggtt.vm.mutex);
|
2016-04-28 08:56:39 +00:00
|
|
|
}
|
2019-01-28 10:23:53 +00:00
|
|
|
mutex_unlock(&i915->ggtt.vm.mutex);
|
2016-04-04 13:46:43 +00:00
|
|
|
|
2017-11-23 11:53:38 +00:00
|
|
|
shrinker_unlock(i915, unlock);
|
2016-04-04 13:46:43 +00:00
|
|
|
|
|
|
|
*(unsigned long *)ptr += freed_pages;
|
|
|
|
return NOTIFY_DONE;
|
|
|
|
}
|
|
|
|
|
2019-08-06 12:42:59 +00:00
|
|
|
void i915_gem_driver_register__shrinker(struct drm_i915_private *i915)
|
2015-03-18 09:46:04 +00:00
|
|
|
{
|
2017-11-23 11:53:38 +00:00
|
|
|
i915->mm.shrinker.scan_objects = i915_gem_shrinker_scan;
|
|
|
|
i915->mm.shrinker.count_objects = i915_gem_shrinker_count;
|
|
|
|
i915->mm.shrinker.seeks = DEFAULT_SEEKS;
|
|
|
|
i915->mm.shrinker.batch = 4096;
|
|
|
|
WARN_ON(register_shrinker(&i915->mm.shrinker));
|
2015-03-18 09:46:04 +00:00
|
|
|
|
2017-11-23 11:53:38 +00:00
|
|
|
i915->mm.oom_notifier.notifier_call = i915_gem_shrinker_oom;
|
|
|
|
WARN_ON(register_oom_notifier(&i915->mm.oom_notifier));
|
2016-04-04 13:46:43 +00:00
|
|
|
|
2017-11-23 11:53:38 +00:00
|
|
|
i915->mm.vmap_notifier.notifier_call = i915_gem_shrinker_vmap;
|
|
|
|
WARN_ON(register_vmap_purge_notifier(&i915->mm.vmap_notifier));
|
2016-01-19 13:26:28 +00:00
|
|
|
}
|
|
|
|
|
2019-08-06 12:42:59 +00:00
|
|
|
void i915_gem_driver_unregister__shrinker(struct drm_i915_private *i915)
|
2016-01-19 13:26:28 +00:00
|
|
|
{
|
2017-11-23 11:53:38 +00:00
|
|
|
WARN_ON(unregister_vmap_purge_notifier(&i915->mm.vmap_notifier));
|
|
|
|
WARN_ON(unregister_oom_notifier(&i915->mm.oom_notifier));
|
|
|
|
unregister_shrinker(&i915->mm.shrinker);
|
2015-03-18 09:46:04 +00:00
|
|
|
}
|
2018-07-11 07:36:02 +00:00
|
|
|
|
2019-01-07 11:54:24 +00:00
|
|
|
void i915_gem_shrinker_taints_mutex(struct drm_i915_private *i915,
|
|
|
|
struct mutex *mutex)
|
2018-07-11 07:36:02 +00:00
|
|
|
{
|
2019-01-07 11:54:24 +00:00
|
|
|
bool unlock = false;
|
|
|
|
|
2018-07-11 07:36:02 +00:00
|
|
|
if (!IS_ENABLED(CONFIG_LOCKDEP))
|
|
|
|
return;
|
|
|
|
|
2019-01-07 11:54:24 +00:00
|
|
|
if (!lockdep_is_held_type(&i915->drm.struct_mutex, -1)) {
|
|
|
|
mutex_acquire(&i915->drm.struct_mutex.dep_map,
|
|
|
|
I915_MM_NORMAL, 0, _RET_IP_);
|
|
|
|
unlock = true;
|
|
|
|
}
|
|
|
|
|
2018-07-11 07:36:02 +00:00
|
|
|
fs_reclaim_acquire(GFP_KERNEL);
|
2019-01-07 11:54:24 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* As we invariably rely on the struct_mutex within the shrinker,
|
|
|
|
* but have a complicated recursion dance, taint all the mutexes used
|
|
|
|
* within the shrinker with the struct_mutex. For completeness, we
|
|
|
|
* taint with all subclass of struct_mutex, even though we should
|
|
|
|
* only need tainting by I915_MM_NORMAL to catch possible ABBA
|
|
|
|
* deadlocks from using struct_mutex inside @mutex.
|
|
|
|
*/
|
|
|
|
mutex_acquire(&i915->drm.struct_mutex.dep_map,
|
|
|
|
I915_MM_SHRINKER, 0, _RET_IP_);
|
|
|
|
|
|
|
|
mutex_acquire(&mutex->dep_map, 0, 0, _RET_IP_);
|
|
|
|
mutex_release(&mutex->dep_map, 0, _RET_IP_);
|
|
|
|
|
|
|
|
mutex_release(&i915->drm.struct_mutex.dep_map, 0, _RET_IP_);
|
|
|
|
|
2018-07-11 07:36:02 +00:00
|
|
|
fs_reclaim_release(GFP_KERNEL);
|
2019-01-07 11:54:24 +00:00
|
|
|
|
|
|
|
if (unlock)
|
|
|
|
mutex_release(&i915->drm.struct_mutex.dep_map, 0, _RET_IP_);
|
2018-07-11 07:36:02 +00:00
|
|
|
}
|
2019-08-02 21:21:36 +00:00
|
|
|
|
|
|
|
#define obj_to_i915(obj__) to_i915((obj__)->base.dev)
|
|
|
|
|
|
|
|
void i915_gem_object_make_unshrinkable(struct drm_i915_gem_object *obj)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* We can only be called while the pages are pinned or when
|
|
|
|
* the pages are released. If pinned, we should only be called
|
|
|
|
* from a single caller under controlled conditions; and on release
|
|
|
|
* only one caller may release us. Neither the two may cross.
|
|
|
|
*/
|
|
|
|
if (!list_empty(&obj->mm.link)) { /* pinned by caller */
|
|
|
|
struct drm_i915_private *i915 = obj_to_i915(obj);
|
|
|
|
unsigned long flags;
|
|
|
|
|
|
|
|
spin_lock_irqsave(&i915->mm.obj_lock, flags);
|
|
|
|
GEM_BUG_ON(list_empty(&obj->mm.link));
|
|
|
|
|
|
|
|
list_del_init(&obj->mm.link);
|
|
|
|
i915->mm.shrink_count--;
|
|
|
|
i915->mm.shrink_memory -= obj->base.size;
|
|
|
|
|
|
|
|
spin_unlock_irqrestore(&i915->mm.obj_lock, flags);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void __i915_gem_object_make_shrinkable(struct drm_i915_gem_object *obj,
|
|
|
|
struct list_head *head)
|
|
|
|
{
|
|
|
|
GEM_BUG_ON(!i915_gem_object_has_pages(obj));
|
|
|
|
GEM_BUG_ON(!list_empty(&obj->mm.link));
|
|
|
|
|
|
|
|
if (i915_gem_object_is_shrinkable(obj)) {
|
|
|
|
struct drm_i915_private *i915 = obj_to_i915(obj);
|
|
|
|
unsigned long flags;
|
|
|
|
|
|
|
|
spin_lock_irqsave(&i915->mm.obj_lock, flags);
|
|
|
|
GEM_BUG_ON(!kref_read(&obj->base.refcount));
|
|
|
|
|
|
|
|
list_add_tail(&obj->mm.link, head);
|
|
|
|
i915->mm.shrink_count++;
|
|
|
|
i915->mm.shrink_memory += obj->base.size;
|
|
|
|
|
|
|
|
spin_unlock_irqrestore(&i915->mm.obj_lock, flags);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void i915_gem_object_make_shrinkable(struct drm_i915_gem_object *obj)
|
|
|
|
{
|
|
|
|
__i915_gem_object_make_shrinkable(obj,
|
|
|
|
&obj_to_i915(obj)->mm.shrink_list);
|
|
|
|
}
|
|
|
|
|
|
|
|
void i915_gem_object_make_purgeable(struct drm_i915_gem_object *obj)
|
|
|
|
{
|
|
|
|
__i915_gem_object_make_shrinkable(obj,
|
|
|
|
&obj_to_i915(obj)->mm.purge_list);
|
|
|
|
}
|