Igt-dev Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [igt-dev] [PATCH i-g-t] tests/i915: skip gem_set_caching call for mtl
@ 2023-03-09 14:19 Vikas Srivastava
  2023-03-09 15:20 ` [igt-dev] ✗ GitLab.Pipeline: warning for tests/i915: skip gem_set_caching call for mtl (rev2) Patchwork
                   ` (6 more replies)
  0 siblings, 7 replies; 8+ messages in thread
From: Vikas Srivastava @ 2023-03-09 14:19 UTC (permalink / raw)
  To: igt-dev

Call to gem_set_caching skips the test since i915_gem_set_caching_ioctl is
deprecated for MTL. To avoid this added the return value check for
0 or EOPNOTSUPP in __gem_set_caching.

FIXME: This is a temp solution to fix the IGT test issues where
set caching call is used , there is alternate API available
but support not yet available to use that.Once set_pat_index
support available need to bring that change replacing this one.

Signed-off-by: Vikas Srivastava <vikas.srivastava@intel.com>
---
 tests/i915/gem_caching.c            |  8 +++++---
 tests/i915/gem_exec_flush.c         | 10 ++++++----
 tests/i915/gem_exec_latency.c       |  4 +++-
 tests/i915/gem_exec_suspend.c       |  7 +++++--
 tests/i915/gem_render_tiled_blits.c |  5 +++--
 tests/i915/gem_softpin.c            |  4 +++-
 tests/i915/gem_userptr_blits.c      | 18 ++++++++++++++----
 tests/i915/gem_workarounds.c        |  8 +++++---
 tests/i915/i915_pm_rpm.c            |  7 +++++--
 tests/prime_vgem.c                  |  4 +++-
 10 files changed, 52 insertions(+), 23 deletions(-)

diff --git a/tests/i915/gem_caching.c b/tests/i915/gem_caching.c
index eb0170abc..3f6576c47 100644
--- a/tests/i915/gem_caching.c
+++ b/tests/i915/gem_caching.c
@@ -136,7 +136,7 @@ igt_main
 	struct intel_bb *ibb;
 	data_t data = {0, };
 	unsigned flags = TEST_BOTH;
-	int i, j;
+	int i, j, ret;
 	uint8_t *cpu_ptr;
 	uint8_t *gtt_ptr;
 
@@ -163,8 +163,10 @@ igt_main
 		scratch_buf = intel_buf_create(data.bops, BO_SIZE/4, 1,
 					       32, 0, I915_TILING_NONE, 0);
 
-		if (!gem_has_lmem(data.fd))
-			gem_set_caching(data.fd, scratch_buf->handle, 1);
+		if (!gem_has_lmem(data.fd)) {
+			ret = __gem_set_caching(data.fd, scratch_buf->handle, 1);
+			igt_require(ret == 0 || ret == -EOPNOTSUPP);
+		}
 
 		staging_buf = intel_buf_create(data.bops, BO_SIZE/4, 1,
 					       32, 0, I915_TILING_NONE, 0);
