All of lore.kernel.org
 help / color / mirror / Atom feed
* [igt-dev] [PATCH i-g-t] tests/i915/gem_exec_suspend: Add support for local memory
@ 2021-12-16  5:17 sai.gowtham.ch
  2021-12-16  6:34 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/i915/gem_exec_suspend: Add support for local memory (rev4) Patchwork
                   ` (3 more replies)
  0 siblings, 4 replies; 10+ messages in thread
From: sai.gowtham.ch @ 2021-12-16  5:17 UTC (permalink / raw)
  To: igt-dev, sai.gowtham.ch, zbigniew.kempczynski

From: Ch Sai Gowtham <sai.gowtham.ch@intel.com>

Add support for local memory region (Device memory)

Signed-off-by: Ch Sai Gowtham <sai.gowtham.ch@intel.com>
Cc: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
---
 tests/i915/gem_exec_suspend.c | 121 ++++++++++++++++++++--------------
 1 file changed, 72 insertions(+), 49 deletions(-)

diff --git a/tests/i915/gem_exec_suspend.c b/tests/i915/gem_exec_suspend.c
index 887bb735..59fad1dc 100644
--- a/tests/i915/gem_exec_suspend.c
+++ b/tests/i915/gem_exec_suspend.c
@@ -52,7 +52,7 @@
 #define HANG (2<<8)
 
 static void run_test(int fd, const intel_ctx_t *ctx,
-		     unsigned engine, unsigned flags);
+		     unsigned engine, unsigned flags, uint32_t region);
 
 static void check_bo(int fd, uint32_t handle)
 {
@@ -67,13 +67,13 @@ static void check_bo(int fd, uint32_t handle)
 	munmap(map, 4096);
 }
 
-static void test_all(int fd, const intel_ctx_t *ctx, unsigned flags)
+static void test_all(int fd, const intel_ctx_t *ctx, unsigned flags, uint32_t region)
 {
-	run_test(fd, ctx, ALL_ENGINES, flags & ~0xff);
+	run_test(fd, ctx, ALL_ENGINES, flags & ~0xff, region);
 }
 
 static void run_test(int fd, const intel_ctx_t *ctx,
-		     unsigned engine, unsigned flags)
+		     unsigned engine, unsigned flags, uint32_t region)
 {
 	const unsigned int gen = intel_gen(intel_get_drm_devid(fd));
 	const uint32_t bbe = MI_BATCH_BUFFER_END;
@@ -100,7 +100,7 @@ static void run_test(int fd, const intel_ctx_t *ctx,
 
 	/* Before suspending, check normal operation */
 	if (mode(flags) != NOSLEEP)
-		test_all(fd, ctx, flags);
+		test_all(fd, ctx, flags, region);
 
 	gem_quiescent_gpu(fd);
 
@@ -113,11 +113,11 @@ static void run_test(int fd, const intel_ctx_t *ctx,
 	execbuf.rsvd1 = ctx->id;
 
 	memset(obj, 0, sizeof(obj));
-	obj[0].handle = gem_create(fd, 4096);
+	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));
 	obj[0].flags |= EXEC_OBJECT_WRITE;
-	obj[1].handle = gem_create(fd, 4096);
+	obj[1].handle = gem_create_in_memory_regions(fd, 4096, region);
 	gem_write(fd, obj[1].handle, 0, &bbe, sizeof(bbe));
 	igt_require(__gem_execbuf(fd, &execbuf) == 0);
 	gem_close(fd, obj[1].handle);
@@ -222,7 +222,7 @@ static void run_test(int fd, const intel_ctx_t *ctx,
 
 	/* After resume, make sure it still works */
 	if (mode(flags) != NOSLEEP)
-		test_all(fd, ctx, flags);
+		test_all(fd, ctx, flags, region);
 }
 
 struct battery_sample {
@@ -250,7 +250,7 @@ static double d_time(const struct battery_sample *after,
 }
 
 static void power_test(int i915, const intel_ctx_t *ctx,
-		       unsigned engine, unsigned flags)
+		       unsigned engine, unsigned flags, uint32_t region)
 {
 	struct battery_sample before, after;
 	char *status;
@@ -270,7 +270,7 @@ static void power_test(int i915, const intel_ctx_t *ctx,
 	igt_set_autoresume_delay(5 * 60); /* 5 minutes; longer == more stable */
 
 	igt_assert(get_power(dir, &before));
-	run_test(i915, ctx, engine, flags);
+	run_test(i915, ctx, engine, flags, region);
 	igt_assert(get_power(dir, &after));
 
 	igt_set_autoresume_delay(0);
@@ -292,10 +292,33 @@ igt_main
 		{ "-S4", HIBERNATE },
 		{ NULL, 0 }
 	}, *m;
+	struct test {
+		const char *name;
+		unsigned int flags;
+		void (*fn)(int, const intel_ctx_t *, unsigned, unsigned, uint32_t);
+	} *test, tests_all_engines[] = {
+		{ "basic", NOSLEEP, run_test },
+		{ "basic-S0", IDLE, run_test },
+		{ "basic-S3-devices", SUSPEND_DEVICES, run_test },
+		{ "basic-S3", SUSPEND, run_test },
+		{ "basic-S4-devices", HIBERNATE_DEVICES, run_test },
+		{ "basic-S4", HIBERNATE, run_test },
+		{ }
+	}, tests_power_hang[] = {
+		{ "hang-S3", SUSPEND | HANG, run_test },
+		{ "hang-S4", HIBERNATE | HANG, run_test },
+		{ "power-S0", IDLE, power_test },
+		{ "power-S3", SUSPEND, power_test },
+		{ }
+	};
 	const struct intel_execution_engine2 *e;
 	igt_hang_t hang;
 	const intel_ctx_t *ctx;
 	int fd;
+	char *sub_name;
+	uint32_t region;
+	struct drm_i915_query_memory_regions *query_info;
+	struct igt_collection *set, *regions;
 
 	igt_fixture {
 		fd = drm_open_driver_master(DRIVER_INTEL);
@@ -304,50 +327,55 @@ igt_main
 		ctx = intel_ctx_create_all_physical(fd);
 
 		igt_fork_hang_detector(fd);
+		query_info = gem_get_query_memory_regions(fd);
+		igt_assert(query_info);
+
+		set = get_memory_region_set(query_info,
+				I915_SYSTEM_MEMORY,
+				I915_DEVICE_MEMORY);
+	}
+
+#define subtest_for_each_combination(__name, __ctx, __flags, __fn) \
+	igt_subtest_with_dynamic(__name) { \
+		for_each_combination(regions, 1, set) { \
+			sub_name = memregion_dynamic_subtest_name(regions); \
+			region = igt_collection_get_value(regions, 0); \
+			igt_dynamic_f("%s", sub_name) \
+				(__fn)(fd, (__ctx), ALL_ENGINES, (__flags), region); \
+			free(sub_name); \
+		} \
 	}
 
-	igt_subtest("basic")
-		run_test(fd, ctx, ALL_ENGINES, NOSLEEP);
-	igt_subtest("basic-S0")
-		run_test(fd, ctx, ALL_ENGINES, IDLE);
-	igt_subtest("basic-S3-devices")
-		run_test(fd, ctx, ALL_ENGINES, SUSPEND_DEVICES);
-	igt_subtest("basic-S3")
-		run_test(fd, ctx, ALL_ENGINES, SUSPEND);
-	igt_subtest("basic-S4-devices")
-		run_test(fd, ctx, ALL_ENGINES, HIBERNATE_DEVICES);
-	igt_subtest("basic-S4")
-		run_test(fd, ctx, ALL_ENGINES, HIBERNATE);
+#define for_each_ctx_engine_combination(__mode) \
+	for_each_ctx_engine(fd, ctx, e) { \
+		if (!gem_class_can_store_dword(fd, e->class)) \
+			continue; \
+		for_each_combination(regions, 1, set) { \
+			sub_name = memregion_dynamic_subtest_name(regions); \
+			region = igt_collection_get_value(regions, 0); \
+			igt_dynamic_f("%s-%s", e->name, sub_name) \
+				run_test(fd, ctx, e->flags, (__mode), region); \
+			free(sub_name); \
+		} \
+	}
+
+	for (test = tests_all_engines; test->name; test++)
+		subtest_for_each_combination(test->name, intel_ctx_0(fd), test->flags, test->fn);
 
 	for (m = modes; m->suffix; m++) {
 		igt_subtest_with_dynamic_f("fixed%s", m->suffix) {
 			igt_require(gem_has_lmem(fd));
-			for_each_ctx_engine(fd, ctx, e) {
-				if (!gem_class_can_store_dword(fd, e->class))
-					continue;
-				igt_dynamic_f("%s", e->name)
-					run_test(fd, ctx, e->flags, m->mode);
-			}
+			for_each_ctx_engine_combination(m->mode);
 		}
 
 		igt_subtest_with_dynamic_f("uncached%s", m->suffix) {
 			igt_require(!gem_has_lmem(fd));
-			for_each_ctx_engine(fd, ctx, e) {
-				if (!gem_class_can_store_dword(fd, e->class))
-					continue;
-				igt_dynamic_f("%s", e->name)
-					run_test(fd, ctx, e->flags, m->mode | UNCACHED);
-			}
+			for_each_ctx_engine_combination(m->mode | UNCACHED);
 		}
 
 		igt_subtest_with_dynamic_f("cached%s", m->suffix) {
 			igt_require(!gem_has_lmem(fd));
-			for_each_ctx_engine(fd, ctx, e) {
-				if (!gem_class_can_store_dword(fd, e->class))
-					continue;
-				igt_dynamic_f("%s", e->name)
-					run_test(fd, ctx, e->flags, m->mode | CACHED);
-			}
+			for_each_ctx_engine_combination(m->mode | CACHED);
 		}
 	}
 
@@ -356,17 +384,12 @@ igt_main
 		hang = igt_allow_hang(fd, 0, 0);
 	}
 
-	igt_subtest("hang-S3")
-		run_test(fd, intel_ctx_0(fd), 0, SUSPEND | HANG);
-	igt_subtest("hang-S4")
-		run_test(fd, intel_ctx_0(fd), 0, HIBERNATE | HANG);
-
-	igt_subtest("power-S0")
-		power_test(fd, intel_ctx_0(fd), 0, IDLE);
-	igt_subtest("power-S3")
-		power_test(fd, intel_ctx_0(fd), 0, SUSPEND);
+	for (test = tests_power_hang; test->name; test++)
+		subtest_for_each_combination(test->name, intel_ctx_0(fd), test->flags, test->fn);
 
 	igt_fixture {
+		free(query_info);
+		igt_collection_destroy(set);
 		igt_disallow_hang(fd, hang);
 		intel_ctx_destroy(fd, ctx);
 		close(fd);
-- 
2.32.0

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

* [igt-dev] ✓ Fi.CI.BAT: success for tests/i915/gem_exec_suspend: Add support for local memory (rev4)
  2021-12-16  5:17 [igt-dev] [PATCH i-g-t] tests/i915/gem_exec_suspend: Add support for local memory sai.gowtham.ch
@ 2021-12-16  6:34 ` Patchwork
  2021-12-16  7:16 ` [igt-dev] [PATCH i-g-t] tests/i915/gem_exec_suspend: Add support for local memory Zbigniew Kempczyński
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2021-12-16  6:34 UTC (permalink / raw)
  To: sai.gowtham.ch; +Cc: igt-dev

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

== Series Details ==

Series: tests/i915/gem_exec_suspend: Add support for local memory (rev4)
URL   : https://patchwork.freedesktop.org/series/95706/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_11006 -> IGTPW_6499
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

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

  Additional (1): fi-rkl-guc 
  Missing    (7): bat-dg1-6 bat-dg1-5 fi-bsw-cyan bat-adlp-6 fi-bdw-samus bat-jsl-2 bat-jsl-1 

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

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

### IGT changes ###

#### Possible regressions ####

  * {igt@gem_exec_suspend@basic-s0@smem} (NEW):
    - fi-bdw-gvtdvm:      NOTRUN -> [INCOMPLETE][1]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/fi-bdw-gvtdvm/igt@gem_exec_suspend@basic-s0@smem.html

  
New tests
---------

  New tests have been introduced between CI_DRM_11006 and IGTPW_6499:

### New IGT tests (2) ###

  * igt@gem_exec_suspend@basic-s0@smem:
    - Statuses : 1 incomplete(s) 33 pass(s)
    - Exec time: [0.0, 20.45] s

  * igt@gem_exec_suspend@basic-s3@smem:
    - Statuses : 33 pass(s)
    - Exec time: [1.37, 18.32] s

  

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

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

### IGT changes ###

#### Issues hit ####

  * igt@amdgpu/amd_basic@cs-gfx:
    - fi-rkl-guc:         NOTRUN -> [SKIP][2] ([fdo#109315]) +17 similar issues
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/fi-rkl-guc/igt@amdgpu/amd_basic@cs-gfx.html

  * igt@debugfs_test@read_all_entries:
    - fi-kbl-soraka:      [PASS][3] -> [DMESG-WARN][4] ([i915#1982] / [i915#262])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11006/fi-kbl-soraka/igt@debugfs_test@read_all_entries.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/fi-kbl-soraka/igt@debugfs_test@read_all_entries.html

  * igt@gem_lmem_swapping@verify-random:
    - fi-rkl-guc:         NOTRUN -> [SKIP][5] ([i915#4613]) +3 similar issues
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/fi-rkl-guc/igt@gem_lmem_swapping@verify-random.html

  * igt@gem_tiled_pread_basic:
    - fi-rkl-guc:         NOTRUN -> [SKIP][6] ([i915#3282])
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/fi-rkl-guc/igt@gem_tiled_pread_basic.html

  * igt@i915_pm_backlight@basic-brightness:
    - fi-rkl-guc:         NOTRUN -> [SKIP][7] ([i915#3012])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/fi-rkl-guc/igt@i915_pm_backlight@basic-brightness.html

  * igt@i915_selftest@live@sanitycheck:
    - fi-skl-6600u:       NOTRUN -> [SKIP][8] ([fdo#109271])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/fi-skl-6600u/igt@i915_selftest@live@sanitycheck.html

  * igt@kms_chamelium@dp-edid-read:
    - fi-rkl-guc:         NOTRUN -> [SKIP][9] ([fdo#111827]) +8 similar issues
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/fi-rkl-guc/igt@kms_chamelium@dp-edid-read.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
    - fi-rkl-guc:         NOTRUN -> [SKIP][10] ([i915#4103]) +1 similar issue
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/fi-rkl-guc/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html

  * igt@kms_force_connector_basic@force-load-detect:
    - fi-rkl-guc:         NOTRUN -> [SKIP][11] ([fdo#109285])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/fi-rkl-guc/igt@kms_force_connector_basic@force-load-detect.html

  * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d:
    - fi-rkl-guc:         NOTRUN -> [SKIP][12] ([i915#533])
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/fi-rkl-guc/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d.html

  * igt@kms_psr@sprite_plane_onoff:
    - fi-rkl-guc:         NOTRUN -> [SKIP][13] ([i915#1072]) +3 similar issues
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/fi-rkl-guc/igt@kms_psr@sprite_plane_onoff.html

  * igt@prime_vgem@basic-userptr:
    - fi-rkl-guc:         NOTRUN -> [SKIP][14] ([i915#3301] / [i915#3708])
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/fi-rkl-guc/igt@prime_vgem@basic-userptr.html

  * igt@prime_vgem@basic-write:
    - fi-rkl-guc:         NOTRUN -> [SKIP][15] ([i915#3291] / [i915#3708]) +2 similar issues
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/fi-rkl-guc/igt@prime_vgem@basic-write.html

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

  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
  [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
  [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
  [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
  [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
  [i915#262]: https://gitlab.freedesktop.org/drm/intel/issues/262
  [i915#3012]: https://gitlab.freedesktop.org/drm/intel/issues/3012
  [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
  [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
  [i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301
  [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
  [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
  [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
  [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533


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

  * CI: CI-20190529 -> None
  * IGT: IGT_6310 -> IGTPW_6499

  CI-20190529: 20190529
  CI_DRM_11006: c638e6957221626098fab621a4774b77b933dff2 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_6499: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/index.html
  IGT_6310: 07dfbd0af8b49c75036f0ccb0a161f6e290a91a3 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git

== Logs ==

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

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

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

* Re: [igt-dev] [PATCH i-g-t] tests/i915/gem_exec_suspend: Add support for local memory
  2021-12-16  5:17 [igt-dev] [PATCH i-g-t] tests/i915/gem_exec_suspend: Add support for local memory sai.gowtham.ch
  2021-12-16  6:34 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/i915/gem_exec_suspend: Add support for local memory (rev4) Patchwork
@ 2021-12-16  7:16 ` Zbigniew Kempczyński
  2021-12-16  8:03 ` [igt-dev] ✗ Fi.CI.IGT: failure for tests/i915/gem_exec_suspend: Add support for local memory (rev4) Patchwork
  2021-12-16 19:42 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork
  3 siblings, 0 replies; 10+ messages in thread
From: Zbigniew Kempczyński @ 2021-12-16  7:16 UTC (permalink / raw)
  To: sai.gowtham.ch; +Cc: igt-dev

On Thu, Dec 16, 2021 at 10:47:58AM +0530, sai.gowtham.ch@intel.com wrote:
> From: Ch Sai Gowtham <sai.gowtham.ch@intel.com>
> 
> Add support for local memory region (Device memory)
> 
> Signed-off-by: Ch Sai Gowtham <sai.gowtham.ch@intel.com>
> Cc: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>

Looks good:

Reviewed-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>

--
Zbigniew

> ---
>  tests/i915/gem_exec_suspend.c | 121 ++++++++++++++++++++--------------
>  1 file changed, 72 insertions(+), 49 deletions(-)
> 
> diff --git a/tests/i915/gem_exec_suspend.c b/tests/i915/gem_exec_suspend.c
> index 887bb735..59fad1dc 100644
> --- a/tests/i915/gem_exec_suspend.c
> +++ b/tests/i915/gem_exec_suspend.c
> @@ -52,7 +52,7 @@
>  #define HANG (2<<8)
>  
>  static void run_test(int fd, const intel_ctx_t *ctx,
> -		     unsigned engine, unsigned flags);
> +		     unsigned engine, unsigned flags, uint32_t region);
>  
>  static void check_bo(int fd, uint32_t handle)
>  {
> @@ -67,13 +67,13 @@ static void check_bo(int fd, uint32_t handle)
>  	munmap(map, 4096);
>  }
>  
> -static void test_all(int fd, const intel_ctx_t *ctx, unsigned flags)
> +static void test_all(int fd, const intel_ctx_t *ctx, unsigned flags, uint32_t region)
>  {
> -	run_test(fd, ctx, ALL_ENGINES, flags & ~0xff);
> +	run_test(fd, ctx, ALL_ENGINES, flags & ~0xff, region);
>  }
>  
>  static void run_test(int fd, const intel_ctx_t *ctx,
> -		     unsigned engine, unsigned flags)
> +		     unsigned engine, unsigned flags, uint32_t region)
>  {
>  	const unsigned int gen = intel_gen(intel_get_drm_devid(fd));
>  	const uint32_t bbe = MI_BATCH_BUFFER_END;
> @@ -100,7 +100,7 @@ static void run_test(int fd, const intel_ctx_t *ctx,
>  
>  	/* Before suspending, check normal operation */
>  	if (mode(flags) != NOSLEEP)
> -		test_all(fd, ctx, flags);
> +		test_all(fd, ctx, flags, region);
>  
>  	gem_quiescent_gpu(fd);
>  
> @@ -113,11 +113,11 @@ static void run_test(int fd, const intel_ctx_t *ctx,
>  	execbuf.rsvd1 = ctx->id;
>  
>  	memset(obj, 0, sizeof(obj));
> -	obj[0].handle = gem_create(fd, 4096);
> +	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));
>  	obj[0].flags |= EXEC_OBJECT_WRITE;
> -	obj[1].handle = gem_create(fd, 4096);
> +	obj[1].handle = gem_create_in_memory_regions(fd, 4096, region);
>  	gem_write(fd, obj[1].handle, 0, &bbe, sizeof(bbe));
>  	igt_require(__gem_execbuf(fd, &execbuf) == 0);
>  	gem_close(fd, obj[1].handle);
> @@ -222,7 +222,7 @@ static void run_test(int fd, const intel_ctx_t *ctx,
>  
>  	/* After resume, make sure it still works */
>  	if (mode(flags) != NOSLEEP)
> -		test_all(fd, ctx, flags);
> +		test_all(fd, ctx, flags, region);
>  }
>  
>  struct battery_sample {
> @@ -250,7 +250,7 @@ static double d_time(const struct battery_sample *after,
>  }
>  
>  static void power_test(int i915, const intel_ctx_t *ctx,
> -		       unsigned engine, unsigned flags)
> +		       unsigned engine, unsigned flags, uint32_t region)
>  {
>  	struct battery_sample before, after;
>  	char *status;
> @@ -270,7 +270,7 @@ static void power_test(int i915, const intel_ctx_t *ctx,
>  	igt_set_autoresume_delay(5 * 60); /* 5 minutes; longer == more stable */
>  
>  	igt_assert(get_power(dir, &before));
> -	run_test(i915, ctx, engine, flags);
> +	run_test(i915, ctx, engine, flags, region);
>  	igt_assert(get_power(dir, &after));
>  
>  	igt_set_autoresume_delay(0);
> @@ -292,10 +292,33 @@ igt_main
>  		{ "-S4", HIBERNATE },
>  		{ NULL, 0 }
>  	}, *m;
> +	struct test {
> +		const char *name;
> +		unsigned int flags;
> +		void (*fn)(int, const intel_ctx_t *, unsigned, unsigned, uint32_t);
> +	} *test, tests_all_engines[] = {
> +		{ "basic", NOSLEEP, run_test },
> +		{ "basic-S0", IDLE, run_test },
> +		{ "basic-S3-devices", SUSPEND_DEVICES, run_test },
> +		{ "basic-S3", SUSPEND, run_test },
> +		{ "basic-S4-devices", HIBERNATE_DEVICES, run_test },
> +		{ "basic-S4", HIBERNATE, run_test },
> +		{ }
> +	}, tests_power_hang[] = {
> +		{ "hang-S3", SUSPEND | HANG, run_test },
> +		{ "hang-S4", HIBERNATE | HANG, run_test },
> +		{ "power-S0", IDLE, power_test },
> +		{ "power-S3", SUSPEND, power_test },
> +		{ }
> +	};
>  	const struct intel_execution_engine2 *e;
>  	igt_hang_t hang;
>  	const intel_ctx_t *ctx;
>  	int fd;
> +	char *sub_name;
> +	uint32_t region;
> +	struct drm_i915_query_memory_regions *query_info;
> +	struct igt_collection *set, *regions;
>  
>  	igt_fixture {
>  		fd = drm_open_driver_master(DRIVER_INTEL);
> @@ -304,50 +327,55 @@ igt_main
>  		ctx = intel_ctx_create_all_physical(fd);
>  
>  		igt_fork_hang_detector(fd);
> +		query_info = gem_get_query_memory_regions(fd);
> +		igt_assert(query_info);
> +
> +		set = get_memory_region_set(query_info,
> +				I915_SYSTEM_MEMORY,
> +				I915_DEVICE_MEMORY);
> +	}
> +
> +#define subtest_for_each_combination(__name, __ctx, __flags, __fn) \
> +	igt_subtest_with_dynamic(__name) { \
> +		for_each_combination(regions, 1, set) { \
> +			sub_name = memregion_dynamic_subtest_name(regions); \
> +			region = igt_collection_get_value(regions, 0); \
> +			igt_dynamic_f("%s", sub_name) \
> +				(__fn)(fd, (__ctx), ALL_ENGINES, (__flags), region); \
> +			free(sub_name); \
> +		} \
>  	}
>  
> -	igt_subtest("basic")
> -		run_test(fd, ctx, ALL_ENGINES, NOSLEEP);
> -	igt_subtest("basic-S0")
> -		run_test(fd, ctx, ALL_ENGINES, IDLE);
> -	igt_subtest("basic-S3-devices")
> -		run_test(fd, ctx, ALL_ENGINES, SUSPEND_DEVICES);
> -	igt_subtest("basic-S3")
> -		run_test(fd, ctx, ALL_ENGINES, SUSPEND);
> -	igt_subtest("basic-S4-devices")
> -		run_test(fd, ctx, ALL_ENGINES, HIBERNATE_DEVICES);
> -	igt_subtest("basic-S4")
> -		run_test(fd, ctx, ALL_ENGINES, HIBERNATE);
> +#define for_each_ctx_engine_combination(__mode) \
> +	for_each_ctx_engine(fd, ctx, e) { \
> +		if (!gem_class_can_store_dword(fd, e->class)) \
> +			continue; \
> +		for_each_combination(regions, 1, set) { \
> +			sub_name = memregion_dynamic_subtest_name(regions); \
> +			region = igt_collection_get_value(regions, 0); \
> +			igt_dynamic_f("%s-%s", e->name, sub_name) \
> +				run_test(fd, ctx, e->flags, (__mode), region); \
> +			free(sub_name); \
> +		} \
> +	}
> +
> +	for (test = tests_all_engines; test->name; test++)
> +		subtest_for_each_combination(test->name, intel_ctx_0(fd), test->flags, test->fn);
>  
>  	for (m = modes; m->suffix; m++) {
>  		igt_subtest_with_dynamic_f("fixed%s", m->suffix) {
>  			igt_require(gem_has_lmem(fd));
> -			for_each_ctx_engine(fd, ctx, e) {
> -				if (!gem_class_can_store_dword(fd, e->class))
> -					continue;
> -				igt_dynamic_f("%s", e->name)
> -					run_test(fd, ctx, e->flags, m->mode);
> -			}
> +			for_each_ctx_engine_combination(m->mode);
>  		}
>  
>  		igt_subtest_with_dynamic_f("uncached%s", m->suffix) {
>  			igt_require(!gem_has_lmem(fd));
> -			for_each_ctx_engine(fd, ctx, e) {
> -				if (!gem_class_can_store_dword(fd, e->class))
> -					continue;
> -				igt_dynamic_f("%s", e->name)
> -					run_test(fd, ctx, e->flags, m->mode | UNCACHED);
> -			}
> +			for_each_ctx_engine_combination(m->mode | UNCACHED);
>  		}
>  
>  		igt_subtest_with_dynamic_f("cached%s", m->suffix) {
>  			igt_require(!gem_has_lmem(fd));
> -			for_each_ctx_engine(fd, ctx, e) {
> -				if (!gem_class_can_store_dword(fd, e->class))
> -					continue;
> -				igt_dynamic_f("%s", e->name)
> -					run_test(fd, ctx, e->flags, m->mode | CACHED);
> -			}
> +			for_each_ctx_engine_combination(m->mode | CACHED);
>  		}
>  	}
>  
> @@ -356,17 +384,12 @@ igt_main
>  		hang = igt_allow_hang(fd, 0, 0);
>  	}
>  
> -	igt_subtest("hang-S3")
> -		run_test(fd, intel_ctx_0(fd), 0, SUSPEND | HANG);
> -	igt_subtest("hang-S4")
> -		run_test(fd, intel_ctx_0(fd), 0, HIBERNATE | HANG);
> -
> -	igt_subtest("power-S0")
> -		power_test(fd, intel_ctx_0(fd), 0, IDLE);
> -	igt_subtest("power-S3")
> -		power_test(fd, intel_ctx_0(fd), 0, SUSPEND);
> +	for (test = tests_power_hang; test->name; test++)
> +		subtest_for_each_combination(test->name, intel_ctx_0(fd), test->flags, test->fn);
>  
>  	igt_fixture {
> +		free(query_info);
> +		igt_collection_destroy(set);
>  		igt_disallow_hang(fd, hang);
>  		intel_ctx_destroy(fd, ctx);
>  		close(fd);
> -- 
> 2.32.0
> 

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

* [igt-dev] ✗ Fi.CI.IGT: failure for tests/i915/gem_exec_suspend: Add support for local memory (rev4)
  2021-12-16  5:17 [igt-dev] [PATCH i-g-t] tests/i915/gem_exec_suspend: Add support for local memory sai.gowtham.ch
  2021-12-16  6:34 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/i915/gem_exec_suspend: Add support for local memory (rev4) Patchwork
  2021-12-16  7:16 ` [igt-dev] [PATCH i-g-t] tests/i915/gem_exec_suspend: Add support for local memory Zbigniew Kempczyński
