We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e70a27d commit b91e1b1Copy full SHA for b91e1b1
drivers/gpu/drm/i915/gt/selftest_engine_cs.c
@@ -76,7 +76,7 @@ static struct i915_vma *create_empty_batch(struct intel_context *ce)
76
if (IS_ERR(obj))
77
return ERR_CAST(obj);
78
79
- cs = i915_gem_object_pin_map(obj, I915_MAP_WB);
+ cs = i915_gem_object_pin_map_unlocked(obj, I915_MAP_WB);
80
if (IS_ERR(cs)) {
81
err = PTR_ERR(cs);
82
goto err_put;
@@ -212,7 +212,7 @@ static struct i915_vma *create_nop_batch(struct intel_context *ce)
212
213
214
215
216
217
218
0 commit comments