drm/i915/selftests: Use GT engines in mock_gem_device
Just freeing up two more call sites from passing in i915 to for_each_engine. Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com> Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk> Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> Link: https://patchwork.freedesktop.org/patch/msgid/20191022094726.3001-10-tvrtko.ursulin@linux.intel.com
This commit is contained in:
committed by
Chris Wilson
parent
2271a223e0
commit
6457099ac5
@@ -40,14 +40,14 @@
|
||||
|
||||
void mock_device_flush(struct drm_i915_private *i915)
|
||||
{
|
||||
struct intel_gt *gt = &i915->gt;
|
||||
struct intel_engine_cs *engine;
|
||||
enum intel_engine_id id;
|
||||
|
||||
do {
|
||||
for_each_engine(engine, i915, id)
|
||||
for_each_engine(engine, gt, id)
|
||||
mock_engine_flush(engine);
|
||||
} while (intel_gt_retire_requests_timeout(&i915->gt,
|
||||
MAX_SCHEDULE_TIMEOUT));
|
||||
} while (intel_gt_retire_requests_timeout(gt, MAX_SCHEDULE_TIMEOUT));
|
||||
}
|
||||
|
||||
static void mock_device_release(struct drm_device *dev)
|
||||
@@ -60,7 +60,7 @@ static void mock_device_release(struct drm_device *dev)
|
||||
|
||||
i915_gem_drain_workqueue(i915);
|
||||
|
||||
for_each_engine(engine, i915, id)
|
||||
for_each_engine(engine, &i915->gt, id)
|
||||
mock_engine_free(engine);
|
||||
i915_gem_driver_release__contexts(i915);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user