forked from Minki/linux
7e80576266
We don't need to hold struct_mutex now for retiring requests, so drop it from i915_retire_requests() and i915_gem_wait_for_idle(), finally removing I915_WAIT_LOCKED for good. Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> Reviewed-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20191004134015.13204-8-chris@chris-wilson.co.uk
15 lines
241 B
C
15 lines
241 B
C
/*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
* Copyright © 2018 Intel Corporation
|
|
*/
|
|
|
|
#ifndef IGT_FLUSH_TEST_H
|
|
#define IGT_FLUSH_TEST_H
|
|
|
|
struct drm_i915_private;
|
|
|
|
int igt_flush_test(struct drm_i915_private *i915);
|
|
|
|
#endif /* IGT_FLUSH_TEST_H */
|