[igt-dev] [PATCH i-g-t] tests/i915/gem_cs_tlb: Drop gem_require_ring() check
Ashutosh Dixit
ashutosh.dixit at intel.com
Wed Sep 22 23:03:44 UTC 2021
80f48722f429 ("tests/i915/gem_cs_tlb: Convert to intel_ctx_t") passes a
intel_ctx_t (initialized with intel_ctx_create_all_physical()) into
run_on_ring(). However gem_require_ring() checks if the ring is available
to context 0, not the intel_ctx_t which is passed in. This will cause the
test to skip for all engines not available to context 0. Hence drop the
gem_require_ring() check since we already know that the intel_ctx_t has all
physical engines available to it.
Cc: "Zbigniew Kempczynski <zbigniew.kempczynski at intel.com>"
Fixes: 80f48722f429 ("tests/i915/gem_cs_tlb: Convert to intel_ctx_t")
Signed-off-by: Ashutosh Dixit <ashutosh.dixit at intel.com>
---
tests/i915/gem_cs_tlb.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/tests/i915/gem_cs_tlb.c b/tests/i915/gem_cs_tlb.c
index 7a88866501c..2117b41e47c 100644
--- a/tests/i915/gem_cs_tlb.c
+++ b/tests/i915/gem_cs_tlb.c
@@ -102,7 +102,6 @@ static void run_on_ring(int fd, const intel_ctx_t *ctx,
} obj[2];
unsigned i;
- gem_require_ring(fd, ring_id);
igt_require(has_softpin(fd));
for (i = 0; i < 2; i++) {
--
2.33.0
More information about the igt-dev
mailing list