mirror of
https://github.com/tiagovignatti/intel-gpu-tools.git
synced 2025-06-08 08:26:10 +00:00
igt/gem_busy: Refactor to use gem_require_ring()
Now that gem_require_ring() does the right thing with BSD1/BSD2 we can use it to our advantage here. Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
This commit is contained in:
parent
3005665ead
commit
3992babd98
@ -161,6 +161,8 @@ static void test_ring(int fd, unsigned ring, uint32_t flags)
|
|||||||
uint32_t active;
|
uint32_t active;
|
||||||
unsigned i;
|
unsigned i;
|
||||||
|
|
||||||
|
gem_require_ring(fd, ring | flags);
|
||||||
|
|
||||||
handle[TEST] = gem_create(fd, 4096);
|
handle[TEST] = gem_create(fd, 4096);
|
||||||
handle[BATCH] = gem_create(fd, 4096);
|
handle[BATCH] = gem_create(fd, 4096);
|
||||||
gem_write(fd, handle[BATCH], 0, &bbe, sizeof(bbe));
|
gem_write(fd, handle[BATCH], 0, &bbe, sizeof(bbe));
|
||||||
@ -169,14 +171,14 @@ static void test_ring(int fd, unsigned ring, uint32_t flags)
|
|||||||
handle[BUSY] = busy_blt(fd);
|
handle[BUSY] = busy_blt(fd);
|
||||||
|
|
||||||
/* Queue a batch after the busy, it should block and remain "busy" */
|
/* Queue a batch after the busy, it should block and remain "busy" */
|
||||||
igt_require(exec_noop(fd, handle, ring | flags, false));
|
igt_assert(exec_noop(fd, handle, ring | flags, false));
|
||||||
igt_assert(still_busy(fd, handle[BUSY]));
|
igt_assert(still_busy(fd, handle[BUSY]));
|
||||||
__gem_busy(fd, handle[TEST], &read, &write);
|
__gem_busy(fd, handle[TEST], &read, &write);
|
||||||
igt_assert_eq(read, 1 << ring);
|
igt_assert_eq(read, 1 << ring);
|
||||||
igt_assert_eq(write, 0);
|
igt_assert_eq(write, 0);
|
||||||
|
|
||||||
/* Requeue with a write */
|
/* Requeue with a write */
|
||||||
igt_require(exec_noop(fd, handle, ring | flags, true));
|
igt_assert(exec_noop(fd, handle, ring | flags, true));
|
||||||
igt_assert(still_busy(fd, handle[BUSY]));
|
igt_assert(still_busy(fd, handle[BUSY]));
|
||||||
__gem_busy(fd, handle[TEST], &read, &write);
|
__gem_busy(fd, handle[TEST], &read, &write);
|
||||||
igt_assert_eq(read, 1 << ring);
|
igt_assert_eq(read, 1 << ring);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user