diff --git a/tests/i915/gem_exec_flush.c b/tests/i915/gem_exec_flush.c
index 40c58db2b..bd9fe4cda 100644
--- a/tests/i915/gem_exec_flush.c
+++ b/tests/i915/gem_exec_flush.c
@@ -127,7 +127,7 @@ static void run(int fd, unsigned ring, int nchild, int timeout,
 		bool snoop = false;
 		uint32_t *ptr;
 		uint32_t *map;
-		int i;
+		int i, ret;
 		bool has_relocs = gem_has_relocations(fd);
 
 		memset(obj, 0, sizeof(obj));
@@ -142,7 +142,8 @@ static void run(int fd, unsigned ring, int nchild, int timeout,
 				       I915_GEM_DOMAIN_WC);
 		} else {
 			snoop = flags & COHERENT;
-			gem_set_caching(fd, obj[0].handle, snoop);
+			ret = __gem_set_caching(fd, obj[0].handle, snoop);
+			igt_require(ret == 0 || ret == -EOPNOTSUPP);
 			map = gem_mmap__cpu(fd, obj[0].handle, 0, 4096, PROT_WRITE);
 			gem_set_domain(fd, obj[0].handle,
 				       I915_GEM_DOMAIN_CPU,
@@ -394,14 +395,15 @@ static void batch(int fd, unsigned ring, int nchild, int timeout,
 		unsigned long cycles = 0;
 		uint32_t *ptr;
 		uint32_t *map;
-		int i;
+		int i, ret;
 		bool has_relocs = gem_has_relocations(fd);
 
 		memset(obj, 0, sizeof(obj));
 		obj[0].handle = gem_create(fd, 4096);
 		obj[0].flags |= EXEC_OBJECT_WRITE;
 
-		gem_set_caching(fd, obj[0].handle, !!(flags & COHERENT));
+		ret = __gem_set_caching(fd, obj[0].handle, !!(flags & COHERENT));
+		igt_require(ret == 0 || ret == -EOPNOTSUPP);
 		map = gem_mmap__cpu(fd, obj[0].handle, 0, 4096, PROT_WRITE);
 
 		gem_set_domain(fd, obj[0].handle,
diff --git a/tests/i915/gem_exec_latency.c b/tests/i915/gem_exec_latency.c
index fcdf7787b..f24e95f33 100644
--- a/tests/i915/gem_exec_latency.c
+++ b/tests/i915/gem_exec_latency.c
@@ -756,6 +756,7 @@ static void context_switch(int i915, const intel_ctx_t *ctx,
 	const uint32_t mmio_base = gem_engine_mmio_base(i915, e->name);
 	struct igt_mean mean;
 	const intel_ctx_t *tmp_ctx[2];
+	int ret;
 
 	igt_require(mmio_base);
 	igt_require(gem_class_has_mutable_submission(i915, e->class));
@@ -770,7 +771,8 @@ static void context_switch(int i915, const intel_ctx_t *ctx,
 
 	memset(obj, 0, sizeof(obj));
 	obj[0].handle = gem_create(i915, 4096);
-	gem_set_caching(i915, obj[0].handle, 1);
+	ret = __gem_set_caching(i915, obj[0].handle, 1);
+	igt_require(ret == 0 || ret == -EOPNOTSUPP);
 	results = gem_mmap__cpu(i915, obj[0].handle, 0, 4096, PROT_READ);
 	gem_set_domain(i915, obj[0].handle, I915_GEM_DOMAIN_CPU, 0);
 
diff --git a/tests/i915/gem_exec_suspend.c b/tests/i915/gem_exec_suspend.c
index 3b59966a1..2b5e47725 100644
--- a/tests/i915/gem_exec_suspend.c
+++ b/tests/i915/gem_exec_suspend.c
@@ -86,6 +86,7 @@ static void run_test(int fd, const intel_ctx_t *ctx,
 	unsigned nengine;
 	igt_spin_t *spin = NULL;
 	uint64_t ahnd = get_reloc_ahnd(fd, 0);
+	int ret;
 
 	nengine = 0;
 	if (engine == ALL_ENGINES) {
@@ -116,8 +117,10 @@ static void run_test(int fd, const intel_ctx_t *ctx,
 
 	memset(obj, 0, sizeof(obj));
 	obj[0].handle = gem_create_in_memory_regions(fd, 4096, region);
-	if (!gem_has_lmem(fd))
-		gem_set_caching(fd, obj[0].handle, !!(flags & CACHED));
+	if (!gem_has_lmem(fd)) {
+		ret = __gem_set_caching(fd, obj[0].handle, !!(flags & CACHED));
+		igt_require(ret == 0 || ret == -EOPNOTSUPP);
+	}
 	obj[0].flags |= EXEC_OBJECT_WRITE;
 	obj[1].handle = gem_create_in_memory_regions(fd, 4096, region);
 	gem_write(fd, obj[1].handle, 0, &bbe, sizeof(bbe));
diff --git a/tests/i915/gem_render_tiled_blits.c b/tests/i915/gem_render_tiled_blits.c
index eae06a332..c3bf1beaf 100644
--- a/tests/i915/gem_render_tiled_blits.c
+++ b/tests/i915/gem_render_tiled_blits.c
@@ -97,7 +97,7 @@ static void run_test (int fd, int count)
 	struct intel_bb *ibb;
 	uint32_t *start_val;
 	struct intel_buf *bufs;
-	int i, j;
+	int i, j, ret;
 	uint32_t devid;
 
 	devid = intel_get_drm_devid(fd);
@@ -117,7 +117,8 @@ static void run_test (int fd, int count)
 	intel_buf_init(bops, &linear, WIDTH, HEIGHT, 32, 0,
 		       I915_TILING_NONE, I915_COMPRESSION_NONE);
 	if (snoop) {
-		gem_set_caching(fd, linear.handle, 1);
+		ret = __gem_set_caching(fd, linear.handle, 1);
+		igt_require(ret == 0 || ret == -EOPNOTSUPP);
 		igt_info("Using a snoop linear buffer for comparisons\n");
 	}
 
diff --git a/tests/i915/gem_softpin.c b/tests/i915/gem_softpin.c
index c29bfd43d..ad6fb6b94 100644
--- a/tests/i915/gem_softpin.c
+++ b/tests/i915/gem_softpin.c
@@ -518,6 +518,7 @@ static void test_evict_snoop(int fd, unsigned int flags)
 	struct drm_i915_gem_execbuffer2 execbuf;
 	struct drm_i915_gem_exec_object2 object[2];
 	uint64_t hole;
+	int ret;
 
 	igt_require(!gem_has_llc(fd));
 	igt_require(!gem_uses_ppgtt(fd));
@@ -537,7 +538,8 @@ static void test_evict_snoop(int fd, unsigned int flags)
 	/* Create a snoop + uncached pair */
 	object[0].handle = gem_create(fd, 4096);
 	object[0].flags = EXEC_OBJECT_PINNED;
-	gem_set_caching(fd, object[0].handle, 1);
+	ret = __gem_set_caching(fd, object[0].handle, 1);
+	igt_require(ret == 0 || ret == -EOPNOTSUPP);
 	object[1].handle = gem_create(fd, 4096);
 	object[1].flags = EXEC_OBJECT_PINNED;
 	gem_write(fd, object[1].handle, 4096-sizeof(bbe), &bbe, sizeof(bbe));
diff --git a/tests/i915/gem_userptr_blits.c b/tests/i915/gem_userptr_blits.c
index 483570d0a..3dd4f68e2 100644
--- a/tests/i915/gem_userptr_blits.c
+++ b/tests/i915/gem_userptr_blits.c
@@ -1140,15 +1140,17 @@ static void test_relocations(int fd)
 	struct drm_i915_gem_execbuffer2 exec;
 	unsigned size;
 	void *ptr;
-	int i;
+	int i, ret;
 
 	size = PAGE_SIZE + ALIGN(sizeof(*reloc)*256, PAGE_SIZE);
 
 	memset(&obj, 0, sizeof(obj));
 	igt_assert(posix_memalign(&ptr, PAGE_SIZE, size) == 0);
 	gem_userptr(fd, ptr, size, 0, userptr_flags, &obj.handle);
-	if (!gem_has_llc(fd))
-		gem_set_caching(fd, obj.handle, 0);
+	if (!gem_has_llc(fd)) {
+		ret = __gem_set_caching(fd, obj.handle, 0);
+		igt_require(ret == 0 || ret == -EOPNOTSUPP);
+	}
 	*(uint32_t *)ptr = MI_BATCH_BUFFER_END;
 
 	reloc = (typeof(reloc))((char *)ptr + PAGE_SIZE);
@@ -2355,8 +2357,13 @@ const char *help_str = "  -c\tBuffer count\n";
 igt_main_args("c:", NULL, help_str, opt_handler, NULL)
 {
 	int size = sizeof(linear);
+	uint16_t devid;
+	bool has_set_caching;
 	igt_fd_t(fd);
 
+	devid = intel_get_drm_devid(fd);
+	has_set_caching = IS_METEORLAKE(devid) ? false : true;
+
 	igt_fixture {
 		unsigned int mmo_max = 0;
 
@@ -2417,8 +2424,11 @@ igt_main_args("c:", NULL, help_str, opt_handler, NULL)
 			test_sd_probe(fd);
 		}
 
-		igt_subtest("set-cache-level")
+		igt_subtest("set-cache-level") {
+			igt_require_f((has_set_caching),
+				      "set_caching not supported on this platform");
 			test_set_caching(fd);
+		}
 
 		igt_subtest("userfault")
 			test_userfault(fd);
diff --git a/tests/i915/gem_workarounds.c b/tests/i915/gem_workarounds.c
index 5fb2d73fd..3a580f59f 100644
--- a/tests/i915/gem_workarounds.c
+++ b/tests/i915/gem_workarounds.c
@@ -92,7 +92,7 @@ static int workaround_fail_count(int i915, const intel_ctx_t *ctx)
 	uint32_t result_sz, batch_sz;
 	uint32_t *base, *out;
 	igt_spin_t *spin;
-	int fw, fail = 0;
+	int fw, fail = 0, ret;
 	uint64_t ahnd = get_reloc_ahnd(i915, ctx->id);
 
 	reloc = calloc(num_wa_regs, sizeof(*reloc));
@@ -106,8 +106,10 @@ static int workaround_fail_count(int i915, const intel_ctx_t *ctx)
 
 	memset(obj, 0, sizeof(obj));
 	obj[0].handle = gem_create(i915, result_sz);
-	if (!gem_has_lmem(i915))
-		gem_set_caching(i915, obj[0].handle, I915_CACHING_CACHED);
+	if (!gem_has_lmem(i915)) {
+		ret = __gem_set_caching(i915, obj[0].handle, I915_CACHING_CACHED);
+		igt_require(ret == 0 || ret == -EOPNOTSUPP);
+	}
 	obj[1].handle = gem_create(i915, batch_sz);
 	obj[1].relocs_ptr = to_user_pointer(reloc);
 	obj[1].relocation_count = !ahnd ? num_wa_regs : 0;
diff --git a/tests/i915/i915_pm_rpm.c b/tests/i915/i915_pm_rpm.c
index 74935430c..9c372e43d 100644
--- a/tests/i915/i915_pm_rpm.c
+++ b/tests/i915/i915_pm_rpm.c
@@ -1977,6 +1977,7 @@ static void pm_test_caching(void)
 {
 	uint32_t handle;
 	uint8_t *gem_buf;
+	int ret;
 
 	uint32_t i;
 	uint32_t default_cache_level;
@@ -1995,7 +1996,8 @@ static void pm_test_caching(void)
 
 	for (i = 0; i < ARRAY_SIZE(cache_levels); i++) {
 		igt_assert(wait_for_suspended());
-		gem_set_caching(drm_fd, handle, default_cache_level);
+		ret = __gem_set_caching(drm_fd, handle, default_cache_level);
+		igt_require(ret == 0 || ret == -EOPNOTSUPP);
 
 		/* Ensure we bind the vma into the GGTT */
 		memset(gem_buf, 16 << i, gtt_obj_max_size);
@@ -2008,7 +2010,8 @@ static void pm_test_caching(void)
 		 */
 		igt_debug("Setting cache level %u\n", cache_levels[i]);
 		igt_assert(wait_for_suspended());
-		gem_set_caching(drm_fd, handle, cache_levels[i]);
+		ret = __gem_set_caching(drm_fd, handle, cache_levels[i]);
+		igt_require(ret == 0 || ret == -EOPNOTSUPP);
 	}
 
 	igt_assert(munmap(gem_buf, gtt_obj_max_size) == 0);
diff --git a/tests/prime_vgem.c b/tests/prime_vgem.c
index 06be273c0..caef8040f 100644
--- a/tests/prime_vgem.c
+++ b/tests/prime_vgem.c
@@ -316,6 +316,7 @@ static void test_userptr(int vgem, int i915)
 	};
 	struct vgem_bo scratch;
 	uint32_t *ptr;
+	int ret;
 
 	igt_require(has_userptr(i915));
 
@@ -330,7 +331,8 @@ static void test_userptr(int vgem, int i915)
 	*ptr = MI_BATCH_BUFFER_END;
 
 	gem_userptr(i915, ptr, scratch.size, 0, 0, &obj.handle);
-	gem_set_caching(i915, obj.handle, I915_CACHING_NONE); /* for !llc exec */
+	ret = __gem_set_caching(i915, obj.handle, I915_CACHING_NONE); /* for !llc exec */
+	igt_require(ret == 0 || ret == -EOPNOTSUPP);
 
 	gem_execbuf(i915, &execbuf);
 	gem_close(i915, obj.handle);
-- 
2.25.1

^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [igt-dev] ✗ GitLab.Pipeline: warning for tests/i915: skip gem_set_caching call for mtl (rev2)
  2023-03-09 14:19 [igt-dev] [PATCH i-g-t] tests/i915: skip gem_set_caching call for mtl Vikas Srivastava
@ 2023-03-09 15:20 ` Patchwork
  2023-03-09 15:26 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
                   ` (5 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2023-03-09 15:20 UTC (permalink / raw)
  To: Vikas Srivastava; +Cc: igt-dev

== Series Details ==

Series: tests/i915: skip gem_set_caching call for mtl (rev2)
URL   : https://patchwork.freedesktop.org/series/114544/
State : warning

== Summary ==

Pipeline status: FAILED.

see https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/825793 for the overview.

test:ninja-test has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/37779795):
  367/371 assembler test/rnde-intsrc              OK       0.01 s 
  368/371 assembler test/rndz                     OK       0.05 s 
  369/371 assembler test/lzd                      OK       0.04 s 
  370/371 assembler test/not                      OK       0.03 s 
  371/371 assembler test/immediate                OK       0.03 s 
  
  Ok:                  366
  Expected Fail:         4
  Fail:                  1
  Unexpected Pass:       0
  Skipped:               0
  Timeout:               0
  
  Full log written to /builds/gfx-ci/igt-ci-tags/build/meson-logs/testlog.txt
  section_end:1678374917:step_script
  section_start:1678374917:cleanup_file_variables
  Cleaning up project directory and file based variables
  section_end:1678374918:cleanup_file_variables
  ERROR: Job failed: exit code 1
  

test:ninja-test-clang has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/37779907):
  367/371 assembler test/rnde-intsrc              OK       0.02 s 
  368/371 assembler test/rndz                     OK       0.02 s 
  369/371 assembler test/lzd                      OK       0.03 s 
  370/371 assembler test/not                      OK       0.03 s 
  371/371 assembler test/immediate                OK       0.01 s 
  
  Ok:                  366
  Expected Fail:         4
  Fail:                  1
  Unexpected Pass:       0
  Skipped:               0
  Timeout:               0
  
  Full log written to /builds/gfx-ci/igt-ci-tags/build/meson-logs/testlog.txt
  section_end:1678375028:step_script
  section_start:1678375028:cleanup_file_variables
  Cleaning up project directory and file based variables
  section_end:1678375028:cleanup_file_variables
  ERROR: Job failed: exit code 1

== Logs ==

For more details see: https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/825793

^ permalink raw reply	[flat|nested] 8+ messages in thread

* [igt-dev] ✓ Fi.CI.BAT: success for tests/i915: skip gem_set_caching call for mtl (rev2)
  2023-03-09 14:19 [igt-dev] [PATCH i-g-t] tests/i915: skip gem_set_caching call for mtl Vikas Srivastava
  2023-03-09 15:20 ` [igt-dev] ✗ GitLab.Pipeline: warning for tests/i915: skip gem_set_caching call for mtl (rev2) Patchwork
@ 2023-03-09 15:26 ` Patchwork
  2023-03-09 16:41 ` [igt-dev] [PATCH i-g-t] tests/i915: skip gem_set_caching call for mtl Kamil Konieczny
                   ` (4 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2023-03-09 15:26 UTC (permalink / raw)
  To: Vikas Srivastava; +Cc: igt-dev

[-- Attachment #1: Type: text/plain, Size: 15281 bytes --]

== Series Details ==

Series: tests/i915: skip gem_set_caching call for mtl (rev2)
URL   : https://patchwork.freedesktop.org/series/114544/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_12831 -> IGTPW_8583
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/index.html

Participating hosts (35 -> 35)
------------------------------

  Additional (1): fi-kbl-soraka 
  Missing    (1): fi-snb-2520m 

Known issues
------------

  Here are the changes found in IGTPW_8583 that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@dmabuf@all-tests@dma_fence:
    - fi-cfl-8109u:       [PASS][1] -> [DMESG-FAIL][2] ([i915#8141])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12831/fi-cfl-8109u/igt@dmabuf@all-tests@dma_fence.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/fi-cfl-8109u/igt@dmabuf@all-tests@dma_fence.html

  * igt@dmabuf@all-tests@sanitycheck:
    - fi-cfl-8109u:       [PASS][3] -> [ABORT][4] ([i915#8141])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12831/fi-cfl-8109u/igt@dmabuf@all-tests@sanitycheck.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/fi-cfl-8109u/igt@dmabuf@all-tests@sanitycheck.html

  * igt@gem_huc_copy@huc-copy:
    - fi-kbl-soraka:      NOTRUN -> [SKIP][5] ([fdo#109271] / [i915#2190])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/fi-kbl-soraka/igt@gem_huc_copy@huc-copy.html

  * igt@gem_lmem_swapping@basic:
    - fi-kbl-soraka:      NOTRUN -> [SKIP][6] ([fdo#109271] / [i915#4613]) +3 similar issues
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/fi-kbl-soraka/igt@gem_lmem_swapping@basic.html

  * igt@i915_module_load@reload:
    - fi-kbl-soraka:      NOTRUN -> [DMESG-WARN][7] ([i915#1982])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/fi-kbl-soraka/igt@i915_module_load@reload.html

  * igt@i915_selftest@live@execlists:
    - fi-bsw-n3050:       [PASS][8] -> [ABORT][9] ([i915#7911])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12831/fi-bsw-n3050/igt@i915_selftest@live@execlists.html
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/fi-bsw-n3050/igt@i915_selftest@live@execlists.html

  * igt@i915_selftest@live@gem_contexts:
    - fi-kbl-soraka:      NOTRUN -> [INCOMPLETE][10] ([i915#7913])
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/fi-kbl-soraka/igt@i915_selftest@live@gem_contexts.html

  * igt@i915_selftest@live@gt_pm:
    - fi-kbl-soraka:      NOTRUN -> [DMESG-FAIL][11] ([i915#1886])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/fi-kbl-soraka/igt@i915_selftest@live@gt_pm.html

  * igt@i915_selftest@live@reset:
    - bat-rpls-2:         NOTRUN -> [ABORT][12] ([i915#4983] / [i915#7913] / [i915#7981])
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/bat-rpls-2/igt@i915_selftest@live@reset.html
    - bat-rpls-1:         [PASS][13] -> [ABORT][14] ([i915#4983])
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12831/bat-rpls-1/igt@i915_selftest@live@reset.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/bat-rpls-1/igt@i915_selftest@live@reset.html

  * igt@kms_chamelium_frames@hdmi-crc-fast:
    - fi-kbl-soraka:      NOTRUN -> [SKIP][15] ([fdo#109271]) +16 similar issues
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/fi-kbl-soraka/igt@kms_chamelium_frames@hdmi-crc-fast.html

  * igt@kms_chamelium_hpd@common-hpd-after-suspend:
    - fi-glk-j4005:       NOTRUN -> [SKIP][16] ([fdo#109271])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/fi-glk-j4005/igt@kms_chamelium_hpd@common-hpd-after-suspend.html
    - fi-bsw-nick:        NOTRUN -> [SKIP][17] ([fdo#109271]) +1 similar issue
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/fi-bsw-nick/igt@kms_chamelium_hpd@common-hpd-after-suspend.html

  
#### Possible fixes ####

  * igt@i915_selftest@live@execlists:
    - fi-bsw-nick:        [ABORT][18] ([i915#7911] / [i915#7913]) -> [PASS][19]
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12831/fi-bsw-nick/igt@i915_selftest@live@execlists.html
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/fi-bsw-nick/igt@i915_selftest@live@execlists.html

  * igt@i915_selftest@live@late_gt_pm:
    - fi-glk-j4005:       [ABORT][20] ([i915#6217]) -> [PASS][21]
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12831/fi-glk-j4005/igt@i915_selftest@live@late_gt_pm.html
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/fi-glk-j4005/igt@i915_selftest@live@late_gt_pm.html

  * igt@i915_selftest@live@requests:
    - bat-rpls-2:         [ABORT][22] ([i915#7694] / [i915#7913]) -> [PASS][23]
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12831/bat-rpls-2/igt@i915_selftest@live@requests.html
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/bat-rpls-2/igt@i915_selftest@live@requests.html

  
#### Warnings ####

  * igt@prime_vgem@basic-userptr:
    - bat-jsl-3:          [SKIP][24] ([fdo#109295] / [i915#3301]) -> [SKIP][25] ([fdo#109295])
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12831/bat-jsl-3/igt@prime_vgem@basic-userptr.html
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/bat-jsl-3/igt@prime_vgem@basic-userptr.html
    - bat-dg2-9:          [SKIP][26] ([i915#3708] / [i915#4873]) -> [SKIP][27] ([i915#3708])
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12831/bat-dg2-9/igt@prime_vgem@basic-userptr.html
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/bat-dg2-9/igt@prime_vgem@basic-userptr.html
    - bat-adln-1:         [SKIP][28] ([fdo#109295] / [i915#3301]) -> [SKIP][29] ([fdo#109295])
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12831/bat-adln-1/igt@prime_vgem@basic-userptr.html
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/bat-adln-1/igt@prime_vgem@basic-userptr.html
    - bat-dg2-8:          [SKIP][30] ([i915#3708] / [i915#4873]) -> [SKIP][31] ([i915#3708])
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12831/bat-dg2-8/igt@prime_vgem@basic-userptr.html
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/bat-dg2-8/igt@prime_vgem@basic-userptr.html
    - bat-jsl-1:          [SKIP][32] ([fdo#109295] / [i915#3301]) -> [SKIP][33] ([fdo#109295])
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12831/bat-jsl-1/igt@prime_vgem@basic-userptr.html
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/bat-jsl-1/igt@prime_vgem@basic-userptr.html
    - fi-tgl-1115g4:      [SKIP][34] ([fdo#109295] / [i915#3301]) -> [SKIP][35] ([fdo#109295])
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12831/fi-tgl-1115g4/igt@prime_vgem@basic-userptr.html
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/fi-tgl-1115g4/igt@prime_vgem@basic-userptr.html
    - bat-dg1-5:          [SKIP][36] ([i915#3708] / [i915#4873]) -> [SKIP][37] ([i915#3708])
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12831/bat-dg1-5/igt@prime_vgem@basic-userptr.html
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/bat-dg1-5/igt@prime_vgem@basic-userptr.html
    - bat-dg1-7:          [SKIP][38] ([i915#3708] / [i915#4873]) -> [SKIP][39] ([i915#3708])
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12831/bat-dg1-7/igt@prime_vgem@basic-userptr.html
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/bat-dg1-7/igt@prime_vgem@basic-userptr.html
    - bat-adlp-9:         [SKIP][40] ([fdo#109295] / [i915#3301] / [i915#3708]) -> [SKIP][41] ([fdo#109295] / [i915#3708])
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12831/bat-adlp-9/igt@prime_vgem@basic-userptr.html
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/bat-adlp-9/igt@prime_vgem@basic-userptr.html
    - bat-dg2-11:         [SKIP][42] ([i915#3708] / [i915#4873]) -> [SKIP][43] ([i915#3708])
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12831/bat-dg2-11/igt@prime_vgem@basic-userptr.html
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/bat-dg2-11/igt@prime_vgem@basic-userptr.html
    - bat-dg1-6:          [SKIP][44] ([i915#3708] / [i915#4873]) -> [SKIP][45] ([i915#3708])
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12831/bat-dg1-6/igt@prime_vgem@basic-userptr.html
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/bat-dg1-6/igt@prime_vgem@basic-userptr.html
    - fi-rkl-11600:       [SKIP][46] ([fdo#109295] / [i915#3301] / [i915#3708]) -> [SKIP][47] ([fdo#109295] / [i915#3708])
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12831/fi-rkl-11600/igt@prime_vgem@basic-userptr.html
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/fi-rkl-11600/igt@prime_vgem@basic-userptr.html
    - bat-adls-5:         [SKIP][48] ([fdo#109295] / [i915#3301]) -> [SKIP][49] ([fdo#109295])
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12831/bat-adls-5/igt@prime_vgem@basic-userptr.html
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/bat-adls-5/igt@prime_vgem@basic-userptr.html

  
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
  [i915#1886]: https://gitlab.freedesktop.org/drm/intel/issues/1886
  [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
  [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
  [i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301
  [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
  [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
  [i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873
  [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983
  [i915#6217]: https://gitlab.freedesktop.org/drm/intel/issues/6217
  [i915#7694]: https://gitlab.freedesktop.org/drm/intel/issues/7694
  [i915#7911]: https://gitlab.freedesktop.org/drm/intel/issues/7911
  [i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913
  [i915#7981]: https://gitlab.freedesktop.org/drm/intel/issues/7981
  [i915#8141]: https://gitlab.freedesktop.org/drm/intel/issues/8141


Build changes
-------------

  * CI: CI-20190529 -> None
  * IGT: IGT_7188 -> IGTPW_8583

  CI-20190529: 20190529
  CI_DRM_12831: 4910ebea52abc05f63bfc43bc91baebd8af93d45 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_8583: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/index.html
  IGT_7188: b35bfa32fe672d67ced8555557e3e707ace211ad @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git


Testlist changes
----------------

-igt@gem_userptr_blits@access-control
-igt@gem_userptr_blits@coherency-sync
-igt@gem_userptr_blits@coherency-unsync
-igt@gem_userptr_blits@create-destroy-sync
-igt@gem_userptr_blits@create-destroy-unsync
-igt@gem_userptr_blits@dmabuf-sync
-igt@gem_userptr_blits@dmabuf-unsync
-igt@gem_userptr_blits@forbidden-operations
-igt@gem_userptr_blits@forked-access
-igt@gem_userptr_blits@forked-sync-interruptible
-igt@gem_userptr_blits@forked-sync-mempressure-interruptible
-igt@gem_userptr_blits@forked-sync-mempressure-normal
-igt@gem_userptr_blits@forked-sync-multifd-interruptible
-igt@gem_userptr_blits@forked-sync-multifd-mempressure-interruptible
-igt@gem_userptr_blits@forked-sync-multifd-mempressure-normal
-igt@gem_userptr_blits@forked-sync-multifd-normal
-igt@gem_userptr_blits@forked-sync-normal
-igt@gem_userptr_blits@forked-sync-swapping-interruptible
-igt@gem_userptr_blits@forked-sync-swapping-mempressure-interruptible
-igt@gem_userptr_blits@forked-sync-swapping-mempressure-normal
-igt@gem_userptr_blits@forked-sync-swapping-multifd-interruptible
-igt@gem_userptr_blits@forked-sync-swapping-multifd-mempressure-interruptible
-igt@gem_userptr_blits@forked-sync-swapping-multifd-mempressure-normal
-igt@gem_userptr_blits@forked-sync-swapping-multifd-normal
-igt@gem_userptr_blits@forked-sync-swapping-normal
-igt@gem_userptr_blits@forked-unsync-interruptible
-igt@gem_userptr_blits@forked-unsync-mempressure-interruptible
-igt@gem_userptr_blits@forked-unsync-mempressure-normal
-igt@gem_userptr_blits@forked-unsync-multifd-interruptible
-igt@gem_userptr_blits@forked-unsync-multifd-mempressure-interruptible
-igt@gem_userptr_blits@forked-unsync-multifd-mempressure-normal
-igt@gem_userptr_blits@forked-unsync-multifd-normal
-igt@gem_userptr_blits@forked-unsync-normal
-igt@gem_userptr_blits@forked-unsync-swapping-interruptible
-igt@gem_userptr_blits@forked-unsync-swapping-mempressure-interruptible
-igt@gem_userptr_blits@forked-unsync-swapping-mempressure-normal
-igt@gem_userptr_blits@forked-unsync-swapping-multifd-interruptible
-igt@gem_userptr_blits@forked-unsync-swapping-multifd-mempressure-interruptible
-igt@gem_userptr_blits@forked-unsync-swapping-multifd-mempressure-normal
-igt@gem_userptr_blits@forked-unsync-swapping-multifd-normal
-igt@gem_userptr_blits@forked-unsync-swapping-normal
-igt@gem_userptr_blits@huge-split
-igt@gem_userptr_blits@input-checking
-igt@gem_userptr_blits@invalid-mmap-offset-unsync
-igt@gem_userptr_blits@invalid-null-pointer
-igt@gem_userptr_blits@major-normal-sync
-igt@gem_userptr_blits@major-sync-interruptible
-igt@gem_userptr_blits@major-unsync-interruptible
-igt@gem_userptr_blits@major-unsync-normal
-igt@gem_userptr_blits@map-fixed-invalidate
-igt@gem_userptr_blits@map-fixed-invalidate-busy
-igt@gem_userptr_blits@map-fixed-invalidate-overlap
-igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy
-igt@gem_userptr_blits@minor-normal-sync
-igt@gem_userptr_blits@minor-sync-interruptible
-igt@gem_userptr_blits@minor-unsync-interruptible
-igt@gem_userptr_blits@minor-unsync-normal
-igt@gem_userptr_blits@mlocked-normal-sync
-igt@gem_userptr_blits@mlocked-sync-interruptible
-igt@gem_userptr_blits@mlocked-unsync-interruptible
-igt@gem_userptr_blits@mlocked-unsync-normal
-igt@gem_userptr_blits@mmap-offset-banned
-igt@gem_userptr_blits@nohangcheck
-igt@gem_userptr_blits@probe
-igt@gem_userptr_blits@process-exit
-igt@gem_userptr_blits@process-exit-busy
-igt@gem_userptr_blits@readonly-pwrite-unsync
-igt@gem_userptr_blits@readonly-unsync
-igt@gem_userptr_blits@relocations
-igt@gem_userptr_blits@sd-probe
-igt@gem_userptr_blits@set-cache-level
-igt@gem_userptr_blits@stress-mm
-igt@gem_userptr_blits@stress-mm-invalidate-close
-igt@gem_userptr_blits@stress-mm-invalidate-close-overlap
-igt@gem_userptr_blits@stress-purge
-igt@gem_userptr_blits@swapping-normal-sync
-igt@gem_userptr_blits@swapping-sync-interruptible
-igt@gem_userptr_blits@swapping-unsync-interruptible
-igt@gem_userptr_blits@swapping-unsync-normal
-igt@gem_userptr_blits@sync-overlap
-igt@gem_userptr_blits@sync-unmap
-igt@gem_userptr_blits@sync-unmap-after-close
-igt@gem_userptr_blits@sync-unmap-cycles
-igt@gem_userptr_blits@unsync-overlap
-igt@gem_userptr_blits@unsync-unmap
-igt@gem_userptr_blits@unsync-unmap-after-close
-igt@gem_userptr_blits@unsync-unmap-cycles
-igt@gem_userptr_blits@usage-restrictions
-igt@gem_userptr_blits@userfault
-igt@gem_userptr_blits@vma-merge
-igt@vgem_basic@bad-fence
-igt@vgem_basic@bad-flag
-igt@vgem_basic@bad-handle
-igt@vgem_basic@bad-pad
-igt@vgem_basic@busy-fence

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/index.html

[-- Attachment #2: Type: text/html, Size: 20199 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [igt-dev] [PATCH i-g-t] tests/i915: skip gem_set_caching call for mtl
  2023-03-09 14:19 [igt-dev] [PATCH i-g-t] tests/i915: skip gem_set_caching call for mtl Vikas Srivastava
  2023-03-09 15:20 ` [igt-dev] ✗ GitLab.Pipeline: warning for tests/i915: skip gem_set_caching call for mtl (rev2) Patchwork
  2023-03-09 15:26 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
@ 2023-03-09 16:41 ` Kamil Konieczny
  2023-03-11  6:59 ` [igt-dev] ✗ Fi.CI.IGT: failure for tests/i915: skip gem_set_caching call for mtl (rev2) Patchwork
                   ` (3 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: Kamil Konieczny @ 2023-03-09 16:41 UTC (permalink / raw)
  To: igt-dev

Hi Vikas,

On 2023-03-09 at 19:49:40 +0530, Vikas Srivastava wrote:
> Call to gem_set_caching skips the test since i915_gem_set_caching_ioctl is
> deprecated for MTL. To avoid this added the return value check for
> 0 or EOPNOTSUPP in __gem_set_caching.
> 
> FIXME: This is a temp solution to fix the IGT test issues where
> set caching call is used , there is alternate API available
> but support not yet available to use that.Once set_pat_index
> support available need to bring that change replacing this one.
> 
> Signed-off-by: Vikas Srivastava <vikas.srivastava@intel.com>
> ---
>  tests/i915/gem_caching.c            |  8 +++++---
>  tests/i915/gem_exec_flush.c         | 10 ++++++----
>  tests/i915/gem_exec_latency.c       |  4 +++-
>  tests/i915/gem_exec_suspend.c       |  7 +++++--
>  tests/i915/gem_render_tiled_blits.c |  5 +++--
>  tests/i915/gem_softpin.c            |  4 +++-
>  tests/i915/gem_userptr_blits.c      | 18 ++++++++++++++----

CI is reporting problem with this test, it often means
that running it with option --list failed.

>  tests/i915/gem_workarounds.c        |  8 +++++---
>  tests/i915/i915_pm_rpm.c            |  7 +++++--
>  tests/prime_vgem.c                  |  4 +++-
>  10 files changed, 52 insertions(+), 23 deletions(-)
> 
> diff --git a/tests/i915/gem_caching.c b/tests/i915/gem_caching.c
> index eb0170abc..3f6576c47 100644
> --- a/tests/i915/gem_caching.c
> +++ b/tests/i915/gem_caching.c
> @@ -136,7 +136,7 @@ igt_main
>  	struct intel_bb *ibb;
>  	data_t data = {0, };
>  	unsigned flags = TEST_BOTH;
> -	int i, j;
> +	int i, j, ret;
>  	uint8_t *cpu_ptr;
>  	uint8_t *gtt_ptr;
>  
> @@ -163,8 +163,10 @@ igt_main
>  		scratch_buf = intel_buf_create(data.bops, BO_SIZE/4, 1,
>  					       32, 0, I915_TILING_NONE, 0);
>  
> -		if (!gem_has_lmem(data.fd))
> -			gem_set_caching(data.fd, scratch_buf->handle, 1);
> +		if (!gem_has_lmem(data.fd)) {
> +			ret = __gem_set_caching(data.fd, scratch_buf->handle, 1);
> +			igt_require(ret == 0 || ret == -EOPNOTSUPP);
> +		}
>  
>  		staging_buf = intel_buf_create(data.bops, BO_SIZE/4, 1,
>  					       32, 0, I915_TILING_NONE, 0);
> diff --git a/tests/i915/gem_exec_flush.c b/tests/i915/gem_exec_flush.c
> index 40c58db2b..bd9fe4cda 100644
> --- a/tests/i915/gem_exec_flush.c
> +++ b/tests/i915/gem_exec_flush.c
> @@ -127,7 +127,7 @@ static void run(int fd, unsigned ring, int nchild, int timeout,
>  		bool snoop = false;
>  		uint32_t *ptr;
>  		uint32_t *map;
> -		int i;
> +		int i, ret;
>  		bool has_relocs = gem_has_relocations(fd);
>  
>  		memset(obj, 0, sizeof(obj));
> @@ -142,7 +142,8 @@ static void run(int fd, unsigned ring, int nchild, int timeout,
>  				       I915_GEM_DOMAIN_WC);
>  		} else {
>  			snoop = flags & COHERENT;
> -			gem_set_caching(fd, obj[0].handle, snoop);
> +			ret = __gem_set_caching(fd, obj[0].handle, snoop);
> +			igt_require(ret == 0 || ret == -EOPNOTSUPP);
>  			map = gem_mmap__cpu(fd, obj[0].handle, 0, 4096, PROT_WRITE);
>  			gem_set_domain(fd, obj[0].handle,
>  				       I915_GEM_DOMAIN_CPU,
> @@ -394,14 +395,15 @@ static void batch(int fd, unsigned ring, int nchild, int timeout,
>  		unsigned long cycles = 0;
>  		uint32_t *ptr;
>  		uint32_t *map;
> -		int i;
> +		int i, ret;
>  		bool has_relocs = gem_has_relocations(fd);
>  
>  		memset(obj, 0, sizeof(obj));
>  		obj[0].handle = gem_create(fd, 4096);
>  		obj[0].flags |= EXEC_OBJECT_WRITE;
>  
> -		gem_set_caching(fd, obj[0].handle, !!(flags & COHERENT));
> +		ret = __gem_set_caching(fd, obj[0].handle, !!(flags & COHERENT));
> +		igt_require(ret == 0 || ret == -EOPNOTSUPP);
>  		map = gem_mmap__cpu(fd, obj[0].handle, 0, 4096, PROT_WRITE);
>  
>  		gem_set_domain(fd, obj[0].handle,
> diff --git a/tests/i915/gem_exec_latency.c b/tests/i915/gem_exec_latency.c
> index fcdf7787b..f24e95f33 100644
> --- a/tests/i915/gem_exec_latency.c
> +++ b/tests/i915/gem_exec_latency.c
> @@ -756,6 +756,7 @@ static void context_switch(int i915, const intel_ctx_t *ctx,
>  	const uint32_t mmio_base = gem_engine_mmio_base(i915, e->name);
>  	struct igt_mean mean;
>  	const intel_ctx_t *tmp_ctx[2];
> +	int ret;
>  
>  	igt_require(mmio_base);
>  	igt_require(gem_class_has_mutable_submission(i915, e->class));
> @@ -770,7 +771,8 @@ static void context_switch(int i915, const intel_ctx_t *ctx,
>  
>  	memset(obj, 0, sizeof(obj));
>  	obj[0].handle = gem_create(i915, 4096);
> -	gem_set_caching(i915, obj[0].handle, 1);
> +	ret = __gem_set_caching(i915, obj[0].handle, 1);
> +	igt_require(ret == 0 || ret == -EOPNOTSUPP);
>  	results = gem_mmap__cpu(i915, obj[0].handle, 0, 4096, PROT_READ);
>  	gem_set_domain(i915, obj[0].handle, I915_GEM_DOMAIN_CPU, 0);
>  
> diff --git a/tests/i915/gem_exec_suspend.c b/tests/i915/gem_exec_suspend.c
> index 3b59966a1..2b5e47725 100644
> --- a/tests/i915/gem_exec_suspend.c
> +++ b/tests/i915/gem_exec_suspend.c
> @@ -86,6 +86,7 @@ static void run_test(int fd, const intel_ctx_t *ctx,
>  	unsigned nengine;
>  	igt_spin_t *spin = NULL;
>  	uint64_t ahnd = get_reloc_ahnd(fd, 0);
> +	int ret;
>  
>  	nengine = 0;
>  	if (engine == ALL_ENGINES) {
> @@ -116,8 +117,10 @@ static void run_test(int fd, const intel_ctx_t *ctx,
>  
>  	memset(obj, 0, sizeof(obj));
>  	obj[0].handle = gem_create_in_memory_regions(fd, 4096, region);
> -	if (!gem_has_lmem(fd))
> -		gem_set_caching(fd, obj[0].handle, !!(flags & CACHED));
> +	if (!gem_has_lmem(fd)) {
> +		ret = __gem_set_caching(fd, obj[0].handle, !!(flags & CACHED));
> +		igt_require(ret == 0 || ret == -EOPNOTSUPP);
> +	}
>  	obj[0].flags |= EXEC_OBJECT_WRITE;
>  	obj[1].handle = gem_create_in_memory_regions(fd, 4096, region);
>  	gem_write(fd, obj[1].handle, 0, &bbe, sizeof(bbe));
> diff --git a/tests/i915/gem_render_tiled_blits.c b/tests/i915/gem_render_tiled_blits.c
> index eae06a332..c3bf1beaf 100644
> --- a/tests/i915/gem_render_tiled_blits.c
> +++ b/tests/i915/gem_render_tiled_blits.c
> @@ -97,7 +97,7 @@ static void run_test (int fd, int count)
>  	struct intel_bb *ibb;
>  	uint32_t *start_val;
>  	struct intel_buf *bufs;
> -	int i, j;
> +	int i, j, ret;
>  	uint32_t devid;
>  
>  	devid = intel_get_drm_devid(fd);
> @@ -117,7 +117,8 @@ static void run_test (int fd, int count)
>  	intel_buf_init(bops, &linear, WIDTH, HEIGHT, 32, 0,
>  		       I915_TILING_NONE, I915_COMPRESSION_NONE);
>  	if (snoop) {
> -		gem_set_caching(fd, linear.handle, 1);
> +		ret = __gem_set_caching(fd, linear.handle, 1);
> +		igt_require(ret == 0 || ret == -EOPNOTSUPP);
>  		igt_info("Using a snoop linear buffer for comparisons\n");
>  	}
>  
> diff --git a/tests/i915/gem_softpin.c b/tests/i915/gem_softpin.c
> index c29bfd43d..ad6fb6b94 100644
> --- a/tests/i915/gem_softpin.c
> +++ b/tests/i915/gem_softpin.c
> @@ -518,6 +518,7 @@ static void test_evict_snoop(int fd, unsigned int flags)
>  	struct drm_i915_gem_execbuffer2 execbuf;
>  	struct drm_i915_gem_exec_object2 object[2];
>  	uint64_t hole;
> +	int ret;
>  
>  	igt_require(!gem_has_llc(fd));
>  	igt_require(!gem_uses_ppgtt(fd));
> @@ -537,7 +538,8 @@ static void test_evict_snoop(int fd, unsigned int flags)
>  	/* Create a snoop + uncached pair */
>  	object[0].handle = gem_create(fd, 4096);
>  	object[0].flags = EXEC_OBJECT_PINNED;
> -	gem_set_caching(fd, object[0].handle, 1);
> +	ret = __gem_set_caching(fd, object[0].handle, 1);
> +	igt_require(ret == 0 || ret == -EOPNOTSUPP);
>  	object[1].handle = gem_create(fd, 4096);
>  	object[1].flags = EXEC_OBJECT_PINNED;
>  	gem_write(fd, object[1].handle, 4096-sizeof(bbe), &bbe, sizeof(bbe));
> diff --git a/tests/i915/gem_userptr_blits.c b/tests/i915/gem_userptr_blits.c
> index 483570d0a..3dd4f68e2 100644
> --- a/tests/i915/gem_userptr_blits.c
> +++ b/tests/i915/gem_userptr_blits.c
> @@ -1140,15 +1140,17 @@ static void test_relocations(int fd)
>  	struct drm_i915_gem_execbuffer2 exec;
>  	unsigned size;
>  	void *ptr;
> -	int i;
> +	int i, ret;
>  
>  	size = PAGE_SIZE + ALIGN(sizeof(*reloc)*256, PAGE_SIZE);
>  
>  	memset(&obj, 0, sizeof(obj));
>  	igt_assert(posix_memalign(&ptr, PAGE_SIZE, size) == 0);
>  	gem_userptr(fd, ptr, size, 0, userptr_flags, &obj.handle);
> -	if (!gem_has_llc(fd))
> -		gem_set_caching(fd, obj.handle, 0);
> +	if (!gem_has_llc(fd)) {
> +		ret = __gem_set_caching(fd, obj.handle, 0);
> +		igt_require(ret == 0 || ret == -EOPNOTSUPP);
> +	}
>  	*(uint32_t *)ptr = MI_BATCH_BUFFER_END;
>  
>  	reloc = (typeof(reloc))((char *)ptr + PAGE_SIZE);
> @@ -2355,8 +2357,13 @@ const char *help_str = "  -c\tBuffer count\n";
>  igt_main_args("c:", NULL, help_str, opt_handler, NULL)
>  {
>  	int size = sizeof(linear);
> +	uint16_t devid;
> +	bool has_set_caching;
>  	igt_fd_t(fd);
>  
> +	devid = intel_get_drm_devid(fd);
> +	has_set_caching = IS_METEORLAKE(devid) ? false : true;
> +

Please put it inside fixture after fd open.

Btw why not make it a lib function like other gem_has_ functions ?
Then you can replace all those checks of NOTSUP with

	has_set_caching(intel_get_drm_devid(fd))

and acting accordingly.
Second thing, is it ok to just not setting caching, will tests
pass then on MTL ?

Regards,
Kamil

>  	igt_fixture {
>  		unsigned int mmo_max = 0;
>  
> @@ -2417,8 +2424,11 @@ igt_main_args("c:", NULL, help_str, opt_handler, NULL)
>  			test_sd_probe(fd);
>  		}
>  
> -		igt_subtest("set-cache-level")
> +		igt_subtest("set-cache-level") {
> +			igt_require_f((has_set_caching),
> +				      "set_caching not supported on this platform");
>  			test_set_caching(fd);
> +		}
>  
>  		igt_subtest("userfault")
>  			test_userfault(fd);
> diff --git a/tests/i915/gem_workarounds.c b/tests/i915/gem_workarounds.c
> index 5fb2d73fd..3a580f59f 100644
> --- a/tests/i915/gem_workarounds.c
> +++ b/tests/i915/gem_workarounds.c
> @@ -92,7 +92,7 @@ static int workaround_fail_count(int i915, const intel_ctx_t *ctx)
>  	uint32_t result_sz, batch_sz;
>  	uint32_t *base, *out;
>  	igt_spin_t *spin;
> -	int fw, fail = 0;
> +	int fw, fail = 0, ret;
>  	uint64_t ahnd = get_reloc_ahnd(i915, ctx->id);
>  
>  	reloc = calloc(num_wa_regs, sizeof(*reloc));
> @@ -106,8 +106,10 @@ static int workaround_fail_count(int i915, const intel_ctx_t *ctx)
>  
>  	memset(obj, 0, sizeof(obj));
>  	obj[0].handle = gem_create(i915, result_sz);
> -	if (!gem_has_lmem(i915))
> -		gem_set_caching(i915, obj[0].handle, I915_CACHING_CACHED);
> +	if (!gem_has_lmem(i915)) {
> +		ret = __gem_set_caching(i915, obj[0].handle, I915_CACHING_CACHED);
> +		igt_require(ret == 0 || ret == -EOPNOTSUPP);
> +	}
>  	obj[1].handle = gem_create(i915, batch_sz);
>  	obj[1].relocs_ptr = to_user_pointer(reloc);
>  	obj[1].relocation_count = !ahnd ? num_wa_regs : 0;
> diff --git a/tests/i915/i915_pm_rpm.c b/tests/i915/i915_pm_rpm.c
> index 74935430c..9c372e43d 100644
> --- a/tests/i915/i915_pm_rpm.c
> +++ b/tests/i915/i915_pm_rpm.c
> @@ -1977,6 +1977,7 @@ static void pm_test_caching(void)
>  {
>  	uint32_t handle;
>  	uint8_t *gem_buf;
> +	int ret;
>  
>  	uint32_t i;
>  	uint32_t default_cache_level;
> @@ -1995,7 +1996,8 @@ static void pm_test_caching(void)
>  
>  	for (i = 0; i < ARRAY_SIZE(cache_levels); i++) {
>  		igt_assert(wait_for_suspended());
> -		gem_set_caching(drm_fd, handle, default_cache_level);
> +		ret = __gem_set_caching(drm_fd, handle, default_cache_level);
> +		igt_require(ret == 0 || ret == -EOPNOTSUPP);
>  
>  		/* Ensure we bind the vma into the GGTT */
>  		memset(gem_buf, 16 << i, gtt_obj_max_size);
> @@ -2008,7 +2010,8 @@ static void pm_test_caching(void)
>  		 */
>  		igt_debug("Setting cache level %u\n", cache_levels[i]);
>  		igt_assert(wait_for_suspended());
> -		gem_set_caching(drm_fd, handle, cache_levels[i]);
> +		ret = __gem_set_caching(drm_fd, handle, cache_levels[i]);
> +		igt_require(ret == 0 || ret == -EOPNOTSUPP);
>  	}
>  
>  	igt_assert(munmap(gem_buf, gtt_obj_max_size) == 0);
> diff --git a/tests/prime_vgem.c b/tests/prime_vgem.c
> index 06be273c0..caef8040f 100644
> --- a/tests/prime_vgem.c
> +++ b/tests/prime_vgem.c
> @@ -316,6 +316,7 @@ static void test_userptr(int vgem, int i915)
>  	};
>  	struct vgem_bo scratch;
>  	uint32_t *ptr;
> +	int ret;
>  
>  	igt_require(has_userptr(i915));
>  
> @@ -330,7 +331,8 @@ static void test_userptr(int vgem, int i915)
>  	*ptr = MI_BATCH_BUFFER_END;
>  
>  	gem_userptr(i915, ptr, scratch.size, 0, 0, &obj.handle);
> -	gem_set_caching(i915, obj.handle, I915_CACHING_NONE); /* for !llc exec */
> +	ret = __gem_set_caching(i915, obj.handle, I915_CACHING_NONE); /* for !llc exec */
> +	igt_require(ret == 0 || ret == -EOPNOTSUPP);
>  
>  	gem_execbuf(i915, &execbuf);
>  	gem_close(i915, obj.handle);
> -- 
> 2.25.1
> 

^ permalink raw reply	[flat|nested] 8+ messages in thread

* [igt-dev] ✗ Fi.CI.IGT: failure for tests/i915: skip gem_set_caching call for mtl (rev2)
  2023-03-09 14:19 [igt-dev] [PATCH i-g-t] tests/i915: skip gem_set_caching call for mtl Vikas Srivastava
                   ` (2 preceding siblings ...)
  2023-03-09 16:41 ` [igt-dev] [PATCH i-g-t] tests/i915: skip gem_set_caching call for mtl Kamil Konieczny
@ 2023-03-11  6:59 ` Patchwork
  2023-03-20 12:50 ` [igt-dev] ✗ GitLab.Pipeline: warning for tests/i915: skip gem_set_caching call for mtl (rev3) Patchwork
                   ` (2 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2023-03-11  6:59 UTC (permalink / raw)
  To: Vikas Srivastava; +Cc: igt-dev

[-- Attachment #1: Type: text/plain, Size: 32685 bytes --]

== Series Details ==

Series: tests/i915: skip gem_set_caching call for mtl (rev2)
URL   : https://patchwork.freedesktop.org/series/114544/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_12831_full -> IGTPW_8583_full
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with IGTPW_8583_full absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in IGTPW_8583_full, please notify your bug team to allow them
  to document this new failure mode, which will reduce false positives in CI.

  External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/index.html

Participating hosts (10 -> 9)
------------------------------

  Missing    (1): shard-rkl0 

Possible new issues
-------------------

  Here are the unknown changes that may have been introduced in IGTPW_8583_full:

### IGT changes ###

#### Possible regressions ####

  * igt@gem_exec_reloc@basic-cpu-active:
    - shard-apl:          [PASS][1] -> [DMESG-WARN][2] +2 similar issues
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12831/shard-apl7/igt@gem_exec_reloc@basic-cpu-active.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/shard-apl1/igt@gem_exec_reloc@basic-cpu-active.html

  
#### Suppressed ####

  The following results come from untrusted machines, tests, or statuses.
  They do not affect the overall result.

  * {igt@xe/xe_exec_compute_mode@many-bindengine-userptr-invalidate}:
    - {shard-dg1}:        NOTRUN -> [SKIP][3] +187 similar issues
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/shard-dg1-12/igt@xe/xe_exec_compute_mode@many-bindengine-userptr-invalidate.html

  
Known issues
------------

  Here are the changes found in IGTPW_8583_full that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@gem_basic@multigpu-create-close:
    - shard-tglu-10:      NOTRUN -> [SKIP][4] ([i915#7697])
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/shard-tglu-10/igt@gem_basic@multigpu-create-close.html

  * igt@gem_ccs@ctrl-surf-copy-new-ctx:
    - shard-tglu-10:      NOTRUN -> [SKIP][5] ([i915#5325])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/shard-tglu-10/igt@gem_ccs@ctrl-surf-copy-new-ctx.html

  * igt@gem_create@create-ext-cpu-access-sanity-check:
    - shard-tglu-10:      NOTRUN -> [SKIP][6] ([i915#6335])
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/shard-tglu-10/igt@gem_create@create-ext-cpu-access-sanity-check.html

  * igt@gem_exec_fair@basic-none-rrul@rcs0:
    - shard-glk:          [PASS][7] -> [FAIL][8] ([i915#2842]) +3 similar issues
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12831/shard-glk7/igt@gem_exec_fair@basic-none-rrul@rcs0.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/shard-glk6/igt@gem_exec_fair@basic-none-rrul@rcs0.html

  * igt@gem_exec_fair@basic-none-solo@rcs0:
    - shard-tglu-10:      NOTRUN -> [FAIL][9] ([i915#2842])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/shard-tglu-10/igt@gem_exec_fair@basic-none-solo@rcs0.html

  * igt@gem_exec_flush@basic-batch-kernel-default-cmd:
    - shard-tglu-10:      NOTRUN -> [SKIP][10] ([fdo#109313])
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/shard-tglu-10/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html

  * igt@gem_huc_copy@huc-copy:
    - shard-tglu-10:      NOTRUN -> [SKIP][11] ([i915#2190])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/shard-tglu-10/igt@gem_huc_copy@huc-copy.html

  * igt@gem_lmem_swapping@random-engines:
    - shard-tglu-10:      NOTRUN -> [SKIP][12] ([i915#4613])
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/shard-tglu-10/igt@gem_lmem_swapping@random-engines.html

  * igt@gem_pxp@create-protected-buffer:
    - shard-tglu-10:      NOTRUN -> [SKIP][13] ([i915#4270]) +1 similar issue
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/shard-tglu-10/igt@gem_pxp@create-protected-buffer.html

  * igt@gem_softpin@evict-snoop-interruptible:
    - shard-tglu-10:      NOTRUN -> [SKIP][14] ([fdo#109312])
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/shard-tglu-10/igt@gem_softpin@evict-snoop-interruptible.html

  * igt@gen7_exec_parse@oacontrol-tracking:
    - shard-tglu-10:      NOTRUN -> [SKIP][15] ([fdo#109289]) +4 similar issues
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/shard-tglu-10/igt@gen7_exec_parse@oacontrol-tracking.html

  * igt@gen9_exec_parse@allowed-single:
    - shard-glk:          [PASS][16] -> [ABORT][17] ([i915#5566])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12831/shard-glk2/igt@gen9_exec_parse@allowed-single.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/shard-glk6/igt@gen9_exec_parse@allowed-single.html

  * igt@gen9_exec_parse@bb-start-out:
    - shard-tglu-10:      NOTRUN -> [SKIP][18] ([i915#2527] / [i915#2856])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/shard-tglu-10/igt@gen9_exec_parse@bb-start-out.html

  * igt@i915_pm_backlight@basic-brightness:
    - shard-tglu-10:      NOTRUN -> [SKIP][19] ([i915#7561])
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/shard-tglu-10/igt@i915_pm_backlight@basic-brightness.html

  * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a:
    - shard-tglu-10:      NOTRUN -> [FAIL][20] ([i915#3825])
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/shard-tglu-10/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html

  * igt@i915_pm_rpm@modeset-non-lpsp-stress:
    - shard-tglu-10:      NOTRUN -> [SKIP][21] ([fdo#111644] / [i915#1397])
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/shard-tglu-10/igt@i915_pm_rpm@modeset-non-lpsp-stress.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
    - shard-tglu-10:      NOTRUN -> [SKIP][22] ([i915#5286]) +3 similar issues
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/shard-tglu-10/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html

  * igt@kms_big_fb@linear-16bpp-rotate-90:
    - shard-tglu-10:      NOTRUN -> [SKIP][23] ([fdo#111614]) +2 similar issues
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/shard-tglu-10/igt@kms_big_fb@linear-16bpp-rotate-90.html

  * igt@kms_big_fb@yf-tiled-32bpp-rotate-0:
    - shard-tglu-10:      NOTRUN -> [SKIP][24] ([fdo#111615]) +3 similar issues
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/shard-tglu-10/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html

  * igt@kms_busy@extended-modeset-hang-newfb-with-reset@pipe-a:
    - shard-apl:          [PASS][25] -> [DMESG-WARN][26] ([i915#180]) +15 similar issues
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12831/shard-apl3/igt@kms_busy@extended-modeset-hang-newfb-with-reset@pipe-a.html
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/shard-apl1/igt@kms_busy@extended-modeset-hang-newfb-with-reset@pipe-a.html

  * igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs:
    - shard-tglu-10:      NOTRUN -> [SKIP][27] ([i915#3689] / [i915#3886])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/shard-tglu-10/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-a-bad-pixel-format-yf_tiled_ccs:
    - shard-tglu-10:      NOTRUN -> [SKIP][28] ([fdo#111615] / [i915#3689]) +4 similar issues
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/shard-tglu-10/igt@kms_ccs@pipe-a-bad-pixel-format-yf_tiled_ccs.html

  * igt@kms_ccs@pipe-b-bad-rotation-90-4_tiled_dg2_mc_ccs:
    - shard-tglu-10:      NOTRUN -> [SKIP][29] ([i915#6095])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/shard-tglu-10/igt@kms_ccs@pipe-b-bad-rotation-90-4_tiled_dg2_mc_ccs.html

  * igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_dg2_mc_ccs:
    - shard-tglu-10:      NOTRUN -> [SKIP][30] ([i915#3689] / [i915#6095]) +2 similar issues
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/shard-tglu-10/igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_dg2_mc_ccs.html

  * igt@kms_ccs@pipe-d-random-ccs-data-4_tiled_dg2_mc_ccs:
    - shard-tglu-10:      NOTRUN -> [SKIP][31] ([i915#3689]) +8 similar issues
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/shard-tglu-10/igt@kms_ccs@pipe-d-random-ccs-data-4_tiled_dg2_mc_ccs.html

  * igt@kms_chamelium_color@gamma:
    - shard-tglu-10:      NOTRUN -> [SKIP][32] ([fdo#111827]) +2 similar issues
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/shard-tglu-10/igt@kms_chamelium_color@gamma.html

  * igt@kms_chamelium_edid@hdmi-mode-timings:
    - shard-tglu-10:      NOTRUN -> [SKIP][33] ([i915#7828]) +3 similar issues
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/shard-tglu-10/igt@kms_chamelium_edid@hdmi-mode-timings.html

  * igt@kms_color@ctm-0-25@pipe-b-hdmi-a-1:
    - shard-tglu-10:      NOTRUN -> [FAIL][34] ([i915#315] / [i915#6946]) +3 similar issues
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/shard-tglu-10/igt@kms_color@ctm-0-25@pipe-b-hdmi-a-1.html

  * igt@kms_content_protection@dp-mst-lic-type-1:
    - shard-tglu-10:      NOTRUN -> [SKIP][35] ([i915#3116] / [i915#3299])
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/shard-tglu-10/igt@kms_content_protection@dp-mst-lic-type-1.html

  * igt@kms_cursor_crc@cursor-offscreen-32x32:
    - shard-tglu-10:      NOTRUN -> [SKIP][36] ([i915#3555]) +1 similar issue
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/shard-tglu-10/igt@kms_cursor_crc@cursor-offscreen-32x32.html

  * igt@kms_cursor_crc@cursor-sliding-512x512:
    - shard-tglu-10:      NOTRUN -> [SKIP][37] ([i915#3359])
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/shard-tglu-10/igt@kms_cursor_crc@cursor-sliding-512x512.html

  * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size:
    - shard-tglu-10:      NOTRUN -> [SKIP][38] ([fdo#109274]) +2 similar issues
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/shard-tglu-10/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html

  * igt@kms_dp_tiled_display@basic-test-pattern:
    - shard-tglu-10:      NOTRUN -> [SKIP][39] ([i915#426])
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/shard-tglu-10/igt@kms_dp_tiled_display@basic-test-pattern.html

  * igt@kms_flip@2x-nonexisting-fb:
    - shard-tglu-10:      NOTRUN -> [SKIP][40] ([fdo#109274] / [i915#3637]) +5 similar issues
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/shard-tglu-10/igt@kms_flip@2x-nonexisting-fb.html

  * igt@kms_flip@flip-vs-suspend@b-dp1:
    - shard-apl:          [PASS][41] -> [ABORT][42] ([i915#180])
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12831/shard-apl4/igt@kms_flip@flip-vs-suspend@b-dp1.html
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/shard-apl3/igt@kms_flip@flip-vs-suspend@b-dp1.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode:
    - shard-tglu-10:      NOTRUN -> [SKIP][43] ([i915#2587] / [i915#2672]) +3 similar issues
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite:
    - shard-apl:          [PASS][44] -> [DMESG-WARN][45] ([i915#1982])
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12831/shard-apl7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite.html
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/shard-apl1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-pwrite:
    - shard-glk:          NOTRUN -> [SKIP][46] ([fdo#109271]) +4 similar issues
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/shard-glk8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-pwrite.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-wc:
    - shard-tglu-10:      NOTRUN -> [SKIP][47] ([fdo#110189]) +19 similar issues
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/shard-tglu-10/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt:
    - shard-tglu-10:      NOTRUN -> [SKIP][48] ([fdo#109280]) +24 similar issues
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/shard-tglu-10/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html

  * igt@kms_hdr@bpc-switch-suspend@pipe-a-dp-1:
    - shard-apl:          [PASS][49] -> [FAIL][50] ([i915#1188])
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12831/shard-apl6/igt@kms_hdr@bpc-switch-suspend@pipe-a-dp-1.html
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/shard-apl6/igt@kms_hdr@bpc-switch-suspend@pipe-a-dp-1.html

  * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-1:
    - shard-tglu-10:      NOTRUN -> [SKIP][51] ([i915#5176]) +3 similar issues
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/shard-tglu-10/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-1.html

  * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf:
    - shard-tglu-10:      NOTRUN -> [SKIP][52] ([i915#658]) +2 similar issues
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/shard-tglu-10/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf.html

  * igt@v3d/v3d_perfmon@destroy-invalid-perfmon:
    - shard-tglu-10:      NOTRUN -> [SKIP][53] ([fdo#109315] / [i915#2575]) +1 similar issue
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/shard-tglu-10/igt@v3d/v3d_perfmon@destroy-invalid-perfmon.html

  * igt@vc4/vc4_tiling@set-bad-flags:
    - shard-tglu-10:      NOTRUN -> [SKIP][54] ([i915#2575]) +4 similar issues
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/shard-tglu-10/igt@vc4/vc4_tiling@set-bad-flags.html

  
#### Possible fixes ####

  * igt@drm_read@short-buffer-block:
    - {shard-rkl}:        [SKIP][55] ([i915#4098]) -> [PASS][56]
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12831/shard-rkl-5/igt@drm_read@short-buffer-block.html
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/shard-rkl-6/igt@drm_read@short-buffer-block.html

  * igt@fbdev@pan:
    - {shard-rkl}:        [SKIP][57] ([i915#2582]) -> [PASS][58]
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12831/shard-rkl-4/igt@fbdev@pan.html
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/shard-rkl-5/igt@fbdev@pan.html

  * igt@gem_exec_reloc@basic-write-read:
    - {shard-rkl}:        [SKIP][59] ([i915#3281]) -> [PASS][60] +6 similar issues
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12831/shard-rkl-3/igt@gem_exec_reloc@basic-write-read.html
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/shard-rkl-5/igt@gem_exec_reloc@basic-write-read.html

  * igt@gem_mmap_gtt@coherency:
    - {shard-rkl}:        [SKIP][61] ([fdo#111656]) -> [PASS][62]
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12831/shard-rkl-2/igt@gem_mmap_gtt@coherency.html
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/shard-rkl-5/igt@gem_mmap_gtt@coherency.html

  * igt@gem_pwrite@basic-self:
    - {shard-rkl}:        [SKIP][63] ([i915#3282]) -> [PASS][64] +2 similar issues
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12831/shard-rkl-1/igt@gem_pwrite@basic-self.html
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/shard-rkl-5/igt@gem_pwrite@basic-self.html

  * igt@gen9_exec_parse@batch-invalid-length:
    - {shard-rkl}:        [SKIP][65] ([i915#2527]) -> [PASS][66] +3 similar issues
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12831/shard-rkl-3/igt@gen9_exec_parse@batch-invalid-length.html
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/shard-rkl-5/igt@gen9_exec_parse@batch-invalid-length.html

  * igt@i915_pm_rc6_residency@rc6-idle@vcs0:
    - {shard-rkl}:        [WARN][67] ([i915#2681]) -> [PASS][68]
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12831/shard-rkl-5/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/shard-rkl-2/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html

  * igt@i915_pm_rpm@modeset-lpsp-stress:
    - {shard-dg1}:        [SKIP][69] ([i915#1397]) -> [PASS][70]
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12831/shard-dg1-18/igt@i915_pm_rpm@modeset-lpsp-stress.html
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/shard-dg1-14/igt@i915_pm_rpm@modeset-lpsp-stress.html

  * igt@i915_suspend@debugfs-reader:
    - {shard-rkl}:        [FAIL][71] ([fdo#103375]) -> [PASS][72] +2 similar issues
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12831/shard-rkl-4/igt@i915_suspend@debugfs-reader.html
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/shard-rkl-1/igt@i915_suspend@debugfs-reader.html

  * igt@kms_cursor_legacy@flip-vs-cursor-legacy:
    - {shard-tglu}:       [SKIP][73] ([i915#1845]) -> [PASS][74]
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12831/shard-tglu-6/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/shard-tglu-1/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt:
    - {shard-tglu}:       [SKIP][75] ([i915#1849]) -> [PASS][76] +1 similar issue
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12831/shard-tglu-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt.html
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/shard-tglu-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-modesetfrombusy:
    - {shard-rkl}:        [SKIP][77] ([i915#1849] / [i915#4098]) -> [PASS][78] +14 similar issues
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12831/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-modesetfrombusy.html
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-modesetfrombusy.html

  * igt@kms_plane@plane-panning-top-left@pipe-a-planes:
    - {shard-rkl}:        [SKIP][79] ([i915#1849]) -> [PASS][80] +4 similar issues
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12831/shard-rkl-4/igt@kms_plane@plane-panning-top-left@pipe-a-planes.html
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/shard-rkl-6/igt@kms_plane@plane-panning-top-left@pipe-a-planes.html

  * igt@kms_psr@primary_blt:
    - {shard-rkl}:        [SKIP][81] ([i915#1072]) -> [PASS][82]
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12831/shard-rkl-4/igt@kms_psr@primary_blt.html
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/shard-rkl-6/igt@kms_psr@primary_blt.html

  * igt@kms_rotation_crc@exhaust-fences:
    - {shard-rkl}:        [SKIP][83] ([i915#1845] / [i915#4098]) -> [PASS][84] +25 similar issues
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12831/shard-rkl-5/igt@kms_rotation_crc@exhaust-fences.html
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/shard-rkl-6/igt@kms_rotation_crc@exhaust-fences.html

  * igt@kms_vblank@pipe-d-query-forked:
    - {shard-tglu}:       [SKIP][85] ([i915#1845] / [i915#7651]) -> [PASS][86] +12 similar issues
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12831/shard-tglu-6/igt@kms_vblank@pipe-d-query-forked.html
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/shard-tglu-3/igt@kms_vblank@pipe-d-query-forked.html

  * igt@perf_pmu@all-busy-idle-check-all:
    - {shard-dg1}:        [FAIL][87] ([i915#5234]) -> [PASS][88]
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12831/shard-dg1-13/igt@perf_pmu@all-busy-idle-check-all.html
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/shard-dg1-17/igt@perf_pmu@all-busy-idle-check-all.html

  * igt@prime_vgem@basic-fence-read:
    - {shard-rkl}:        [SKIP][89] ([fdo#109295] / [i915#3291] / [i915#3708]) -> [PASS][90]
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12831/shard-rkl-4/igt@prime_vgem@basic-fence-read.html
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/shard-rkl-5/igt@prime_vgem@basic-fence-read.html

  
  {name}: This element is suppressed. This means it is ignored when computing
          the status of the difference (SUCCESS, WARNING, or FAILURE).

  [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
  [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279
  [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
  [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
  [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
  [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291
  [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
  [fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302
  [fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303
  [fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307
  [fdo#109308]: https://bugs.freedesktop.org/show_bug.cgi?id=109308
  [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309
  [fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312
  [fdo#109313]: https://bugs.freedesktop.org/show_bug.cgi?id=109313
  [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314
  [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
  [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
  [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
  [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
  [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
  [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
  [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
  [fdo#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644
  [fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656
  [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
  [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
  [fdo#112054]: https://bugs.freedesktop.org/show_bug.cgi?id=112054
  [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
  [i915#1188]: https://gitlab.freedesktop.org/drm/intel/issues/1188
  [i915#1257]: https://gitlab.freedesktop.org/drm/intel/issues/1257
  [i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132
  [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
  [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
  [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
  [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
  [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
  [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849
  [i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937
  [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
  [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
  [i915#2232]: https://gitlab.freedesktop.org/drm/intel/issues/2232
  [i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434
  [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
  [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
  [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
  [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582
  [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
  [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
  [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681
  [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
  [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
  [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
  [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
  [i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920
  [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116
  [i915#315]: https://gitlab.freedesktop.org/drm/intel/issues/315
  [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
  [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
  [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
  [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
  [i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301
  [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
  [i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361
  [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
  [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469
  [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
  [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546
  [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
  [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
  [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
  [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689
  [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
  [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734
  [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742
  [i915#3825]: https://gitlab.freedesktop.org/drm/intel/issues/3825
  [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
  [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
  [i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936
  [i915#3952]: https://gitlab.freedesktop.org/drm/intel/issues/3952
  [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955
  [i915#3989]: https://gitlab.freedesktop.org/drm/intel/issues/3989
  [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070
  [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
  [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078
  [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
  [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098
  [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
  [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
  [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
  [i915#426]: https://gitlab.freedesktop.org/drm/intel/issues/426
  [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
  [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
  [i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387
  [i915#4391]: https://gitlab.freedesktop.org/drm/intel/issues/4391
  [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525
  [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
  [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565
  [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
  [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771
  [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
  [i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833
  [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
  [i915#4859]: https://gitlab.freedesktop.org/drm/intel/issues/4859
  [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
  [i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873
  [i915#4884]: https://gitlab.freedesktop.org/drm/intel/issues/4884
  [i915#4936]: https://gitlab.freedesktop.org/drm/intel/issues/4936
  [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983
  [i915#5122]: https://gitlab.freedesktop.org/drm/intel/issues/5122
  [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
  [i915#5234]: https://gitlab.freedesktop.org/drm/intel/issues/5234
  [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
  [i915#5251]: https://gitlab.freedesktop.org/drm/intel/issues/5251
  [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
  [i915#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288
  [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289
  [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325
  [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
  [i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563
  [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566
  [i915#5723]: https://gitlab.freedesktop.org/drm/intel/issues/5723
  [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
  [i915#6117]: https://gitlab.freedesktop.org/drm/intel/issues/6117
  [i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230
  [i915#6245]: https://gitlab.freedesktop.org/drm/intel/issues/6245
  [i915#6247]: https://gitlab.freedesktop.org/drm/intel/issues/6247
  [i915#6248]: https://gitlab.freedesktop.org/drm/intel/issues/6248
  [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301
  [i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334
  [i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335
  [i915#6344]: https://gitlab.freedesktop.org/drm/intel/issues/6344
  [i915#6433]: https://gitlab.freedesktop.org/drm/intel/issues/6433
  [i915#6497]: https://gitlab.freedesktop.org/drm/intel/issues/6497
  [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524
  [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
  [i915#6590]: https://gitlab.freedesktop.org/drm/intel/issues/6590
  [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768
  [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944
  [i915#6946]: https://gitlab.freedesktop.org/drm/intel/issues/6946
  [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953
  [i915#7037]: https://gitlab.freedesktop.org/drm/intel/issues/7037
  [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116
  [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
  [i915#7128]: https://gitlab.freedesktop.org/drm/intel/issues/7128
  [i915#7178]: https://gitlab.freedesktop.org/drm/intel/issues/7178
  [i915#7276]: https://gitlab.freedesktop.org/drm/intel/issues/7276
  [i915#7294]: https://gitlab.freedesktop.org/drm/intel/issues/7294
  [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561
  [i915#7651]: https://gitlab.freedesktop.org/drm/intel/issues/7651
  [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
  [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701
  [i915#7707]: https://gitlab.freedesktop.org/drm/intel/issues/7707
  [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
  [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742
  [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
  [i915#7949]: https://gitlab.freedesktop.org/drm/intel/issues/7949
  [i915#7957]: https://gitlab.freedesktop.org/drm/intel/issues/7957
  [i915#7981]: https://gitlab.freedesktop.org/drm/intel/issues/7981
  [i915#8151]: https://gitlab.freedesktop.org/drm/intel/issues/8151
  [i915#8152]: https://gitlab.freedesktop.org/drm/intel/issues/8152
  [i915#8154]: https://gitlab.freedesktop.org/drm/intel/issues/8154
  [i915#8155]: https://gitlab.freedesktop.org/drm/intel/issues/8155
  [i915#8211]: https://gitlab.freedesktop.org/drm/intel/issues/8211
  [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228
  [i915#8273]: https://gitlab.freedesktop.org/drm/intel/issues/8273
  [i915#8275]: https://gitlab.freedesktop.org/drm/intel/issues/8275


Build changes
-------------

  * CI: CI-20190529 -> None
  * IGT: IGT_7188 -> IGTPW_8583
  * Piglit: piglit_4509 -> None

  CI-20190529: 20190529
  CI_DRM_12831: 4910ebea52abc05f63bfc43bc91baebd8af93d45 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_8583: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/index.html
  IGT_7188: b35bfa32fe672d67ced8555557e3e707ace211ad @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8583/index.html

[-- Attachment #2: Type: text/html, Size: 28813 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

* [igt-dev] ✗ GitLab.Pipeline: warning for tests/i915: skip gem_set_caching call for mtl (rev3)
  2023-03-09 14:19 [igt-dev] [PATCH i-g-t] tests/i915: skip gem_set_caching call for mtl Vikas Srivastava
                   ` (3 preceding siblings ...)
  2023-03-11  6:59 ` [igt-dev] ✗ Fi.CI.IGT: failure for tests/i915: skip gem_set_caching call for mtl (rev2) Patchwork
@ 2023-03-20 12:50 ` Patchwork
  2023-03-20 13:08 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
  2023-03-20 15:42 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
  6 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2023-03-20 12:50 UTC (permalink / raw)
  To: Vikas Srivastava; +Cc: igt-dev

== Series Details ==

Series: tests/i915: skip gem_set_caching call for mtl (rev3)
URL   : https://patchwork.freedesktop.org/series/114544/
State : warning

== Summary ==

Pipeline status: FAILED.

see https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/833986 for the overview.

test:ninja-test has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/38390481):
  367/371 assembler test/rnde-intsrc              OK       0.01 s 
  368/371 assembler test/rndz                     OK       0.01 s 
  369/371 assembler test/lzd                      OK       0.01 s 
  370/371 assembler test/not                      OK       0.01 s 
  371/371 assembler test/immediate                OK       0.01 s 
  
  Ok:                  366
  Expected Fail:         4
  Fail:                  1
  Unexpected Pass:       0
  Skipped:               0
  Timeout:               0
  
  Full log written to /builds/gfx-ci/igt-ci-tags/build/meson-logs/testlog.txt
  section_end:1679316393:step_script
  section_start:1679316393:cleanup_file_variables
  Cleaning up project directory and file based variables
  section_end:1679316395:cleanup_file_variables
  ERROR: Job failed: exit code 1
  

test:ninja-test-clang has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/38390480):
  367/371 assembler test/rnde-intsrc              OK       0.01 s 
  368/371 assembler test/rndz                     OK       0.01 s 
  369/371 assembler test/lzd                      OK       0.01 s 
  370/371 assembler test/not                      OK       0.01 s 
  371/371 assembler test/immediate                OK       0.01 s 
  
  Ok:                  366
  Expected Fail:         4
  Fail:                  1
  Unexpected Pass:       0
  Skipped:               0
  Timeout:               0
  
  Full log written to /builds/gfx-ci/igt-ci-tags/build/meson-logs/testlog.txt
  section_end:1679316387:step_script
  section_start:1679316387:cleanup_file_variables
  Cleaning up project directory and file based variables
  section_end:1679316388:cleanup_file_variables
  ERROR: Job failed: exit code 1

== Logs ==

For more details see: https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/833986

^ permalink raw reply	[flat|nested] 8+ messages in thread

* [igt-dev] ✓ Fi.CI.BAT: success for tests/i915: skip gem_set_caching call for mtl (rev3)
  2023-03-09 14:19 [igt-dev] [PATCH i-g-t] tests/i915: skip gem_set_caching call for mtl Vikas Srivastava
                   ` (4 preceding siblings ...)
  2023-03-20 12:50 ` [igt-dev] ✗ GitLab.Pipeline: warning for tests/i915: skip gem_set_caching call for mtl (rev3) Patchwork
@ 2023-03-20 13:08 ` Patchwork
  2023-03-20 15:42 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
  6 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2023-03-20 13:08 UTC (permalink / raw)
  To: Vikas Srivastava; +Cc: igt-dev

[-- Attachment #1: Type: text/plain, Size: 17559 bytes --]

== Series Details ==

Series: tests/i915: skip gem_set_caching call for mtl (rev3)
URL   : https://patchwork.freedesktop.org/series/114544/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_12883 -> IGTPW_8642
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8642/index.html

Participating hosts (34 -> 36)
------------------------------

  Additional (2): fi-kbl-soraka bat-atsm-1 

Known issues
------------

  Here are the changes found in IGTPW_8642 that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@fbdev@eof:
    - bat-atsm-1:         NOTRUN -> [SKIP][1] ([i915#2582]) +4 similar issues
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8642/bat-atsm-1/igt@fbdev@eof.html

  * igt@gem_huc_copy@huc-copy:
    - fi-kbl-soraka:      NOTRUN -> [SKIP][2] ([fdo#109271] / [i915#2190])
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8642/fi-kbl-soraka/igt@gem_huc_copy@huc-copy.html

  * igt@gem_lmem_swapping@basic:
    - fi-kbl-soraka:      NOTRUN -> [SKIP][3] ([fdo#109271] / [i915#4613]) +3 similar issues
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8642/fi-kbl-soraka/igt@gem_lmem_swapping@basic.html

  * igt@gem_mmap@basic:
    - bat-atsm-1:         NOTRUN -> [SKIP][4] ([i915#4083])
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8642/bat-atsm-1/igt@gem_mmap@basic.html

  * igt@gem_tiled_fence_blits@basic:
    - bat-atsm-1:         NOTRUN -> [SKIP][5] ([i915#4077]) +2 similar issues
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8642/bat-atsm-1/igt@gem_tiled_fence_blits@basic.html

  * igt@gem_tiled_pread_basic:
    - bat-atsm-1:         NOTRUN -> [SKIP][6] ([i915#4079]) +1 similar issue
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8642/bat-atsm-1/igt@gem_tiled_pread_basic.html

  * igt@i915_pm_rps@basic-api:
    - bat-atsm-1:         NOTRUN -> [SKIP][7] ([i915#6621])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8642/bat-atsm-1/igt@i915_pm_rps@basic-api.html

  * igt@i915_selftest@live@gt_heartbeat:
    - fi-kbl-soraka:      NOTRUN -> [DMESG-FAIL][8] ([i915#5334] / [i915#7872])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8642/fi-kbl-soraka/igt@i915_selftest@live@gt_heartbeat.html

  * igt@i915_selftest@live@gt_pm:
    - fi-kbl-soraka:      NOTRUN -> [DMESG-FAIL][9] ([i915#1886])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8642/fi-kbl-soraka/igt@i915_selftest@live@gt_pm.html

  * igt@i915_suspend@basic-s3-without-i915:
    - bat-atsm-1:         NOTRUN -> [SKIP][10] ([i915#6645])
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8642/bat-atsm-1/igt@i915_suspend@basic-s3-without-i915.html

  * igt@kms_addfb_basic@size-max:
    - bat-atsm-1:         NOTRUN -> [SKIP][11] ([i915#6077]) +36 similar issues
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8642/bat-atsm-1/igt@kms_addfb_basic@size-max.html

  * igt@kms_chamelium_frames@hdmi-crc-fast:
    - fi-kbl-soraka:      NOTRUN -> [SKIP][12] ([fdo#109271]) +16 similar issues
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8642/fi-kbl-soraka/igt@kms_chamelium_frames@hdmi-crc-fast.html

  * igt@kms_chamelium_hpd@common-hpd-after-suspend:
    - bat-rpls-1:         NOTRUN -> [SKIP][13] ([i915#7828])
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8642/bat-rpls-1/igt@kms_chamelium_hpd@common-hpd-after-suspend.html

  * igt@kms_cursor_legacy@basic-flip-after-cursor-atomic:
    - bat-atsm-1:         NOTRUN -> [SKIP][14] ([i915#6078]) +19 similar issues
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8642/bat-atsm-1/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html

  * igt@kms_flip@basic-plain-flip:
    - bat-atsm-1:         NOTRUN -> [SKIP][15] ([i915#6166]) +3 similar issues
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8642/bat-atsm-1/igt@kms_flip@basic-plain-flip.html

  * igt@kms_force_connector_basic@prune-stale-modes:
    - bat-atsm-1:         NOTRUN -> [SKIP][16] ([i915#6093]) +3 similar issues
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8642/bat-atsm-1/igt@kms_force_connector_basic@prune-stale-modes.html

  * igt@kms_pipe_crc_basic@hang-read-crc:
    - bat-atsm-1:         NOTRUN -> [SKIP][17] ([i915#1836]) +6 similar issues
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8642/bat-atsm-1/igt@kms_pipe_crc_basic@hang-read-crc.html

  * igt@kms_pipe_crc_basic@read-crc-frame-sequence:
    - bat-adlp-9:         NOTRUN -> [SKIP][18] ([i915#3546])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8642/bat-adlp-9/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html

  * igt@kms_pipe_crc_basic@suspend-read-crc:
    - bat-rpls-1:         NOTRUN -> [SKIP][19] ([i915#1845])
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8642/bat-rpls-1/igt@kms_pipe_crc_basic@suspend-read-crc.html

  * igt@kms_prop_blob@basic:
    - bat-atsm-1:         NOTRUN -> [SKIP][20] ([i915#7357])
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8642/bat-atsm-1/igt@kms_prop_blob@basic.html

  * igt@kms_psr@sprite_plane_onoff:
    - bat-atsm-1:         NOTRUN -> [SKIP][21] ([i915#1072]) +3 similar issues
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8642/bat-atsm-1/igt@kms_psr@sprite_plane_onoff.html

  * igt@kms_setmode@basic-clone-single-crtc:
    - bat-atsm-1:         NOTRUN -> [SKIP][22] ([i915#6094])
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8642/bat-atsm-1/igt@kms_setmode@basic-clone-single-crtc.html

  * igt@prime_vgem@basic-fence-flip:
    - bat-atsm-1:         NOTRUN -> [SKIP][23] ([fdo#109295] / [i915#6078])
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8642/bat-atsm-1/igt@prime_vgem@basic-fence-flip.html

  * igt@prime_vgem@basic-fence-mmap:
    - bat-atsm-1:         NOTRUN -> [SKIP][24] ([fdo#109295] / [i915#4077]) +1 similar issue
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8642/bat-atsm-1/igt@prime_vgem@basic-fence-mmap.html

  * igt@prime_vgem@basic-write:
    - bat-atsm-1:         NOTRUN -> [SKIP][25] ([fdo#109295]) +3 similar issues
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8642/bat-atsm-1/igt@prime_vgem@basic-write.html

  
#### Possible fixes ####

  * igt@i915_selftest@live@reset:
    - bat-rpls-1:         [ABORT][26] ([i915#4983]) -> [PASS][27]
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12883/bat-rpls-1/igt@i915_selftest@live@reset.html
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8642/bat-rpls-1/igt@i915_selftest@live@reset.html

  
#### Warnings ####

  * igt@prime_vgem@basic-userptr:
    - bat-jsl-3:          [SKIP][28] ([fdo#109295] / [i915#3301]) -> [SKIP][29] ([fdo#109295])
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12883/bat-jsl-3/igt@prime_vgem@basic-userptr.html
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8642/bat-jsl-3/igt@prime_vgem@basic-userptr.html
    - bat-dg2-9:          [SKIP][30] ([i915#3708] / [i915#4873]) -> [SKIP][31] ([i915#3708])
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12883/bat-dg2-9/igt@prime_vgem@basic-userptr.html
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8642/bat-dg2-9/igt@prime_vgem@basic-userptr.html
    - bat-adln-1:         [SKIP][32] ([fdo#109295] / [i915#3301]) -> [SKIP][33] ([fdo#109295])
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12883/bat-adln-1/igt@prime_vgem@basic-userptr.html
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8642/bat-adln-1/igt@prime_vgem@basic-userptr.html
    - bat-dg2-8:          [SKIP][34] ([i915#3708] / [i915#4873]) -> [SKIP][35] ([i915#3708])
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12883/bat-dg2-8/igt@prime_vgem@basic-userptr.html
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8642/bat-dg2-8/igt@prime_vgem@basic-userptr.html
    - bat-jsl-1:          [SKIP][36] ([fdo#109295] / [i915#3301]) -> [SKIP][37] ([fdo#109295])
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12883/bat-jsl-1/igt@prime_vgem@basic-userptr.html
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8642/bat-jsl-1/igt@prime_vgem@basic-userptr.html
    - fi-tgl-1115g4:      [SKIP][38] ([fdo#109295] / [i915#3301]) -> [SKIP][39] ([fdo#109295])
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12883/fi-tgl-1115g4/igt@prime_vgem@basic-userptr.html
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8642/fi-tgl-1115g4/igt@prime_vgem@basic-userptr.html
    - bat-dg1-5:          [SKIP][40] ([i915#3708] / [i915#4873]) -> [SKIP][41] ([i915#3708])
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12883/bat-dg1-5/igt@prime_vgem@basic-userptr.html
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8642/bat-dg1-5/igt@prime_vgem@basic-userptr.html
    - bat-dg1-7:          [SKIP][42] ([i915#3708] / [i915#4873]) -> [SKIP][43] ([i915#3708])
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12883/bat-dg1-7/igt@prime_vgem@basic-userptr.html
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8642/bat-dg1-7/igt@prime_vgem@basic-userptr.html
    - bat-adlp-9:         [SKIP][44] ([fdo#109295] / [i915#3301] / [i915#3708]) -> [SKIP][45] ([fdo#109295] / [i915#3708])
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12883/bat-adlp-9/igt@prime_vgem@basic-userptr.html
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8642/bat-adlp-9/igt@prime_vgem@basic-userptr.html
    - bat-dg2-11:         [SKIP][46] ([i915#3708] / [i915#4873]) -> [SKIP][47] ([i915#3708])
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12883/bat-dg2-11/igt@prime_vgem@basic-userptr.html
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8642/bat-dg2-11/igt@prime_vgem@basic-userptr.html
    - bat-dg1-6:          [SKIP][48] ([i915#3708] / [i915#4873]) -> [SKIP][49] ([i915#3708])
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12883/bat-dg1-6/igt@prime_vgem@basic-userptr.html
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8642/bat-dg1-6/igt@prime_vgem@basic-userptr.html
    - fi-rkl-11600:       [SKIP][50] ([fdo#109295] / [i915#3301] / [i915#3708]) -> [SKIP][51] ([fdo#109295] / [i915#3708])
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12883/fi-rkl-11600/igt@prime_vgem@basic-userptr.html
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8642/fi-rkl-11600/igt@prime_vgem@basic-userptr.html
    - bat-adls-5:         [SKIP][52] ([fdo#109295] / [i915#3301]) -> [SKIP][53] ([fdo#109295])
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12883/bat-adls-5/igt@prime_vgem@basic-userptr.html
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8642/bat-adls-5/igt@prime_vgem@basic-userptr.html

  
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
  [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
  [i915#1836]: https://gitlab.freedesktop.org/drm/intel/issues/1836
  [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
  [i915#1886]: https://gitlab.freedesktop.org/drm/intel/issues/1886
  [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
  [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582
  [i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301
  [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546
  [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
  [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
  [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
  [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
  [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
  [i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873
  [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983
  [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334
  [i915#6077]: https://gitlab.freedesktop.org/drm/intel/issues/6077
  [i915#6078]: https://gitlab.freedesktop.org/drm/intel/issues/6078
  [i915#6093]: https://gitlab.freedesktop.org/drm/intel/issues/6093
  [i915#6094]: https://gitlab.freedesktop.org/drm/intel/issues/6094
  [i915#6166]: https://gitlab.freedesktop.org/drm/intel/issues/6166
  [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
  [i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645
  [i915#7357]: https://gitlab.freedesktop.org/drm/intel/issues/7357
  [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
  [i915#7872]: https://gitlab.freedesktop.org/drm/intel/issues/7872


Build changes
-------------

  * CI: CI-20190529 -> None
  * IGT: IGT_7207 -> IGTPW_8642

  CI-20190529: 20190529
  CI_DRM_12883: 5619fa2b4a9b93019f6ca27a2f391fc39e152993 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_8642: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8642/index.html
  IGT_7207: 51001c91c367464da9e700e617fb712b3b1cecfd @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git


Testlist changes
----------------

-igt@gem_userptr_blits@access-control
-igt@gem_userptr_blits@coherency-sync
-igt@gem_userptr_blits@coherency-unsync
-igt@gem_userptr_blits@create-destroy-sync
-igt@gem_userptr_blits@create-destroy-unsync
-igt@gem_userptr_blits@dmabuf-sync
-igt@gem_userptr_blits@dmabuf-unsync
-igt@gem_userptr_blits@forbidden-operations
-igt@gem_userptr_blits@forked-access
-igt@gem_userptr_blits@forked-sync-interruptible
-igt@gem_userptr_blits@forked-sync-mempressure-interruptible
-igt@gem_userptr_blits@forked-sync-mempressure-normal
-igt@gem_userptr_blits@forked-sync-multifd-interruptible
-igt@gem_userptr_blits@forked-sync-multifd-mempressure-interruptible
-igt@gem_userptr_blits@forked-sync-multifd-mempressure-normal
-igt@gem_userptr_blits@forked-sync-multifd-normal
-igt@gem_userptr_blits@forked-sync-normal
-igt@gem_userptr_blits@forked-sync-swapping-interruptible
-igt@gem_userptr_blits@forked-sync-swapping-mempressure-interruptible
-igt@gem_userptr_blits@forked-sync-swapping-mempressure-normal
-igt@gem_userptr_blits@forked-sync-swapping-multifd-interruptible
-igt@gem_userptr_blits@forked-sync-swapping-multifd-mempressure-interruptible
-igt@gem_userptr_blits@forked-sync-swapping-multifd-mempressure-normal
-igt@gem_userptr_blits@forked-sync-swapping-multifd-normal
-igt@gem_userptr_blits@forked-sync-swapping-normal
-igt@gem_userptr_blits@forked-unsync-interruptible
-igt@gem_userptr_blits@forked-unsync-mempressure-interruptible
-igt@gem_userptr_blits@forked-unsync-mempressure-normal
-igt@gem_userptr_blits@forked-unsync-multifd-interruptible
-igt@gem_userptr_blits@forked-unsync-multifd-mempressure-interruptible
-igt@gem_userptr_blits@forked-unsync-multifd-mempressure-normal
-igt@gem_userptr_blits@forked-unsync-multifd-normal
-igt@gem_userptr_blits@forked-unsync-normal
-igt@gem_userptr_blits@forked-unsync-swapping-interruptible
-igt@gem_userptr_blits@forked-unsync-swapping-mempressure-interruptible
-igt@gem_userptr_blits@forked-unsync-swapping-mempressure-normal
-igt@gem_userptr_blits@forked-unsync-swapping-multifd-interruptible
-igt@gem_userptr_blits@forked-unsync-swapping-multifd-mempressure-interruptible
-igt@gem_userptr_blits@forked-unsync-swapping-multifd-mempressure-normal
-igt@gem_userptr_blits@forked-unsync-swapping-multifd-normal
-igt@gem_userptr_blits@forked-unsync-swapping-normal
-igt@gem_userptr_blits@huge-split
-igt@gem_userptr_blits@input-checking
-igt@gem_userptr_blits@invalid-mmap-offset-unsync
-igt@gem_userptr_blits@invalid-null-pointer
-igt@gem_userptr_blits@major-normal-sync
-igt@gem_userptr_blits@major-sync-interruptible
-igt@gem_userptr_blits@major-unsync-interruptible
-igt@gem_userptr_blits@major-unsync-normal
-igt@gem_userptr_blits@map-fixed-invalidate
-igt@gem_userptr_blits@map-fixed-invalidate-busy
-igt@gem_userptr_blits@map-fixed-invalidate-overlap
-igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy
-igt@gem_userptr_blits@minor-normal-sync
-igt@gem_userptr_blits@minor-sync-interruptible
-igt@gem_userptr_blits@minor-unsync-interruptible
-igt@gem_userptr_blits@minor-unsync-normal
-igt@gem_userptr_blits@mlocked-normal-sync
-igt@gem_userptr_blits@mlocked-sync-interruptible
-igt@gem_userptr_blits@mlocked-unsync-interruptible
-igt@gem_userptr_blits@mlocked-unsync-normal
-igt@gem_userptr_blits@mmap-offset-banned
-igt@gem_userptr_blits@nohangcheck
-igt@gem_userptr_blits@probe
-igt@gem_userptr_blits@process-exit
-igt@gem_userptr_blits@process-exit-busy
-igt@gem_userptr_blits@readonly-pwrite-unsync
-igt@gem_userptr_blits@readonly-unsync
-igt@gem_userptr_blits@relocations
-igt@gem_userptr_blits@sd-probe
-igt@gem_userptr_blits@set-cache-level
-igt@gem_userptr_blits@stress-mm
-igt@gem_userptr_blits@stress-mm-invalidate-close
-igt@gem_userptr_blits@stress-mm-invalidate-close-overlap
-igt@gem_userptr_blits@stress-purge
-igt@gem_userptr_blits@swapping-normal-sync
-igt@gem_userptr_blits@swapping-sync-interruptible
-igt@gem_userptr_blits@swapping-unsync-interruptible
-igt@gem_userptr_blits@swapping-unsync-normal
-igt@gem_userptr_blits@sync-overlap
-igt@gem_userptr_blits@sync-unmap
-igt@gem_userptr_blits@sync-unmap-after-close
-igt@gem_userptr_blits@sync-unmap-cycles
-igt@gem_userptr_blits@unsync-overlap
-igt@gem_userptr_blits@unsync-unmap
-igt@gem_userptr_blits@unsync-unmap-after-close
-igt@gem_userptr_blits@unsync-unmap-cycles
-igt@gem_userptr_blits@usage-restrictions
-igt@gem_userptr_blits@userfault
-igt@gem_userptr_blits@vma-merge

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8642/index.html

[-- Attachment #2: Type: text/html, Size: 22508 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

* [igt-dev] ✓ Fi.CI.IGT: success for tests/i915: skip gem_set_caching call for mtl (rev3)
  2023-03-09 14:19 [igt-dev] [PATCH i-g-t] tests/i915: skip gem_set_caching call for mtl Vikas Srivastava
                   ` (5 preceding siblings ...)
  2023-03-20 13:08 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
@ 2023-03-20 15:42 ` Patchwork
  6 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2023-03-20 15:42 UTC (permalink / raw)
  To: Vikas Srivastava; +Cc: igt-dev

[-- Attachment #1: Type: text/plain, Size: 26371 bytes --]

== Series Details ==

Series: tests/i915: skip gem_set_caching call for mtl (rev3)
URL   : https://patchwork.freedesktop.org/series/114544/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_12883_full -> IGTPW_8642_full
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8642/index.html

Participating hosts (7 -> 7)
------------------------------

  No changes in participating hosts

Possible new issues
-------------------

  Here are the unknown changes that may have been introduced in IGTPW_8642_full:

### IGT changes ###

#### Suppressed ####

  The following results come from untrusted machines, tests, or statuses.
  They do not affect the overall result.

  * igt@kms_ccs@pipe-d-bad-rotation-90-y_tiled_gen12_mc_ccs:
    - {shard-rkl}:        [SKIP][1] ([i915#1845] / [i915#4098]) -> [SKIP][2] +8 similar issues
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12883/shard-rkl-3/igt@kms_ccs@pipe-d-bad-rotation-90-y_tiled_gen12_mc_ccs.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8642/shard-rkl-6/igt@kms_ccs@pipe-d-bad-rotation-90-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-d-random-ccs-data-4_tiled_dg2_rc_ccs:
    - {shard-rkl}:        [SKIP][3] ([i915#4098]) -> [SKIP][4] +3 similar issues
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12883/shard-rkl-1/igt@kms_ccs@pipe-d-random-ccs-data-4_tiled_dg2_rc_ccs.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8642/shard-rkl-6/igt@kms_ccs@pipe-d-random-ccs-data-4_tiled_dg2_rc_ccs.html

  * igt@kms_plane@plane-position-hole-dpms:
    - {shard-rkl}:        NOTRUN -> [SKIP][5] +2 similar issues
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8642/shard-rkl-2/igt@kms_plane@plane-position-hole-dpms.html
    - {shard-tglu}:       NOTRUN -> [SKIP][6] +1 similar issue
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8642/shard-tglu-9/igt@kms_plane@plane-position-hole-dpms.html

  
Known issues
------------

  Here are the changes found in IGTPW_8642_full that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@gem_exec_fair@basic-pace@vcs0:
    - shard-glk:          [PASS][7] -> [FAIL][8] ([i915#2842]) +2 similar issues
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12883/shard-glk5/igt@gem_exec_fair@basic-pace@vcs0.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8642/shard-glk3/igt@gem_exec_fair@basic-pace@vcs0.html

  * igt@gen9_exec_parse@allowed-all:
    - shard-apl:          [PASS][9] -> [ABORT][10] ([i915#5566]) +1 similar issue
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12883/shard-apl6/igt@gen9_exec_parse@allowed-all.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8642/shard-apl6/igt@gen9_exec_parse@allowed-all.html

  * igt@kms_ccs@pipe-a-crc-primary-basic-y_tiled_gen12_mc_ccs:
    - shard-apl:          NOTRUN -> [SKIP][11] ([fdo#109271] / [i915#3886]) +2 similar issues
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8642/shard-apl4/igt@kms_ccs@pipe-a-crc-primary-basic-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc:
    - shard-glk:          NOTRUN -> [SKIP][12] ([fdo#109271] / [i915#3886]) +1 similar issue
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8642/shard-glk7/igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc.html

  * igt@kms_ccs@pipe-d-bad-pixel-format-y_tiled_gen12_mc_ccs:
    - shard-apl:          NOTRUN -> [SKIP][13] ([fdo#109271]) +81 similar issues
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8642/shard-apl6/igt@kms_ccs@pipe-d-bad-pixel-format-y_tiled_gen12_mc_ccs.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
    - shard-apl:          [PASS][14] -> [FAIL][15] ([i915#2346])
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12883/shard-apl1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8642/shard-apl7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html

  * igt@kms_flip@flip-vs-expired-vblank@c-dp1:
    - shard-apl:          [PASS][16] -> [FAIL][17] ([i915#79])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12883/shard-apl2/igt@kms_flip@flip-vs-expired-vblank@c-dp1.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8642/shard-apl4/igt@kms_flip@flip-vs-expired-vblank@c-dp1.html

  * igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-dp-1:
    - shard-apl:          NOTRUN -> [FAIL][18] ([i915#4573]) +1 similar issue
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8642/shard-apl4/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-dp-1.html

  * igt@kms_psr2_sf@cursor-plane-move-continuous-sf:
    - shard-apl:          NOTRUN -> [SKIP][19] ([fdo#109271] / [i915#658]) +1 similar issue
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8642/shard-apl3/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html

  * igt@v3d/v3d_perfmon@destroy-invalid-perfmon:
    - shard-glk:          NOTRUN -> [SKIP][20] ([fdo#109271]) +28 similar issues
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8642/shard-glk5/igt@v3d/v3d_perfmon@destroy-invalid-perfmon.html

  
#### Possible fixes ####

  * igt@drm_fdinfo@virtual-idle:
    - {shard-rkl}:        [FAIL][21] ([i915#7742]) -> [PASS][22]
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12883/shard-rkl-1/igt@drm_fdinfo@virtual-idle.html
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8642/shard-rkl-1/igt@drm_fdinfo@virtual-idle.html

  * igt@fbdev@eof:
    - {shard-rkl}:        [SKIP][23] ([i915#2582]) -> [PASS][24] +4 similar issues
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12883/shard-rkl-5/igt@fbdev@eof.html
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8642/shard-rkl-4/igt@fbdev@eof.html

  * {igt@gem_barrier_race@remote-request@rcs0}:
    - {shard-rkl}:        [ABORT][25] ([i915#8211]) -> [PASS][26]
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12883/shard-rkl-1/igt@gem_barrier_race@remote-request@rcs0.html
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8642/shard-rkl-2/igt@gem_barrier_race@remote-request@rcs0.html
    - shard-glk:          [ABORT][27] ([i915#8211]) -> [PASS][28]
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12883/shard-glk9/igt@gem_barrier_race@remote-request@rcs0.html
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8642/shard-glk4/igt@gem_barrier_race@remote-request@rcs0.html

  * igt@gem_ctx_isolation@preservation-s3@bcs0:
    - {shard-rkl}:        [FAIL][29] ([fdo#103375]) -> [PASS][30] +3 similar issues
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12883/shard-rkl-4/igt@gem_ctx_isolation@preservation-s3@bcs0.html
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8642/shard-rkl-1/igt@gem_ctx_isolation@preservation-s3@bcs0.html

  * igt@gem_exec_reloc@basic-cpu-gtt-noreloc:
    - {shard-rkl}:        [SKIP][31] ([i915#3281]) -> [PASS][32] +4 similar issues
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12883/shard-rkl-1/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8642/shard-rkl-5/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html

  * igt@gem_exec_schedule@pi-distinct-iova@vecs0:
    - shard-glk:          [DMESG-WARN][33] ([i915#118]) -> [PASS][34]
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12883/shard-glk9/igt@gem_exec_schedule@pi-distinct-iova@vecs0.html
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8642/shard-glk7/igt@gem_exec_schedule@pi-distinct-iova@vecs0.html

  * igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
    - {shard-rkl}:        [SKIP][35] ([i915#3282]) -> [PASS][36] +2 similar issues
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12883/shard-rkl-2/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8642/shard-rkl-5/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html

  * igt@gen9_exec_parse@batch-invalid-length:
    - {shard-rkl}:        [SKIP][37] ([i915#2527]) -> [PASS][38] +1 similar issue
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12883/shard-rkl-2/igt@gen9_exec_parse@batch-invalid-length.html
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8642/shard-rkl-5/igt@gen9_exec_parse@batch-invalid-length.html

  * igt@i915_pm_dc@dc5-dpms:
    - {shard-rkl}:        [FAIL][39] ([i915#7330]) -> [PASS][40]
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12883/shard-rkl-5/igt@i915_pm_dc@dc5-dpms.html
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8642/shard-rkl-1/igt@i915_pm_dc@dc5-dpms.html

  * igt@i915_pm_dc@dc9-dpms:
    - {shard-rkl}:        [SKIP][41] ([i915#3361]) -> [PASS][42]
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12883/shard-rkl-5/igt@i915_pm_dc@dc9-dpms.html
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8642/shard-rkl-4/igt@i915_pm_dc@dc9-dpms.html

  * igt@i915_pm_rpm@dpms-lpsp:
    - {shard-rkl}:        [SKIP][43] ([i915#1397]) -> [PASS][44]
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12883/shard-rkl-5/igt@i915_pm_rpm@dpms-lpsp.html
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8642/shard-rkl-6/igt@i915_pm_rpm@dpms-lpsp.html

  * igt@i915_pm_rpm@pm-tiling:
    - {shard-rkl}:        [SKIP][45] ([fdo#109308]) -> [PASS][46]
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12883/shard-rkl-2/igt@i915_pm_rpm@pm-tiling.html
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8642/shard-rkl-6/igt@i915_pm_rpm@pm-tiling.html

  * igt@i915_pm_sseu@full-enable:
    - {shard-rkl}:        [SKIP][47] ([i915#4387]) -> [PASS][48]
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12883/shard-rkl-3/igt@i915_pm_sseu@full-enable.html
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8642/shard-rkl-5/igt@i915_pm_sseu@full-enable.html

  * igt@i915_suspend@fence-restore-untiled:
    - {shard-tglu}:       [ABORT][49] ([i915#5122]) -> [PASS][50]
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12883/shard-tglu-9/igt@i915_suspend@fence-restore-untiled.html
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8642/shard-tglu-4/igt@i915_suspend@fence-restore-untiled.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0:
    - {shard-tglu}:       [SKIP][51] ([i915#1845] / [i915#7651]) -> [PASS][52] +23 similar issues
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12883/shard-tglu-9/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0.html
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8642/shard-tglu-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
    - shard-glk:          [FAIL][53] ([i915#2346]) -> [PASS][54]
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12883/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8642/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html

  * igt@kms_cursor_legacy@short-flip-before-cursor-atomic-transitions:
    - {shard-tglu}:       [SKIP][55] ([i915#1845]) -> [PASS][56] +22 similar issues
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12883/shard-tglu-10/igt@kms_cursor_legacy@short-flip-before-cursor-atomic-transitions.html
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8642/shard-tglu-5/igt@kms_cursor_legacy@short-flip-before-cursor-atomic-transitions.html

  * igt@kms_fbcon_fbt@psr-suspend:
    - {shard-rkl}:        [SKIP][57] ([fdo#110189] / [i915#3955]) -> [PASS][58]
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12883/shard-rkl-2/igt@kms_fbcon_fbt@psr-suspend.html
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8642/shard-rkl-6/igt@kms_fbcon_fbt@psr-suspend.html

  * igt@kms_flip@flip-vs-suspend@c-dp1:
    - shard-apl:          [ABORT][59] ([i915#180]) -> [PASS][60] +1 similar issue
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12883/shard-apl6/igt@kms_flip@flip-vs-suspend@c-dp1.html
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8642/shard-apl7/igt@kms_flip@flip-vs-suspend@c-dp1.html

  * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite:
    - {shard-rkl}:        [SKIP][61] ([i915#1849] / [i915#4098]) -> [PASS][62] +18 similar issues
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12883/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8642/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html

  * igt@kms_frontbuffer_tracking@fbc-tiling-linear:
    - {shard-tglu}:       [SKIP][63] ([i915#1849]) -> [PASS][64] +4 similar issues
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12883/shard-tglu-9/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8642/shard-tglu-2/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html

  * igt@kms_properties@plane-properties-legacy:
    - {shard-rkl}:        [SKIP][65] ([i915#1849]) -> [PASS][66] +1 similar issue
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12883/shard-rkl-2/igt@kms_properties@plane-properties-legacy.html
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8642/shard-rkl-6/igt@kms_properties@plane-properties-legacy.html

  * igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-b:
    - {shard-rkl}:        [SKIP][67] ([i915#4098]) -> [PASS][68]
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12883/shard-rkl-4/igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-b.html
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8642/shard-rkl-6/igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-b.html

  * igt@kms_vblank@pipe-b-ts-continuation-idle:
    - {shard-rkl}:        [SKIP][69] ([i915#1845] / [i915#4098]) -> [PASS][70] +23 similar issues
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12883/shard-rkl-2/igt@kms_vblank@pipe-b-ts-continuation-idle.html
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8642/shard-rkl-6/igt@kms_vblank@pipe-b-ts-continuation-idle.html

  * igt@perf@mi-rpc:
    - {shard-rkl}:        [SKIP][71] ([i915#2434]) -> [PASS][72]
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12883/shard-rkl-4/igt@perf@mi-rpc.html
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8642/shard-rkl-5/igt@perf@mi-rpc.html

  
  {name}: This element is suppressed. This means it is ignored when computing
          the status of the difference (SUCCESS, WARNING, or FAILURE).

  [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
  [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
  [fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283
  [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
  [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
  [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300
  [fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302
  [fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303
  [fdo#109308]: https://bugs.freedesktop.org/show_bug.cgi?id=109308
  [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309
  [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
  [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
  [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
  [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
  [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
  [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
  [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
  [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
  [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
  [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
  [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283
  [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
  [i915#118]: https://gitlab.freedesktop.org/drm/intel/issues/118
  [i915#1257]: https://gitlab.freedesktop.org/drm/intel/issues/1257
  [i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132
  [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
  [i915#1722]: https://gitlab.freedesktop.org/drm/intel/issues/1722
  [i915#1755]: https://gitlab.freedesktop.org/drm/intel/issues/1755
  [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
  [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
  [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
  [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
  [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849
  [i915#1902]: https://gitlab.freedesktop.org/drm/intel/issues/1902
  [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
  [i915#2433]: https://gitlab.freedesktop.org/drm/intel/issues/2433
  [i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434
  [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
  [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
  [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
  [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582
  [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
  [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658
  [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
  [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681
  [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
  [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
  [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
  [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
  [i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920
  [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116
  [i915#315]: https://gitlab.freedesktop.org/drm/intel/issues/315
  [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
  [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
  [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
  [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
  [i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301
  [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
  [i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361
  [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
  [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469
  [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
  [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546
  [i915#3547]: https://gitlab.freedesktop.org/drm/intel/issues/3547
  [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
  [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591
  [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
  [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
  [i915#3639]: https://gitlab.freedesktop.org/drm/intel/issues/3639
  [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689
  [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
  [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734
  [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742
  [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
  [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
  [i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936
  [i915#3952]: https://gitlab.freedesktop.org/drm/intel/issues/3952
  [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955
  [i915#3989]: https://gitlab.freedesktop.org/drm/intel/issues/3989
  [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070
  [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
  [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078
  [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
  [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
  [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098
  [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
  [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
  [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
  [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
  [i915#4275]: https://gitlab.freedesktop.org/drm/intel/issues/4275
  [i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281
  [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
  [i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387
  [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525
  [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
  [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454
  [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565
  [i915#4573]: https://gitlab.freedesktop.org/drm/intel/issues/4573
  [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
  [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771
  [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
  [i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833
  [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
  [i915#4854]: https://gitlab.freedesktop.org/drm/intel/issues/4854
  [i915#4859]: https://gitlab.freedesktop.org/drm/intel/issues/4859
  [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
  [i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873
  [i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881
  [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983
  [i915#5122]: https://gitlab.freedesktop.org/drm/intel/issues/5122
  [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
  [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
  [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
  [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289
  [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325
  [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
  [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439
  [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461
  [i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563
  [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566
  [i915#5723]: https://gitlab.freedesktop.org/drm/intel/issues/5723
  [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
  [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
  [i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230
  [i915#6247]: https://gitlab.freedesktop.org/drm/intel/issues/6247
  [i915#6248]: https://gitlab.freedesktop.org/drm/intel/issues/6248
  [i915#6252]: https://gitlab.freedesktop.org/drm/intel/issues/6252
  [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301
  [i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334
  [i915#6497]: https://gitlab.freedesktop.org/drm/intel/issues/6497
  [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524
  [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
  [i915#6590]: https://gitlab.freedesktop.org/drm/intel/issues/6590
  [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768
  [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944
  [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953
  [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116
  [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
  [i915#7128]: https://gitlab.freedesktop.org/drm/intel/issues/7128
  [i915#7294]: https://gitlab.freedesktop.org/drm/intel/issues/7294
  [i915#7330]: https://gitlab.freedesktop.org/drm/intel/issues/7330
  [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561
  [i915#7651]: https://gitlab.freedesktop.org/drm/intel/issues/7651
  [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
  [i915#7707]: https://gitlab.freedesktop.org/drm/intel/issues/7707
  [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
  [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742
  [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
  [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79
  [i915#7949]: https://gitlab.freedesktop.org/drm/intel/issues/7949
  [i915#7957]: https://gitlab.freedesktop.org/drm/intel/issues/7957
  [i915#7981]: https://gitlab.freedesktop.org/drm/intel/issues/7981
  [i915#8152]: https://gitlab.freedesktop.org/drm/intel/issues/8152
  [i915#8154]: https://gitlab.freedesktop.org/drm/intel/issues/8154
  [i915#8211]: https://gitlab.freedesktop.org/drm/intel/issues/8211
  [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228
  [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247
  [i915#8282]: https://gitlab.freedesktop.org/drm/intel/issues/8282
  [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292


Build changes
-------------

  * CI: CI-20190529 -> None
  * IGT: IGT_7207 -> IGTPW_8642
  * Piglit: piglit_4509 -> None

  CI-20190529: 20190529
  CI_DRM_12883: 5619fa2b4a9b93019f6ca27a2f391fc39e152993 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_8642: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8642/index.html
  IGT_7207: 51001c91c367464da9e700e617fb712b3b1cecfd @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8642/index.html

[-- Attachment #2: Type: text/html, Size: 20158 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2023-03-20 15:42 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-03-09 14:19 [igt-dev] [PATCH i-g-t] tests/i915: skip gem_set_caching call for mtl Vikas Srivastava
2023-03-09 15:20 ` [igt-dev] ✗ GitLab.Pipeline: warning for tests/i915: skip gem_set_caching call for mtl (rev2) Patchwork
2023-03-09 15:26 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
2023-03-09 16:41 ` [igt-dev] [PATCH i-g-t] tests/i915: skip gem_set_caching call for mtl Kamil Konieczny
2023-03-11  6:59 ` [igt-dev] ✗ Fi.CI.IGT: failure for tests/i915: skip gem_set_caching call for mtl (rev2) Patchwork
2023-03-20 12:50 ` [igt-dev] ✗ GitLab.Pipeline: warning for tests/i915: skip gem_set_caching call for mtl (rev3) Patchwork
2023-03-20 13:08 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
2023-03-20 15:42 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox