blob: 50b4645bf627a9fdca37efab9bfde1e55f892286 [file] [log] [blame]
Chris Wilsonb47eb4a2010-08-07 11:01:23 +01001/*
2 * Copyright © 2008-2010 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 * Authors:
24 * Eric Anholt <eric@anholt.net>
25 * Chris Wilson <chris@chris-wilson.co.uuk>
26 *
27 */
28
David Howells760285e2012-10-02 18:01:07 +010029#include <drm/drmP.h>
David Howells760285e2012-10-02 18:01:07 +010030#include <drm/i915_drm.h>
Chris Wilson74e21ac2014-01-20 10:17:37 +000031
32#include "i915_drv.h"
33#include "intel_drv.h"
Chris Wilsondb53a302011-02-03 11:57:46 +000034#include "i915_trace.h"
Chris Wilsonb47eb4a2010-08-07 11:01:23 +010035
Chris Wilson80b204b2016-10-28 13:58:58 +010036static bool ggtt_is_idle(struct drm_i915_private *dev_priv)
Chris Wilson9332f3b2016-08-04 16:32:17 +010037{
Chris Wilson80b204b2016-10-28 13:58:58 +010038 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Chris Wilson9332f3b2016-08-04 16:32:17 +010039 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +053040 enum intel_engine_id id;
Chris Wilson9332f3b2016-08-04 16:32:17 +010041
Akash Goel3b3f1652016-10-13 22:44:48 +053042 for_each_engine(engine, dev_priv, id) {
Chris Wilson80b204b2016-10-28 13:58:58 +010043 struct intel_timeline *tl;
44
45 tl = &ggtt->base.timeline.engine[engine->id];
46 if (i915_gem_active_isset(&tl->last_request))
Chris Wilson9332f3b2016-08-04 16:32:17 +010047 return false;
48 }
49
50 return true;
51}
52
53static bool
Chris Wilson9a71e272016-12-22 08:36:29 +000054mark_free(struct drm_mm_scan *scan,
55 struct i915_vma *vma,
56 unsigned int flags,
57 struct list_head *unwind)
Chris Wilsonb47eb4a2010-08-07 11:01:23 +010058{
Chris Wilson20dfbde2016-08-04 16:32:30 +010059 if (i915_vma_is_pinned(vma))
Chris Wilson1b502472012-04-24 15:47:30 +010060 return false;
61
Daniel Vetterb93dab62013-08-26 11:23:47 +020062 if (WARN_ON(!list_empty(&vma->exec_list)))
63 return false;
64
Chris Wilson275f0392016-10-24 13:42:14 +010065 if (flags & PIN_NONFAULT && !list_empty(&vma->obj->userfault_link))
Chris Wilson82118872016-08-18 17:17:05 +010066 return false;
67
Ben Widawsky82a55ad2013-08-14 11:38:34 +020068 list_add(&vma->exec_list, unwind);
Chris Wilson9a71e272016-12-22 08:36:29 +000069 return drm_mm_scan_add_block(scan, &vma->node);
Chris Wilsonb47eb4a2010-08-07 11:01:23 +010070}
71
Daniel Vetterc2c1d492014-01-29 22:07:11 +010072/**
73 * i915_gem_evict_something - Evict vmas to make room for binding a new one
Daniel Vetterc2c1d492014-01-29 22:07:11 +010074 * @vm: address space to evict from
Daniel Vetter7838a632015-01-05 14:36:59 +010075 * @min_size: size of the desired free space
Daniel Vetterc2c1d492014-01-29 22:07:11 +010076 * @alignment: alignment constraint of the desired free space
77 * @cache_level: cache_level for the desired space
Daniel Vetter7838a632015-01-05 14:36:59 +010078 * @start: start (inclusive) of the range from which to evict objects
79 * @end: end (exclusive) of the range from which to evict objects
80 * @flags: additional flags to control the eviction algorithm
Daniel Vetterc2c1d492014-01-29 22:07:11 +010081 *
82 * This function will try to evict vmas until a free space satisfying the
83 * requirements is found. Callers must check first whether any such hole exists
84 * already before calling this function.
85 *
86 * This function is used by the object/vma binding code.
87 *
Daniel Vettereb0b44a2015-03-18 14:47:59 +010088 * Since this function is only used to free up virtual address space it only
89 * ignores pinned vmas, and not object where the backing storage itself is
90 * pinned. Hence obj->pages_pin_count does not protect against eviction.
91 *
Daniel Vetterc2c1d492014-01-29 22:07:11 +010092 * To clarify: This is for freeing up virtual address space, not for freeing
93 * memory in e.g. the shrinker.
94 */
Chris Wilsonb47eb4a2010-08-07 11:01:23 +010095int
Chris Wilsone522ac22016-08-04 16:32:18 +010096i915_gem_evict_something(struct i915_address_space *vm,
Chris Wilson2ffffd02016-08-04 16:32:22 +010097 u64 min_size, u64 alignment,
98 unsigned cache_level,
99 u64 start, u64 end,
Daniel Vetter1ec9e262014-02-14 14:01:11 +0100100 unsigned flags)
Chris Wilsonb47eb4a2010-08-07 11:01:23 +0100101{
Chris Wilson49d73912016-11-29 09:50:08 +0000102 struct drm_i915_private *dev_priv = vm->i915;
Chris Wilson9a71e272016-12-22 08:36:29 +0000103 struct drm_mm_scan scan;
Chris Wilson9332f3b2016-08-04 16:32:17 +0100104 struct list_head eviction_list;
105 struct list_head *phases[] = {
106 &vm->inactive_list,
107 &vm->active_list,
108 NULL,
109 }, **phase;
110 struct i915_vma *vma, *next;
Chris Wilson3fa489d2016-12-22 08:36:36 +0000111 struct drm_mm_node *node;
Chris Wilson9332f3b2016-08-04 16:32:17 +0100112 int ret;
Chris Wilsonb47eb4a2010-08-07 11:01:23 +0100113
Chris Wilson49d73912016-11-29 09:50:08 +0000114 lockdep_assert_held(&vm->i915->drm.struct_mutex);
Chris Wilsone522ac22016-08-04 16:32:18 +0100115 trace_i915_gem_evict(vm, min_size, alignment, flags);
Chris Wilsondb53a302011-02-03 11:57:46 +0000116
Chris Wilsoncd377ea2010-08-07 11:01:24 +0100117 /*
118 * The goal is to evict objects and amalgamate space in LRU order.
119 * The oldest idle objects reside on the inactive list, which is in
Chris Wilson9332f3b2016-08-04 16:32:17 +0100120 * retirement order. The next objects to retire are those in flight,
121 * on the active list, again in retirement order.
Chris Wilsoncd377ea2010-08-07 11:01:24 +0100122 *
123 * The retirement sequence is thus:
124 * 1. Inactive objects (already retired)
Chris Wilson9332f3b2016-08-04 16:32:17 +0100125 * 2. Active objects (will stall on unbinding)
Chris Wilsoncd377ea2010-08-07 11:01:24 +0100126 *
127 * On each list, the oldest objects lie at the HEAD with the freshest
128 * object on the TAIL.
129 */
Chris Wilson2c4b3892016-12-22 08:36:31 +0000130 drm_mm_scan_init_with_range(&scan, &vm->mm,
131 min_size, alignment, cache_level,
Chris Wilson0b04d472016-12-22 08:36:33 +0000132 start, end,
133 flags & PIN_HIGH ? DRM_MM_CREATE_TOP : 0);
Chris Wilsonb47eb4a2010-08-07 11:01:23 +0100134
Chris Wilson7155b052016-12-09 15:05:55 +0000135 /* Retire before we search the active list. Although we have
136 * reasonable accuracy in our retirement lists, we may have
137 * a stray pin (preventing eviction) that can only be resolved by
138 * retiring.
139 */
140 if (!(flags & PIN_NONBLOCK))
141 i915_gem_retire_requests(dev_priv);
142 else
Chris Wilson9332f3b2016-08-04 16:32:17 +0100143 phases[1] = NULL;
Chris Wilson86a1ee22012-08-11 15:41:04 +0100144
Chris Wilson9332f3b2016-08-04 16:32:17 +0100145search_again:
146 INIT_LIST_HEAD(&eviction_list);
147 phase = phases;
148 do {
149 list_for_each_entry(vma, *phase, vm_link)
Chris Wilson9a71e272016-12-22 08:36:29 +0000150 if (mark_free(&scan, vma, flags, &eviction_list))
Chris Wilson9332f3b2016-08-04 16:32:17 +0100151 goto found;
152 } while (*++phase);
Chris Wilsoncd377ea2010-08-07 11:01:24 +0100153
Chris Wilsoncd377ea2010-08-07 11:01:24 +0100154 /* Nothing found, clean up and bail out! */
Chris Wilson9332f3b2016-08-04 16:32:17 +0100155 list_for_each_entry_safe(vma, next, &eviction_list, exec_list) {
Chris Wilson9a71e272016-12-22 08:36:29 +0000156 ret = drm_mm_scan_remove_block(&scan, &vma->node);
Chris Wilsoncd377ea2010-08-07 11:01:24 +0100157 BUG_ON(ret);
Chris Wilson092de6f2011-01-10 14:21:05 +0000158
Chris Wilson9332f3b2016-08-04 16:32:17 +0100159 INIT_LIST_HEAD(&vma->exec_list);
Chris Wilsoncd377ea2010-08-07 11:01:24 +0100160 }
161
Chris Wilsonad071ac2013-12-09 10:37:24 +0000162 /* Can we unpin some objects such as idle hw contents,
Chris Wilson9332f3b2016-08-04 16:32:17 +0100163 * or pending flips? But since only the GGTT has global entries
164 * such as scanouts, rinbuffers and contexts, we can skip the
165 * purge when inspecting per-process local address spaces.
Chris Wilsoncd377ea2010-08-07 11:01:24 +0100166 */
Chris Wilson9332f3b2016-08-04 16:32:17 +0100167 if (!i915_is_ggtt(vm) || flags & PIN_NONBLOCK)
Chris Wilson74e21ac2014-01-20 10:17:37 +0000168 return -ENOSPC;
Chris Wilsonad071ac2013-12-09 10:37:24 +0000169
Chris Wilson80b204b2016-10-28 13:58:58 +0100170 if (ggtt_is_idle(dev_priv)) {
Chris Wilson9332f3b2016-08-04 16:32:17 +0100171 /* If we still have pending pageflip completions, drop
172 * back to userspace to give our workqueues time to
173 * acquire our locks and unpin the old scanouts.
174 */
Chris Wilson49d73912016-11-29 09:50:08 +0000175 return intel_has_pending_fb_unpin(dev_priv) ? -EAGAIN : -ENOSPC;
Chris Wilson74e21ac2014-01-20 10:17:37 +0000176 }
177
Chris Wilson9332f3b2016-08-04 16:32:17 +0100178 /* Not everything in the GGTT is tracked via vma (otherwise we
179 * could evict as required with minimal stalling) so we are forced
180 * to idle the GPU and explicitly retire outstanding requests in
181 * the hopes that we can then remove contexts and the like only
182 * bound by their active reference.
Chris Wilson74e21ac2014-01-20 10:17:37 +0000183 */
Chris Wilson9332f3b2016-08-04 16:32:17 +0100184 ret = i915_gem_switch_to_kernel_context(dev_priv);
185 if (ret)
186 return ret;
187
Chris Wilson22dd3bb2016-09-09 14:11:50 +0100188 ret = i915_gem_wait_for_idle(dev_priv,
189 I915_WAIT_INTERRUPTIBLE |
190 I915_WAIT_LOCKED);
Chris Wilson9332f3b2016-08-04 16:32:17 +0100191 if (ret)
192 return ret;
193
194 i915_gem_retire_requests(dev_priv);
195 goto search_again;
Chris Wilsoncd377ea2010-08-07 11:01:24 +0100196
197found:
Chris Wilsone39a0152010-09-29 22:23:05 +0100198 /* drm_mm doesn't allow any other other operations while
Chris Wilson9332f3b2016-08-04 16:32:17 +0100199 * scanning, therefore store to-be-evicted objects on a
200 * temporary list and take a reference for all before
201 * calling unbind (which may remove the active reference
202 * of any of our objects, thus corrupting the list).
203 */
204 list_for_each_entry_safe(vma, next, &eviction_list, exec_list) {
Chris Wilson9a71e272016-12-22 08:36:29 +0000205 if (drm_mm_scan_remove_block(&scan, &vma->node))
Chris Wilson20dfbde2016-08-04 16:32:30 +0100206 __i915_vma_pin(vma);
Chris Wilson9332f3b2016-08-04 16:32:17 +0100207 else
208 list_del_init(&vma->exec_list);
Chris Wilsoncd377ea2010-08-07 11:01:24 +0100209 }
210
Chris Wilsone39a0152010-09-29 22:23:05 +0100211 /* Unbinding will emit any required flushes */
Chris Wilson121dfbb2017-01-05 15:59:40 +0000212 ret = 0;
Chris Wilsone39a0152010-09-29 22:23:05 +0100213 while (!list_empty(&eviction_list)) {
Ben Widawsky82a55ad2013-08-14 11:38:34 +0200214 vma = list_first_entry(&eviction_list,
215 struct i915_vma,
Chris Wilson432e58e2010-11-25 19:32:06 +0000216 exec_list);
Ben Widawsky8637b402013-08-16 13:29:33 -0700217
Ben Widawsky8637b402013-08-16 13:29:33 -0700218 list_del_init(&vma->exec_list);
Chris Wilson20dfbde2016-08-04 16:32:30 +0100219 __i915_vma_unpin(vma);
Chris Wilsone39a0152010-09-29 22:23:05 +0100220 if (ret == 0)
Ben Widawsky82a55ad2013-08-14 11:38:34 +0200221 ret = i915_vma_unbind(vma);
Chris Wilsone39a0152010-09-29 22:23:05 +0100222 }
Chris Wilson3fa489d2016-12-22 08:36:36 +0000223
224 while (ret == 0 && (node = drm_mm_scan_color_evict(&scan))) {
225 vma = container_of(node, struct i915_vma, node);
226 ret = i915_vma_unbind(vma);
227 }
228
Chris Wilsone39a0152010-09-29 22:23:05 +0100229 return ret;
Chris Wilsonb47eb4a2010-08-07 11:01:23 +0100230}
231
Chris Wilson172ae5b2016-12-05 14:29:37 +0000232/**
233 * i915_gem_evict_for_vma - Evict vmas to make room for binding a new one
Chris Wilson625d9882017-01-11 11:23:11 +0000234 * @vm: address space to evict from
235 * @target: range (and color) to evict for
Chris Wilson172ae5b2016-12-05 14:29:37 +0000236 * @flags: additional flags to control the eviction algorithm
237 *
238 * This function will try to evict vmas that overlap the target node.
239 *
240 * To clarify: This is for freeing up virtual address space, not for freeing
241 * memory in e.g. the shrinker.
242 */
Chris Wilson625d9882017-01-11 11:23:11 +0000243int i915_gem_evict_for_node(struct i915_address_space *vm,
244 struct drm_mm_node *target,
245 unsigned int flags)
Chris Wilson506a8e82015-12-08 11:55:07 +0000246{
Chris Wilson172ae5b2016-12-05 14:29:37 +0000247 LIST_HEAD(eviction_list);
248 struct drm_mm_node *node;
Chris Wilson625d9882017-01-11 11:23:11 +0000249 u64 start = target->start;
250 u64 end = start + target->size;
Chris Wilson172ae5b2016-12-05 14:29:37 +0000251 struct i915_vma *vma, *next;
252 bool check_color;
253 int ret = 0;
Chris Wilson506a8e82015-12-08 11:55:07 +0000254
Chris Wilson625d9882017-01-11 11:23:11 +0000255 lockdep_assert_held(&vm->i915->drm.struct_mutex);
256 trace_i915_gem_evict_node(vm, target, flags);
Chris Wilson4c7d62c2016-10-28 13:58:32 +0100257
Chris Wilson7155b052016-12-09 15:05:55 +0000258 /* Retire before we search the active list. Although we have
259 * reasonable accuracy in our retirement lists, we may have
260 * a stray pin (preventing eviction) that can only be resolved by
261 * retiring.
262 */
263 if (!(flags & PIN_NONBLOCK))
Chris Wilson625d9882017-01-11 11:23:11 +0000264 i915_gem_retire_requests(vm->i915);
Chris Wilson7155b052016-12-09 15:05:55 +0000265
Chris Wilson625d9882017-01-11 11:23:11 +0000266 check_color = vm->mm.color_adjust;
Chris Wilson172ae5b2016-12-05 14:29:37 +0000267 if (check_color) {
268 /* Expand search to cover neighbouring guard pages (or lack!) */
Chris Wilson625d9882017-01-11 11:23:11 +0000269 if (start > vm->start)
Chris Wilsonf51455d2017-01-10 14:47:34 +0000270 start -= I915_GTT_PAGE_SIZE;
Chris Wilson625d9882017-01-11 11:23:11 +0000271 if (end < vm->start + vm->total)
Chris Wilsonf51455d2017-01-10 14:47:34 +0000272 end += I915_GTT_PAGE_SIZE;
Chris Wilson172ae5b2016-12-05 14:29:37 +0000273 }
Chris Wilson506a8e82015-12-08 11:55:07 +0000274
Chris Wilson625d9882017-01-11 11:23:11 +0000275 drm_mm_for_each_node_in_range(node, &vm->mm, start, end) {
Chris Wilson172ae5b2016-12-05 14:29:37 +0000276 /* If we find any non-objects (!vma), we cannot evict them */
277 if (node->color == I915_COLOR_UNEVICTABLE) {
278 ret = -ENOSPC;
Chris Wilson506a8e82015-12-08 11:55:07 +0000279 break;
Chris Wilson172ae5b2016-12-05 14:29:37 +0000280 }
Chris Wilson506a8e82015-12-08 11:55:07 +0000281
282 vma = container_of(node, typeof(*vma), node);
283
Chris Wilson172ae5b2016-12-05 14:29:37 +0000284 /* If we are using coloring to insert guard pages between
285 * different cache domains within the address space, we have
286 * to check whether the objects on either side of our range
287 * abutt and conflict. If they are in conflict, then we evict
288 * those as well to make room for our guard pages.
289 */
290 if (check_color) {
Chris Wilson625d9882017-01-11 11:23:11 +0000291 if (vma->node.start + vma->node.size == node->start) {
292 if (vma->node.color == node->color)
Chris Wilson172ae5b2016-12-05 14:29:37 +0000293 continue;
294 }
Chris Wilson625d9882017-01-11 11:23:11 +0000295 if (vma->node.start == node->start + node->size) {
296 if (vma->node.color == node->color)
Chris Wilson172ae5b2016-12-05 14:29:37 +0000297 continue;
298 }
Chris Wilson506a8e82015-12-08 11:55:07 +0000299 }
300
Chris Wilson172ae5b2016-12-05 14:29:37 +0000301 if (flags & PIN_NONBLOCK &&
302 (i915_vma_is_pinned(vma) || i915_vma_is_active(vma))) {
303 ret = -ENOSPC;
304 break;
305 }
306
307 /* Overlap of objects in the same batch? */
308 if (i915_vma_is_pinned(vma)) {
309 ret = -ENOSPC;
310 if (vma->exec_entry &&
311 vma->exec_entry->flags & EXEC_OBJECT_PINNED)
312 ret = -EINVAL;
313 break;
314 }
315
316 /* Never show fear in the face of dragons!
317 *
318 * We cannot directly remove this node from within this
319 * iterator and as with i915_gem_evict_something() we employ
320 * the vma pin_count in order to prevent the action of
321 * unbinding one vma from freeing (by dropping its active
322 * reference) another in our eviction list.
323 */
324 __i915_vma_pin(vma);
325 list_add(&vma->exec_list, &eviction_list);
Chris Wilson506a8e82015-12-08 11:55:07 +0000326 }
327
Chris Wilson172ae5b2016-12-05 14:29:37 +0000328 list_for_each_entry_safe(vma, next, &eviction_list, exec_list) {
329 list_del_init(&vma->exec_list);
330 __i915_vma_unpin(vma);
331 if (ret == 0)
332 ret = i915_vma_unbind(vma);
333 }
334
335 return ret;
Chris Wilson506a8e82015-12-08 11:55:07 +0000336}
337
Ben Widawsky68c8c172013-09-11 14:57:50 -0700338/**
Daniel Vetterc2c1d492014-01-29 22:07:11 +0100339 * i915_gem_evict_vm - Evict all idle vmas from a vm
Daniel Vetterc2c1d492014-01-29 22:07:11 +0100340 * @vm: Address space to cleanse
Ben Widawsky68c8c172013-09-11 14:57:50 -0700341 * @do_idle: Boolean directing whether to idle first.
342 *
Daniel Vetterc2c1d492014-01-29 22:07:11 +0100343 * This function evicts all idles vmas from a vm. If all unpinned vmas should be
344 * evicted the @do_idle needs to be set to true.
Ben Widawsky68c8c172013-09-11 14:57:50 -0700345 *
Daniel Vetterc2c1d492014-01-29 22:07:11 +0100346 * This is used by the execbuf code as a last-ditch effort to defragment the
347 * address space.
348 *
349 * To clarify: This is for freeing up virtual address space, not for freeing
350 * memory in e.g. the shrinker.
Ben Widawsky68c8c172013-09-11 14:57:50 -0700351 */
352int i915_gem_evict_vm(struct i915_address_space *vm, bool do_idle)
Ben Widawsky7b796122013-09-11 14:57:49 -0700353{
354 struct i915_vma *vma, *next;
355 int ret;
356
Chris Wilson49d73912016-11-29 09:50:08 +0000357 lockdep_assert_held(&vm->i915->drm.struct_mutex);
Ben Widawskybcccff82013-09-24 09:57:56 -0700358 trace_i915_gem_evict_vm(vm);
359
Ben Widawsky7b796122013-09-11 14:57:49 -0700360 if (do_idle) {
Chris Wilson49d73912016-11-29 09:50:08 +0000361 struct drm_i915_private *dev_priv = vm->i915;
Chris Wilson6e5a5be2016-06-24 14:55:57 +0100362
Chris Wilson883445d2016-06-24 14:55:58 +0100363 if (i915_is_ggtt(vm)) {
Chris Wilson945657b2016-07-15 14:56:19 +0100364 ret = i915_gem_switch_to_kernel_context(dev_priv);
Chris Wilson883445d2016-06-24 14:55:58 +0100365 if (ret)
366 return ret;
367 }
Ben Widawsky7b796122013-09-11 14:57:49 -0700368
Chris Wilson22dd3bb2016-09-09 14:11:50 +0100369 ret = i915_gem_wait_for_idle(dev_priv,
370 I915_WAIT_INTERRUPTIBLE |
371 I915_WAIT_LOCKED);
Chris Wilson6e5a5be2016-06-24 14:55:57 +0100372 if (ret)
373 return ret;
374
375 i915_gem_retire_requests(dev_priv);
Ben Widawskyb9b5dce2014-12-23 17:16:04 +0000376 WARN_ON(!list_empty(&vm->active_list));
Ben Widawsky7b796122013-09-11 14:57:49 -0700377 }
378
Chris Wilson1c7f4bc2016-02-26 11:03:19 +0000379 list_for_each_entry_safe(vma, next, &vm->inactive_list, vm_link)
Chris Wilson20dfbde2016-08-04 16:32:30 +0100380 if (!i915_vma_is_pinned(vma))
Ben Widawsky7b796122013-09-11 14:57:49 -0700381 WARN_ON(i915_vma_unbind(vma));
382
383 return 0;
384}