@ 2021-12-16  8:03 ` Patchwork
  2021-12-16 12:10   ` Zbigniew Kempczyński
  2021-12-16 19:42 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork
  3 siblings, 1 reply; 10+ messages in thread
From: Patchwork @ 2021-12-16  8:03 UTC (permalink / raw)
  To: sai.gowtham.ch; +Cc: igt-dev

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

== Series Details ==

Series: tests/i915/gem_exec_suspend: Add support for local memory (rev4)
URL   : https://patchwork.freedesktop.org/series/95706/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_11006_full -> IGTPW_6499_full
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with IGTPW_6499_full absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in IGTPW_6499_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_6499/index.html

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

  Missing    (3): pig-skl-6260u pig-glk-j5005 shard-rkl 

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@kms_atomic_transition@modeset-transition-nonblocking-fencing@1x-outputs:
    - shard-tglb:         NOTRUN -> [INCOMPLETE][1]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-tglb8/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing@1x-outputs.html

  
New tests
---------

  New tests have been introduced between CI_DRM_11006_full and IGTPW_6499_full:

### New IGT tests (4) ###

  * igt@gem_exec_suspend@basic-s3-devices@smem:
    - Statuses : 6 pass(s)
    - Exec time: [6.45, 10.48] s

  * igt@gem_exec_suspend@basic-s3@smem:
    - Statuses : 6 pass(s)
    - Exec time: [2.50, 5.60] s

  * igt@gem_exec_suspend@basic-s4-devices@smem:
    - Statuses : 4 pass(s)
    - Exec time: [7.26, 10.73] s

  * igt@gem_exec_suspend@basic@smem:
    - Statuses : 6 pass(s)
    - Exec time: [0.22, 1.39] s

  

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

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

### IGT changes ###

