blob: bcd85bdbc25f981370ebe17c7a062e040f98e077 [file] [log] [blame]
Daniel Vetterbe6a0372015-03-18 10:46:04 +01001/*
2 * Copyright © 2008-2015 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 * IN THE SOFTWARE.
22 *
23 */
24
25#include <linux/oom.h>
26#include <linux/shmem_fs.h>
27#include <linux/slab.h>
28#include <linux/swap.h>
29#include <linux/pci.h>
30#include <linux/dma-buf.h>
Chris Wilsone87666b2016-04-04 14:46:43 +010031#include <linux/vmalloc.h>
Daniel Vetterbe6a0372015-03-18 10:46:04 +010032#include <drm/drmP.h>
33#include <drm/i915_drm.h>
34
35#include "i915_drv.h"
36#include "i915_trace.h"
37
38static bool mutex_is_locked_by(struct mutex *mutex, struct task_struct *task)
39{
40 if (!mutex_is_locked(mutex))
41 return false;
42
Chris Wilson4f074a52016-07-11 14:46:17 +010043#if defined(CONFIG_DEBUG_MUTEXES) || defined(CONFIG_MUTEX_SPIN_ON_OWNER)
Daniel Vetterbe6a0372015-03-18 10:46:04 +010044 return mutex->owner == task;
45#else
46 /* Since UP may be pre-empted, we cannot assume that we own the lock */
47 return false;
48#endif
49}
50
Chris Wilson15717de2016-08-04 07:52:26 +010051static bool any_vma_pinned(struct drm_i915_gem_object *obj)
Chris Wilsonc1a415e2015-12-04 15:58:54 +000052{
53 struct i915_vma *vma;
Chris Wilsonc1a415e2015-12-04 15:58:54 +000054
Chris Wilson15717de2016-08-04 07:52:26 +010055 list_for_each_entry(vma, &obj->vma_list, obj_link)
Chris Wilson3272db52016-08-04 16:32:32 +010056 if (i915_vma_is_pinned(vma))
Chris Wilson15717de2016-08-04 07:52:26 +010057 return true;
Chris Wilsonc1a415e2015-12-04 15:58:54 +000058
Chris Wilson15717de2016-08-04 07:52:26 +010059 return false;
Chris Wilsonc1a415e2015-12-04 15:58:54 +000060}
61
62static bool swap_available(void)
63{
64 return get_nr_swap_pages() > 0;
65}
66
67static bool can_release_pages(struct drm_i915_gem_object *obj)
68{
Chris Wilson1bec9b02016-04-20 12:09:52 +010069 /* Only shmemfs objects are backed by swap */
70 if (!obj->base.filp)
71 return false;
72
Chris Wilsonc1a415e2015-12-04 15:58:54 +000073 /* Only report true if by unbinding the object and putting its pages
74 * we can actually make forward progress towards freeing physical
75 * pages.
76 *
77 * If the pages are pinned for any other reason than being bound
78 * to the GPU, simply unbinding from the GPU is not going to succeed
79 * in releasing our pin count on the pages themselves.
80 */
Chris Wilson15717de2016-08-04 07:52:26 +010081 if (obj->pages_pin_count > obj->bind_count)
82 return false;
83
84 if (any_vma_pinned(obj))
Chris Wilsonc1a415e2015-12-04 15:58:54 +000085 return false;
86
87 /* We can only return physical pages to the system if we can either
88 * discard the contents (because the user has marked them as being
89 * purgeable) or if we can move their contents out to swap.
90 */
91 return swap_available() || obj->madv == I915_MADV_DONTNEED;
92}
93
Daniel Vettereb0b44a2015-03-18 14:47:59 +010094/**
95 * i915_gem_shrink - Shrink buffer object caches
96 * @dev_priv: i915 device
97 * @target: amount of memory to make available, in pages
98 * @flags: control flags for selecting cache types
99 *
100 * This function is the main interface to the shrinker. It will try to release
101 * up to @target pages of main memory backing storage from buffer objects.
102 * Selection of the specific caches can be done with @flags. This is e.g. useful
103 * when purgeable objects should be removed from caches preferentially.
104 *
105 * Note that it's not guaranteed that released amount is actually available as
106 * free system memory - the pages might still be in-used to due to other reasons
107 * (like cpu mmaps) or the mm core has reused them before we could grab them.
108 * Therefore code that needs to explicitly shrink buffer objects caches (e.g. to
109 * avoid deadlocks in memory reclaim) must fall back to i915_gem_shrink_all().
110 *
111 * Also note that any kind of pinning (both per-vma address space pins and
112 * backing storage pins at the buffer object level) result in the shrinker code
113 * having to skip the object.
114 *
115 * Returns:
116 * The number of pages of backing storage actually released.
117 */
Daniel Vetterbe6a0372015-03-18 10:46:04 +0100118unsigned long
119i915_gem_shrink(struct drm_i915_private *dev_priv,
Chris Wilson14387542015-10-01 12:18:25 +0100120 unsigned long target, unsigned flags)
Daniel Vetterbe6a0372015-03-18 10:46:04 +0100121{
122 const struct {
123 struct list_head *list;
124 unsigned int bit;
125 } phases[] = {
126 { &dev_priv->mm.unbound_list, I915_SHRINK_UNBOUND },
127 { &dev_priv->mm.bound_list, I915_SHRINK_BOUND },
128 { NULL, 0 },
129 }, *phase;
130 unsigned long count = 0;
131
Chris Wilson3abafa52015-10-01 12:18:26 +0100132 trace_i915_gem_shrink(dev_priv, target, flags);
Chris Wilsonc0336662016-05-06 15:40:21 +0100133 i915_gem_retire_requests(dev_priv);
Chris Wilson3abafa52015-10-01 12:18:26 +0100134
Daniel Vetterbe6a0372015-03-18 10:46:04 +0100135 /*
Praveen Paneri178a30c2016-05-02 14:10:28 +0530136 * Unbinding of objects will require HW access; Let us not wake the
137 * device just to recover a little memory. If absolutely necessary,
138 * we will force the wake during oom-notifier.
139 */
140 if ((flags & I915_SHRINK_BOUND) &&
141 !intel_runtime_pm_get_if_in_use(dev_priv))
142 flags &= ~I915_SHRINK_BOUND;
143
144 /*
Daniel Vetterbe6a0372015-03-18 10:46:04 +0100145 * As we may completely rewrite the (un)bound list whilst unbinding
146 * (due to retiring requests) we have to strictly process only
147 * one element of the list at the time, and recheck the list
148 * on every iteration.
149 *
150 * In particular, we must hold a reference whilst removing the
151 * object as we may end up waiting for and/or retiring the objects.
152 * This might release the final reference (held by the active list)
153 * and result in the object being freed from under us. This is
154 * similar to the precautions the eviction code must take whilst
155 * removing objects.
156 *
157 * Also note that although these lists do not hold a reference to
158 * the object we can safely grab one here: The final object
159 * unreferencing and the bound_list are both protected by the
160 * dev->struct_mutex and so we won't ever be able to observe an
161 * object on the bound_list with a reference count equals 0.
162 */
163 for (phase = phases; phase->list; phase++) {
164 struct list_head still_in_list;
Chris Wilson2a1d7752016-07-26 12:01:51 +0100165 struct drm_i915_gem_object *obj;
Daniel Vetterbe6a0372015-03-18 10:46:04 +0100166
167 if ((flags & phase->bit) == 0)
168 continue;
169
170 INIT_LIST_HEAD(&still_in_list);
Chris Wilson2a1d7752016-07-26 12:01:51 +0100171 while (count < target &&
172 (obj = list_first_entry_or_null(phase->list,
173 typeof(*obj),
174 global_list))) {
Daniel Vetterbe6a0372015-03-18 10:46:04 +0100175 list_move_tail(&obj->global_list, &still_in_list);
176
177 if (flags & I915_SHRINK_PURGEABLE &&
178 obj->madv != I915_MADV_DONTNEED)
179 continue;
180
Chris Wilsoneae2c432016-04-08 12:11:12 +0100181 if (flags & I915_SHRINK_VMAPS &&
182 !is_vmalloc_addr(obj->mapping))
183 continue;
184
Chris Wilson573adb32016-08-04 16:32:39 +0100185 if ((flags & I915_SHRINK_ACTIVE) == 0 &&
186 i915_gem_object_is_active(obj))
Chris Wilson5763ff02015-10-01 12:18:29 +0100187 continue;
188
Chris Wilsonc1a415e2015-12-04 15:58:54 +0000189 if (!can_release_pages(obj))
190 continue;
191
Chris Wilson25dc5562016-07-20 13:31:52 +0100192 i915_gem_object_get(obj);
Daniel Vetterbe6a0372015-03-18 10:46:04 +0100193
194 /* For the unbound phase, this should be a no-op! */
Chris Wilsonaa653a62016-08-04 07:52:27 +0100195 i915_gem_object_unbind(obj);
Daniel Vetterbe6a0372015-03-18 10:46:04 +0100196 if (i915_gem_object_put_pages(obj) == 0)
197 count += obj->base.size >> PAGE_SHIFT;
198
Chris Wilsonf8c417c2016-07-20 13:31:53 +0100199 i915_gem_object_put(obj);
Daniel Vetterbe6a0372015-03-18 10:46:04 +0100200 }
201 list_splice(&still_in_list, phase->list);
202 }
203
Praveen Paneri178a30c2016-05-02 14:10:28 +0530204 if (flags & I915_SHRINK_BOUND)
205 intel_runtime_pm_put(dev_priv);
206
Chris Wilsonc0336662016-05-06 15:40:21 +0100207 i915_gem_retire_requests(dev_priv);
Chris Wilsonc9c0f5e2015-10-01 12:18:27 +0100208
Daniel Vetterbe6a0372015-03-18 10:46:04 +0100209 return count;
210}
211
Daniel Vettereb0b44a2015-03-18 14:47:59 +0100212/**
Daniel Vetter1f2449c2015-10-06 14:47:55 +0200213 * i915_gem_shrink_all - Shrink buffer object caches completely
Daniel Vettereb0b44a2015-03-18 14:47:59 +0100214 * @dev_priv: i915 device
215 *
216 * This is a simple wraper around i915_gem_shrink() to aggressively shrink all
217 * caches completely. It also first waits for and retires all outstanding
218 * requests to also be able to release backing storage for active objects.
219 *
220 * This should only be used in code to intentionally quiescent the gpu or as a
221 * last-ditch effort when memory seems to have run out.
222 *
223 * Returns:
224 * The number of pages of backing storage actually released.
225 */
Daniel Vetterbe6a0372015-03-18 10:46:04 +0100226unsigned long i915_gem_shrink_all(struct drm_i915_private *dev_priv)
227{
Chris Wilson14387542015-10-01 12:18:25 +0100228 return i915_gem_shrink(dev_priv, -1UL,
Chris Wilson5763ff02015-10-01 12:18:29 +0100229 I915_SHRINK_BOUND |
230 I915_SHRINK_UNBOUND |
231 I915_SHRINK_ACTIVE);
Daniel Vetterbe6a0372015-03-18 10:46:04 +0100232}
233
234static bool i915_gem_shrinker_lock(struct drm_device *dev, bool *unlock)
235{
236 if (!mutex_trylock(&dev->struct_mutex)) {
237 if (!mutex_is_locked_by(&dev->struct_mutex, current))
238 return false;
239
240 if (to_i915(dev)->mm.shrinker_no_lock_stealing)
241 return false;
242
243 *unlock = false;
244 } else
245 *unlock = true;
246
247 return true;
248}
249
Daniel Vetterbe6a0372015-03-18 10:46:04 +0100250static unsigned long
251i915_gem_shrinker_count(struct shrinker *shrinker, struct shrink_control *sc)
252{
253 struct drm_i915_private *dev_priv =
254 container_of(shrinker, struct drm_i915_private, mm.shrinker);
Chris Wilson91c8a322016-07-05 10:40:23 +0100255 struct drm_device *dev = &dev_priv->drm;
Daniel Vetterbe6a0372015-03-18 10:46:04 +0100256 struct drm_i915_gem_object *obj;
257 unsigned long count;
258 bool unlock;
259
260 if (!i915_gem_shrinker_lock(dev, &unlock))
261 return 0;
262
Chris Wilsonbed50ae2016-07-01 17:23:10 +0100263 i915_gem_retire_requests(dev_priv);
264
Daniel Vetterbe6a0372015-03-18 10:46:04 +0100265 count = 0;
266 list_for_each_entry(obj, &dev_priv->mm.unbound_list, global_list)
Chris Wilson6f0ac202016-04-04 14:46:41 +0100267 if (can_release_pages(obj))
Daniel Vetterbe6a0372015-03-18 10:46:04 +0100268 count += obj->base.size >> PAGE_SHIFT;
269
270 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list) {
Chris Wilson573adb32016-08-04 16:32:39 +0100271 if (!i915_gem_object_is_active(obj) && can_release_pages(obj))
Daniel Vetterbe6a0372015-03-18 10:46:04 +0100272 count += obj->base.size >> PAGE_SHIFT;
273 }
274
275 if (unlock)
276 mutex_unlock(&dev->struct_mutex);
277
278 return count;
279}
280
281static unsigned long
282i915_gem_shrinker_scan(struct shrinker *shrinker, struct shrink_control *sc)
283{
284 struct drm_i915_private *dev_priv =
285 container_of(shrinker, struct drm_i915_private, mm.shrinker);
Chris Wilson91c8a322016-07-05 10:40:23 +0100286 struct drm_device *dev = &dev_priv->drm;
Daniel Vetterbe6a0372015-03-18 10:46:04 +0100287 unsigned long freed;
288 bool unlock;
289
290 if (!i915_gem_shrinker_lock(dev, &unlock))
291 return SHRINK_STOP;
292
293 freed = i915_gem_shrink(dev_priv,
294 sc->nr_to_scan,
295 I915_SHRINK_BOUND |
296 I915_SHRINK_UNBOUND |
297 I915_SHRINK_PURGEABLE);
298 if (freed < sc->nr_to_scan)
299 freed += i915_gem_shrink(dev_priv,
300 sc->nr_to_scan - freed,
301 I915_SHRINK_BOUND |
302 I915_SHRINK_UNBOUND);
303 if (unlock)
304 mutex_unlock(&dev->struct_mutex);
305
306 return freed;
307}
308
Chris Wilson168cf362016-04-05 10:22:25 +0100309struct shrinker_lock_uninterruptible {
310 bool was_interruptible;
311 bool unlock;
312};
313
314static bool
315i915_gem_shrinker_lock_uninterruptible(struct drm_i915_private *dev_priv,
316 struct shrinker_lock_uninterruptible *slu,
317 int timeout_ms)
318{
319 unsigned long timeout = msecs_to_jiffies(timeout_ms) + 1;
320
Chris Wilson91c8a322016-07-05 10:40:23 +0100321 while (!i915_gem_shrinker_lock(&dev_priv->drm, &slu->unlock)) {
Chris Wilson168cf362016-04-05 10:22:25 +0100322 schedule_timeout_killable(1);
323 if (fatal_signal_pending(current))
324 return false;
325 if (--timeout == 0) {
326 pr_err("Unable to lock GPU to purge memory.\n");
327 return false;
328 }
329 }
330
331 slu->was_interruptible = dev_priv->mm.interruptible;
332 dev_priv->mm.interruptible = false;
333 return true;
334}
335
336static void
337i915_gem_shrinker_unlock_uninterruptible(struct drm_i915_private *dev_priv,
338 struct shrinker_lock_uninterruptible *slu)
339{
340 dev_priv->mm.interruptible = slu->was_interruptible;
341 if (slu->unlock)
Chris Wilson91c8a322016-07-05 10:40:23 +0100342 mutex_unlock(&dev_priv->drm.struct_mutex);
Chris Wilson168cf362016-04-05 10:22:25 +0100343}
344
Daniel Vetterbe6a0372015-03-18 10:46:04 +0100345static int
346i915_gem_shrinker_oom(struct notifier_block *nb, unsigned long event, void *ptr)
347{
348 struct drm_i915_private *dev_priv =
349 container_of(nb, struct drm_i915_private, mm.oom_notifier);
Chris Wilson168cf362016-04-05 10:22:25 +0100350 struct shrinker_lock_uninterruptible slu;
Daniel Vetterbe6a0372015-03-18 10:46:04 +0100351 struct drm_i915_gem_object *obj;
Chris Wilson1768d452016-04-20 12:09:51 +0100352 unsigned long unevictable, bound, unbound, freed_pages;
Daniel Vetterbe6a0372015-03-18 10:46:04 +0100353
Chris Wilson168cf362016-04-05 10:22:25 +0100354 if (!i915_gem_shrinker_lock_uninterruptible(dev_priv, &slu, 5000))
Daniel Vetterbe6a0372015-03-18 10:46:04 +0100355 return NOTIFY_DONE;
Daniel Vetterbe6a0372015-03-18 10:46:04 +0100356
Praveen Paneriea9d9762016-05-02 14:10:29 +0530357 intel_runtime_pm_get(dev_priv);
Daniel Vetterbe6a0372015-03-18 10:46:04 +0100358 freed_pages = i915_gem_shrink_all(dev_priv);
Praveen Paneriea9d9762016-05-02 14:10:29 +0530359 intel_runtime_pm_put(dev_priv);
Daniel Vetterbe6a0372015-03-18 10:46:04 +0100360
Daniel Vetterbe6a0372015-03-18 10:46:04 +0100361 /* Because we may be allocating inside our own driver, we cannot
362 * assert that there are no objects with pinned pages that are not
363 * being pointed to by hardware.
364 */
Chris Wilson1768d452016-04-20 12:09:51 +0100365 unbound = bound = unevictable = 0;
Daniel Vetterbe6a0372015-03-18 10:46:04 +0100366 list_for_each_entry(obj, &dev_priv->mm.unbound_list, global_list) {
Chris Wilson1768d452016-04-20 12:09:51 +0100367 if (!can_release_pages(obj))
368 unevictable += obj->base.size >> PAGE_SHIFT;
Daniel Vetterbe6a0372015-03-18 10:46:04 +0100369 else
Chris Wilson1768d452016-04-20 12:09:51 +0100370 unbound += obj->base.size >> PAGE_SHIFT;
Daniel Vetterbe6a0372015-03-18 10:46:04 +0100371 }
372 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list) {
Chris Wilson1768d452016-04-20 12:09:51 +0100373 if (!can_release_pages(obj))
374 unevictable += obj->base.size >> PAGE_SHIFT;
Daniel Vetterbe6a0372015-03-18 10:46:04 +0100375 else
Chris Wilson1768d452016-04-20 12:09:51 +0100376 bound += obj->base.size >> PAGE_SHIFT;
Daniel Vetterbe6a0372015-03-18 10:46:04 +0100377 }
378
Chris Wilson168cf362016-04-05 10:22:25 +0100379 i915_gem_shrinker_unlock_uninterruptible(dev_priv, &slu);
Daniel Vetterbe6a0372015-03-18 10:46:04 +0100380
381 if (freed_pages || unbound || bound)
Chris Wilson1768d452016-04-20 12:09:51 +0100382 pr_info("Purging GPU memory, %lu pages freed, "
383 "%lu pages still pinned.\n",
384 freed_pages, unevictable);
Daniel Vetterbe6a0372015-03-18 10:46:04 +0100385 if (unbound || bound)
Chris Wilson1768d452016-04-20 12:09:51 +0100386 pr_err("%lu and %lu pages still available in the "
Daniel Vetterbe6a0372015-03-18 10:46:04 +0100387 "bound and unbound GPU page lists.\n",
388 bound, unbound);
389
390 *(unsigned long *)ptr += freed_pages;
391 return NOTIFY_DONE;
392}
393
Chris Wilsone87666b2016-04-04 14:46:43 +0100394static int
395i915_gem_shrinker_vmap(struct notifier_block *nb, unsigned long event, void *ptr)
396{
397 struct drm_i915_private *dev_priv =
398 container_of(nb, struct drm_i915_private, mm.vmap_notifier);
Chris Wilson168cf362016-04-05 10:22:25 +0100399 struct shrinker_lock_uninterruptible slu;
Chris Wilson8ef85612016-04-28 09:56:39 +0100400 struct i915_vma *vma, *next;
401 unsigned long freed_pages = 0;
402 int ret;
Chris Wilsone87666b2016-04-04 14:46:43 +0100403
Chris Wilson168cf362016-04-05 10:22:25 +0100404 if (!i915_gem_shrinker_lock_uninterruptible(dev_priv, &slu, 5000))
Chris Wilsone87666b2016-04-04 14:46:43 +0100405 return NOTIFY_DONE;
Chris Wilsone87666b2016-04-04 14:46:43 +0100406
Chris Wilson8ef85612016-04-28 09:56:39 +0100407 /* Force everything onto the inactive lists */
Chris Wilson6e5a5be2016-06-24 14:55:57 +0100408 ret = i915_gem_wait_for_idle(dev_priv);
Chris Wilson8ef85612016-04-28 09:56:39 +0100409 if (ret)
410 goto out;
Chris Wilsone87666b2016-04-04 14:46:43 +0100411
Praveen Paneriea9d9762016-05-02 14:10:29 +0530412 intel_runtime_pm_get(dev_priv);
Chris Wilson8ef85612016-04-28 09:56:39 +0100413 freed_pages += i915_gem_shrink(dev_priv, -1UL,
414 I915_SHRINK_BOUND |
415 I915_SHRINK_UNBOUND |
416 I915_SHRINK_ACTIVE |
417 I915_SHRINK_VMAPS);
Praveen Paneriea9d9762016-05-02 14:10:29 +0530418 intel_runtime_pm_put(dev_priv);
Chris Wilson8ef85612016-04-28 09:56:39 +0100419
420 /* We also want to clear any cached iomaps as they wrap vmap */
421 list_for_each_entry_safe(vma, next,
422 &dev_priv->ggtt.base.inactive_list, vm_link) {
423 unsigned long count = vma->node.size >> PAGE_SHIFT;
424 if (vma->iomap && i915_vma_unbind(vma) == 0)
425 freed_pages += count;
426 }
427
428out:
Chris Wilson168cf362016-04-05 10:22:25 +0100429 i915_gem_shrinker_unlock_uninterruptible(dev_priv, &slu);
Chris Wilsone87666b2016-04-04 14:46:43 +0100430
431 *(unsigned long *)ptr += freed_pages;
432 return NOTIFY_DONE;
433}
434
Daniel Vettereb0b44a2015-03-18 14:47:59 +0100435/**
436 * i915_gem_shrinker_init - Initialize i915 shrinker
437 * @dev_priv: i915 device
438 *
439 * This function registers and sets up the i915 shrinker and OOM handler.
440 */
Daniel Vetterbe6a0372015-03-18 10:46:04 +0100441void i915_gem_shrinker_init(struct drm_i915_private *dev_priv)
442{
443 dev_priv->mm.shrinker.scan_objects = i915_gem_shrinker_scan;
444 dev_priv->mm.shrinker.count_objects = i915_gem_shrinker_count;
445 dev_priv->mm.shrinker.seeks = DEFAULT_SEEKS;
Imre Deaka8a40582016-01-19 15:26:28 +0200446 WARN_ON(register_shrinker(&dev_priv->mm.shrinker));
Daniel Vetterbe6a0372015-03-18 10:46:04 +0100447
448 dev_priv->mm.oom_notifier.notifier_call = i915_gem_shrinker_oom;
Imre Deaka8a40582016-01-19 15:26:28 +0200449 WARN_ON(register_oom_notifier(&dev_priv->mm.oom_notifier));
Chris Wilsone87666b2016-04-04 14:46:43 +0100450
451 dev_priv->mm.vmap_notifier.notifier_call = i915_gem_shrinker_vmap;
452 WARN_ON(register_vmap_purge_notifier(&dev_priv->mm.vmap_notifier));
Imre Deaka8a40582016-01-19 15:26:28 +0200453}
454
455/**
456 * i915_gem_shrinker_cleanup - Clean up i915 shrinker
457 * @dev_priv: i915 device
458 *
459 * This function unregisters the i915 shrinker and OOM handler.
460 */
461void i915_gem_shrinker_cleanup(struct drm_i915_private *dev_priv)
462{
Chris Wilsone87666b2016-04-04 14:46:43 +0100463 WARN_ON(unregister_vmap_purge_notifier(&dev_priv->mm.vmap_notifier));
Imre Deaka8a40582016-01-19 15:26:28 +0200464 WARN_ON(unregister_oom_notifier(&dev_priv->mm.oom_notifier));
465 unregister_shrinker(&dev_priv->mm.shrinker);
Daniel Vetterbe6a0372015-03-18 10:46:04 +0100466}