diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2020-12-11 21:22:34 +0000 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2020-12-11 21:47:55 +0000 |
commit | 5c3cf4a3b65c81259e068877c36e2be5c7c0b5a6 (patch) | |
tree | 3096301b396dceae64813f606974c25732a675c6 | |
parent | 0e209dc3cd7561a57ec45be74b8b299eaf391950 (diff) |
i915/gem_create: Exercise bo creation while the GPU is busy
We always expect to be able to create new buffer, regardless of the
state of the GPU.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Acked-by: Matthew Auld <matthew.auld@intel.com>
-rw-r--r-- | tests/i915/gem_create.c | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/tests/i915/gem_create.c b/tests/i915/gem_create.c index dc945ab6..bf653184 100644 --- a/tests/i915/gem_create.c +++ b/tests/i915/gem_create.c @@ -51,7 +51,10 @@ #include "intel_io.h" #include "intel_chipset.h" #include "igt_aux.h" +#include "igt_dummyload.h" #include "igt_x86.h" +#include "i915/gem.h" +#include "i915/gem_engine_topology.h" #include "i915/gem_mman.h" #include "i915_drm.h" @@ -224,6 +227,41 @@ static void always_clear(int i915, int timeout) igt_info("Checked %'lu page allocations\n", checked); } +static void busy_create(int i915, int timeout) +{ + struct intel_execution_engine2 *e; + igt_spin_t *spin[I915_EXEC_RING_MASK + 1]; + unsigned long count = 0; + + igt_fork_hang_detector(i915); + __for_each_physical_engine(i915, e) + spin[e->flags] = igt_spin_new(i915, .engine = e->flags); + + igt_until_timeout(timeout) { + __for_each_physical_engine(i915, e) { + uint32_t handle; + igt_spin_t *next; + + handle = gem_create(i915, 4096); + next = igt_spin_new(i915, + .engine = e->flags, + .dependency = handle, + .flags = IGT_SPIN_SOFTDEP); + gem_close(i915, handle); + + igt_spin_free(i915, spin[e->flags]); + spin[e->flags] = next; + + count++; + } + } + + igt_info("Created %ld objects while busy\n", count); + + gem_quiescent_gpu(i915); + igt_stop_hang_detector(); +} + static void size_update(int fd) { int size_initial_nonaligned = 15; @@ -255,4 +293,7 @@ igt_main igt_subtest("create-clear") always_clear(fd, 30); + + igt_subtest("busy-create") + busy_create(fd, 30); } |