#### Issues hit ####

  * igt@feature_discovery@psr2:
    - shard-iclb:         NOTRUN -> [SKIP][2] ([i915#658])
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-iclb3/igt@feature_discovery@psr2.html

  * igt@gem_ctx_persistence@legacy-engines-queued:
    - shard-snb:          NOTRUN -> [SKIP][3] ([fdo#109271] / [i915#1099]) +2 similar issues
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-snb7/igt@gem_ctx_persistence@legacy-engines-queued.html

  * igt@gem_ctx_sseu@engines:
    - shard-tglb:         NOTRUN -> [SKIP][4] ([i915#280])
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-tglb7/igt@gem_ctx_sseu@engines.html

  * igt@gem_eio@unwedge-stress:
    - shard-tglb:         NOTRUN -> [TIMEOUT][5] ([i915#3063] / [i915#3648])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-tglb3/igt@gem_eio@unwedge-stress.html
    - shard-snb:          NOTRUN -> [FAIL][6] ([i915#3354])
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-snb7/igt@gem_eio@unwedge-stress.html

  * igt@gem_exec_balancer@parallel-contexts:
    - shard-tglb:         NOTRUN -> [SKIP][7] ([i915#4525]) +3 similar issues
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-tglb5/igt@gem_exec_balancer@parallel-contexts.html

  * igt@gem_exec_balancer@parallel-out-fence:
    - shard-iclb:         NOTRUN -> [SKIP][8] ([i915#4525]) +2 similar issues
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-iclb2/igt@gem_exec_balancer@parallel-out-fence.html

  * igt@gem_exec_capture@pi@vcs0:
    - shard-iclb:         [PASS][9] -> [INCOMPLETE][10] ([i915#3371])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11006/shard-iclb2/igt@gem_exec_capture@pi@vcs0.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-iclb2/igt@gem_exec_capture@pi@vcs0.html

  * igt@gem_exec_fair@basic-flow@rcs0:
    - shard-tglb:         [PASS][11] -> [FAIL][12] ([i915#2842]) +2 similar issues
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11006/shard-tglb1/igt@gem_exec_fair@basic-flow@rcs0.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-tglb1/igt@gem_exec_fair@basic-flow@rcs0.html

  * igt@gem_exec_fair@basic-none-vip@rcs0:
    - shard-tglb:         NOTRUN -> [FAIL][13] ([i915#2842]) +1 similar issue
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-tglb3/igt@gem_exec_fair@basic-none-vip@rcs0.html

  * igt@gem_exec_fair@basic-none@rcs0:
    - shard-kbl:          [PASS][14] -> [FAIL][15] ([i915#2842]) +1 similar issue
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11006/shard-kbl6/igt@gem_exec_fair@basic-none@rcs0.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-kbl4/igt@gem_exec_fair@basic-none@rcs0.html

  * igt@gem_exec_fair@basic-pace-share@rcs0:
    - shard-glk:          [PASS][16] -> [FAIL][17] ([i915#2842])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11006/shard-glk2/igt@gem_exec_fair@basic-pace-share@rcs0.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-glk7/igt@gem_exec_fair@basic-pace-share@rcs0.html

  * igt@gem_exec_fair@basic-pace-solo@rcs0:
    - shard-apl:          NOTRUN -> [FAIL][18] ([i915#2842])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-apl4/igt@gem_exec_fair@basic-pace-solo@rcs0.html

  * igt@gem_exec_fair@basic-pace@vcs1:
    - shard-iclb:         NOTRUN -> [FAIL][19] ([i915#2842]) +1 similar issue
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-iclb2/igt@gem_exec_fair@basic-pace@vcs1.html

  * igt@gem_exec_params@no-vebox:
    - shard-iclb:         NOTRUN -> [SKIP][20] ([fdo#109283])
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-iclb7/igt@gem_exec_params@no-vebox.html
    - shard-tglb:         NOTRUN -> [SKIP][21] ([fdo#109283])
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-tglb3/igt@gem_exec_params@no-vebox.html

  * igt@gem_exec_params@secure-non-root:
    - shard-tglb:         NOTRUN -> [SKIP][22] ([fdo#112283])
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-tglb5/igt@gem_exec_params@secure-non-root.html
    - shard-iclb:         NOTRUN -> [SKIP][23] ([fdo#112283])
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-iclb3/igt@gem_exec_params@secure-non-root.html

  * igt@gem_exec_whisper@basic-fds-forked-all:
    - shard-glk:          [PASS][24] -> [DMESG-WARN][25] ([i915#118]) +1 similar issue
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11006/shard-glk3/igt@gem_exec_whisper@basic-fds-forked-all.html
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-glk7/igt@gem_exec_whisper@basic-fds-forked-all.html

  * igt@gem_lmem_swapping@heavy-verify-multi:
    - shard-kbl:          NOTRUN -> [SKIP][26] ([fdo#109271] / [i915#4613]) +1 similar issue
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-kbl1/igt@gem_lmem_swapping@heavy-verify-multi.html
    - shard-apl:          NOTRUN -> [SKIP][27] ([fdo#109271] / [i915#4613])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-apl7/igt@gem_lmem_swapping@heavy-verify-multi.html

  * igt@gem_lmem_swapping@parallel-random-verify:
    - shard-tglb:         NOTRUN -> [SKIP][28] ([i915#4613])
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-tglb6/igt@gem_lmem_swapping@parallel-random-verify.html

  * igt@gem_pxp@create-protected-buffer:
    - shard-iclb:         NOTRUN -> [SKIP][29] ([i915#4270]) +3 similar issues
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-iclb3/igt@gem_pxp@create-protected-buffer.html

  * igt@gem_pxp@protected-encrypted-src-copy-not-readible:
    - shard-tglb:         NOTRUN -> [SKIP][30] ([i915#4270]) +3 similar issues
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-tglb5/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html

  * igt@gem_softpin@evict-snoop:
    - shard-tglb:         NOTRUN -> [SKIP][31] ([fdo#109312])
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-tglb5/igt@gem_softpin@evict-snoop.html

  * igt@gem_userptr_blits@dmabuf-sync:
    - shard-apl:          NOTRUN -> [SKIP][32] ([fdo#109271] / [i915#3323])
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-apl8/igt@gem_userptr_blits@dmabuf-sync.html

  * igt@gem_userptr_blits@dmabuf-unsync:
    - shard-tglb:         NOTRUN -> [SKIP][33] ([i915#3297])
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-tglb2/igt@gem_userptr_blits@dmabuf-unsync.html
    - shard-iclb:         NOTRUN -> [SKIP][34] ([i915#3297])
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-iclb2/igt@gem_userptr_blits@dmabuf-unsync.html

  * igt@gen7_exec_parse@basic-allowed:
    - shard-tglb:         NOTRUN -> [SKIP][35] ([fdo#109289]) +2 similar issues
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-tglb8/igt@gen7_exec_parse@basic-allowed.html

  * igt@gen7_exec_parse@bitmasks:
    - shard-iclb:         NOTRUN -> [SKIP][36] ([fdo#109289]) +2 similar issues
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-iclb7/igt@gen7_exec_parse@bitmasks.html

  * igt@gen9_exec_parse@allowed-all:
    - shard-iclb:         NOTRUN -> [SKIP][37] ([i915#2856])
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-iclb6/igt@gen9_exec_parse@allowed-all.html
    - shard-tglb:         NOTRUN -> [SKIP][38] ([i915#2856])
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-tglb3/igt@gen9_exec_parse@allowed-all.html
    - shard-glk:          NOTRUN -> [DMESG-WARN][39] ([i915#1436] / [i915#716])
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-glk5/igt@gen9_exec_parse@allowed-all.html

  * igt@i915_pm_backlight@bad-brightness:
    - shard-glk:          NOTRUN -> [SKIP][40] ([fdo#109271]) +69 similar issues
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-glk2/igt@i915_pm_backlight@bad-brightness.html

  * igt@i915_pm_dc@dc9-dpms:
    - shard-apl:          [PASS][41] -> [SKIP][42] ([fdo#109271])
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11006/shard-apl4/igt@i915_pm_dc@dc9-dpms.html
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-apl7/igt@i915_pm_dc@dc9-dpms.html

  * igt@i915_pm_rpm@modeset-non-lpsp-stress:
    - shard-tglb:         NOTRUN -> [SKIP][43] ([fdo#111644] / [i915#1397] / [i915#2411])
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-tglb1/igt@i915_pm_rpm@modeset-non-lpsp-stress.html
    - shard-iclb:         NOTRUN -> [SKIP][44] ([fdo#110892])
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-iclb1/igt@i915_pm_rpm@modeset-non-lpsp-stress.html

  * igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
    - shard-iclb:         NOTRUN -> [SKIP][45] ([i915#1769])
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-iclb2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
    - shard-tglb:         NOTRUN -> [SKIP][46] ([i915#1769])
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-tglb7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html

  * igt@kms_big_fb@linear-32bpp-rotate-0:
    - shard-glk:          NOTRUN -> [DMESG-WARN][47] ([i915#118])
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-glk2/igt@kms_big_fb@linear-32bpp-rotate-0.html

  * igt@kms_big_fb@x-tiled-64bpp-rotate-270:
    - shard-iclb:         NOTRUN -> [SKIP][48] ([fdo#110725] / [fdo#111614]) +1 similar issue
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-iclb4/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip:
    - shard-apl:          NOTRUN -> [SKIP][49] ([fdo#109271] / [i915#3777])
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-apl6/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip.html

  * igt@kms_big_fb@y-tiled-64bpp-rotate-270:
    - shard-tglb:         NOTRUN -> [SKIP][50] ([fdo#111614]) +1 similar issue
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-tglb1/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip:
    - shard-kbl:          NOTRUN -> [SKIP][51] ([fdo#109271] / [i915#3777]) +2 similar issues
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-kbl2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html

  * igt@kms_big_fb@yf-tiled-64bpp-rotate-270:
    - shard-tglb:         NOTRUN -> [SKIP][52] ([fdo#111615]) +1 similar issue
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-tglb7/igt@kms_big_fb@yf-tiled-64bpp-rotate-270.html
    - shard-iclb:         NOTRUN -> [SKIP][53] ([fdo#110723])
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-iclb5/igt@kms_big_fb@yf-tiled-64bpp-rotate-270.html

  * igt@kms_big_joiner@basic:
    - shard-tglb:         NOTRUN -> [SKIP][54] ([i915#2705])
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-tglb2/igt@kms_big_joiner@basic.html
    - shard-iclb:         NOTRUN -> [SKIP][55] ([i915#2705])
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-iclb8/igt@kms_big_joiner@basic.html

  * igt@kms_ccs@pipe-a-bad-aux-stride-yf_tiled_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][56] ([fdo#111615] / [i915#3689]) +1 similar issue
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-tglb5/igt@kms_ccs@pipe-a-bad-aux-stride-yf_tiled_ccs.html

  * igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_rc_ccs_cc:
    - shard-kbl:          NOTRUN -> [SKIP][57] ([fdo#109271] / [i915#3886]) +4 similar issues
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-kbl2/igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_rc_ccs_cc.html

  * igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_mc_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][58] ([i915#3689] / [i915#3886]) +2 similar issues
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-tglb5/igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_mc_ccs:
    - shard-apl:          NOTRUN -> [SKIP][59] ([fdo#109271] / [i915#3886]) +4 similar issues
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-apl2/igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_mc_ccs.html
    - shard-glk:          NOTRUN -> [SKIP][60] ([fdo#109271] / [i915#3886]) +2 similar issues
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-glk4/igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-c-crc-primary-basic-y_tiled_gen12_mc_ccs:
    - shard-iclb:         NOTRUN -> [SKIP][61] ([fdo#109278] / [i915#3886]) +3 similar issues
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-iclb4/igt@kms_ccs@pipe-c-crc-primary-basic-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][62] ([i915#3689]) +8 similar issues
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-tglb1/igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_ccs.html

  * igt@kms_chamelium@dp-edid-change-during-suspend:
    - shard-apl:          NOTRUN -> [SKIP][63] ([fdo#109271] / [fdo#111827]) +10 similar issues
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-apl8/igt@kms_chamelium@dp-edid-change-during-suspend.html

  * igt@kms_chamelium@hdmi-crc-multiple:
    - shard-snb:          NOTRUN -> [SKIP][64] ([fdo#109271] / [fdo#111827]) +8 similar issues
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-snb6/igt@kms_chamelium@hdmi-crc-multiple.html

  * igt@kms_color@pipe-d-ctm-red-to-blue:
    - shard-iclb:         NOTRUN -> [SKIP][65] ([fdo#109278] / [i915#1149])
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-iclb2/igt@kms_color@pipe-d-ctm-red-to-blue.html

  * igt@kms_color_chamelium@pipe-a-degamma:
    - shard-kbl:          NOTRUN -> [SKIP][66] ([fdo#109271] / [fdo#111827]) +17 similar issues
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-kbl3/igt@kms_color_chamelium@pipe-a-degamma.html

  * igt@kms_color_chamelium@pipe-b-ctm-limited-range:
    - shard-tglb:         NOTRUN -> [SKIP][67] ([fdo#109284] / [fdo#111827]) +13 similar issues
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-tglb8/igt@kms_color_chamelium@pipe-b-ctm-limited-range.html

  * igt@kms_color_chamelium@pipe-c-ctm-0-5:
    - shard-iclb:         NOTRUN -> [SKIP][68] ([fdo#109284] / [fdo#111827]) +6 similar issues
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-iclb7/igt@kms_color_chamelium@pipe-c-ctm-0-5.html

  * igt@kms_color_chamelium@pipe-d-degamma:
    - shard-glk:          NOTRUN -> [SKIP][69] ([fdo#109271] / [fdo#111827]) +6 similar issues
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-glk3/igt@kms_color_chamelium@pipe-d-degamma.html
    - shard-iclb:         NOTRUN -> [SKIP][70] ([fdo#109278] / [fdo#109284] / [fdo#111827])
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-iclb6/igt@kms_color_chamelium@pipe-d-degamma.html

  * igt@kms_content_protection@mei_interface:
    - shard-tglb:         NOTRUN -> [SKIP][71] ([fdo#111828])
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-tglb7/igt@kms_content_protection@mei_interface.html

  * igt@kms_cursor_crc@pipe-a-cursor-32x10-offscreen:
    - shard-tglb:         NOTRUN -> [SKIP][72] ([i915#3359]) +6 similar issues
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-tglb5/igt@kms_cursor_crc@pipe-a-cursor-32x10-offscreen.html

  * igt@kms_cursor_crc@pipe-a-cursor-512x512-onscreen:
    - shard-tglb:         NOTRUN -> [SKIP][73] ([fdo#109279] / [i915#3359]) +4 similar issues
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-tglb1/igt@kms_cursor_crc@pipe-a-cursor-512x512-onscreen.html
    - shard-iclb:         NOTRUN -> [SKIP][74] ([fdo#109278] / [fdo#109279])
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-iclb7/igt@kms_cursor_crc@pipe-a-cursor-512x512-onscreen.html

  * igt@kms_cursor_crc@pipe-a-cursor-suspend:
    - shard-kbl:          [PASS][75] -> [DMESG-WARN][76] ([i915#180]) +1 similar issue
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11006/shard-kbl4/igt@kms_cursor_crc@pipe-a-cursor-suspend.html
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-kbl6/igt@kms_cursor_crc@pipe-a-cursor-suspend.html

  * igt@kms_cursor_crc@pipe-b-cursor-suspend:
    - shard-apl:          NOTRUN -> [DMESG-WARN][77] ([i915#180]) +1 similar issue
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-apl4/igt@kms_cursor_crc@pipe-b-cursor-suspend.html

  * igt@kms_cursor_crc@pipe-c-cursor-32x32-onscreen:
    - shard-tglb:         NOTRUN -> [SKIP][78] ([i915#3319]) +2 similar issues
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-tglb1/igt@kms_cursor_crc@pipe-c-cursor-32x32-onscreen.html

  * igt@kms_cursor_crc@pipe-d-cursor-64x21-sliding:
    - shard-iclb:         NOTRUN -> [SKIP][79] ([fdo#109278]) +28 similar issues
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-iclb4/igt@kms_cursor_crc@pipe-d-cursor-64x21-sliding.html

  * igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic:
    - shard-iclb:         NOTRUN -> [SKIP][80] ([fdo#109274] / [fdo#109278]) +4 similar issues
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-iclb3/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html

  * igt@kms_cursor_legacy@flip-vs-cursor-toggle:
    - shard-iclb:         [PASS][81] -> [FAIL][82] ([i915#2346])
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11006/shard-iclb5/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-iclb7/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
    - shard-tglb:         NOTRUN -> [SKIP][83] ([i915#4103]) +2 similar issues
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-tglb8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html

  * igt@kms_dsc@basic-dsc-enable:
    - shard-iclb:         NOTRUN -> [SKIP][84] ([i915#3840])
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-iclb5/igt@kms_dsc@basic-dsc-enable.html

  * igt@kms_fbcon_fbt@fbc-suspend:
    - shard-apl:          [PASS][85] -> [INCOMPLETE][86] ([i915#180])
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11006/shard-apl7/igt@kms_fbcon_fbt@fbc-suspend.html
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-apl2/igt@kms_fbcon_fbt@fbc-suspend.html

  * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a1-hdmi-a2:
    - shard-glk:          [PASS][87] -> [FAIL][88] ([i915#79])
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11006/shard-glk2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a1-hdmi-a2.html
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-glk8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a1-hdmi-a2.html

  * igt@kms_flip@2x-flip-vs-wf_vblank:
    - shard-iclb:         NOTRUN -> [SKIP][89] ([fdo#109274]) +2 similar issues
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-iclb8/igt@kms_flip@2x-flip-vs-wf_vblank.html

  * igt@kms_flip@flip-vs-suspend-interruptible@a-dp1:
    - shard-apl:          [PASS][90] -> [DMESG-WARN][91] ([i915#180]) +1 similar issue
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11006/shard-apl2/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-apl3/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile:
    - shard-iclb:         [PASS][92] -> [SKIP][93] ([i915#3701]) +2 similar issues
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11006/shard-iclb7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile.html
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-iclb2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render:
    - shard-iclb:         NOTRUN -> [SKIP][94] ([fdo#109280]) +16 similar issues
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-iclb5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move:
    - shard-tglb:         NOTRUN -> [SKIP][95] ([fdo#111825]) +36 similar issues
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-tglb5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-cpu:
    - shard-kbl:          NOTRUN -> [SKIP][96] ([fdo#109271]) +176 similar issues
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-kbl4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-cpu.html

  * igt@kms_hdr@bpc-switch-dpms:
    - shard-kbl:          NOTRUN -> [FAIL][97] ([i915#1188])
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-kbl3/igt@kms_hdr@bpc-switch-dpms.html

  * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
    - shard-tglb:         NOTRUN -> [SKIP][98] ([i915#1839])
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-tglb6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html

  * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-b:
    - shard-kbl:          NOTRUN -> [DMESG-WARN][99] ([i915#180])
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-kbl1/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-b.html

  * igt@kms_plane_alpha_blend@pipe-c-alpha-basic:
    - shard-kbl:          NOTRUN -> [FAIL][100] ([fdo#108145] / [i915#265])
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-kbl4/igt@kms_plane_alpha_blend@pipe-c-alpha-basic.html
    - shard-glk:          NOTRUN -> [FAIL][101] ([fdo#108145] / [i915#265])
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-glk8/igt@kms_plane_alpha_blend@pipe-c-alpha-basic.html

  * igt@kms_plane_alpha_blend@pipe-c-alpha-transparent-fb:
    - shard-kbl:          NOTRUN -> [FAIL][102] ([i915#265])
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-kbl2/igt@kms_plane_alpha_blend@pipe-c-alpha-transparent-fb.html

  * igt@kms_plane_lowres@pipe-a-tiling-y:
    - shard-iclb:         NOTRUN -> [SKIP][103] ([i915#3536]) +1 similar issue
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-iclb2/igt@kms_plane_lowres@pipe-a-tiling-y.html

  * igt@kms_plane_lowres@pipe-d-tiling-x:
    - shard-tglb:         NOTRUN -> [SKIP][104] ([i915#3536]) +2 similar issues
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-tglb5/igt@kms_plane_lowres@pipe-d-tiling-x.html

  * igt@kms_plane_lowres@pipe-d-tiling-yf:
    - shard-tglb:         NOTRUN -> [SKIP][105] ([fdo#111615] / [fdo#112054])
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-tglb3/igt@kms_plane_lowres@pipe-d-tiling-yf.html

  * igt@kms_psr2_sf@cursor-plane-update-sf:
    - shard-kbl:          NOTRUN -> [SKIP][106] ([fdo#109271] / [i915#658])
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-kbl2/igt@kms_psr2_sf@cursor-plane-update-sf.html

  * igt@kms_psr2_sf@overlay-plane-update-continuous-sf:
    - shard-apl:          NOTRUN -> [SKIP][107] ([fdo#109271] / [i915#658])
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-apl2/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html

  * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area:
    - shard-tglb:         NOTRUN -> [SKIP][108] ([i915#2920])
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-tglb5/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html

  * igt@kms_psr2_sf@plane-move-sf-dmg-area:
    - shard-iclb:         NOTRUN -> [SKIP][109] ([fdo#111068] / [i915#658])
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-iclb5/igt@kms_psr2_sf@plane-move-sf-dmg-area.html

  * igt@kms_psr@psr2_cursor_mmap_gtt:
    - shard-tglb:         NOTRUN -> [FAIL][110] ([i915#132] / [i915#3467])
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-tglb2/igt@kms_psr@psr2_cursor_mmap_gtt.html

  * igt@kms_psr@psr2_primary_blt:
    - shard-iclb:         [PASS][111] -> [SKIP][112] ([fdo#109441])
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11006/shard-iclb2/igt@kms_psr@psr2_primary_blt.html
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-iclb4/igt@kms_psr@psr2_primary_blt.html

  * igt@kms_setmode@basic:
    - shard-glk:          [PASS][113] -> [FAIL][114] ([i915#31])
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11006/shard-glk3/igt@kms_setmode@basic.html
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-glk9/igt@kms_setmode@basic.html

  * igt@kms_sysfs_edid_timing:
    - shard-apl:          NOTRUN -> [FAIL][115] ([IGT#2])
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-apl4/igt@kms_sysfs_edid_timing.html
    - shard-kbl:          NOTRUN -> [FAIL][116] ([IGT#2])
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-kbl6/igt@kms_sysfs_edid_timing.html

  * igt@kms_vblank@pipe-d-query-forked-hang:
    - shard-snb:          NOTRUN -> [SKIP][117] ([fdo#109271]) +145 similar issues
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-snb5/igt@kms_vblank@pipe-d-query-forked-hang.html

  * igt@kms_writeback@writeback-invalid-parameters:
    - shard-tglb:         NOTRUN -> [SKIP][118] ([i915#2437])
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-tglb6/igt@kms_writeback@writeback-invalid-parameters.html
    - shard-kbl:          NOTRUN -> [SKIP][119] ([fdo#109271] / [i915#2437])
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-kbl4/igt@kms_writeback@writeback-invalid-parameters.html
    - shard-apl:          NOTRUN -> [SKIP][120] ([fdo#109271] / [i915#2437])
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-apl3/igt@kms_writeback@writeback-invalid-parameters.html
    - shard-glk:          NOTRUN -> [SKIP][121] ([fdo#109271] / [i915#2437])
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-glk7/igt@kms_writeback@writeback-invalid-parameters.html
    - shard-iclb:         NOTRUN -> [SKIP][122] ([i915#2437])
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-iclb6/igt@kms_writeback@writeback-invalid-parameters.html

  * igt@nouveau_crc@pipe-a-source-outp-inactive:
    - shard-iclb:         NOTRUN -> [SKIP][123] ([i915#2530])
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-iclb2/igt@nouveau_crc@pipe-a-source-outp-inactive.html
    - shard-tglb:         NOTRUN -> [SKIP][124] ([i915#2530])
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-tglb6/igt@nouveau_crc@pipe-a-source-outp-inactive.html

  * igt@nouveau_crc@pipe-b-ctx-flip-skip-current-frame:
    - shard-apl:          NOTRUN -> [SKIP][125] ([fdo#109271]) +107 similar issues
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-apl1/igt@nouveau_crc@pipe-b-ctx-flip-skip-current-frame.html

  * igt@perf@polling-parameterized:
    - shard-iclb:         [PASS][126] -> [FAIL][127] ([i915#1542])
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11006/shard-iclb5/igt@perf@polling-parameterized.html
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-iclb6/igt@perf@polling-parameterized.html

  * igt@prime_nv_pcopy@test1_macro:
    - shard-tglb:         NOTRUN -> [SKIP][128] ([fdo#109291]) +4 similar issues
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-tglb1/igt@prime_nv_pcopy@test1_macro.html

  * igt@prime_nv_test@nv_i915_sharing:
    - shard-iclb:         NOTRUN -> [SKIP][129] ([fdo#109291]) +3 similar issues
   [129]: https://intel-gfx-

== Logs ==

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

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

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

* Re: [igt-dev] ✗ Fi.CI.IGT: failure for tests/i915/gem_exec_suspend: Add support for local memory (rev4)
  2021-12-16  8:03 ` [igt-dev] ✗ Fi.CI.IGT: failure for tests/i915/gem_exec_suspend: Add support for local memory (rev4) Patchwork
@ 2021-12-16 12:10   ` Zbigniew Kempczyński
  2021-12-16 19:58     ` Vudum, Lakshminarayana
  0 siblings, 1 reply; 10+ messages in thread
From: Zbigniew Kempczyński @ 2021-12-16 12:10 UTC (permalink / raw)
  To: igt-dev; +Cc: sai.gowtham.ch, Vudum, Lakshminarayana

On Thu, Dec 16, 2021 at 08:03:53AM +0000, Patchwork wrote:
>    Patch Details
> 
>    Series:  tests/i915/gem_exec_suspend: Add support for local memory (rev4) 
>    URL:     https://patchwork.freedesktop.org/series/95706/                  
>    State:   failure                                                          
>    Details: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/index.html   
> 
>          CI Bug Log - changes from CI_DRM_11006_full -> IGTPW_6499_full
> 
> Summary
> 
>    FAILURE
> 
>    Serious unknown changes coming with IGTPW_6499_full absolutely need to be
>    verified manually.
> 
>    If you think the reported changes have nothing to do with the changes
>    introduced in IGTPW_6499_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_6499/index.html
> 
> Participating hosts (10 -> 7)
> 
>    Missing (3): pig-skl-6260u pig-glk-j5005 shard-rkl
> 
> Possible new issues
> 
>    Here are the unknown changes that may have been introduced in
>    IGTPW_6499_full:
> 
>   IGT changes
> 
>     Possible regressions
> 
>      * igt@kms_atomic_transition@modeset-transition-nonblocking-fencing@1x-outputs:
>           * shard-tglb: NOTRUN -> INCOMPLETE

Unrelated, change was in gem_exec_suspend test only.

--
Zbigniew
> 
> New tests
> 
>    New tests have been introduced between CI_DRM_11006_full and
>    IGTPW_6499_full:
> 
>   New IGT tests (4)
> 
>      * igt@gem_exec_suspend@basic-s3-devices@smem:
> 
>           * Statuses : 6 pass(s)
>           * Exec time: [6.45, 10.48] s
>      * igt@gem_exec_suspend@basic-s3@smem:
> 
>           * Statuses : 6 pass(s)
>           * Exec time: [2.50, 5.60] s
>      * igt@gem_exec_suspend@basic-s4-devices@smem:
> 
>           * Statuses : 4 pass(s)
>           * Exec time: [7.26, 10.73] s
>      * igt@gem_exec_suspend@basic@smem:
> 
>           * Statuses : 6 pass(s)
>           * Exec time: [0.22, 1.39] s
> 
> Known issues
> 
>    Here are the changes found in IGTPW_6499_full that come from known issues:
> 
>   IGT changes
> 
>     Issues hit
> 
>      * igt@feature_discovery@psr2:
> 
>           * shard-iclb: NOTRUN -> SKIP ([i915#658])
>      * igt@gem_ctx_persistence@legacy-engines-queued:
> 
>           * shard-snb: NOTRUN -> SKIP ([fdo#109271] / [i915#1099]) +2 similar
>             issues
>      * igt@gem_ctx_sseu@engines:
> 
>           * shard-tglb: NOTRUN -> SKIP ([i915#280])
>      * igt@gem_eio@unwedge-stress:
> 
>           * shard-tglb: NOTRUN -> TIMEOUT ([i915#3063] / [i915#3648])
> 
>           * shard-snb: NOTRUN -> FAIL ([i915#3354])
> 
>      * igt@gem_exec_balancer@parallel-contexts:
> 
>           * shard-tglb: NOTRUN -> SKIP ([i915#4525]) +3 similar issues
>      * igt@gem_exec_balancer@parallel-out-fence:
> 
>           * shard-iclb: NOTRUN -> SKIP ([i915#4525]) +2 similar issues
>      * igt@gem_exec_capture@pi@vcs0:
> 
>           * shard-iclb: PASS -> INCOMPLETE ([i915#3371])
>      * igt@gem_exec_fair@basic-flow@rcs0:
> 
>           * shard-tglb: PASS -> FAIL ([i915#2842]) +2 similar issues
>      * igt@gem_exec_fair@basic-none-vip@rcs0:
> 
>           * shard-tglb: NOTRUN -> FAIL ([i915#2842]) +1 similar issue
>      * igt@gem_exec_fair@basic-none@rcs0:
> 
>           * shard-kbl: PASS -> FAIL ([i915#2842]) +1 similar issue
>      * igt@gem_exec_fair@basic-pace-share@rcs0:
> 
>           * shard-glk: PASS -> FAIL ([i915#2842])
>      * igt@gem_exec_fair@basic-pace-solo@rcs0:
> 
>           * shard-apl: NOTRUN -> FAIL ([i915#2842])
>      * igt@gem_exec_fair@basic-pace@vcs1:
> 
>           * shard-iclb: NOTRUN -> FAIL ([i915#2842]) +1 similar issue
>      * igt@gem_exec_params@no-vebox:
> 
>           * shard-iclb: NOTRUN -> SKIP ([fdo#109283])
> 
>           * shard-tglb: NOTRUN -> SKIP ([fdo#109283])
> 
>      * igt@gem_exec_params@secure-non-root:
> 
>           * shard-tglb: NOTRUN -> SKIP ([fdo#112283])
> 
>           * shard-iclb: NOTRUN -> SKIP ([fdo#112283])
> 
>      * igt@gem_exec_whisper@basic-fds-forked-all:
> 
>           * shard-glk: PASS -> DMESG-WARN ([i915#118]) +1 similar issue
>      * igt@gem_lmem_swapping@heavy-verify-multi:
> 
>           * shard-kbl: NOTRUN -> SKIP ([fdo#109271] / [i915#4613]) +1 similar
>             issue
> 
>           * shard-apl: NOTRUN -> SKIP ([fdo#109271] / [i915#4613])
> 
>      * igt@gem_lmem_swapping@parallel-random-verify:
> 
>           * shard-tglb: NOTRUN -> SKIP ([i915#4613])
>      * igt@gem_pxp@create-protected-buffer:
> 
>           * shard-iclb: NOTRUN -> SKIP ([i915#4270]) +3 similar issues
>      * igt@gem_pxp@protected-encrypted-src-copy-not-readible:
> 
>           * shard-tglb: NOTRUN -> SKIP ([i915#4270]) +3 similar issues
>      * igt@gem_softpin@evict-snoop:
> 
>           * shard-tglb: NOTRUN -> SKIP ([fdo#109312])
>      * igt@gem_userptr_blits@dmabuf-sync:
> 
>           * shard-apl: NOTRUN -> SKIP ([fdo#109271] / [i915#3323])
>      * igt@gem_userptr_blits@dmabuf-unsync:
> 
>           * shard-tglb: NOTRUN -> SKIP ([i915#3297])
> 
>           * shard-iclb: NOTRUN -> SKIP ([i915#3297])
> 
>      * igt@gen7_exec_parse@basic-allowed:
> 
>           * shard-tglb: NOTRUN -> SKIP ([fdo#109289]) +2 similar issues
>      * igt@gen7_exec_parse@bitmasks:
> 
>           * shard-iclb: NOTRUN -> SKIP ([fdo#109289]) +2 similar issues
>      * igt@gen9_exec_parse@allowed-all:
> 
>           * shard-iclb: NOTRUN -> SKIP ([i915#2856])
> 
>           * shard-tglb: NOTRUN -> SKIP ([i915#2856])
> 
>           * shard-glk: NOTRUN -> DMESG-WARN ([i915#1436] / [i915#716])
> 
>      * igt@i915_pm_backlight@bad-brightness:
> 
>           * shard-glk: NOTRUN -> SKIP ([fdo#109271]) +69 similar issues
>      * igt@i915_pm_dc@dc9-dpms:
> 
>           * shard-apl: PASS -> SKIP ([fdo#109271])
>      * igt@i915_pm_rpm@modeset-non-lpsp-stress:
> 
>           * shard-tglb: NOTRUN -> SKIP ([fdo#111644] / [i915#1397] /
>             [i915#2411])
> 
>           * shard-iclb: NOTRUN -> SKIP ([fdo#110892])
> 
>      * igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
> 
>           * shard-iclb: NOTRUN -> SKIP ([i915#1769])
> 
>           * shard-tglb: NOTRUN -> SKIP ([i915#1769])
> 
>      * igt@kms_big_fb@linear-32bpp-rotate-0:
> 
>           * shard-glk: NOTRUN -> DMESG-WARN ([i915#118])
>      * igt@kms_big_fb@x-tiled-64bpp-rotate-270:
> 
>           * shard-iclb: NOTRUN -> SKIP ([fdo#110725] / [fdo#111614]) +1
>             similar issue
>      * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip:
> 
>           * shard-apl: NOTRUN -> SKIP ([fdo#109271] / [i915#3777])
>      * igt@kms_big_fb@y-tiled-64bpp-rotate-270:
> 
>           * shard-tglb: NOTRUN -> SKIP ([fdo#111614]) +1 similar issue
>      * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip:
> 
>           * shard-kbl: NOTRUN -> SKIP ([fdo#109271] / [i915#3777]) +2 similar
>             issues
>      * igt@kms_big_fb@yf-tiled-64bpp-rotate-270:
> 
>           * shard-tglb: NOTRUN -> SKIP ([fdo#111615]) +1 similar issue
> 
>           * shard-iclb: NOTRUN -> SKIP ([fdo#110723])
> 
>      * igt@kms_big_joiner@basic:
> 
>           * shard-tglb: NOTRUN -> SKIP ([i915#2705])
> 
>           * shard-iclb: NOTRUN -> SKIP ([i915#2705])
> 
>      * igt@kms_ccs@pipe-a-bad-aux-stride-yf_tiled_ccs:
> 
>           * shard-tglb: NOTRUN -> SKIP ([fdo#111615] / [i915#3689]) +1
>             similar issue
>      * igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_rc_ccs_cc:
> 
>           * shard-kbl: NOTRUN -> SKIP ([fdo#109271] / [i915#3886]) +4 similar
>             issues
>      * igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_mc_ccs:
> 
>           * shard-tglb: NOTRUN -> SKIP ([i915#3689] / [i915#3886]) +2 similar
>             issues
>      * igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_mc_ccs:
> 
>           * shard-apl: NOTRUN -> SKIP ([fdo#109271] / [i915#3886]) +4 similar
>             issues
> 
>           * shard-glk: NOTRUN -> SKIP ([fdo#109271] / [i915#3886]) +2 similar
>             issues
> 
>      * igt@kms_ccs@pipe-c-crc-primary-basic-y_tiled_gen12_mc_ccs:
> 
>           * shard-iclb: NOTRUN -> SKIP ([fdo#109278] / [i915#3886]) +3
>             similar issues
>      * igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_ccs:
> 
>           * shard-tglb: NOTRUN -> SKIP ([i915#3689]) +8 similar issues
>      * igt@kms_chamelium@dp-edid-change-during-suspend:
> 
>           * shard-apl: NOTRUN -> SKIP ([fdo#109271] / [fdo#111827]) +10
>             similar issues
>      * igt@kms_chamelium@hdmi-crc-multiple:
> 
>           * shard-snb: NOTRUN -> SKIP ([fdo#109271] / [fdo#111827]) +8
>             similar issues
>      * igt@kms_color@pipe-d-ctm-red-to-blue:
> 
>           * shard-iclb: NOTRUN -> SKIP ([fdo#109278] / [i915#1149])
>      * igt@kms_color_chamelium@pipe-a-degamma:
> 
>           * shard-kbl: NOTRUN -> SKIP ([fdo#109271] / [fdo#111827]) +17
>             similar issues
>      * igt@kms_color_chamelium@pipe-b-ctm-limited-range:
> 
>           * shard-tglb: NOTRUN -> SKIP ([fdo#109284] / [fdo#111827]) +13
>             similar issues
>      * igt@kms_color_chamelium@pipe-c-ctm-0-5:
> 
>           * shard-iclb: NOTRUN -> SKIP ([fdo#109284] / [fdo#111827]) +6
>             similar issues
>      * igt@kms_color_chamelium@pipe-d-degamma:
> 
>           * shard-glk: NOTRUN -> SKIP ([fdo#109271] / [fdo#111827]) +6
>             similar issues
> 
>           * shard-iclb: NOTRUN -> SKIP ([fdo#109278] / [fdo#109284] /
>             [fdo#111827])
> 
>      * igt@kms_content_protection@mei_interface:
> 
>           * shard-tglb: NOTRUN -> SKIP ([fdo#111828])
>      * igt@kms_cursor_crc@pipe-a-cursor-32x10-offscreen:
> 
>           * shard-tglb: NOTRUN -> SKIP ([i915#3359]) +6 similar issues
>      * igt@kms_cursor_crc@pipe-a-cursor-512x512-onscreen:
> 
>           * shard-tglb: NOTRUN -> SKIP ([fdo#109279] / [i915#3359]) +4
>             similar issues
> 
>           * shard-iclb: NOTRUN -> SKIP ([fdo#109278] / [fdo#109279])
> 
>      * igt@kms_cursor_crc@pipe-a-cursor-suspend:
> 
>           * shard-kbl: PASS -> DMESG-WARN ([i915#180]) +1 similar issue
>      * igt@kms_cursor_crc@pipe-b-cursor-suspend:
> 
>           * shard-apl: NOTRUN -> DMESG-WARN ([i915#180]) +1 similar issue
>      * igt@kms_cursor_crc@pipe-c-cursor-32x32-onscreen:
> 
>           * shard-tglb: NOTRUN -> SKIP ([i915#3319]) +2 similar issues
>      * igt@kms_cursor_crc@pipe-d-cursor-64x21-sliding:
> 
>           * shard-iclb: NOTRUN -> SKIP ([fdo#109278]) +28 similar issues
>      * igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic:
> 
>           * shard-iclb: NOTRUN -> SKIP ([fdo#109274] / [fdo#109278]) +4
>             similar issues
>      * igt@kms_cursor_legacy@flip-vs-cursor-toggle:
> 
>           * shard-iclb: PASS -> FAIL ([i915#2346])
>      * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
> 
>           * shard-tglb: NOTRUN -> SKIP ([i915#4103]) +2 similar issues
>      * igt@kms_dsc@basic-dsc-enable:
> 
>           * shard-iclb: NOTRUN -> SKIP ([i915#3840])
>      * igt@kms_fbcon_fbt@fbc-suspend:
> 
>           * shard-apl: PASS -> INCOMPLETE ([i915#180])
>      * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a1-hdmi-a2:
> 
>           * shard-glk: PASS -> FAIL ([i915#79])
>      * igt@kms_flip@2x-flip-vs-wf_vblank:
> 
>           * shard-iclb: NOTRUN -> SKIP ([fdo#109274]) +2 similar issues
>      * igt@kms_flip@flip-vs-suspend-interruptible@a-dp1:
> 
>           * shard-apl: PASS -> DMESG-WARN ([i915#180]) +1 similar issue
>      * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile:
> 
>           * shard-iclb: PASS -> SKIP ([i915#3701]) +2 similar issues
>      * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render:
> 
>           * shard-iclb: NOTRUN -> SKIP ([fdo#109280]) +16 similar issues
>      * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move:
> 
>           * shard-tglb: NOTRUN -> SKIP ([fdo#111825]) +36 similar issues
>      * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-cpu:
> 
>           * shard-kbl: NOTRUN -> SKIP ([fdo#109271]) +176 similar issues
>      * igt@kms_hdr@bpc-switch-dpms:
> 
>           * shard-kbl: NOTRUN -> FAIL ([i915#1188])
>      * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
> 
>           * shard-tglb: NOTRUN -> SKIP ([i915#1839])
>      * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-b:
> 
>           * shard-kbl: NOTRUN -> DMESG-WARN ([i915#180])
>      * igt@kms_plane_alpha_blend@pipe-c-alpha-basic:
> 
>           * shard-kbl: NOTRUN -> FAIL ([fdo#108145] / [i915#265])
> 
>           * shard-glk: NOTRUN -> FAIL ([fdo#108145] / [i915#265])
> 
>      * igt@kms_plane_alpha_blend@pipe-c-alpha-transparent-fb:
> 
>           * shard-kbl: NOTRUN -> FAIL ([i915#265])
>      * igt@kms_plane_lowres@pipe-a-tiling-y:
> 
>           * shard-iclb: NOTRUN -> SKIP ([i915#3536]) +1 similar issue
>      * igt@kms_plane_lowres@pipe-d-tiling-x:
> 
>           * shard-tglb: NOTRUN -> SKIP ([i915#3536]) +2 similar issues
>      * igt@kms_plane_lowres@pipe-d-tiling-yf:
> 
>           * shard-tglb: NOTRUN -> SKIP ([fdo#111615] / [fdo#112054])
>      * igt@kms_psr2_sf@cursor-plane-update-sf:
> 
>           * shard-kbl: NOTRUN -> SKIP ([fdo#109271] / [i915#658])
>      * igt@kms_psr2_sf@overlay-plane-update-continuous-sf:
> 
>           * shard-apl: NOTRUN -> SKIP ([fdo#109271] / [i915#658])
>      * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area:
> 
>           * shard-tglb: NOTRUN -> SKIP ([i915#2920])
>      * igt@kms_psr2_sf@plane-move-sf-dmg-area:
> 
>           * shard-iclb: NOTRUN -> SKIP ([fdo#111068] / [i915#658])
>      * igt@kms_psr@psr2_cursor_mmap_gtt:
> 
>           * shard-tglb: NOTRUN -> FAIL ([i915#132] / [i915#3467])
>      * igt@kms_psr@psr2_primary_blt:
> 
>           * shard-iclb: PASS -> SKIP ([fdo#109441])
>      * igt@kms_setmode@basic:
> 
>           * shard-glk: PASS -> FAIL ([i915#31])
>      * igt@kms_sysfs_edid_timing:
> 
>           * shard-apl: NOTRUN -> FAIL ([IGT#2])
> 
>           * shard-kbl: NOTRUN -> FAIL ([IGT#2])
> 
>      * igt@kms_vblank@pipe-d-query-forked-hang:
> 
>           * shard-snb: NOTRUN -> SKIP ([fdo#109271]) +145 similar issues
>      * igt@kms_writeback@writeback-invalid-parameters:
> 
>           * shard-tglb: NOTRUN -> SKIP ([i915#2437])
> 
>           * shard-kbl: NOTRUN -> SKIP ([fdo#109271] / [i915#2437])
> 
>           * shard-apl: NOTRUN -> SKIP ([fdo#109271] / [i915#2437])
> 
>           * shard-glk: NOTRUN -> SKIP ([fdo#109271] / [i915#2437])
> 
>           * shard-iclb: NOTRUN -> SKIP ([i915#2437])
> 
>      * igt@nouveau_crc@pipe-a-source-outp-inactive:
> 
>           * shard-iclb: NOTRUN -> SKIP ([i915#2530])
> 
>           * shard-tglb: NOTRUN -> SKIP ([i915#2530])
> 
>      * igt@nouveau_crc@pipe-b-ctx-flip-skip-current-frame:
> 
>           * shard-apl: NOTRUN -> SKIP ([fdo#109271]) +107 similar issues
>      * igt@perf@polling-parameterized:
> 
>           * shard-iclb: PASS -> FAIL ([i915#1542])
>      * igt@prime_nv_pcopy@test1_macro:
> 
>           * shard-tglb: NOTRUN -> SKIP ([fdo#109291]) +4 similar issues
>      * igt@prime_nv_test@nv_i915_sharing:
> 
>           * shard-iclb: NOTRUN -> SKIP ([fdo#109291]) +3 similar issues

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

* [igt-dev] ✓ Fi.CI.IGT: success for tests/i915/gem_exec_suspend: Add support for local memory (rev4)
  2021-12-16  5:17 [igt-dev] [PATCH i-g-t] tests/i915/gem_exec_suspend: Add support for local memory sai.gowtham.ch
                   ` (2 preceding siblings ...)
  2021-12-16  8:03 ` [igt-dev] ✗ Fi.CI.IGT: failure for tests/i915/gem_exec_suspend: Add support for local memory (rev4) Patchwork
@ 2021-12-16 19:42 ` Patchwork
  3 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2021-12-16 19:42 UTC (permalink / raw)
  To: sai.gowtham.ch; +Cc: igt-dev

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

== Series Details ==

Series: tests/i915/gem_exec_suspend: Add support for local memory (rev4)
URL   : https://patchwork.freedesktop.org/series/95706/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_11006_full -> IGTPW_6499_full
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

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

  Missing    (3): pig-skl-6260u pig-glk-j5005 shard-rkl 

New tests
---------

  New tests have been introduced between CI_DRM_11006_full and IGTPW_6499_full:

### New IGT tests (4) ###

  * igt@gem_exec_suspend@basic-s3-devices@smem:
    - Statuses : 6 pass(s)
    - Exec time: [6.45, 10.48] s

  * igt@gem_exec_suspend@basic-s3@smem:
    - Statuses : 6 pass(s)
    - Exec time: [2.50, 5.60] s

  * igt@gem_exec_suspend@basic-s4-devices@smem:
    - Statuses : 4 pass(s)
    - Exec time: [7.26, 10.73] s

  * igt@gem_exec_suspend@basic@smem:
    - Statuses : 6 pass(s)
    - Exec time: [0.22, 1.39] s

  

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

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

### IGT changes ###

#### Issues hit ####

  * igt@feature_discovery@psr2:
    - shard-iclb:         NOTRUN -> [SKIP][1] ([i915#658])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-iclb3/igt@feature_discovery@psr2.html

  * igt@gem_ctx_persistence@legacy-engines-queued:
    - shard-snb:          NOTRUN -> [SKIP][2] ([fdo#109271] / [i915#1099]) +2 similar issues
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-snb7/igt@gem_ctx_persistence@legacy-engines-queued.html

  * igt@gem_ctx_sseu@engines:
    - shard-tglb:         NOTRUN -> [SKIP][3] ([i915#280])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-tglb7/igt@gem_ctx_sseu@engines.html

  * igt@gem_eio@unwedge-stress:
    - shard-tglb:         NOTRUN -> [TIMEOUT][4] ([i915#3063] / [i915#3648])
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-tglb3/igt@gem_eio@unwedge-stress.html
    - shard-snb:          NOTRUN -> [FAIL][5] ([i915#3354])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-snb7/igt@gem_eio@unwedge-stress.html

  * igt@gem_exec_balancer@parallel-contexts:
    - shard-tglb:         NOTRUN -> [SKIP][6] ([i915#4525]) +3 similar issues
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-tglb5/igt@gem_exec_balancer@parallel-contexts.html

  * igt@gem_exec_balancer@parallel-out-fence:
    - shard-iclb:         NOTRUN -> [SKIP][7] ([i915#4525]) +2 similar issues
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-iclb2/igt@gem_exec_balancer@parallel-out-fence.html

  * igt@gem_exec_capture@pi@vcs0:
    - shard-iclb:         [PASS][8] -> [INCOMPLETE][9] ([i915#3371])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11006/shard-iclb2/igt@gem_exec_capture@pi@vcs0.html
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-iclb2/igt@gem_exec_capture@pi@vcs0.html

  * igt@gem_exec_fair@basic-flow@rcs0:
    - shard-tglb:         [PASS][10] -> [FAIL][11] ([i915#2842]) +2 similar issues
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11006/shard-tglb1/igt@gem_exec_fair@basic-flow@rcs0.html
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-tglb1/igt@gem_exec_fair@basic-flow@rcs0.html

  * igt@gem_exec_fair@basic-none-vip@rcs0:
    - shard-tglb:         NOTRUN -> [FAIL][12] ([i915#2842]) +1 similar issue
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-tglb3/igt@gem_exec_fair@basic-none-vip@rcs0.html

  * igt@gem_exec_fair@basic-none@rcs0:
    - shard-kbl:          [PASS][13] -> [FAIL][14] ([i915#2842]) +1 similar issue
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11006/shard-kbl6/igt@gem_exec_fair@basic-none@rcs0.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-kbl4/igt@gem_exec_fair@basic-none@rcs0.html

  * igt@gem_exec_fair@basic-pace-share@rcs0:
    - shard-glk:          [PASS][15] -> [FAIL][16] ([i915#2842])
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11006/shard-glk2/igt@gem_exec_fair@basic-pace-share@rcs0.html
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-glk7/igt@gem_exec_fair@basic-pace-share@rcs0.html

  * igt@gem_exec_fair@basic-pace-solo@rcs0:
    - shard-apl:          NOTRUN -> [FAIL][17] ([i915#2842])
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-apl4/igt@gem_exec_fair@basic-pace-solo@rcs0.html

  * igt@gem_exec_fair@basic-pace@vcs1:
    - shard-iclb:         NOTRUN -> [FAIL][18] ([i915#2842]) +1 similar issue
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-iclb2/igt@gem_exec_fair@basic-pace@vcs1.html

  * igt@gem_exec_params@no-vebox:
    - shard-iclb:         NOTRUN -> [SKIP][19] ([fdo#109283])
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-iclb7/igt@gem_exec_params@no-vebox.html
    - shard-tglb:         NOTRUN -> [SKIP][20] ([fdo#109283])
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-tglb3/igt@gem_exec_params@no-vebox.html

  * igt@gem_exec_params@secure-non-root:
    - shard-tglb:         NOTRUN -> [SKIP][21] ([fdo#112283])
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-tglb5/igt@gem_exec_params@secure-non-root.html
    - shard-iclb:         NOTRUN -> [SKIP][22] ([fdo#112283])
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-iclb3/igt@gem_exec_params@secure-non-root.html

  * igt@gem_exec_whisper@basic-fds-forked-all:
    - shard-glk:          [PASS][23] -> [DMESG-WARN][24] ([i915#118]) +1 similar issue
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11006/shard-glk3/igt@gem_exec_whisper@basic-fds-forked-all.html
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-glk7/igt@gem_exec_whisper@basic-fds-forked-all.html

  * igt@gem_lmem_swapping@heavy-verify-multi:
    - shard-kbl:          NOTRUN -> [SKIP][25] ([fdo#109271] / [i915#4613]) +1 similar issue
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-kbl1/igt@gem_lmem_swapping@heavy-verify-multi.html
    - shard-apl:          NOTRUN -> [SKIP][26] ([fdo#109271] / [i915#4613])
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-apl7/igt@gem_lmem_swapping@heavy-verify-multi.html

  * igt@gem_lmem_swapping@parallel-random-verify:
    - shard-tglb:         NOTRUN -> [SKIP][27] ([i915#4613])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-tglb6/igt@gem_lmem_swapping@parallel-random-verify.html

  * igt@gem_pxp@create-protected-buffer:
    - shard-iclb:         NOTRUN -> [SKIP][28] ([i915#4270]) +3 similar issues
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-iclb3/igt@gem_pxp@create-protected-buffer.html

  * igt@gem_pxp@protected-encrypted-src-copy-not-readible:
    - shard-tglb:         NOTRUN -> [SKIP][29] ([i915#4270]) +3 similar issues
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-tglb5/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html

  * igt@gem_softpin@evict-snoop:
    - shard-tglb:         NOTRUN -> [SKIP][30] ([fdo#109312])
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-tglb5/igt@gem_softpin@evict-snoop.html

  * igt@gem_userptr_blits@dmabuf-sync:
    - shard-apl:          NOTRUN -> [SKIP][31] ([fdo#109271] / [i915#3323])
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-apl8/igt@gem_userptr_blits@dmabuf-sync.html

  * igt@gem_userptr_blits@dmabuf-unsync:
    - shard-tglb:         NOTRUN -> [SKIP][32] ([i915#3297])
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-tglb2/igt@gem_userptr_blits@dmabuf-unsync.html
    - shard-iclb:         NOTRUN -> [SKIP][33] ([i915#3297])
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-iclb2/igt@gem_userptr_blits@dmabuf-unsync.html

  * igt@gen7_exec_parse@basic-allowed:
    - shard-tglb:         NOTRUN -> [SKIP][34] ([fdo#109289]) +2 similar issues
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-tglb8/igt@gen7_exec_parse@basic-allowed.html

  * igt@gen7_exec_parse@bitmasks:
    - shard-iclb:         NOTRUN -> [SKIP][35] ([fdo#109289]) +2 similar issues
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-iclb7/igt@gen7_exec_parse@bitmasks.html

  * igt@gen9_exec_parse@allowed-all:
    - shard-iclb:         NOTRUN -> [SKIP][36] ([i915#2856])
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-iclb6/igt@gen9_exec_parse@allowed-all.html
    - shard-tglb:         NOTRUN -> [SKIP][37] ([i915#2856])
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-tglb3/igt@gen9_exec_parse@allowed-all.html
    - shard-glk:          NOTRUN -> [DMESG-WARN][38] ([i915#1436] / [i915#716])
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-glk5/igt@gen9_exec_parse@allowed-all.html

  * igt@i915_pm_backlight@bad-brightness:
    - shard-glk:          NOTRUN -> [SKIP][39] ([fdo#109271]) +69 similar issues
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-glk2/igt@i915_pm_backlight@bad-brightness.html

  * igt@i915_pm_dc@dc9-dpms:
    - shard-apl:          [PASS][40] -> [SKIP][41] ([fdo#109271])
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11006/shard-apl4/igt@i915_pm_dc@dc9-dpms.html
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-apl7/igt@i915_pm_dc@dc9-dpms.html

  * igt@i915_pm_rpm@modeset-non-lpsp-stress:
    - shard-tglb:         NOTRUN -> [SKIP][42] ([fdo#111644] / [i915#1397] / [i915#2411])
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-tglb1/igt@i915_pm_rpm@modeset-non-lpsp-stress.html
    - shard-iclb:         NOTRUN -> [SKIP][43] ([fdo#110892])
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-iclb1/igt@i915_pm_rpm@modeset-non-lpsp-stress.html

  * igt@kms_atomic_transition@modeset-transition-nonblocking-fencing@1x-outputs:
    - shard-tglb:         NOTRUN -> [INCOMPLETE][44] ([i915#4697])
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-tglb8/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing@1x-outputs.html

  * igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
    - shard-iclb:         NOTRUN -> [SKIP][45] ([i915#1769])
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-iclb2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
    - shard-tglb:         NOTRUN -> [SKIP][46] ([i915#1769])
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-tglb7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html

  * igt@kms_big_fb@linear-32bpp-rotate-0:
    - shard-glk:          NOTRUN -> [DMESG-WARN][47] ([i915#118])
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-glk2/igt@kms_big_fb@linear-32bpp-rotate-0.html

  * igt@kms_big_fb@x-tiled-64bpp-rotate-270:
    - shard-iclb:         NOTRUN -> [SKIP][48] ([fdo#110725] / [fdo#111614]) +1 similar issue
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-iclb4/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip:
    - shard-apl:          NOTRUN -> [SKIP][49] ([fdo#109271] / [i915#3777])
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-apl6/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip.html

  * igt@kms_big_fb@y-tiled-64bpp-rotate-270:
    - shard-tglb:         NOTRUN -> [SKIP][50] ([fdo#111614]) +1 similar issue
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-tglb1/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip:
    - shard-kbl:          NOTRUN -> [SKIP][51] ([fdo#109271] / [i915#3777]) +2 similar issues
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-kbl2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html

  * igt@kms_big_fb@yf-tiled-64bpp-rotate-270:
    - shard-tglb:         NOTRUN -> [SKIP][52] ([fdo#111615]) +1 similar issue
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-tglb7/igt@kms_big_fb@yf-tiled-64bpp-rotate-270.html
    - shard-iclb:         NOTRUN -> [SKIP][53] ([fdo#110723])
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-iclb5/igt@kms_big_fb@yf-tiled-64bpp-rotate-270.html

  * igt@kms_big_joiner@basic:
    - shard-tglb:         NOTRUN -> [SKIP][54] ([i915#2705])
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-tglb2/igt@kms_big_joiner@basic.html
    - shard-iclb:         NOTRUN -> [SKIP][55] ([i915#2705])
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-iclb8/igt@kms_big_joiner@basic.html

  * igt@kms_ccs@pipe-a-bad-aux-stride-yf_tiled_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][56] ([fdo#111615] / [i915#3689]) +1 similar issue
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-tglb5/igt@kms_ccs@pipe-a-bad-aux-stride-yf_tiled_ccs.html

  * igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_rc_ccs_cc:
    - shard-kbl:          NOTRUN -> [SKIP][57] ([fdo#109271] / [i915#3886]) +4 similar issues
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-kbl2/igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_rc_ccs_cc.html

  * igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_mc_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][58] ([i915#3689] / [i915#3886]) +2 similar issues
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-tglb5/igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_mc_ccs:
    - shard-apl:          NOTRUN -> [SKIP][59] ([fdo#109271] / [i915#3886]) +4 similar issues
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-apl2/igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_mc_ccs.html
    - shard-glk:          NOTRUN -> [SKIP][60] ([fdo#109271] / [i915#3886]) +2 similar issues
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-glk4/igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-c-crc-primary-basic-y_tiled_gen12_mc_ccs:
    - shard-iclb:         NOTRUN -> [SKIP][61] ([fdo#109278] / [i915#3886]) +3 similar issues
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-iclb4/igt@kms_ccs@pipe-c-crc-primary-basic-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][62] ([i915#3689]) +8 similar issues
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-tglb1/igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_ccs.html

  * igt@kms_chamelium@dp-edid-change-during-suspend:
    - shard-apl:          NOTRUN -> [SKIP][63] ([fdo#109271] / [fdo#111827]) +10 similar issues
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-apl8/igt@kms_chamelium@dp-edid-change-during-suspend.html

  * igt@kms_chamelium@hdmi-crc-multiple:
    - shard-snb:          NOTRUN -> [SKIP][64] ([fdo#109271] / [fdo#111827]) +8 similar issues
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-snb6/igt@kms_chamelium@hdmi-crc-multiple.html

  * igt@kms_color@pipe-d-ctm-red-to-blue:
    - shard-iclb:         NOTRUN -> [SKIP][65] ([fdo#109278] / [i915#1149])
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-iclb2/igt@kms_color@pipe-d-ctm-red-to-blue.html

  * igt@kms_color_chamelium@pipe-a-degamma:
    - shard-kbl:          NOTRUN -> [SKIP][66] ([fdo#109271] / [fdo#111827]) +17 similar issues
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-kbl3/igt@kms_color_chamelium@pipe-a-degamma.html

  * igt@kms_color_chamelium@pipe-b-ctm-limited-range:
    - shard-tglb:         NOTRUN -> [SKIP][67] ([fdo#109284] / [fdo#111827]) +13 similar issues
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-tglb8/igt@kms_color_chamelium@pipe-b-ctm-limited-range.html

  * igt@kms_color_chamelium@pipe-c-ctm-0-5:
    - shard-iclb:         NOTRUN -> [SKIP][68] ([fdo#109284] / [fdo#111827]) +6 similar issues
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-iclb7/igt@kms_color_chamelium@pipe-c-ctm-0-5.html

  * igt@kms_color_chamelium@pipe-d-degamma:
    - shard-glk:          NOTRUN -> [SKIP][69] ([fdo#109271] / [fdo#111827]) +6 similar issues
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-glk3/igt@kms_color_chamelium@pipe-d-degamma.html
    - shard-iclb:         NOTRUN -> [SKIP][70] ([fdo#109278] / [fdo#109284] / [fdo#111827])
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-iclb6/igt@kms_color_chamelium@pipe-d-degamma.html

  * igt@kms_content_protection@mei_interface:
    - shard-tglb:         NOTRUN -> [SKIP][71] ([fdo#111828])
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-tglb7/igt@kms_content_protection@mei_interface.html

  * igt@kms_cursor_crc@pipe-a-cursor-32x10-offscreen:
    - shard-tglb:         NOTRUN -> [SKIP][72] ([i915#3359]) +6 similar issues
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-tglb5/igt@kms_cursor_crc@pipe-a-cursor-32x10-offscreen.html

  * igt@kms_cursor_crc@pipe-a-cursor-512x512-onscreen:
    - shard-tglb:         NOTRUN -> [SKIP][73] ([fdo#109279] / [i915#3359]) +4 similar issues
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-tglb1/igt@kms_cursor_crc@pipe-a-cursor-512x512-onscreen.html
    - shard-iclb:         NOTRUN -> [SKIP][74] ([fdo#109278] / [fdo#109279])
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-iclb7/igt@kms_cursor_crc@pipe-a-cursor-512x512-onscreen.html

  * igt@kms_cursor_crc@pipe-a-cursor-suspend:
    - shard-kbl:          [PASS][75] -> [DMESG-WARN][76] ([i915#180]) +1 similar issue
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11006/shard-kbl4/igt@kms_cursor_crc@pipe-a-cursor-suspend.html
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-kbl6/igt@kms_cursor_crc@pipe-a-cursor-suspend.html

  * igt@kms_cursor_crc@pipe-b-cursor-suspend:
    - shard-apl:          NOTRUN -> [DMESG-WARN][77] ([i915#180]) +1 similar issue
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-apl4/igt@kms_cursor_crc@pipe-b-cursor-suspend.html

  * igt@kms_cursor_crc@pipe-c-cursor-32x32-onscreen:
    - shard-tglb:         NOTRUN -> [SKIP][78] ([i915#3319]) +2 similar issues
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-tglb1/igt@kms_cursor_crc@pipe-c-cursor-32x32-onscreen.html

  * igt@kms_cursor_crc@pipe-d-cursor-64x21-sliding:
    - shard-iclb:         NOTRUN -> [SKIP][79] ([fdo#109278]) +28 similar issues
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-iclb4/igt@kms_cursor_crc@pipe-d-cursor-64x21-sliding.html

  * igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic:
    - shard-iclb:         NOTRUN -> [SKIP][80] ([fdo#109274] / [fdo#109278]) +4 similar issues
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-iclb3/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html

  * igt@kms_cursor_legacy@flip-vs-cursor-toggle:
    - shard-iclb:         [PASS][81] -> [FAIL][82] ([i915#2346])
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11006/shard-iclb5/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-iclb7/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
    - shard-tglb:         NOTRUN -> [SKIP][83] ([i915#4103]) +2 similar issues
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-tglb8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html

  * igt@kms_dsc@basic-dsc-enable:
    - shard-iclb:         NOTRUN -> [SKIP][84] ([i915#3840])
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-iclb5/igt@kms_dsc@basic-dsc-enable.html

  * igt@kms_fbcon_fbt@fbc-suspend:
    - shard-apl:          [PASS][85] -> [INCOMPLETE][86] ([i915#180])
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11006/shard-apl7/igt@kms_fbcon_fbt@fbc-suspend.html
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-apl2/igt@kms_fbcon_fbt@fbc-suspend.html

  * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a1-hdmi-a2:
    - shard-glk:          [PASS][87] -> [FAIL][88] ([i915#79])
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11006/shard-glk2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a1-hdmi-a2.html
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-glk8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a1-hdmi-a2.html

  * igt@kms_flip@2x-flip-vs-wf_vblank:
    - shard-iclb:         NOTRUN -> [SKIP][89] ([fdo#109274]) +2 similar issues
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-iclb8/igt@kms_flip@2x-flip-vs-wf_vblank.html

  * igt@kms_flip@flip-vs-suspend-interruptible@a-dp1:
    - shard-apl:          [PASS][90] -> [DMESG-WARN][91] ([i915#180]) +1 similar issue
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11006/shard-apl2/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-apl3/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile:
    - shard-iclb:         [PASS][92] -> [SKIP][93] ([i915#3701]) +2 similar issues
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11006/shard-iclb7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile.html
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-iclb2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render:
    - shard-iclb:         NOTRUN -> [SKIP][94] ([fdo#109280]) +16 similar issues
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-iclb5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move:
    - shard-tglb:         NOTRUN -> [SKIP][95] ([fdo#111825]) +36 similar issues
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-tglb5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-cpu:
    - shard-kbl:          NOTRUN -> [SKIP][96] ([fdo#109271]) +176 similar issues
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-kbl4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-cpu.html

  * igt@kms_hdr@bpc-switch-dpms:
    - shard-kbl:          NOTRUN -> [FAIL][97] ([i915#1188])
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-kbl3/igt@kms_hdr@bpc-switch-dpms.html

  * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
    - shard-tglb:         NOTRUN -> [SKIP][98] ([i915#1839])
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-tglb6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html

  * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-b:
    - shard-kbl:          NOTRUN -> [DMESG-WARN][99] ([i915#180])
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-kbl1/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-b.html

  * igt@kms_plane_alpha_blend@pipe-c-alpha-basic:
    - shard-kbl:          NOTRUN -> [FAIL][100] ([fdo#108145] / [i915#265])
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-kbl4/igt@kms_plane_alpha_blend@pipe-c-alpha-basic.html
    - shard-glk:          NOTRUN -> [FAIL][101] ([fdo#108145] / [i915#265])
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-glk8/igt@kms_plane_alpha_blend@pipe-c-alpha-basic.html

  * igt@kms_plane_alpha_blend@pipe-c-alpha-transparent-fb:
    - shard-kbl:          NOTRUN -> [FAIL][102] ([i915#265])
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-kbl2/igt@kms_plane_alpha_blend@pipe-c-alpha-transparent-fb.html

  * igt@kms_plane_lowres@pipe-a-tiling-y:
    - shard-iclb:         NOTRUN -> [SKIP][103] ([i915#3536]) +1 similar issue
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-iclb2/igt@kms_plane_lowres@pipe-a-tiling-y.html

  * igt@kms_plane_lowres@pipe-d-tiling-x:
    - shard-tglb:         NOTRUN -> [SKIP][104] ([i915#3536]) +2 similar issues
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-tglb5/igt@kms_plane_lowres@pipe-d-tiling-x.html

  * igt@kms_plane_lowres@pipe-d-tiling-yf:
    - shard-tglb:         NOTRUN -> [SKIP][105] ([fdo#111615] / [fdo#112054])
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-tglb3/igt@kms_plane_lowres@pipe-d-tiling-yf.html

  * igt@kms_psr2_sf@cursor-plane-update-sf:
    - shard-kbl:          NOTRUN -> [SKIP][106] ([fdo#109271] / [i915#658])
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-kbl2/igt@kms_psr2_sf@cursor-plane-update-sf.html

  * igt@kms_psr2_sf@overlay-plane-update-continuous-sf:
    - shard-apl:          NOTRUN -> [SKIP][107] ([fdo#109271] / [i915#658])
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-apl2/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html

  * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area:
    - shard-tglb:         NOTRUN -> [SKIP][108] ([i915#2920])
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-tglb5/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html

  * igt@kms_psr2_sf@plane-move-sf-dmg-area:
    - shard-iclb:         NOTRUN -> [SKIP][109] ([fdo#111068] / [i915#658])
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-iclb5/igt@kms_psr2_sf@plane-move-sf-dmg-area.html

  * igt@kms_psr@psr2_cursor_mmap_gtt:
    - shard-tglb:         NOTRUN -> [FAIL][110] ([i915#132] / [i915#3467])
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-tglb2/igt@kms_psr@psr2_cursor_mmap_gtt.html

  * igt@kms_psr@psr2_primary_blt:
    - shard-iclb:         [PASS][111] -> [SKIP][112] ([fdo#109441])
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11006/shard-iclb2/igt@kms_psr@psr2_primary_blt.html
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-iclb4/igt@kms_psr@psr2_primary_blt.html

  * igt@kms_setmode@basic:
    - shard-glk:          [PASS][113] -> [FAIL][114] ([i915#31])
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11006/shard-glk3/igt@kms_setmode@basic.html
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-glk9/igt@kms_setmode@basic.html

  * igt@kms_sysfs_edid_timing:
    - shard-apl:          NOTRUN -> [FAIL][115] ([IGT#2])
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-apl4/igt@kms_sysfs_edid_timing.html
    - shard-kbl:          NOTRUN -> [FAIL][116] ([IGT#2])
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-kbl6/igt@kms_sysfs_edid_timing.html

  * igt@kms_vblank@pipe-d-query-forked-hang:
    - shard-snb:          NOTRUN -> [SKIP][117] ([fdo#109271]) +145 similar issues
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-snb5/igt@kms_vblank@pipe-d-query-forked-hang.html

  * igt@kms_writeback@writeback-invalid-parameters:
    - shard-tglb:         NOTRUN -> [SKIP][118] ([i915#2437])
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-tglb6/igt@kms_writeback@writeback-invalid-parameters.html
    - shard-kbl:          NOTRUN -> [SKIP][119] ([fdo#109271] / [i915#2437])
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-kbl4/igt@kms_writeback@writeback-invalid-parameters.html
    - shard-apl:          NOTRUN -> [SKIP][120] ([fdo#109271] / [i915#2437])
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-apl3/igt@kms_writeback@writeback-invalid-parameters.html
    - shard-glk:          NOTRUN -> [SKIP][121] ([fdo#109271] / [i915#2437])
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-glk7/igt@kms_writeback@writeback-invalid-parameters.html
    - shard-iclb:         NOTRUN -> [SKIP][122] ([i915#2437])
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-iclb6/igt@kms_writeback@writeback-invalid-parameters.html

  * igt@nouveau_crc@pipe-a-source-outp-inactive:
    - shard-iclb:         NOTRUN -> [SKIP][123] ([i915#2530])
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-iclb2/igt@nouveau_crc@pipe-a-source-outp-inactive.html
    - shard-tglb:         NOTRUN -> [SKIP][124] ([i915#2530])
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-tglb6/igt@nouveau_crc@pipe-a-source-outp-inactive.html

  * igt@nouveau_crc@pipe-b-ctx-flip-skip-current-frame:
    - shard-apl:          NOTRUN -> [SKIP][125] ([fdo#109271]) +107 similar issues
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-apl1/igt@nouveau_crc@pipe-b-ctx-flip-skip-current-frame.html

  * igt@perf@polling-parameterized:
    - shard-iclb:         [PASS][126] -> [FAIL][127] ([i915#1542])
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11006/shard-iclb5/igt@perf@polling-parameterized.html
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-iclb6/igt@perf@polling-parameterized.html

  * igt@prime_nv_pcopy@test1_macro:
    - shard-tglb:         NOTRUN -> [SKIP][128] ([fdo#109291]) +4 similar issues
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-tglb1/igt@prime_nv_pcopy@test1_macro.html

  * igt@prime_nv_test@nv_i915_sharing:
    - shard-iclb:         NOTRUN -> [SKIP][129] ([fdo#109291]) +3 similar issues
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-iclb3/igt@prime_nv_test@nv_i915_sharing.html

  * igt@prime_vgem@basic-userptr:
    - shard-tglb:         NOTRUN -> [SKIP][130] ([i915#3301])
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/shard-tglb5/igt@prime_vgem@basic-userptr.html

  * igt@sysfs_clients@fair-0:
    - shard-tglb:         NOTRUN -> [SKIP][131] ([i915#2994]) +2 similar issues
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/sha

== Logs ==

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

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

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

* Re: [igt-dev] ✗ Fi.CI.IGT: failure for tests/i915/gem_exec_suspend: Add support for local memory (rev4)
  2021-12-16 12:10   ` Zbigniew Kempczyński
@ 2021-12-16 19:58     ` Vudum, Lakshminarayana
  2021-12-17  4:18       ` Zbigniew Kempczyński
  0 siblings, 1 reply; 10+ messages in thread
From: Vudum, Lakshminarayana @ 2021-12-16 19:58 UTC (permalink / raw)
  To: Kempczynski, Zbigniew, igt-dev; +Cc: Ch, Sai Gowtham

Regression is related to https://gitlab.freedesktop.org/drm/intel/-/issues/4697
igt@kms_atomic_transition@modeset-transition(-nonblocking-fencing)?@1x-outputs - incomplete - No warnings/errors

Thanks,
Lakshmi.
-----Original Message-----
From: Kempczynski, Zbigniew <zbigniew.kempczynski@intel.com> 
Sent: Thursday, December 16, 2021 4:11 AM
To: igt-dev@lists.freedesktop.org
Cc: Ch, Sai Gowtham <sai.gowtham.ch@intel.com>; Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com>
Subject: Re: [igt-dev] ✗ Fi.CI.IGT: failure for tests/i915/gem_exec_suspend: Add support for local memory (rev4)

On Thu, Dec 16, 2021 at 08:03:53AM +0000, Patchwork wrote:
>    Patch Details
> 
>    Series:  tests/i915/gem_exec_suspend: Add support for local memory (rev4) 
>    URL:     https://patchwork.freedesktop.org/series/95706/                  
>    State:   failure                                                          
>    Details: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/index.html   
> 
>          CI Bug Log - changes from CI_DRM_11006_full -> IGTPW_6499_full
> 
> Summary
> 
>    FAILURE
> 
>    Serious unknown changes coming with IGTPW_6499_full absolutely need to be
>    verified manually.
> 
>    If you think the reported changes have nothing to do with the changes
>    introduced in IGTPW_6499_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_6499/index.html
> 
> Participating hosts (10 -> 7)
> 
>    Missing (3): pig-skl-6260u pig-glk-j5005 shard-rkl
> 
> Possible new issues
> 
>    Here are the unknown changes that may have been introduced in
>    IGTPW_6499_full:
> 
>   IGT changes
> 
>     Possible regressions
> 
>      * igt@kms_atomic_transition@modeset-transition-nonblocking-fencing@1x-outputs:
>           * shard-tglb: NOTRUN -> INCOMPLETE

Unrelated, change was in gem_exec_suspend test only.

--
Zbigniew
> 
> New tests
> 
>    New tests have been introduced between CI_DRM_11006_full and
>    IGTPW_6499_full:
> 
>   New IGT tests (4)
> 
>      * igt@gem_exec_suspend@basic-s3-devices@smem:
> 
>           * Statuses : 6 pass(s)
>           * Exec time: [6.45, 10.48] s
>      * igt@gem_exec_suspend@basic-s3@smem:
> 
>           * Statuses : 6 pass(s)
>           * Exec time: [2.50, 5.60] s
>      * igt@gem_exec_suspend@basic-s4-devices@smem:
> 
>           * Statuses : 4 pass(s)
>           * Exec time: [7.26, 10.73] s
>      * igt@gem_exec_suspend@basic@smem:
> 
>           * Statuses : 6 pass(s)
>           * Exec time: [0.22, 1.39] s
> 
> Known issues
> 
>    Here are the changes found in IGTPW_6499_full that come from known issues:
> 
>   IGT changes
> 
>     Issues hit
> 
>      * igt@feature_discovery@psr2:
> 
>           * shard-iclb: NOTRUN -> SKIP ([i915#658])
>      * igt@gem_ctx_persistence@legacy-engines-queued:
> 
>           * shard-snb: NOTRUN -> SKIP ([fdo#109271] / [i915#1099]) +2 similar
>             issues
>      * igt@gem_ctx_sseu@engines:
> 
>           * shard-tglb: NOTRUN -> SKIP ([i915#280])
>      * igt@gem_eio@unwedge-stress:
> 
>           * shard-tglb: NOTRUN -> TIMEOUT ([i915#3063] / [i915#3648])
> 
>           * shard-snb: NOTRUN -> FAIL ([i915#3354])
> 
>      * igt@gem_exec_balancer@parallel-contexts:
> 
>           * shard-tglb: NOTRUN -> SKIP ([i915#4525]) +3 similar issues
>      * igt@gem_exec_balancer@parallel-out-fence:
> 
>           * shard-iclb: NOTRUN -> SKIP ([i915#4525]) +2 similar issues
>      * igt@gem_exec_capture@pi@vcs0:
> 
>           * shard-iclb: PASS -> INCOMPLETE ([i915#3371])
>      * igt@gem_exec_fair@basic-flow@rcs0:
> 
>           * shard-tglb: PASS -> FAIL ([i915#2842]) +2 similar issues
>      * igt@gem_exec_fair@basic-none-vip@rcs0:
> 
>           * shard-tglb: NOTRUN -> FAIL ([i915#2842]) +1 similar issue
>      * igt@gem_exec_fair@basic-none@rcs0:
> 
>           * shard-kbl: PASS -> FAIL ([i915#2842]) +1 similar issue
>      * igt@gem_exec_fair@basic-pace-share@rcs0:
> 
>           * shard-glk: PASS -> FAIL ([i915#2842])
>      * igt@gem_exec_fair@basic-pace-solo@rcs0:
> 
>           * shard-apl: NOTRUN -> FAIL ([i915#2842])
>      * igt@gem_exec_fair@basic-pace@vcs1:
> 
>           * shard-iclb: NOTRUN -> FAIL ([i915#2842]) +1 similar issue
>      * igt@gem_exec_params@no-vebox:
> 
>           * shard-iclb: NOTRUN -> SKIP ([fdo#109283])
> 
>           * shard-tglb: NOTRUN -> SKIP ([fdo#109283])
> 
>      * igt@gem_exec_params@secure-non-root:
> 
>           * shard-tglb: NOTRUN -> SKIP ([fdo#112283])
> 
>           * shard-iclb: NOTRUN -> SKIP ([fdo#112283])
> 
>      * igt@gem_exec_whisper@basic-fds-forked-all:
> 
>           * shard-glk: PASS -> DMESG-WARN ([i915#118]) +1 similar issue
>      * igt@gem_lmem_swapping@heavy-verify-multi:
> 
>           * shard-kbl: NOTRUN -> SKIP ([fdo#109271] / [i915#4613]) +1 similar
>             issue
> 
>           * shard-apl: NOTRUN -> SKIP ([fdo#109271] / [i915#4613])
> 
>      * igt@gem_lmem_swapping@parallel-random-verify:
> 
>           * shard-tglb: NOTRUN -> SKIP ([i915#4613])
>      * igt@gem_pxp@create-protected-buffer:
> 
>           * shard-iclb: NOTRUN -> SKIP ([i915#4270]) +3 similar issues
>      * igt@gem_pxp@protected-encrypted-src-copy-not-readible:
> 
>           * shard-tglb: NOTRUN -> SKIP ([i915#4270]) +3 similar issues
>      * igt@gem_softpin@evict-snoop:
> 
>           * shard-tglb: NOTRUN -> SKIP ([fdo#109312])
>      * igt@gem_userptr_blits@dmabuf-sync:
> 
>           * shard-apl: NOTRUN -> SKIP ([fdo#109271] / [i915#3323])
>      * igt@gem_userptr_blits@dmabuf-unsync:
> 
>           * shard-tglb: NOTRUN -> SKIP ([i915#3297])
> 
>           * shard-iclb: NOTRUN -> SKIP ([i915#3297])
> 
>      * igt@gen7_exec_parse@basic-allowed:
> 
>           * shard-tglb: NOTRUN -> SKIP ([fdo#109289]) +2 similar issues
>      * igt@gen7_exec_parse@bitmasks:
> 
>           * shard-iclb: NOTRUN -> SKIP ([fdo#109289]) +2 similar issues
>      * igt@gen9_exec_parse@allowed-all:
> 
>           * shard-iclb: NOTRUN -> SKIP ([i915#2856])
> 
>           * shard-tglb: NOTRUN -> SKIP ([i915#2856])
> 
>           * shard-glk: NOTRUN -> DMESG-WARN ([i915#1436] / [i915#716])
> 
>      * igt@i915_pm_backlight@bad-brightness:
> 
>           * shard-glk: NOTRUN -> SKIP ([fdo#109271]) +69 similar issues
>      * igt@i915_pm_dc@dc9-dpms:
> 
>           * shard-apl: PASS -> SKIP ([fdo#109271])
>      * igt@i915_pm_rpm@modeset-non-lpsp-stress:
> 
>           * shard-tglb: NOTRUN -> SKIP ([fdo#111644] / [i915#1397] /
>             [i915#2411])
> 
>           * shard-iclb: NOTRUN -> SKIP ([fdo#110892])
> 
>      * igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
> 
>           * shard-iclb: NOTRUN -> SKIP ([i915#1769])
> 
>           * shard-tglb: NOTRUN -> SKIP ([i915#1769])
> 
>      * igt@kms_big_fb@linear-32bpp-rotate-0:
> 
>           * shard-glk: NOTRUN -> DMESG-WARN ([i915#118])
>      * igt@kms_big_fb@x-tiled-64bpp-rotate-270:
> 
>           * shard-iclb: NOTRUN -> SKIP ([fdo#110725] / [fdo#111614]) +1
>             similar issue
>      * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip:
> 
>           * shard-apl: NOTRUN -> SKIP ([fdo#109271] / [i915#3777])
>      * igt@kms_big_fb@y-tiled-64bpp-rotate-270:
> 
>           * shard-tglb: NOTRUN -> SKIP ([fdo#111614]) +1 similar issue
>      * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip:
> 
>           * shard-kbl: NOTRUN -> SKIP ([fdo#109271] / [i915#3777]) +2 similar
>             issues
>      * igt@kms_big_fb@yf-tiled-64bpp-rotate-270:
> 
>           * shard-tglb: NOTRUN -> SKIP ([fdo#111615]) +1 similar issue
> 
>           * shard-iclb: NOTRUN -> SKIP ([fdo#110723])
> 
>      * igt@kms_big_joiner@basic:
> 
>           * shard-tglb: NOTRUN -> SKIP ([i915#2705])
> 
>           * shard-iclb: NOTRUN -> SKIP ([i915#2705])
> 
>      * igt@kms_ccs@pipe-a-bad-aux-stride-yf_tiled_ccs:
> 
>           * shard-tglb: NOTRUN -> SKIP ([fdo#111615] / [i915#3689]) +1
>             similar issue
>      * igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_rc_ccs_cc:
> 
>           * shard-kbl: NOTRUN -> SKIP ([fdo#109271] / [i915#3886]) +4 similar
>             issues
>      * igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_mc_ccs:
> 
>           * shard-tglb: NOTRUN -> SKIP ([i915#3689] / [i915#3886]) +2 similar
>             issues
>      * igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_mc_ccs:
> 
>           * shard-apl: NOTRUN -> SKIP ([fdo#109271] / [i915#3886]) +4 similar
>             issues
> 
>           * shard-glk: NOTRUN -> SKIP ([fdo#109271] / [i915#3886]) +2 similar
>             issues
> 
>      * igt@kms_ccs@pipe-c-crc-primary-basic-y_tiled_gen12_mc_ccs:
> 
>           * shard-iclb: NOTRUN -> SKIP ([fdo#109278] / [i915#3886]) +3
>             similar issues
>      * igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_ccs:
> 
>           * shard-tglb: NOTRUN -> SKIP ([i915#3689]) +8 similar issues
>      * igt@kms_chamelium@dp-edid-change-during-suspend:
> 
>           * shard-apl: NOTRUN -> SKIP ([fdo#109271] / [fdo#111827]) +10
>             similar issues
>      * igt@kms_chamelium@hdmi-crc-multiple:
> 
>           * shard-snb: NOTRUN -> SKIP ([fdo#109271] / [fdo#111827]) +8
>             similar issues
>      * igt@kms_color@pipe-d-ctm-red-to-blue:
> 
>           * shard-iclb: NOTRUN -> SKIP ([fdo#109278] / [i915#1149])
>      * igt@kms_color_chamelium@pipe-a-degamma:
> 
>           * shard-kbl: NOTRUN -> SKIP ([fdo#109271] / [fdo#111827]) +17
>             similar issues
>      * igt@kms_color_chamelium@pipe-b-ctm-limited-range:
> 
>           * shard-tglb: NOTRUN -> SKIP ([fdo#109284] / [fdo#111827]) +13
>             similar issues
>      * igt@kms_color_chamelium@pipe-c-ctm-0-5:
> 
>           * shard-iclb: NOTRUN -> SKIP ([fdo#109284] / [fdo#111827]) +6
>             similar issues
>      * igt@kms_color_chamelium@pipe-d-degamma:
> 
>           * shard-glk: NOTRUN -> SKIP ([fdo#109271] / [fdo#111827]) +6
>             similar issues
> 
>           * shard-iclb: NOTRUN -> SKIP ([fdo#109278] / [fdo#109284] /
>             [fdo#111827])
> 
>      * igt@kms_content_protection@mei_interface:
> 
>           * shard-tglb: NOTRUN -> SKIP ([fdo#111828])
>      * igt@kms_cursor_crc@pipe-a-cursor-32x10-offscreen:
> 
>           * shard-tglb: NOTRUN -> SKIP ([i915#3359]) +6 similar issues
>      * igt@kms_cursor_crc@pipe-a-cursor-512x512-onscreen:
> 
>           * shard-tglb: NOTRUN -> SKIP ([fdo#109279] / [i915#3359]) +4
>             similar issues
> 
>           * shard-iclb: NOTRUN -> SKIP ([fdo#109278] / [fdo#109279])
> 
>      * igt@kms_cursor_crc@pipe-a-cursor-suspend:
> 
>           * shard-kbl: PASS -> DMESG-WARN ([i915#180]) +1 similar issue
>      * igt@kms_cursor_crc@pipe-b-cursor-suspend:
> 
>           * shard-apl: NOTRUN -> DMESG-WARN ([i915#180]) +1 similar issue
>      * igt@kms_cursor_crc@pipe-c-cursor-32x32-onscreen:
> 
>           * shard-tglb: NOTRUN -> SKIP ([i915#3319]) +2 similar issues
>      * igt@kms_cursor_crc@pipe-d-cursor-64x21-sliding:
> 
>           * shard-iclb: NOTRUN -> SKIP ([fdo#109278]) +28 similar issues
>      * igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic:
> 
>           * shard-iclb: NOTRUN -> SKIP ([fdo#109274] / [fdo#109278]) +4
>             similar issues
>      * igt@kms_cursor_legacy@flip-vs-cursor-toggle:
> 
>           * shard-iclb: PASS -> FAIL ([i915#2346])
>      * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
> 
>           * shard-tglb: NOTRUN -> SKIP ([i915#4103]) +2 similar issues
>      * igt@kms_dsc@basic-dsc-enable:
> 
>           * shard-iclb: NOTRUN -> SKIP ([i915#3840])
>      * igt@kms_fbcon_fbt@fbc-suspend:
> 
>           * shard-apl: PASS -> INCOMPLETE ([i915#180])
>      * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a1-hdmi-a2:
> 
>           * shard-glk: PASS -> FAIL ([i915#79])
>      * igt@kms_flip@2x-flip-vs-wf_vblank:
> 
>           * shard-iclb: NOTRUN -> SKIP ([fdo#109274]) +2 similar issues
>      * igt@kms_flip@flip-vs-suspend-interruptible@a-dp1:
> 
>           * shard-apl: PASS -> DMESG-WARN ([i915#180]) +1 similar issue
>      * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile:
> 
>           * shard-iclb: PASS -> SKIP ([i915#3701]) +2 similar issues
>      * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render:
> 
>           * shard-iclb: NOTRUN -> SKIP ([fdo#109280]) +16 similar issues
>      * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move:
> 
>           * shard-tglb: NOTRUN -> SKIP ([fdo#111825]) +36 similar issues
>      * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-cpu:
> 
>           * shard-kbl: NOTRUN -> SKIP ([fdo#109271]) +176 similar issues
>      * igt@kms_hdr@bpc-switch-dpms:
> 
>           * shard-kbl: NOTRUN -> FAIL ([i915#1188])
>      * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
> 
>           * shard-tglb: NOTRUN -> SKIP ([i915#1839])
>      * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-b:
> 
>           * shard-kbl: NOTRUN -> DMESG-WARN ([i915#180])
>      * igt@kms_plane_alpha_blend@pipe-c-alpha-basic:
> 
>           * shard-kbl: NOTRUN -> FAIL ([fdo#108145] / [i915#265])
> 
>           * shard-glk: NOTRUN -> FAIL ([fdo#108145] / [i915#265])
> 
>      * igt@kms_plane_alpha_blend@pipe-c-alpha-transparent-fb:
> 
>           * shard-kbl: NOTRUN -> FAIL ([i915#265])
>      * igt@kms_plane_lowres@pipe-a-tiling-y:
> 
>           * shard-iclb: NOTRUN -> SKIP ([i915#3536]) +1 similar issue
>      * igt@kms_plane_lowres@pipe-d-tiling-x:
> 
>           * shard-tglb: NOTRUN -> SKIP ([i915#3536]) +2 similar issues
>      * igt@kms_plane_lowres@pipe-d-tiling-yf:
> 
>           * shard-tglb: NOTRUN -> SKIP ([fdo#111615] / [fdo#112054])
>      * igt@kms_psr2_sf@cursor-plane-update-sf:
> 
>           * shard-kbl: NOTRUN -> SKIP ([fdo#109271] / [i915#658])
>      * igt@kms_psr2_sf@overlay-plane-update-continuous-sf:
> 
>           * shard-apl: NOTRUN -> SKIP ([fdo#109271] / [i915#658])
>      * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area:
> 
>           * shard-tglb: NOTRUN -> SKIP ([i915#2920])
>      * igt@kms_psr2_sf@plane-move-sf-dmg-area:
> 
>           * shard-iclb: NOTRUN -> SKIP ([fdo#111068] / [i915#658])
>      * igt@kms_psr@psr2_cursor_mmap_gtt:
> 
>           * shard-tglb: NOTRUN -> FAIL ([i915#132] / [i915#3467])
>      * igt@kms_psr@psr2_primary_blt:
> 
>           * shard-iclb: PASS -> SKIP ([fdo#109441])
>      * igt@kms_setmode@basic:
> 
>           * shard-glk: PASS -> FAIL ([i915#31])
>      * igt@kms_sysfs_edid_timing:
> 
>           * shard-apl: NOTRUN -> FAIL ([IGT#2])
> 
>           * shard-kbl: NOTRUN -> FAIL ([IGT#2])
> 
>      * igt@kms_vblank@pipe-d-query-forked-hang:
> 
>           * shard-snb: NOTRUN -> SKIP ([fdo#109271]) +145 similar issues
>      * igt@kms_writeback@writeback-invalid-parameters:
> 
>           * shard-tglb: NOTRUN -> SKIP ([i915#2437])
> 
>           * shard-kbl: NOTRUN -> SKIP ([fdo#109271] / [i915#2437])
> 
>           * shard-apl: NOTRUN -> SKIP ([fdo#109271] / [i915#2437])
> 
>           * shard-glk: NOTRUN -> SKIP ([fdo#109271] / [i915#2437])
> 
>           * shard-iclb: NOTRUN -> SKIP ([i915#2437])
> 
>      * igt@nouveau_crc@pipe-a-source-outp-inactive:
> 
>           * shard-iclb: NOTRUN -> SKIP ([i915#2530])
> 
>           * shard-tglb: NOTRUN -> SKIP ([i915#2530])
> 
>      * igt@nouveau_crc@pipe-b-ctx-flip-skip-current-frame:
> 
>           * shard-apl: NOTRUN -> SKIP ([fdo#109271]) +107 similar issues
>      * igt@perf@polling-parameterized:
> 
>           * shard-iclb: PASS -> FAIL ([i915#1542])
>      * igt@prime_nv_pcopy@test1_macro:
> 
>           * shard-tglb: NOTRUN -> SKIP ([fdo#109291]) +4 similar issues
>      * igt@prime_nv_test@nv_i915_sharing:
> 
>           * shard-iclb: NOTRUN -> SKIP ([fdo#109291]) +3 similar issues

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

* Re: [igt-dev] ✗ Fi.CI.IGT: failure for tests/i915/gem_exec_suspend: Add support for local memory (rev4)
  2021-12-16 19:58     ` Vudum, Lakshminarayana
@ 2021-12-17  4:18       ` Zbigniew Kempczyński
  2021-12-17  5:55         ` Vudum, Lakshminarayana
  0 siblings, 1 reply; 10+ messages in thread
From: Zbigniew Kempczyński @ 2021-12-17  4:18 UTC (permalink / raw)
  To: Vudum, Lakshminarayana; +Cc: igt-dev, Ch, Sai Gowtham

On Thu, Dec 16, 2021 at 08:58:22PM +0100, Vudum, Lakshminarayana wrote:
> Regression is related to https://gitlab.freedesktop.org/drm/intel/-/issues/4697
> igt@kms_atomic_transition@modeset-transition(-nonblocking-fencing)?@1x-outputs - incomplete - No warnings/errors

Could you elaborate? There's kms_atomic_transition issue, not gem_exec_suspend
(unless it was run before and interferes).

--
Zbigniew

> 
> Thanks,
> Lakshmi.
> -----Original Message-----
> From: Kempczynski, Zbigniew <zbigniew.kempczynski@intel.com> 
> Sent: Thursday, December 16, 2021 4:11 AM
> To: igt-dev@lists.freedesktop.org
> Cc: Ch, Sai Gowtham <sai.gowtham.ch@intel.com>; Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com>
> Subject: Re: [igt-dev] ✗ Fi.CI.IGT: failure for tests/i915/gem_exec_suspend: Add support for local memory (rev4)
> 
> On Thu, Dec 16, 2021 at 08:03:53AM +0000, Patchwork wrote:
> >    Patch Details
> > 
> >    Series:  tests/i915/gem_exec_suspend: Add support for local memory (rev4) 
> >    URL:     https://patchwork.freedesktop.org/series/95706/                  
> >    State:   failure                                                          
> >    Details: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/index.html   
> > 
> >          CI Bug Log - changes from CI_DRM_11006_full -> IGTPW_6499_full
> > 
> > Summary
> > 
> >    FAILURE
> > 
> >    Serious unknown changes coming with IGTPW_6499_full absolutely need to be
> >    verified manually.
> > 
> >    If you think the reported changes have nothing to do with the changes
> >    introduced in IGTPW_6499_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_6499/index.html
> > 
> > Participating hosts (10 -> 7)
> > 
> >    Missing (3): pig-skl-6260u pig-glk-j5005 shard-rkl
> > 
> > Possible new issues
> > 
> >    Here are the unknown changes that may have been introduced in
> >    IGTPW_6499_full:
> > 
> >   IGT changes
> > 
> >     Possible regressions
> > 
> >      * igt@kms_atomic_transition@modeset-transition-nonblocking-fencing@1x-outputs:
> >           * shard-tglb: NOTRUN -> INCOMPLETE
> 
> Unrelated, change was in gem_exec_suspend test only.
> 
> --
> Zbigniew
> > 
> > New tests
> > 
> >    New tests have been introduced between CI_DRM_11006_full and
> >    IGTPW_6499_full:
> > 
> >   New IGT tests (4)
> > 
> >      * igt@gem_exec_suspend@basic-s3-devices@smem:
> > 
> >           * Statuses : 6 pass(s)
> >           * Exec time: [6.45, 10.48] s
> >      * igt@gem_exec_suspend@basic-s3@smem:
> > 
> >           * Statuses : 6 pass(s)
> >           * Exec time: [2.50, 5.60] s
> >      * igt@gem_exec_suspend@basic-s4-devices@smem:
> > 
> >           * Statuses : 4 pass(s)
> >           * Exec time: [7.26, 10.73] s
> >      * igt@gem_exec_suspend@basic@smem:
> > 
> >           * Statuses : 6 pass(s)
> >           * Exec time: [0.22, 1.39] s
> > 
> > Known issues
> > 
> >    Here are the changes found in IGTPW_6499_full that come from known issues:
> > 
> >   IGT changes
> > 
> >     Issues hit
> > 
> >      * igt@feature_discovery@psr2:
> > 
> >           * shard-iclb: NOTRUN -> SKIP ([i915#658])
> >      * igt@gem_ctx_persistence@legacy-engines-queued:
> > 
> >           * shard-snb: NOTRUN -> SKIP ([fdo#109271] / [i915#1099]) +2 similar
> >             issues
> >      * igt@gem_ctx_sseu@engines:
> > 
> >           * shard-tglb: NOTRUN -> SKIP ([i915#280])
> >      * igt@gem_eio@unwedge-stress:
> > 
> >           * shard-tglb: NOTRUN -> TIMEOUT ([i915#3063] / [i915#3648])
> > 
> >           * shard-snb: NOTRUN -> FAIL ([i915#3354])
> > 
> >      * igt@gem_exec_balancer@parallel-contexts:
> > 
> >           * shard-tglb: NOTRUN -> SKIP ([i915#4525]) +3 similar issues
> >      * igt@gem_exec_balancer@parallel-out-fence:
> > 
> >           * shard-iclb: NOTRUN -> SKIP ([i915#4525]) +2 similar issues
> >      * igt@gem_exec_capture@pi@vcs0:
> > 
> >           * shard-iclb: PASS -> INCOMPLETE ([i915#3371])
> >      * igt@gem_exec_fair@basic-flow@rcs0:
> > 
> >           * shard-tglb: PASS -> FAIL ([i915#2842]) +2 similar issues
> >      * igt@gem_exec_fair@basic-none-vip@rcs0:
> > 
> >           * shard-tglb: NOTRUN -> FAIL ([i915#2842]) +1 similar issue
> >      * igt@gem_exec_fair@basic-none@rcs0:
> > 
> >           * shard-kbl: PASS -> FAIL ([i915#2842]) +1 similar issue
> >      * igt@gem_exec_fair@basic-pace-share@rcs0:
> > 
> >           * shard-glk: PASS -> FAIL ([i915#2842])
> >      * igt@gem_exec_fair@basic-pace-solo@rcs0:
> > 
> >           * shard-apl: NOTRUN -> FAIL ([i915#2842])
> >      * igt@gem_exec_fair@basic-pace@vcs1:
> > 
> >           * shard-iclb: NOTRUN -> FAIL ([i915#2842]) +1 similar issue
> >      * igt@gem_exec_params@no-vebox:
> > 
> >           * shard-iclb: NOTRUN -> SKIP ([fdo#109283])
> > 
> >           * shard-tglb: NOTRUN -> SKIP ([fdo#109283])
> > 
> >      * igt@gem_exec_params@secure-non-root:
> > 
> >           * shard-tglb: NOTRUN -> SKIP ([fdo#112283])
> > 
> >           * shard-iclb: NOTRUN -> SKIP ([fdo#112283])
> > 
> >      * igt@gem_exec_whisper@basic-fds-forked-all:
> > 
> >           * shard-glk: PASS -> DMESG-WARN ([i915#118]) +1 similar issue
> >      * igt@gem_lmem_swapping@heavy-verify-multi:
> > 
> >           * shard-kbl: NOTRUN -> SKIP ([fdo#109271] / [i915#4613]) +1 similar
> >             issue
> > 
> >           * shard-apl: NOTRUN -> SKIP ([fdo#109271] / [i915#4613])
> > 
> >      * igt@gem_lmem_swapping@parallel-random-verify:
> > 
> >           * shard-tglb: NOTRUN -> SKIP ([i915#4613])
> >      * igt@gem_pxp@create-protected-buffer:
> > 
> >           * shard-iclb: NOTRUN -> SKIP ([i915#4270]) +3 similar issues
> >      * igt@gem_pxp@protected-encrypted-src-copy-not-readible:
> > 
> >           * shard-tglb: NOTRUN -> SKIP ([i915#4270]) +3 similar issues
> >      * igt@gem_softpin@evict-snoop:
> > 
> >           * shard-tglb: NOTRUN -> SKIP ([fdo#109312])
> >      * igt@gem_userptr_blits@dmabuf-sync:
> > 
> >           * shard-apl: NOTRUN -> SKIP ([fdo#109271] / [i915#3323])
> >      * igt@gem_userptr_blits@dmabuf-unsync:
> > 
> >           * shard-tglb: NOTRUN -> SKIP ([i915#3297])
> > 
> >           * shard-iclb: NOTRUN -> SKIP ([i915#3297])
> > 
> >      * igt@gen7_exec_parse@basic-allowed:
> > 
> >           * shard-tglb: NOTRUN -> SKIP ([fdo#109289]) +2 similar issues
> >      * igt@gen7_exec_parse@bitmasks:
> > 
> >           * shard-iclb: NOTRUN -> SKIP ([fdo#109289]) +2 similar issues
> >      * igt@gen9_exec_parse@allowed-all:
> > 
> >           * shard-iclb: NOTRUN -> SKIP ([i915#2856])
> > 
> >           * shard-tglb: NOTRUN -> SKIP ([i915#2856])
> > 
> >           * shard-glk: NOTRUN -> DMESG-WARN ([i915#1436] / [i915#716])
> > 
> >      * igt@i915_pm_backlight@bad-brightness:
> > 
> >           * shard-glk: NOTRUN -> SKIP ([fdo#109271]) +69 similar issues
> >      * igt@i915_pm_dc@dc9-dpms:
> > 
> >           * shard-apl: PASS -> SKIP ([fdo#109271])
> >      * igt@i915_pm_rpm@modeset-non-lpsp-stress:
> > 
> >           * shard-tglb: NOTRUN -> SKIP ([fdo#111644] / [i915#1397] /
> >             [i915#2411])
> > 
> >           * shard-iclb: NOTRUN -> SKIP ([fdo#110892])
> > 
> >      * igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
> > 
> >           * shard-iclb: NOTRUN -> SKIP ([i915#1769])
> > 
> >           * shard-tglb: NOTRUN -> SKIP ([i915#1769])
> > 
> >      * igt@kms_big_fb@linear-32bpp-rotate-0:
> > 
> >           * shard-glk: NOTRUN -> DMESG-WARN ([i915#118])
> >      * igt@kms_big_fb@x-tiled-64bpp-rotate-270:
> > 
> >           * shard-iclb: NOTRUN -> SKIP ([fdo#110725] / [fdo#111614]) +1
> >             similar issue
> >      * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip:
> > 
> >           * shard-apl: NOTRUN -> SKIP ([fdo#109271] / [i915#3777])
> >      * igt@kms_big_fb@y-tiled-64bpp-rotate-270:
> > 
> >           * shard-tglb: NOTRUN -> SKIP ([fdo#111614]) +1 similar issue
> >      * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip:
> > 
> >           * shard-kbl: NOTRUN -> SKIP ([fdo#109271] / [i915#3777]) +2 similar
> >             issues
> >      * igt@kms_big_fb@yf-tiled-64bpp-rotate-270:
> > 
> >           * shard-tglb: NOTRUN -> SKIP ([fdo#111615]) +1 similar issue
> > 
> >           * shard-iclb: NOTRUN -> SKIP ([fdo#110723])
> > 
> >      * igt@kms_big_joiner@basic:
> > 
> >           * shard-tglb: NOTRUN -> SKIP ([i915#2705])
> > 
> >           * shard-iclb: NOTRUN -> SKIP ([i915#2705])
> > 
> >      * igt@kms_ccs@pipe-a-bad-aux-stride-yf_tiled_ccs:
> > 
> >           * shard-tglb: NOTRUN -> SKIP ([fdo#111615] / [i915#3689]) +1
> >             similar issue
> >      * igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_rc_ccs_cc:
> > 
> >           * shard-kbl: NOTRUN -> SKIP ([fdo#109271] / [i915#3886]) +4 similar
> >             issues
> >      * igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_mc_ccs:
> > 
> >           * shard-tglb: NOTRUN -> SKIP ([i915#3689] / [i915#3886]) +2 similar
> >             issues
> >      * igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_mc_ccs:
> > 
> >           * shard-apl: NOTRUN -> SKIP ([fdo#109271] / [i915#3886]) +4 similar
> >             issues
> > 
> >           * shard-glk: NOTRUN -> SKIP ([fdo#109271] / [i915#3886]) +2 similar
> >             issues
> > 
> >      * igt@kms_ccs@pipe-c-crc-primary-basic-y_tiled_gen12_mc_ccs:
> > 
> >           * shard-iclb: NOTRUN -> SKIP ([fdo#109278] / [i915#3886]) +3
> >             similar issues
> >      * igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_ccs:
> > 
> >           * shard-tglb: NOTRUN -> SKIP ([i915#3689]) +8 similar issues
> >      * igt@kms_chamelium@dp-edid-change-during-suspend:
> > 
> >           * shard-apl: NOTRUN -> SKIP ([fdo#109271] / [fdo#111827]) +10
> >             similar issues
> >      * igt@kms_chamelium@hdmi-crc-multiple:
> > 
> >           * shard-snb: NOTRUN -> SKIP ([fdo#109271] / [fdo#111827]) +8
> >             similar issues
> >      * igt@kms_color@pipe-d-ctm-red-to-blue:
> > 
> >           * shard-iclb: NOTRUN -> SKIP ([fdo#109278] / [i915#1149])
> >      * igt@kms_color_chamelium@pipe-a-degamma:
> > 
> >           * shard-kbl: NOTRUN -> SKIP ([fdo#109271] / [fdo#111827]) +17
> >             similar issues
> >      * igt@kms_color_chamelium@pipe-b-ctm-limited-range:
> > 
> >           * shard-tglb: NOTRUN -> SKIP ([fdo#109284] / [fdo#111827]) +13
> >             similar issues
> >      * igt@kms_color_chamelium@pipe-c-ctm-0-5:
> > 
> >           * shard-iclb: NOTRUN -> SKIP ([fdo#109284] / [fdo#111827]) +6
> >             similar issues
> >      * igt@kms_color_chamelium@pipe-d-degamma:
> > 
> >           * shard-glk: NOTRUN -> SKIP ([fdo#109271] / [fdo#111827]) +6
> >             similar issues
> > 
> >           * shard-iclb: NOTRUN -> SKIP ([fdo#109278] / [fdo#109284] /
> >             [fdo#111827])
> > 
> >      * igt@kms_content_protection@mei_interface:
> > 
> >           * shard-tglb: NOTRUN -> SKIP ([fdo#111828])
> >      * igt@kms_cursor_crc@pipe-a-cursor-32x10-offscreen:
> > 
> >           * shard-tglb: NOTRUN -> SKIP ([i915#3359]) +6 similar issues
> >      * igt@kms_cursor_crc@pipe-a-cursor-512x512-onscreen:
> > 
> >           * shard-tglb: NOTRUN -> SKIP ([fdo#109279] / [i915#3359]) +4
> >             similar issues
> > 
> >           * shard-iclb: NOTRUN -> SKIP ([fdo#109278] / [fdo#109279])
> > 
> >      * igt@kms_cursor_crc@pipe-a-cursor-suspend:
> > 
> >           * shard-kbl: PASS -> DMESG-WARN ([i915#180]) +1 similar issue
> >      * igt@kms_cursor_crc@pipe-b-cursor-suspend:
> > 
> >           * shard-apl: NOTRUN -> DMESG-WARN ([i915#180]) +1 similar issue
> >      * igt@kms_cursor_crc@pipe-c-cursor-32x32-onscreen:
> > 
> >           * shard-tglb: NOTRUN -> SKIP ([i915#3319]) +2 similar issues
> >      * igt@kms_cursor_crc@pipe-d-cursor-64x21-sliding:
> > 
> >           * shard-iclb: NOTRUN -> SKIP ([fdo#109278]) +28 similar issues
> >      * igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic:
> > 
> >           * shard-iclb: NOTRUN -> SKIP ([fdo#109274] / [fdo#109278]) +4
> >             similar issues
> >      * igt@kms_cursor_legacy@flip-vs-cursor-toggle:
> > 
> >           * shard-iclb: PASS -> FAIL ([i915#2346])
> >      * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
> > 
> >           * shard-tglb: NOTRUN -> SKIP ([i915#4103]) +2 similar issues
> >      * igt@kms_dsc@basic-dsc-enable:
> > 
> >           * shard-iclb: NOTRUN -> SKIP ([i915#3840])
> >      * igt@kms_fbcon_fbt@fbc-suspend:
> > 
> >           * shard-apl: PASS -> INCOMPLETE ([i915#180])
> >      * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a1-hdmi-a2:
> > 
> >           * shard-glk: PASS -> FAIL ([i915#79])
> >      * igt@kms_flip@2x-flip-vs-wf_vblank:
> > 
> >           * shard-iclb: NOTRUN -> SKIP ([fdo#109274]) +2 similar issues
> >      * igt@kms_flip@flip-vs-suspend-interruptible@a-dp1:
> > 
> >           * shard-apl: PASS -> DMESG-WARN ([i915#180]) +1 similar issue
> >      * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile:
> > 
> >           * shard-iclb: PASS -> SKIP ([i915#3701]) +2 similar issues
> >      * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render:
> > 
> >           * shard-iclb: NOTRUN -> SKIP ([fdo#109280]) +16 similar issues
> >      * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move:
> > 
> >           * shard-tglb: NOTRUN -> SKIP ([fdo#111825]) +36 similar issues
> >      * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-cpu:
> > 
> >           * shard-kbl: NOTRUN -> SKIP ([fdo#109271]) +176 similar issues
> >      * igt@kms_hdr@bpc-switch-dpms:
> > 
> >           * shard-kbl: NOTRUN -> FAIL ([i915#1188])
> >      * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
> > 
> >           * shard-tglb: NOTRUN -> SKIP ([i915#1839])
> >      * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-b:
> > 
> >           * shard-kbl: NOTRUN -> DMESG-WARN ([i915#180])
> >      * igt@kms_plane_alpha_blend@pipe-c-alpha-basic:
> > 
> >           * shard-kbl: NOTRUN -> FAIL ([fdo#108145] / [i915#265])
> > 
> >           * shard-glk: NOTRUN -> FAIL ([fdo#108145] / [i915#265])
> > 
> >      * igt@kms_plane_alpha_blend@pipe-c-alpha-transparent-fb:
> > 
> >           * shard-kbl: NOTRUN -> FAIL ([i915#265])
> >      * igt@kms_plane_lowres@pipe-a-tiling-y:
> > 
> >           * shard-iclb: NOTRUN -> SKIP ([i915#3536]) +1 similar issue
> >      * igt@kms_plane_lowres@pipe-d-tiling-x:
> > 
> >           * shard-tglb: NOTRUN -> SKIP ([i915#3536]) +2 similar issues
> >      * igt@kms_plane_lowres@pipe-d-tiling-yf:
> > 
> >           * shard-tglb: NOTRUN -> SKIP ([fdo#111615] / [fdo#112054])
> >      * igt@kms_psr2_sf@cursor-plane-update-sf:
> > 
> >           * shard-kbl: NOTRUN -> SKIP ([fdo#109271] / [i915#658])
> >      * igt@kms_psr2_sf@overlay-plane-update-continuous-sf:
> > 
> >           * shard-apl: NOTRUN -> SKIP ([fdo#109271] / [i915#658])
> >      * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area:
> > 
> >           * shard-tglb: NOTRUN -> SKIP ([i915#2920])
> >      * igt@kms_psr2_sf@plane-move-sf-dmg-area:
> > 
> >           * shard-iclb: NOTRUN -> SKIP ([fdo#111068] / [i915#658])
> >      * igt@kms_psr@psr2_cursor_mmap_gtt:
> > 
> >           * shard-tglb: NOTRUN -> FAIL ([i915#132] / [i915#3467])
> >      * igt@kms_psr@psr2_primary_blt:
> > 
> >           * shard-iclb: PASS -> SKIP ([fdo#109441])
> >      * igt@kms_setmode@basic:
> > 
> >           * shard-glk: PASS -> FAIL ([i915#31])
> >      * igt@kms_sysfs_edid_timing:
> > 
> >           * shard-apl: NOTRUN -> FAIL ([IGT#2])
> > 
> >           * shard-kbl: NOTRUN -> FAIL ([IGT#2])
> > 
> >      * igt@kms_vblank@pipe-d-query-forked-hang:
> > 
> >           * shard-snb: NOTRUN -> SKIP ([fdo#109271]) +145 similar issues
> >      * igt@kms_writeback@writeback-invalid-parameters:
> > 
> >           * shard-tglb: NOTRUN -> SKIP ([i915#2437])
> > 
> >           * shard-kbl: NOTRUN -> SKIP ([fdo#109271] / [i915#2437])
> > 
> >           * shard-apl: NOTRUN -> SKIP ([fdo#109271] / [i915#2437])
> > 
> >           * shard-glk: NOTRUN -> SKIP ([fdo#109271] / [i915#2437])
> > 
> >           * shard-iclb: NOTRUN -> SKIP ([i915#2437])
> > 
> >      * igt@nouveau_crc@pipe-a-source-outp-inactive:
> > 
> >           * shard-iclb: NOTRUN -> SKIP ([i915#2530])
> > 
> >           * shard-tglb: NOTRUN -> SKIP ([i915#2530])
> > 
> >      * igt@nouveau_crc@pipe-b-ctx-flip-skip-current-frame:
> > 
> >           * shard-apl: NOTRUN -> SKIP ([fdo#109271]) +107 similar issues
> >      * igt@perf@polling-parameterized:
> > 
> >           * shard-iclb: PASS -> FAIL ([i915#1542])
> >      * igt@prime_nv_pcopy@test1_macro:
> > 
> >           * shard-tglb: NOTRUN -> SKIP ([fdo#109291]) +4 similar issues
> >      * igt@prime_nv_test@nv_i915_sharing:
> > 
> >           * shard-iclb: NOTRUN -> SKIP ([fdo#109291]) +3 similar issues

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

* Re: [igt-dev] ✗ Fi.CI.IGT: failure for tests/i915/gem_exec_suspend: Add support for local memory (rev4)
  2021-12-17  4:18       ` Zbigniew Kempczyński
@ 2021-12-17  5:55         ` Vudum, Lakshminarayana
  2021-12-17  6:48           ` Petri Latvala
  0 siblings, 1 reply; 10+ messages in thread
From: Vudum, Lakshminarayana @ 2021-12-17  5:55 UTC (permalink / raw)
  To: Kempczynski, Zbigniew, Latvala, Petri; +Cc: igt-dev, Ch, Sai Gowtham



-----Original Message-----
From: Kempczynski, Zbigniew <zbigniew.kempczynski@intel.com> 
Sent: Thursday, December 16, 2021 8:18 PM
To: Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com>
Cc: igt-dev@lists.freedesktop.org; Ch, Sai Gowtham <sai.gowtham.ch@intel.com>
Subject: Re: [igt-dev] ✗ Fi.CI.IGT: failure for tests/i915/gem_exec_suspend: Add support for local memory (rev4)

On Thu, Dec 16, 2021 at 08:58:22PM +0100, Vudum, Lakshminarayana wrote:
> Regression is related to 
> https://gitlab.freedesktop.org/drm/intel/-/issues/4697
> igt@kms_atomic_transition@modeset-transition(-nonblocking-fencing)?@1x
> -outputs - incomplete - No warnings/errors

Could you elaborate? There's kms_atomic_transition issue, not gem_exec_suspend (unless it was run before and interferes).
>I reviewed rev 4 results https://patchwork.freedesktop.org/series/95706/#rev4 and addressed kms_atomic_transition result. I didn't see igt@gem_exec_suspend@basic-s0@smem failure.
Strange, although re-reporting shows success, I see igt@gem_exec_suspend@basic-s0@smem failure is under regression.
@Latvala, Petri Any idea why the results shows as success although there is a regression here https://patchwork.freedesktop.org/series/95706/#rev4 ?

Anyway, I see igt@gem_exec_suspend@basic-s0@smem test is not in CI bug log, so I cannot update the filter. But the issue is related to 
https://gitlab.freedesktop.org/drm/intel/-/issues/2539
igt@gem_exec_suspend@basic-s[03] - incomplete - PM: suspend entry (s2idle)

Lakshmi.

--
Zbigniew

> 
> Thanks,
> Lakshmi.
> -----Original Message-----
> From: Kempczynski, Zbigniew <zbigniew.kempczynski@intel.com>
> Sent: Thursday, December 16, 2021 4:11 AM
> To: igt-dev@lists.freedesktop.org
> Cc: Ch, Sai Gowtham <sai.gowtham.ch@intel.com>; Vudum, Lakshminarayana 
> <lakshminarayana.vudum@intel.com>
> Subject: Re: [igt-dev] ✗ Fi.CI.IGT: failure for 
> tests/i915/gem_exec_suspend: Add support for local memory (rev4)
> 
> On Thu, Dec 16, 2021 at 08:03:53AM +0000, Patchwork wrote:
> >    Patch Details
> > 
> >    Series:  tests/i915/gem_exec_suspend: Add support for local memory (rev4) 
> >    URL:     https://patchwork.freedesktop.org/series/95706/                  
> >    State:   failure                                                          
> >    Details: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/index.html   
> > 
> >          CI Bug Log - changes from CI_DRM_11006_full -> 
> > IGTPW_6499_full
> > 
> > Summary
> > 
> >    FAILURE
> > 
> >    Serious unknown changes coming with IGTPW_6499_full absolutely need to be
> >    verified manually.
> > 
> >    If you think the reported changes have nothing to do with the changes
> >    introduced in IGTPW_6499_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_6499/index.html
> > 
> > Participating hosts (10 -> 7)
> > 
> >    Missing (3): pig-skl-6260u pig-glk-j5005 shard-rkl
> > 
> > Possible new issues
> > 
> >    Here are the unknown changes that may have been introduced in
> >    IGTPW_6499_full:
> > 
> >   IGT changes
> > 
> >     Possible regressions
> > 
> >      * igt@kms_atomic_transition@modeset-transition-nonblocking-fencing@1x-outputs:
> >           * shard-tglb: NOTRUN -> INCOMPLETE
> 
> Unrelated, change was in gem_exec_suspend test only.
> 
> --
> Zbigniew
> > 
> > New tests
> > 
> >    New tests have been introduced between CI_DRM_11006_full and
> >    IGTPW_6499_full:
> > 
> >   New IGT tests (4)
> > 
> >      * igt@gem_exec_suspend@basic-s3-devices@smem:
> > 
> >           * Statuses : 6 pass(s)
> >           * Exec time: [6.45, 10.48] s
> >      * igt@gem_exec_suspend@basic-s3@smem:
> > 
> >           * Statuses : 6 pass(s)
> >           * Exec time: [2.50, 5.60] s
> >      * igt@gem_exec_suspend@basic-s4-devices@smem:
> > 
> >           * Statuses : 4 pass(s)
> >           * Exec time: [7.26, 10.73] s
> >      * igt@gem_exec_suspend@basic@smem:
> > 
> >           * Statuses : 6 pass(s)
> >           * Exec time: [0.22, 1.39] s
> > 
> > Known issues
> > 
> >    Here are the changes found in IGTPW_6499_full that come from known issues:
> > 
> >   IGT changes
> > 
> >     Issues hit
> > 
> >      * igt@feature_discovery@psr2:
> > 
> >           * shard-iclb: NOTRUN -> SKIP ([i915#658])
> >      * igt@gem_ctx_persistence@legacy-engines-queued:
> > 
> >           * shard-snb: NOTRUN -> SKIP ([fdo#109271] / [i915#1099]) +2 similar
> >             issues
> >      * igt@gem_ctx_sseu@engines:
> > 
> >           * shard-tglb: NOTRUN -> SKIP ([i915#280])
> >      * igt@gem_eio@unwedge-stress:
> > 
> >           * shard-tglb: NOTRUN -> TIMEOUT ([i915#3063] / 
> > [i915#3648])
> > 
> >           * shard-snb: NOTRUN -> FAIL ([i915#3354])
> > 
> >      * igt@gem_exec_balancer@parallel-contexts:
> > 
> >           * shard-tglb: NOTRUN -> SKIP ([i915#4525]) +3 similar issues
> >      * igt@gem_exec_balancer@parallel-out-fence:
> > 
> >           * shard-iclb: NOTRUN -> SKIP ([i915#4525]) +2 similar issues
> >      * igt@gem_exec_capture@pi@vcs0:
> > 
> >           * shard-iclb: PASS -> INCOMPLETE ([i915#3371])
> >      * igt@gem_exec_fair@basic-flow@rcs0:
> > 
> >           * shard-tglb: PASS -> FAIL ([i915#2842]) +2 similar issues
> >      * igt@gem_exec_fair@basic-none-vip@rcs0:
> > 
> >           * shard-tglb: NOTRUN -> FAIL ([i915#2842]) +1 similar issue
> >      * igt@gem_exec_fair@basic-none@rcs0:
> > 
> >           * shard-kbl: PASS -> FAIL ([i915#2842]) +1 similar issue
> >      * igt@gem_exec_fair@basic-pace-share@rcs0:
> > 
> >           * shard-glk: PASS -> FAIL ([i915#2842])
> >      * igt@gem_exec_fair@basic-pace-solo@rcs0:
> > 
> >           * shard-apl: NOTRUN -> FAIL ([i915#2842])
> >      * igt@gem_exec_fair@basic-pace@vcs1:
> > 
> >           * shard-iclb: NOTRUN -> FAIL ([i915#2842]) +1 similar issue
> >      * igt@gem_exec_params@no-vebox:
> > 
> >           * shard-iclb: NOTRUN -> SKIP ([fdo#109283])
> > 
> >           * shard-tglb: NOTRUN -> SKIP ([fdo#109283])
> > 
> >      * igt@gem_exec_params@secure-non-root:
> > 
> >           * shard-tglb: NOTRUN -> SKIP ([fdo#112283])
> > 
> >           * shard-iclb: NOTRUN -> SKIP ([fdo#112283])
> > 
> >      * igt@gem_exec_whisper@basic-fds-forked-all:
> > 
> >           * shard-glk: PASS -> DMESG-WARN ([i915#118]) +1 similar issue
> >      * igt@gem_lmem_swapping@heavy-verify-multi:
> > 
> >           * shard-kbl: NOTRUN -> SKIP ([fdo#109271] / [i915#4613]) +1 similar
> >             issue
> > 
> >           * shard-apl: NOTRUN -> SKIP ([fdo#109271] / [i915#4613])
> > 
> >      * igt@gem_lmem_swapping@parallel-random-verify:
> > 
> >           * shard-tglb: NOTRUN -> SKIP ([i915#4613])
> >      * igt@gem_pxp@create-protected-buffer:
> > 
> >           * shard-iclb: NOTRUN -> SKIP ([i915#4270]) +3 similar issues
> >      * igt@gem_pxp@protected-encrypted-src-copy-not-readible:
> > 
> >           * shard-tglb: NOTRUN -> SKIP ([i915#4270]) +3 similar issues
> >      * igt@gem_softpin@evict-snoop:
> > 
> >           * shard-tglb: NOTRUN -> SKIP ([fdo#109312])
> >      * igt@gem_userptr_blits@dmabuf-sync:
> > 
> >           * shard-apl: NOTRUN -> SKIP ([fdo#109271] / [i915#3323])
> >      * igt@gem_userptr_blits@dmabuf-unsync:
> > 
> >           * shard-tglb: NOTRUN -> SKIP ([i915#3297])
> > 
> >           * shard-iclb: NOTRUN -> SKIP ([i915#3297])
> > 
> >      * igt@gen7_exec_parse@basic-allowed:
> > 
> >           * shard-tglb: NOTRUN -> SKIP ([fdo#109289]) +2 similar issues
> >      * igt@gen7_exec_parse@bitmasks:
> > 
> >           * shard-iclb: NOTRUN -> SKIP ([fdo#109289]) +2 similar issues
> >      * igt@gen9_exec_parse@allowed-all:
> > 
> >           * shard-iclb: NOTRUN -> SKIP ([i915#2856])
> > 
> >           * shard-tglb: NOTRUN -> SKIP ([i915#2856])
> > 
> >           * shard-glk: NOTRUN -> DMESG-WARN ([i915#1436] / 
> > [i915#716])
> > 
> >      * igt@i915_pm_backlight@bad-brightness:
> > 
> >           * shard-glk: NOTRUN -> SKIP ([fdo#109271]) +69 similar issues
> >      * igt@i915_pm_dc@dc9-dpms:
> > 
> >           * shard-apl: PASS -> SKIP ([fdo#109271])
> >      * igt@i915_pm_rpm@modeset-non-lpsp-stress:
> > 
> >           * shard-tglb: NOTRUN -> SKIP ([fdo#111644] / [i915#1397] /
> >             [i915#2411])
> > 
> >           * shard-iclb: NOTRUN -> SKIP ([fdo#110892])
> > 
> >      * igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
> > 
> >           * shard-iclb: NOTRUN -> SKIP ([i915#1769])
> > 
> >           * shard-tglb: NOTRUN -> SKIP ([i915#1769])
> > 
> >      * igt@kms_big_fb@linear-32bpp-rotate-0:
> > 
> >           * shard-glk: NOTRUN -> DMESG-WARN ([i915#118])
> >      * igt@kms_big_fb@x-tiled-64bpp-rotate-270:
> > 
> >           * shard-iclb: NOTRUN -> SKIP ([fdo#110725] / [fdo#111614]) +1
> >             similar issue
> >      * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip:
> > 
> >           * shard-apl: NOTRUN -> SKIP ([fdo#109271] / [i915#3777])
> >      * igt@kms_big_fb@y-tiled-64bpp-rotate-270:
> > 
> >           * shard-tglb: NOTRUN -> SKIP ([fdo#111614]) +1 similar issue
> >      * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip:
> > 
> >           * shard-kbl: NOTRUN -> SKIP ([fdo#109271] / [i915#3777]) +2 similar
> >             issues
> >      * igt@kms_big_fb@yf-tiled-64bpp-rotate-270:
> > 
> >           * shard-tglb: NOTRUN -> SKIP ([fdo#111615]) +1 similar 
> > issue
> > 
> >           * shard-iclb: NOTRUN -> SKIP ([fdo#110723])
> > 
> >      * igt@kms_big_joiner@basic:
> > 
> >           * shard-tglb: NOTRUN -> SKIP ([i915#2705])
> > 
> >           * shard-iclb: NOTRUN -> SKIP ([i915#2705])
> > 
> >      * igt@kms_ccs@pipe-a-bad-aux-stride-yf_tiled_ccs:
> > 
> >           * shard-tglb: NOTRUN -> SKIP ([fdo#111615] / [i915#3689]) +1
> >             similar issue
> >      * igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_rc_ccs_cc:
> > 
> >           * shard-kbl: NOTRUN -> SKIP ([fdo#109271] / [i915#3886]) +4 similar
> >             issues
> >      * igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_mc_ccs:
> > 
> >           * shard-tglb: NOTRUN -> SKIP ([i915#3689] / [i915#3886]) +2 similar
> >             issues
> >      * igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_mc_ccs:
> > 
> >           * shard-apl: NOTRUN -> SKIP ([fdo#109271] / [i915#3886]) +4 similar
> >             issues
> > 
> >           * shard-glk: NOTRUN -> SKIP ([fdo#109271] / [i915#3886]) +2 similar
> >             issues
> > 
> >      * igt@kms_ccs@pipe-c-crc-primary-basic-y_tiled_gen12_mc_ccs:
> > 
> >           * shard-iclb: NOTRUN -> SKIP ([fdo#109278] / [i915#3886]) +3
> >             similar issues
> >      * igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_ccs:
> > 
> >           * shard-tglb: NOTRUN -> SKIP ([i915#3689]) +8 similar issues
> >      * igt@kms_chamelium@dp-edid-change-during-suspend:
> > 
> >           * shard-apl: NOTRUN -> SKIP ([fdo#109271] / [fdo#111827]) +10
> >             similar issues
> >      * igt@kms_chamelium@hdmi-crc-multiple:
> > 
> >           * shard-snb: NOTRUN -> SKIP ([fdo#109271] / [fdo#111827]) +8
> >             similar issues
> >      * igt@kms_color@pipe-d-ctm-red-to-blue:
> > 
> >           * shard-iclb: NOTRUN -> SKIP ([fdo#109278] / [i915#1149])
> >      * igt@kms_color_chamelium@pipe-a-degamma:
> > 
> >           * shard-kbl: NOTRUN -> SKIP ([fdo#109271] / [fdo#111827]) +17
> >             similar issues
> >      * igt@kms_color_chamelium@pipe-b-ctm-limited-range:
> > 
> >           * shard-tglb: NOTRUN -> SKIP ([fdo#109284] / [fdo#111827]) +13
> >             similar issues
> >      * igt@kms_color_chamelium@pipe-c-ctm-0-5:
> > 
> >           * shard-iclb: NOTRUN -> SKIP ([fdo#109284] / [fdo#111827]) +6
> >             similar issues
> >      * igt@kms_color_chamelium@pipe-d-degamma:
> > 
> >           * shard-glk: NOTRUN -> SKIP ([fdo#109271] / [fdo#111827]) +6
> >             similar issues
> > 
> >           * shard-iclb: NOTRUN -> SKIP ([fdo#109278] / [fdo#109284] /
> >             [fdo#111827])
> > 
> >      * igt@kms_content_protection@mei_interface:
> > 
> >           * shard-tglb: NOTRUN -> SKIP ([fdo#111828])
> >      * igt@kms_cursor_crc@pipe-a-cursor-32x10-offscreen:
> > 
> >           * shard-tglb: NOTRUN -> SKIP ([i915#3359]) +6 similar issues
> >      * igt@kms_cursor_crc@pipe-a-cursor-512x512-onscreen:
> > 
> >           * shard-tglb: NOTRUN -> SKIP ([fdo#109279] / [i915#3359]) +4
> >             similar issues
> > 
> >           * shard-iclb: NOTRUN -> SKIP ([fdo#109278] / [fdo#109279])
> > 
> >      * igt@kms_cursor_crc@pipe-a-cursor-suspend:
> > 
> >           * shard-kbl: PASS -> DMESG-WARN ([i915#180]) +1 similar issue
> >      * igt@kms_cursor_crc@pipe-b-cursor-suspend:
> > 
> >           * shard-apl: NOTRUN -> DMESG-WARN ([i915#180]) +1 similar issue
> >      * igt@kms_cursor_crc@pipe-c-cursor-32x32-onscreen:
> > 
> >           * shard-tglb: NOTRUN -> SKIP ([i915#3319]) +2 similar issues
> >      * igt@kms_cursor_crc@pipe-d-cursor-64x21-sliding:
> > 
> >           * shard-iclb: NOTRUN -> SKIP ([fdo#109278]) +28 similar issues
> >      * igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic:
> > 
> >           * shard-iclb: NOTRUN -> SKIP ([fdo#109274] / [fdo#109278]) +4
> >             similar issues
> >      * igt@kms_cursor_legacy@flip-vs-cursor-toggle:
> > 
> >           * shard-iclb: PASS -> FAIL ([i915#2346])
> >      * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
> > 
> >           * shard-tglb: NOTRUN -> SKIP ([i915#4103]) +2 similar issues
> >      * igt@kms_dsc@basic-dsc-enable:
> > 
> >           * shard-iclb: NOTRUN -> SKIP ([i915#3840])
> >      * igt@kms_fbcon_fbt@fbc-suspend:
> > 
> >           * shard-apl: PASS -> INCOMPLETE ([i915#180])
> >      * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a1-hdmi-a2:
> > 
> >           * shard-glk: PASS -> FAIL ([i915#79])
> >      * igt@kms_flip@2x-flip-vs-wf_vblank:
> > 
> >           * shard-iclb: NOTRUN -> SKIP ([fdo#109274]) +2 similar issues
> >      * igt@kms_flip@flip-vs-suspend-interruptible@a-dp1:
> > 
> >           * shard-apl: PASS -> DMESG-WARN ([i915#180]) +1 similar issue
> >      * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile:
> > 
> >           * shard-iclb: PASS -> SKIP ([i915#3701]) +2 similar issues
> >      * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render:
> > 
> >           * shard-iclb: NOTRUN -> SKIP ([fdo#109280]) +16 similar issues
> >      * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move:
> > 
> >           * shard-tglb: NOTRUN -> SKIP ([fdo#111825]) +36 similar issues
> >      * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-cpu:
> > 
> >           * shard-kbl: NOTRUN -> SKIP ([fdo#109271]) +176 similar issues
> >      * igt@kms_hdr@bpc-switch-dpms:
> > 
> >           * shard-kbl: NOTRUN -> FAIL ([i915#1188])
> >      * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
> > 
> >           * shard-tglb: NOTRUN -> SKIP ([i915#1839])
> >      * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-b:
> > 
> >           * shard-kbl: NOTRUN -> DMESG-WARN ([i915#180])
> >      * igt@kms_plane_alpha_blend@pipe-c-alpha-basic:
> > 
> >           * shard-kbl: NOTRUN -> FAIL ([fdo#108145] / [i915#265])
> > 
> >           * shard-glk: NOTRUN -> FAIL ([fdo#108145] / [i915#265])
> > 
> >      * igt@kms_plane_alpha_blend@pipe-c-alpha-transparent-fb:
> > 
> >           * shard-kbl: NOTRUN -> FAIL ([i915#265])
> >      * igt@kms_plane_lowres@pipe-a-tiling-y:
> > 
> >           * shard-iclb: NOTRUN -> SKIP ([i915#3536]) +1 similar issue
> >      * igt@kms_plane_lowres@pipe-d-tiling-x:
> > 
> >           * shard-tglb: NOTRUN -> SKIP ([i915#3536]) +2 similar issues
> >      * igt@kms_plane_lowres@pipe-d-tiling-yf:
> > 
> >           * shard-tglb: NOTRUN -> SKIP ([fdo#111615] / [fdo#112054])
> >      * igt@kms_psr2_sf@cursor-plane-update-sf:
> > 
> >           * shard-kbl: NOTRUN -> SKIP ([fdo#109271] / [i915#658])
> >      * igt@kms_psr2_sf@overlay-plane-update-continuous-sf:
> > 
> >           * shard-apl: NOTRUN -> SKIP ([fdo#109271] / [i915#658])
> >      * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area:
> > 
> >           * shard-tglb: NOTRUN -> SKIP ([i915#2920])
> >      * igt@kms_psr2_sf@plane-move-sf-dmg-area:
> > 
> >           * shard-iclb: NOTRUN -> SKIP ([fdo#111068] / [i915#658])
> >      * igt@kms_psr@psr2_cursor_mmap_gtt:
> > 
> >           * shard-tglb: NOTRUN -> FAIL ([i915#132] / [i915#3467])
> >      * igt@kms_psr@psr2_primary_blt:
> > 
> >           * shard-iclb: PASS -> SKIP ([fdo#109441])
> >      * igt@kms_setmode@basic:
> > 
> >           * shard-glk: PASS -> FAIL ([i915#31])
> >      * igt@kms_sysfs_edid_timing:
> > 
> >           * shard-apl: NOTRUN -> FAIL ([IGT#2])
> > 
> >           * shard-kbl: NOTRUN -> FAIL ([IGT#2])
> > 
> >      * igt@kms_vblank@pipe-d-query-forked-hang:
> > 
> >           * shard-snb: NOTRUN -> SKIP ([fdo#109271]) +145 similar issues
> >      * igt@kms_writeback@writeback-invalid-parameters:
> > 
> >           * shard-tglb: NOTRUN -> SKIP ([i915#2437])
> > 
> >           * shard-kbl: NOTRUN -> SKIP ([fdo#109271] / [i915#2437])
> > 
> >           * shard-apl: NOTRUN -> SKIP ([fdo#109271] / [i915#2437])
> > 
> >           * shard-glk: NOTRUN -> SKIP ([fdo#109271] / [i915#2437])
> > 
> >           * shard-iclb: NOTRUN -> SKIP ([i915#2437])
> > 
> >      * igt@nouveau_crc@pipe-a-source-outp-inactive:
> > 
> >           * shard-iclb: NOTRUN -> SKIP ([i915#2530])
> > 
> >           * shard-tglb: NOTRUN -> SKIP ([i915#2530])
> > 
> >      * igt@nouveau_crc@pipe-b-ctx-flip-skip-current-frame:
> > 
> >           * shard-apl: NOTRUN -> SKIP ([fdo#109271]) +107 similar issues
> >      * igt@perf@polling-parameterized:
> > 
> >           * shard-iclb: PASS -> FAIL ([i915#1542])
> >      * igt@prime_nv_pcopy@test1_macro:
> > 
> >           * shard-tglb: NOTRUN -> SKIP ([fdo#109291]) +4 similar issues
> >      * igt@prime_nv_test@nv_i915_sharing:
> > 
> >           * shard-iclb: NOTRUN -> SKIP ([fdo#109291]) +3 similar 
> > issues

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

* Re: [igt-dev] ✗ Fi.CI.IGT: failure for tests/i915/gem_exec_suspend: Add support for local memory (rev4)
  2021-12-17  5:55         ` Vudum, Lakshminarayana
@ 2021-12-17  6:48           ` Petri Latvala
  0 siblings, 0 replies; 10+ messages in thread
From: Petri Latvala @ 2021-12-17  6:48 UTC (permalink / raw)
  To: Vudum, Lakshminarayana; +Cc: igt-dev, Ch, Sai Gowtham

On Fri, Dec 17, 2021 at 07:55:36AM +0200, Vudum, Lakshminarayana wrote:
> 
> 
> -----Original Message-----
> From: Kempczynski, Zbigniew <zbigniew.kempczynski@intel.com> 
> Sent: Thursday, December 16, 2021 8:18 PM
> To: Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com>
> Cc: igt-dev@lists.freedesktop.org; Ch, Sai Gowtham <sai.gowtham.ch@intel.com>
> Subject: Re: [igt-dev] ✗ Fi.CI.IGT: failure for tests/i915/gem_exec_suspend: Add support for local memory (rev4)
> 
> On Thu, Dec 16, 2021 at 08:58:22PM +0100, Vudum, Lakshminarayana wrote:
> > Regression is related to 
> > https://gitlab.freedesktop.org/drm/intel/-/issues/4697
> > igt@kms_atomic_transition@modeset-transition(-nonblocking-fencing)?@1x
> > -outputs - incomplete - No warnings/errors
> 
> Could you elaborate? There's kms_atomic_transition issue, not gem_exec_suspend (unless it was run before and interferes).
> >I reviewed rev 4 results https://patchwork.freedesktop.org/series/95706/#rev4 and addressed kms_atomic_transition result. I didn't see igt@gem_exec_suspend@basic-s0@smem failure.
> Strange, although re-reporting shows success, I see igt@gem_exec_suspend@basic-s0@smem failure is under regression.
> @Latvala, Petri Any idea why the results shows as success although there is a regression here https://patchwork.freedesktop.org/series/95706/#rev4 ?

In the BAT run:

Possible regressions
{igt@gem_exec_suspend@basic-s0@smem} (NEW):
fi-bdw-gvtdvm: NOTRUN -> INCOMPLETE


An incomplete from a new (and thus suppressed) test.

Well, new name, same happens already on bdw-gvtdvm with
igt@gem_exec_suspend@basic-s0,
https://gitlab.freedesktop.org/drm/intel/-/issues/2539

The FULL run failure was in kms_atomic_transition and that's now properly filtered.


-- 
Petri Latvala



> 
> Anyway, I see igt@gem_exec_suspend@basic-s0@smem test is not in CI bug log, so I cannot update the filter. But the issue is related to 
> https://gitlab.freedesktop.org/drm/intel/-/issues/2539
> igt@gem_exec_suspend@basic-s[03] - incomplete - PM: suspend entry (s2idle)
> 
> Lakshmi.
> 
> --
> Zbigniew
> 
> > 
> > Thanks,
> > Lakshmi.
> > -----Original Message-----
> > From: Kempczynski, Zbigniew <zbigniew.kempczynski@intel.com>
> > Sent: Thursday, December 16, 2021 4:11 AM
> > To: igt-dev@lists.freedesktop.org
> > Cc: Ch, Sai Gowtham <sai.gowtham.ch@intel.com>; Vudum, Lakshminarayana 
> > <lakshminarayana.vudum@intel.com>
> > Subject: Re: [igt-dev] ✗ Fi.CI.IGT: failure for 
> > tests/i915/gem_exec_suspend: Add support for local memory (rev4)
> > 
> > On Thu, Dec 16, 2021 at 08:03:53AM +0000, Patchwork wrote:
> > >    Patch Details
> > > 
> > >    Series:  tests/i915/gem_exec_suspend: Add support for local memory (rev4) 
> > >    URL:     https://patchwork.freedesktop.org/series/95706/                  
> > >    State:   failure                                                          
> > >    Details: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6499/index.html   
> > > 
> > >          CI Bug Log - changes from CI_DRM_11006_full -> 
> > > IGTPW_6499_full
> > > 
> > > Summary
> > > 
> > >    FAILURE
> > > 
> > >    Serious unknown changes coming with IGTPW_6499_full absolutely need to be
> > >    verified manually.
> > > 
> > >    If you think the reported changes have nothing to do with the changes
> > >    introduced in IGTPW_6499_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_6499/index.html
> > > 
> > > Participating hosts (10 -> 7)
> > > 
> > >    Missing (3): pig-skl-6260u pig-glk-j5005 shard-rkl
> > > 
> > > Possible new issues
> > > 
> > >    Here are the unknown changes that may have been introduced in
> > >    IGTPW_6499_full:
> > > 
> > >   IGT changes
> > > 
> > >     Possible regressions
> > > 
> > >      * igt@kms_atomic_transition@modeset-transition-nonblocking-fencing@1x-outputs:
> > >           * shard-tglb: NOTRUN -> INCOMPLETE
> > 
> > Unrelated, change was in gem_exec_suspend test only.
> > 
> > --
> > Zbigniew
> > > 
> > > New tests
> > > 
> > >    New tests have been introduced between CI_DRM_11006_full and
> > >    IGTPW_6499_full:
> > > 
> > >   New IGT tests (4)
> > > 
> > >      * igt@gem_exec_suspend@basic-s3-devices@smem:
> > > 
> > >           * Statuses : 6 pass(s)
> > >           * Exec time: [6.45, 10.48] s
> > >      * igt@gem_exec_suspend@basic-s3@smem:
> > > 
> > >           * Statuses : 6 pass(s)
> > >           * Exec time: [2.50, 5.60] s
> > >      * igt@gem_exec_suspend@basic-s4-devices@smem:
> > > 
> > >           * Statuses : 4 pass(s)
> > >           * Exec time: [7.26, 10.73] s
> > >      * igt@gem_exec_suspend@basic@smem:
> > > 
> > >           * Statuses : 6 pass(s)
> > >           * Exec time: [0.22, 1.39] s
> > > 
> > > Known issues
> > > 
> > >    Here are the changes found in IGTPW_6499_full that come from known issues:
> > > 
> > >   IGT changes
> > > 
> > >     Issues hit
> > > 
> > >      * igt@feature_discovery@psr2:
> > > 
> > >           * shard-iclb: NOTRUN -> SKIP ([i915#658])
> > >      * igt@gem_ctx_persistence@legacy-engines-queued:
> > > 
> > >           * shard-snb: NOTRUN -> SKIP ([fdo#109271] / [i915#1099]) +2 similar
> > >             issues
> > >      * igt@gem_ctx_sseu@engines:
> > > 
> > >           * shard-tglb: NOTRUN -> SKIP ([i915#280])
> > >      * igt@gem_eio@unwedge-stress:
> > > 
> > >           * shard-tglb: NOTRUN -> TIMEOUT ([i915#3063] / 
> > > [i915#3648])
> > > 
> > >           * shard-snb: NOTRUN -> FAIL ([i915#3354])
> > > 
> > >      * igt@gem_exec_balancer@parallel-contexts:
> > > 
> > >           * shard-tglb: NOTRUN -> SKIP ([i915#4525]) +3 similar issues
> > >      * igt@gem_exec_balancer@parallel-out-fence:
> > > 
> > >           * shard-iclb: NOTRUN -> SKIP ([i915#4525]) +2 similar issues
> > >      * igt@gem_exec_capture@pi@vcs0:
> > > 
> > >           * shard-iclb: PASS -> INCOMPLETE ([i915#3371])
> > >      * igt@gem_exec_fair@basic-flow@rcs0:
> > > 
> > >           * shard-tglb: PASS -> FAIL ([i915#2842]) +2 similar issues
> > >      * igt@gem_exec_fair@basic-none-vip@rcs0:
> > > 
> > >           * shard-tglb: NOTRUN -> FAIL ([i915#2842]) +1 similar issue
> > >      * igt@gem_exec_fair@basic-none@rcs0:
> > > 
> > >           * shard-kbl: PASS -> FAIL ([i915#2842]) +1 similar issue
> > >      * igt@gem_exec_fair@basic-pace-share@rcs0:
> > > 
> > >           * shard-glk: PASS -> FAIL ([i915#2842])
> > >      * igt@gem_exec_fair@basic-pace-solo@rcs0:
> > > 
> > >           * shard-apl: NOTRUN -> FAIL ([i915#2842])
> > >      * igt@gem_exec_fair@basic-pace@vcs1:
> > > 
> > >           * shard-iclb: NOTRUN -> FAIL ([i915#2842]) +1 similar issue
> > >      * igt@gem_exec_params@no-vebox:
> > > 
> > >           * shard-iclb: NOTRUN -> SKIP ([fdo#109283])
> > > 
> > >           * shard-tglb: NOTRUN -> SKIP ([fdo#109283])
> > > 
> > >      * igt@gem_exec_params@secure-non-root:
> > > 
> > >           * shard-tglb: NOTRUN -> SKIP ([fdo#112283])
> > > 
> > >           * shard-iclb: NOTRUN -> SKIP ([fdo#112283])
> > > 
> > >      * igt@gem_exec_whisper@basic-fds-forked-all:
> > > 
> > >           * shard-glk: PASS -> DMESG-WARN ([i915#118]) +1 similar issue
> > >      * igt@gem_lmem_swapping@heavy-verify-multi:
> > > 
> > >           * shard-kbl: NOTRUN -> SKIP ([fdo#109271] / [i915#4613]) +1 similar
> > >             issue
> > > 
> > >           * shard-apl: NOTRUN -> SKIP ([fdo#109271] / [i915#4613])
> > > 
> > >      * igt@gem_lmem_swapping@parallel-random-verify:
> > > 
> > >           * shard-tglb: NOTRUN -> SKIP ([i915#4613])
> > >      * igt@gem_pxp@create-protected-buffer:
> > > 
> > >           * shard-iclb: NOTRUN -> SKIP ([i915#4270]) +3 similar issues
> > >      * igt@gem_pxp@protected-encrypted-src-copy-not-readible:
> > > 
> > >           * shard-tglb: NOTRUN -> SKIP ([i915#4270]) +3 similar issues
> > >      * igt@gem_softpin@evict-snoop:
> > > 
> > >           * shard-tglb: NOTRUN -> SKIP ([fdo#109312])
> > >      * igt@gem_userptr_blits@dmabuf-sync:
> > > 
> > >           * shard-apl: NOTRUN -> SKIP ([fdo#109271] / [i915#3323])
> > >      * igt@gem_userptr_blits@dmabuf-unsync:
> > > 
> > >           * shard-tglb: NOTRUN -> SKIP ([i915#3297])
> > > 
> > >           * shard-iclb: NOTRUN -> SKIP ([i915#3297])
> > > 
> > >      * igt@gen7_exec_parse@basic-allowed:
> > > 
> > >           * shard-tglb: NOTRUN -> SKIP ([fdo#109289]) +2 similar issues
> > >      * igt@gen7_exec_parse@bitmasks:
> > > 
> > >           * shard-iclb: NOTRUN -> SKIP ([fdo#109289]) +2 similar issues
> > >      * igt@gen9_exec_parse@allowed-all:
> > > 
> > >           * shard-iclb: NOTRUN -> SKIP ([i915#2856])
> > > 
> > >           * shard-tglb: NOTRUN -> SKIP ([i915#2856])
> > > 
> > >           * shard-glk: NOTRUN -> DMESG-WARN ([i915#1436] / 
> > > [i915#716])
> > > 
> > >      * igt@i915_pm_backlight@bad-brightness:
> > > 
> > >           * shard-glk: NOTRUN -> SKIP ([fdo#109271]) +69 similar issues
> > >      * igt@i915_pm_dc@dc9-dpms:
> > > 
> > >           * shard-apl: PASS -> SKIP ([fdo#109271])
> > >      * igt@i915_pm_rpm@modeset-non-lpsp-stress:
> > > 
> > >           * shard-tglb: NOTRUN -> SKIP ([fdo#111644] / [i915#1397] /
> > >             [i915#2411])
> > > 
> > >           * shard-iclb: NOTRUN -> SKIP ([fdo#110892])
> > > 
> > >      * igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
> > > 
> > >           * shard-iclb: NOTRUN -> SKIP ([i915#1769])
> > > 
> > >           * shard-tglb: NOTRUN -> SKIP ([i915#1769])
> > > 
> > >      * igt@kms_big_fb@linear-32bpp-rotate-0:
> > > 
> > >           * shard-glk: NOTRUN -> DMESG-WARN ([i915#118])
> > >      * igt@kms_big_fb@x-tiled-64bpp-rotate-270:
> > > 
> > >           * shard-iclb: NOTRUN -> SKIP ([fdo#110725] / [fdo#111614]) +1
> > >             similar issue
> > >      * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip:
> > > 
> > >           * shard-apl: NOTRUN -> SKIP ([fdo#109271] / [i915#3777])
> > >      * igt@kms_big_fb@y-tiled-64bpp-rotate-270:
> > > 
> > >           * shard-tglb: NOTRUN -> SKIP ([fdo#111614]) +1 similar issue
> > >      * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip:
> > > 
> > >           * shard-kbl: NOTRUN -> SKIP ([fdo#109271] / [i915#3777]) +2 similar
> > >             issues
> > >      * igt@kms_big_fb@yf-tiled-64bpp-rotate-270:
> > > 
> > >           * shard-tglb: NOTRUN -> SKIP ([fdo#111615]) +1 similar 
> > > issue
> > > 
> > >           * shard-iclb: NOTRUN -> SKIP ([fdo#110723])
> > > 
> > >      * igt@kms_big_joiner@basic:
> > > 
> > >           * shard-tglb: NOTRUN -> SKIP ([i915#2705])
> > > 
> > >           * shard-iclb: NOTRUN -> SKIP ([i915#2705])
> > > 
> > >      * igt@kms_ccs@pipe-a-bad-aux-stride-yf_tiled_ccs:
> > > 
> > >           * shard-tglb: NOTRUN -> SKIP ([fdo#111615] / [i915#3689]) +1
> > >             similar issue
> > >      * igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_rc_ccs_cc:
> > > 
> > >           * shard-kbl: NOTRUN -> SKIP ([fdo#109271] / [i915#3886]) +4 similar
> > >             issues
> > >      * igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_mc_ccs:
> > > 
> > >           * shard-tglb: NOTRUN -> SKIP ([i915#3689] / [i915#3886]) +2 similar
> > >             issues
> > >      * igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_mc_ccs:
> > > 
> > >           * shard-apl: NOTRUN -> SKIP ([fdo#109271] / [i915#3886]) +4 similar
> > >             issues
> > > 
> > >           * shard-glk: NOTRUN -> SKIP ([fdo#109271] / [i915#3886]) +2 similar
> > >             issues
> > > 
> > >      * igt@kms_ccs@pipe-c-crc-primary-basic-y_tiled_gen12_mc_ccs:
> > > 
> > >           * shard-iclb: NOTRUN -> SKIP ([fdo#109278] / [i915#3886]) +3
> > >             similar issues
> > >      * igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_ccs:
> > > 
> > >           * shard-tglb: NOTRUN -> SKIP ([i915#3689]) +8 similar issues
> > >      * igt@kms_chamelium@dp-edid-change-during-suspend:
> > > 
> > >           * shard-apl: NOTRUN -> SKIP ([fdo#109271] / [fdo#111827]) +10
> > >             similar issues
> > >      * igt@kms_chamelium@hdmi-crc-multiple:
> > > 
> > >           * shard-snb: NOTRUN -> SKIP ([fdo#109271] / [fdo#111827]) +8
> > >             similar issues
> > >      * igt@kms_color@pipe-d-ctm-red-to-blue:
> > > 
> > >           * shard-iclb: NOTRUN -> SKIP ([fdo#109278] / [i915#1149])
> > >      * igt@kms_color_chamelium@pipe-a-degamma:
> > > 
> > >           * shard-kbl: NOTRUN -> SKIP ([fdo#109271] / [fdo#111827]) +17
> > >             similar issues
> > >      * igt@kms_color_chamelium@pipe-b-ctm-limited-range:
> > > 
> > >           * shard-tglb: NOTRUN -> SKIP ([fdo#109284] / [fdo#111827]) +13
> > >             similar issues
> > >      * igt@kms_color_chamelium@pipe-c-ctm-0-5:
> > > 
> > >           * shard-iclb: NOTRUN -> SKIP ([fdo#109284] / [fdo#111827]) +6
> > >             similar issues
> > >      * igt@kms_color_chamelium@pipe-d-degamma:
> > > 
> > >           * shard-glk: NOTRUN -> SKIP ([fdo#109271] / [fdo#111827]) +6
> > >             similar issues
> > > 
> > >           * shard-iclb: NOTRUN -> SKIP ([fdo#109278] / [fdo#109284] /
> > >             [fdo#111827])
> > > 
> > >      * igt@kms_content_protection@mei_interface:
> > > 
> > >           * shard-tglb: NOTRUN -> SKIP ([fdo#111828])
> > >      * igt@kms_cursor_crc@pipe-a-cursor-32x10-offscreen:
> > > 
> > >           * shard-tglb: NOTRUN -> SKIP ([i915#3359]) +6 similar issues
> > >      * igt@kms_cursor_crc@pipe-a-cursor-512x512-onscreen:
> > > 
> > >           * shard-tglb: NOTRUN -> SKIP ([fdo#109279] / [i915#3359]) +4
> > >             similar issues
> > > 
> > >           * shard-iclb: NOTRUN -> SKIP ([fdo#109278] / [fdo#109279])
> > > 
> > >      * igt@kms_cursor_crc@pipe-a-cursor-suspend:
> > > 
> > >           * shard-kbl: PASS -> DMESG-WARN ([i915#180]) +1 similar issue
> > >      * igt@kms_cursor_crc@pipe-b-cursor-suspend:
> > > 
> > >           * shard-apl: NOTRUN -> DMESG-WARN ([i915#180]) +1 similar issue
> > >      * igt@kms_cursor_crc@pipe-c-cursor-32x32-onscreen:
> > > 
> > >           * shard-tglb: NOTRUN -> SKIP ([i915#3319]) +2 similar issues
> > >      * igt@kms_cursor_crc@pipe-d-cursor-64x21-sliding:
> > > 
> > >           * shard-iclb: NOTRUN -> SKIP ([fdo#109278]) +28 similar issues
> > >      * igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic:
> > > 
> > >           * shard-iclb: NOTRUN -> SKIP ([fdo#109274] / [fdo#109278]) +4
> > >             similar issues
> > >      * igt@kms_cursor_legacy@flip-vs-cursor-toggle:
> > > 
> > >           * shard-iclb: PASS -> FAIL ([i915#2346])
> > >      * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
> > > 
> > >           * shard-tglb: NOTRUN -> SKIP ([i915#4103]) +2 similar issues
> > >      * igt@kms_dsc@basic-dsc-enable:
> > > 
> > >           * shard-iclb: NOTRUN -> SKIP ([i915#3840])
> > >      * igt@kms_fbcon_fbt@fbc-suspend:
> > > 
> > >           * shard-apl: PASS -> INCOMPLETE ([i915#180])
> > >      * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a1-hdmi-a2:
> > > 
> > >           * shard-glk: PASS -> FAIL ([i915#79])
> > >      * igt@kms_flip@2x-flip-vs-wf_vblank:
> > > 
> > >           * shard-iclb: NOTRUN -> SKIP ([fdo#109274]) +2 similar issues
> > >      * igt@kms_flip@flip-vs-suspend-interruptible@a-dp1:
> > > 
> > >           * shard-apl: PASS -> DMESG-WARN ([i915#180]) +1 similar issue
> > >      * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile:
> > > 
> > >           * shard-iclb: PASS -> SKIP ([i915#3701]) +2 similar issues
> > >      * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render:
> > > 
> > >           * shard-iclb: NOTRUN -> SKIP ([fdo#109280]) +16 similar issues
> > >      * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move:
> > > 
> > >           * shard-tglb: NOTRUN -> SKIP ([fdo#111825]) +36 similar issues
> > >      * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-cpu:
> > > 
> > >           * shard-kbl: NOTRUN -> SKIP ([fdo#109271]) +176 similar issues
> > >      * igt@kms_hdr@bpc-switch-dpms:
> > > 
> > >           * shard-kbl: NOTRUN -> FAIL ([i915#1188])
> > >      * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
> > > 
> > >           * shard-tglb: NOTRUN -> SKIP ([i915#1839])
> > >      * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-b:
> > > 
> > >           * shard-kbl: NOTRUN -> DMESG-WARN ([i915#180])
> > >      * igt@kms_plane_alpha_blend@pipe-c-alpha-basic:
> > > 
> > >           * shard-kbl: NOTRUN -> FAIL ([fdo#108145] / [i915#265])
> > > 
> > >           * shard-glk: NOTRUN -> FAIL ([fdo#108145] / [i915#265])
> > > 
> > >      * igt@kms_plane_alpha_blend@pipe-c-alpha-transparent-fb:
> > > 
> > >           * shard-kbl: NOTRUN -> FAIL ([i915#265])
> > >      * igt@kms_plane_lowres@pipe-a-tiling-y:
> > > 
> > >           * shard-iclb: NOTRUN -> SKIP ([i915#3536]) +1 similar issue
> > >      * igt@kms_plane_lowres@pipe-d-tiling-x:
> > > 
> > >           * shard-tglb: NOTRUN -> SKIP ([i915#3536]) +2 similar issues
> > >      * igt@kms_plane_lowres@pipe-d-tiling-yf:
> > > 
> > >           * shard-tglb: NOTRUN -> SKIP ([fdo#111615] / [fdo#112054])
> > >      * igt@kms_psr2_sf@cursor-plane-update-sf:
> > > 
> > >           * shard-kbl: NOTRUN -> SKIP ([fdo#109271] / [i915#658])
> > >      * igt@kms_psr2_sf@overlay-plane-update-continuous-sf:
> > > 
> > >           * shard-apl: NOTRUN -> SKIP ([fdo#109271] / [i915#658])
> > >      * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area:
> > > 
> > >           * shard-tglb: NOTRUN -> SKIP ([i915#2920])
> > >      * igt@kms_psr2_sf@plane-move-sf-dmg-area:
> > > 
> > >           * shard-iclb: NOTRUN -> SKIP ([fdo#111068] / [i915#658])
> > >      * igt@kms_psr@psr2_cursor_mmap_gtt:
> > > 
> > >           * shard-tglb: NOTRUN -> FAIL ([i915#132] / [i915#3467])
> > >      * igt@kms_psr@psr2_primary_blt:
> > > 
> > >           * shard-iclb: PASS -> SKIP ([fdo#109441])
> > >      * igt@kms_setmode@basic:
> > > 
> > >           * shard-glk: PASS -> FAIL ([i915#31])
> > >      * igt@kms_sysfs_edid_timing:
> > > 
> > >           * shard-apl: NOTRUN -> FAIL ([IGT#2])
> > > 
> > >           * shard-kbl: NOTRUN -> FAIL ([IGT#2])
> > > 
> > >      * igt@kms_vblank@pipe-d-query-forked-hang:
> > > 
> > >           * shard-snb: NOTRUN -> SKIP ([fdo#109271]) +145 similar issues
> > >      * igt@kms_writeback@writeback-invalid-parameters:
> > > 
> > >           * shard-tglb: NOTRUN -> SKIP ([i915#2437])
> > > 
> > >           * shard-kbl: NOTRUN -> SKIP ([fdo#109271] / [i915#2437])
> > > 
> > >           * shard-apl: NOTRUN -> SKIP ([fdo#109271] / [i915#2437])
> > > 
> > >           * shard-glk: NOTRUN -> SKIP ([fdo#109271] / [i915#2437])
> > > 
> > >           * shard-iclb: NOTRUN -> SKIP ([i915#2437])
> > > 
> > >      * igt@nouveau_crc@pipe-a-source-outp-inactive:
> > > 
> > >           * shard-iclb: NOTRUN -> SKIP ([i915#2530])
> > > 
> > >           * shard-tglb: NOTRUN -> SKIP ([i915#2530])
> > > 
> > >      * igt@nouveau_crc@pipe-b-ctx-flip-skip-current-frame:
> > > 
> > >           * shard-apl: NOTRUN -> SKIP ([fdo#109271]) +107 similar issues
> > >      * igt@perf@polling-parameterized:
> > > 
> > >           * shard-iclb: PASS -> FAIL ([i915#1542])
> > >      * igt@prime_nv_pcopy@test1_macro:
> > > 
> > >           * shard-tglb: NOTRUN -> SKIP ([fdo#109291]) +4 similar issues
> > >      * igt@prime_nv_test@nv_i915_sharing:
> > > 
> > >           * shard-iclb: NOTRUN -> SKIP ([fdo#109291]) +3 similar 
> > > issues

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

end of thread, other threads:[~2021-12-17  6:49 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-12-16  5:17 [igt-dev] [PATCH i-g-t] tests/i915/gem_exec_suspend: Add support for local memory sai.gowtham.ch
2021-12-16  6:34 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/i915/gem_exec_suspend: Add support for local memory (rev4) Patchwork
2021-12-16  7:16 ` [igt-dev] [PATCH i-g-t] tests/i915/gem_exec_suspend: Add support for local memory Zbigniew Kempczyński
2021-12-16  8:03 ` [igt-dev] ✗ Fi.CI.IGT: failure for tests/i915/gem_exec_suspend: Add support for local memory (rev4) Patchwork
2021-12-16 12:10   ` Zbigniew Kempczyński
2021-12-16 19:58     ` Vudum, Lakshminarayana
2021-12-17  4:18       ` Zbigniew Kempczyński
2021-12-17  5:55         ` Vudum, Lakshminarayana
2021-12-17  6:48           ` Petri Latvala
2021-12-16 19:42 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.