All of lore.kernel.org
 help / color / mirror / Atom feed
* [igt-dev] [PATCH i-g-t v5 0/3] Fix kms_psr2_sf test and add new test for FB_DAMAGE_CLIPS plane property
@ 2021-12-03 16:28 Jeevan B
  2021-12-03 16:28 ` [igt-dev] [PATCH i-g-t v5 1/3] lib/igt_aux: Rename igt_debug_manual_check and assert check if all is supplied Jeevan B
                   ` (5 more replies)
  0 siblings, 6 replies; 13+ messages in thread
From: Jeevan B @ 2021-12-03 16:28 UTC (permalink / raw)
  To: igt-dev

Change kms_psr2_sf test design, rename igt_debug_manual_check, patch the igt
functions igt_debug_wait_for_keypress() to assert if "all" is supplied and
change testcase design and add simple test cases to use FB_DAMAGE_CLIPS plane property.

Deepak Rawat (1):
  tests/kms_atomic: Add a new test case for FB_DAMAGE_CLIPS plane
    property

Jeevan B (2):
  lib/igt_aux: Rename igt_debug_manual_check and assert check if all is
    supplied
  tests/kms_psr2_sf: Change testcase design

 lib/igt_aux.c            |   9 +-
 lib/igt_aux.h            |   2 +-
 tests/i915/kms_dsc.c     |   2 +-
 tests/i915/kms_psr.c     |   2 +-
 tests/i915/kms_psr2_sf.c |  28 ++---
 tests/kms_atomic.c       | 219 +++++++++++++++++++++++++++++++++++++++
 6 files changed, 242 insertions(+), 20 deletions(-)

-- 
2.19.1

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

* [igt-dev] [PATCH i-g-t v5 1/3] lib/igt_aux: Rename igt_debug_manual_check and assert check if all is supplied
  2021-12-03 16:28 [igt-dev] [PATCH i-g-t v5 0/3] Fix kms_psr2_sf test and add new test for FB_DAMAGE_CLIPS plane property Jeevan B
@ 2021-12-03 16:28 ` Jeevan B
  2021-12-03 16:28 ` [igt-dev] [PATCH i-g-t v5 2/3] tests/kms_psr2_sf: Change testcase design Jeevan B
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 13+ messages in thread
From: Jeevan B @ 2021-12-03 16:28 UTC (permalink / raw)
  To: igt-dev

rename igt_debug_manual_check and patch the igt function
igt_debug_wait_for_keypress() to assert if "all" is supplied.

v2: calling igt_debug_wait_for_keypress() with "all" will assert.
v3: Change igt_assert to igt_assert_f for adding clear log message.
v4: Rebase only.

Signed-off-by: Jeevan B <jeevan.b@intel.com>
Reviewed-by: Petri Latvala <petri.latvala@intel.com>
---
 lib/igt_aux.c            | 9 ++++++---
 lib/igt_aux.h            | 2 +-
 tests/i915/kms_dsc.c     | 2 +-
 tests/i915/kms_psr.c     | 2 +-
 tests/i915/kms_psr2_sf.c | 2 +-
 5 files changed, 10 insertions(+), 7 deletions(-)

diff --git a/lib/igt_aux.c b/lib/igt_aux.c
index 2445e483..c247a1aa 100644
--- a/lib/igt_aux.c
+++ b/lib/igt_aux.c
@@ -972,7 +972,7 @@ void igt_drop_root(void)
  * Waits for a key press when run interactively and when the corresponding debug
  * var is set in the --interactive-debug=$var variable. Multiple keys
  * can be specified as a comma-separated list or alternatively "all" if a wait
- * should happen for all cases.
+ * should happen for all cases. Calling this function with "all" will assert.
  *
  * When not connected to a terminal interactive_debug is ignored
  * and execution immediately continues.
@@ -993,6 +993,9 @@ void igt_debug_wait_for_keypress(const char *var)
 	if (!igt_interactive_debug)
 		return;
 
+	if (strstr(var, "all"))
+		igt_assert_f(false, "Bug in test: Do not call igt_debug_wait_for_keypress with \"all\"\n");
+
 	if (!strstr(igt_interactive_debug, var) &&
 	    !strstr(igt_interactive_debug, "all"))
 		return;
@@ -1008,7 +1011,7 @@ void igt_debug_wait_for_keypress(const char *var)
 }
 
 /**
- * igt_debug_manual_check:
+ * igt_debug_interactive_mode_check:
  * @var: var lookup to to enable this wait
  * @expected: message to be printed as expected behaviour before wait for keys Y/n
  *
@@ -1028,7 +1031,7 @@ void igt_debug_wait_for_keypress(const char *var)
  *
  * Force test fail when N/n is pressed.
  */
-void igt_debug_manual_check(const char *var, const char *expected)
+void igt_debug_interactive_mode_check(const char *var, const char *expected)
 {
 	struct termios oldt, newt;
 	char key;
diff --git a/lib/igt_aux.h b/lib/igt_aux.h
index a3c477ab..9f2588ae 100644
--- a/lib/igt_aux.h
+++ b/lib/igt_aux.h
@@ -195,7 +195,7 @@ int igt_get_autoresume_delay(enum igt_suspend_state state);
 void igt_drop_root(void);
 
 void igt_debug_wait_for_keypress(const char *var);
-void igt_debug_manual_check(const char *var, const char *expected);
+void igt_debug_interactive_mode_check(const char *var, const char *expected);
 
 /* sysinfo cross-arch wrappers from intel_os.c */
 
diff --git a/tests/i915/kms_dsc.c b/tests/i915/kms_dsc.c
index 25f7676a..ee52ffcc 100644
--- a/tests/i915/kms_dsc.c
+++ b/tests/i915/kms_dsc.c
@@ -73,7 +73,7 @@ int force_dsc_restore_fd = -1;
 
 static inline void manual(const char *expected)
 {
-	igt_debug_manual_check("all", expected);
+	igt_debug_interactive_mode_check("all", expected);
 }
 
 static void force_dsc_enable(data_t *data)
diff --git a/tests/i915/kms_psr.c b/tests/i915/kms_psr.c
index 83b8b709..480e2cc7 100644
--- a/tests/i915/kms_psr.c
+++ b/tests/i915/kms_psr.c
@@ -246,7 +246,7 @@ static bool psr_enable_if_enabled(data_t *data)
 
 static inline void manual(const char *expected)
 {
-	igt_debug_manual_check("all", expected);
+	igt_debug_interactive_mode_check("all", expected);
 }
 
 static bool drrs_disabled(data_t *data)
diff --git a/tests/i915/kms_psr2_sf.c b/tests/i915/kms_psr2_sf.c
index a91defde..0736635c 100644
--- a/tests/i915/kms_psr2_sf.c
+++ b/tests/i915/kms_psr2_sf.c
@@ -342,7 +342,7 @@ static void prepare(data_t *data)
 
 static inline void manual(const char *expected)
 {
-	igt_debug_manual_check("all", expected);
+	igt_debug_interactive_mode_check("all", expected);
 }
 
 static void plane_update_expected_output(int plane_type, int box_count,
-- 
2.19.1

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

* [igt-dev] [PATCH i-g-t v5 2/3] tests/kms_psr2_sf: Change testcase design
  2021-12-03 16:28 [igt-dev] [PATCH i-g-t v5 0/3] Fix kms_psr2_sf test and add new test for FB_DAMAGE_CLIPS plane property Jeevan B
  2021-12-03 16:28 ` [igt-dev] [PATCH i-g-t v5 1/3] lib/igt_aux: Rename igt_debug_manual_check and assert check if all is supplied Jeevan B
@ 2021-12-03 16:28 ` Jeevan B
  2021-12-03 16:28 ` [igt-dev] [PATCH i-g-t v5 3/3] tests/kms_atomic: Add a new test case for FB_DAMAGE_CLIPS plane property Jeevan B
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 13+ messages in thread
From: Jeevan B @ 2021-12-03 16:28 UTC (permalink / raw)
  To: igt-dev

Change testcase design so that it avoids new subtest for each block position.

Signed-off-by: Jeevan B <jeevan.b@intel.com>
Reviewed-by: Petri Latvala <petri.latvala@intel.com>
---
 tests/i915/kms_psr2_sf.c | 26 +++++++++++++-------------
 1 file changed, 13 insertions(+), 13 deletions(-)

diff --git a/tests/i915/kms_psr2_sf.c b/tests/i915/kms_psr2_sf.c
index 0736635c..36f8a786 100644
--- a/tests/i915/kms_psr2_sf.c
+++ b/tests/i915/kms_psr2_sf.c
@@ -621,9 +621,9 @@ igt_main
 	}
 
 	/* Verify primary plane selective fetch */
-	for (i = 1; i <= MAX_DAMAGE_AREAS; i++) {
-		igt_describe("Test that selective fetch works on primary plane");
-		igt_subtest_f("primary-%s-sf-dmg-area-%d", op_str(data.op), i) {
+	igt_describe("Test that selective fetch works on primary plane");
+	igt_subtest_f("primary-%s-sf-dmg-area", op_str(data.op)) {
+		for (i = 1; i <= MAX_DAMAGE_AREAS; i++) {
 			data.damage_area_count = i;
 			data.test_plane_id = DRM_PLANE_TYPE_PRIMARY;
 			prepare(&data);
@@ -633,9 +633,9 @@ igt_main
 	}
 
 	/* Verify overlay plane selective fetch */
-	for (i = 1; i <= MAX_DAMAGE_AREAS; i++) {
-		igt_describe("Test that selective fetch works on overlay plane");
-		igt_subtest_f("overlay-%s-sf-dmg-area-%d", op_str(data.op), i) {
+	igt_describe("Test that selective fetch works on overlay plane");
+	igt_subtest_f("overlay-%s-sf-dmg-area", op_str(data.op)) {
+		for (i = 1; i <= MAX_DAMAGE_AREAS; i++) {
 			data.damage_area_count = i;
 			data.test_plane_id = DRM_PLANE_TYPE_OVERLAY;
 			prepare(&data);
@@ -657,9 +657,9 @@ igt_main
 	/* Only for overlay plane */
 	data.op = PLANE_MOVE;
 	/* Verify overlay plane move selective fetch */
-	for (i = POS_TOP_LEFT; i <= POS_BOTTOM_RIGHT ; i++) {
-		igt_describe("Test that selective fetch works on moving overlay plane");
-		igt_subtest_f("%s-sf-dmg-area-%d", op_str(data.op), i) {
+	igt_describe("Test that selective fetch works on moving overlay plane");
+	igt_subtest_f("%s-sf-dmg-area", op_str(data.op)) {
+		for (i = POS_TOP_LEFT; i <= POS_BOTTOM_RIGHT ; i++) {
 			data.pos = i;
 			data.test_plane_id = DRM_PLANE_TYPE_OVERLAY;
 			prepare(&data);
@@ -670,10 +670,10 @@ igt_main
 
 	/* Verify primary plane selective fetch with overplay plane blended */
 	data.op = OVERLAY_PRIM_UPDATE;
-	for (i = 1; i <= MAX_DAMAGE_AREAS; i++) {
-		igt_describe("Test that selective fetch works on primary plane "
-			     "with blended overlay plane");
-		igt_subtest_f("%s-sf-dmg-area-%d", op_str(data.op), i) {
+	igt_describe("Test that selective fetch works on primary plane "
+		     "with blended overlay plane");
+	igt_subtest_f("%s-sf-dmg-area", op_str(data.op)) {
+		for (i = 1; i <= MAX_DAMAGE_AREAS; i++) {
 			data.damage_area_count = i;
 			data.test_plane_id = DRM_PLANE_TYPE_PRIMARY;
 			prepare(&data);
-- 
2.19.1

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

* [igt-dev] [PATCH i-g-t v5 3/3] tests/kms_atomic: Add a new test case for FB_DAMAGE_CLIPS plane property
  2021-12-03 16:28 [igt-dev] [PATCH i-g-t v5 0/3] Fix kms_psr2_sf test and add new test for FB_DAMAGE_CLIPS plane property Jeevan B
  2021-12-03 16:28 ` [igt-dev] [PATCH i-g-t v5 1/3] lib/igt_aux: Rename igt_debug_manual_check and assert check if all is supplied Jeevan B
  2021-12-03 16:28 ` [igt-dev] [PATCH i-g-t v5 2/3] tests/kms_psr2_sf: Change testcase design Jeevan B
@ 2021-12-03 16:28 ` Jeevan B
  2021-12-03 16:52 ` [igt-dev] ✓ Fi.CI.BAT: success for Fix kms_psr2_sf test and add new test for FB_DAMAGE_CLIPS plane property (rev5) Patchwork
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 13+ messages in thread
From: Jeevan B @ 2021-12-03 16:28 UTC (permalink / raw)
  To: igt-dev; +Cc: Deepak Rawat

From: Deepak Rawat <drawat@vmware.com>

Some simple test cases to use FB_DAMAGE_CLIPS plane property.
Issue a plane update with damage with a clips on different scenarios
and verify the state.

v2: use drm_mode_rect instead of local struct and array instead of malloc.

Signed-off-by: Deepak Rawat <drawat@vmware.com>
Signed-off-by: Jeevan B <jeevan.b@intel.com>
Reviewed-by: Jouni Högander <jouni.hogander@intel.com>
---
 tests/kms_atomic.c | 219 +++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 219 insertions(+)

diff --git a/tests/kms_atomic.c b/tests/kms_atomic.c
index 5295c8f5..253829f2 100644
--- a/tests/kms_atomic.c
+++ b/tests/kms_atomic.c
@@ -62,6 +62,17 @@ enum kms_atomic_check_relax {
 	PLANE_RELAX_FB = (1 << 1)
 };
 
+static inline int damage_rect_width(struct drm_mode_rect *r)
+{
+	return r->x2 - r->x1;
+}
+
+static inline int damage_rect_height(struct drm_mode_rect *r)
+{
+	return r->y2 - r->y1;
+}
+
+
 static bool plane_filter(enum igt_atomic_plane_properties prop)
 {
 	if ((1 << prop) & IGT_PLANE_COORD_CHANGED_MASK)
@@ -1053,6 +1064,205 @@ static void atomic_invalid_params(igt_pipe_t *pipe,
 	do_ioctl_err(display->drm_fd, DRM_IOCTL_MODE_ATOMIC, &ioc, EFAULT);
 }
 
+static void atomic_plane_damage(igt_pipe_t *pipe, igt_plane_t *plane, struct igt_fb *fb)
+{
+	struct drm_mode_rect damage[2];
+	struct igt_fb fb_1, fb_2;
+	cairo_t *cr_1, *cr_2;
+
+	/* Color fb with white rect at center */
+	igt_create_color_fb(pipe->display->drm_fd, fb->width, fb->height,
+			    fb->drm_format, I915_TILING_NONE, 0.2, 0.2, 0.2,
+			    &fb_1);
+	cr_1 = igt_get_cairo_ctx(pipe->display->drm_fd, &fb_1);
+	igt_paint_color(cr_1, fb->width/4, fb->height/4, fb->width/2,
+			fb->height/2, 1.0, 1.0, 1.0);
+	igt_put_cairo_ctx(cr_1);
+
+	/*
+	 * Flip the primary plane to new color fb using atomic API and check the
+	 * state.
+	 */
+	igt_plane_set_fb(plane, &fb_1);
+	crtc_commit(pipe, plane, COMMIT_ATOMIC, ATOMIC_RELAX_NONE);
+
+	/*
+	 * Change the color of top left clip from center and issue plane update
+	 * with damage and verify the state.
+	 */
+	damage[0].x1 = 0;
+	damage[0].y1 = 0;
+	damage[0].x2 = fb->width/2;
+	damage[0].y2 = fb->height/2;
+
+	cr_1 = igt_get_cairo_ctx(pipe->display->drm_fd, &fb_1);
+	igt_paint_color(cr_1, damage[0].x1, damage[0].y1,
+			damage_rect_width(&damage[0]),
+			damage_rect_height(&damage[0]), 1.0, 0, 0);
+	igt_put_cairo_ctx(cr_1);
+
+	igt_plane_set_fb(plane, &fb_1);
+	igt_plane_replace_prop_blob(plane, IGT_PLANE_FB_DAMAGE_CLIPS, damage,
+				    sizeof(*damage));
+	crtc_commit(pipe, plane, COMMIT_ATOMIC, ATOMIC_RELAX_NONE);
+
+	/*
+	 * Change the color of top left and bottom right clip from center and
+	 * issue plane update with damage and verify the state.
+	 */
+	igt_create_color_fb(pipe->display->drm_fd, fb->width, fb->height,
+			    fb->drm_format, I915_TILING_NONE, 0.2, 0.2, 0.2,
+			    &fb_2);
+
+	damage[0].x1 = fb->width/2;
+	damage[0].y1 = 0;
+	damage[0].x2 = fb->width;
+	damage[0].y2 = fb->height/2;
+
+	cr_2 = igt_get_cairo_ctx(pipe->display->drm_fd, &fb_2);
+	cr_1 = igt_get_cairo_ctx(pipe->display->drm_fd, &fb_1);
+	cairo_set_source_surface(cr_2, fb_1.cairo_surface, 0, 0);
+	cairo_paint(cr_2);
+	igt_paint_color(cr_2, damage[0].x1, damage[0].y1,
+			damage_rect_width(&damage[0]),
+			damage_rect_height(&damage[0]), 0, 1.0, 0);
+	igt_put_cairo_ctx(cr_1);
+	igt_put_cairo_ctx(cr_2);
+	igt_plane_set_fb(plane, &fb_2);
+	igt_plane_replace_prop_blob(plane, IGT_PLANE_FB_DAMAGE_CLIPS, damage,
+				    sizeof(*damage));
+	crtc_commit(pipe, plane, COMMIT_ATOMIC, ATOMIC_RELAX_NONE);
+
+	/*
+	 * Issue plane update with damage with a clip outside of plane src.
+	 * NOTE: This will result in no update on plane as damage is outside, so
+	 * will see no change on the screen.
+	 */
+	/* Reszie fb_1 to be bigger than plane */
+	igt_remove_fb(pipe->display->drm_fd, &fb_1);
+	igt_create_color_fb(pipe->display->drm_fd, fb->width * 2, fb->height,
+			    fb->drm_format, I915_TILING_NONE, 0.2, 0.2, 0.2,
+			    &fb_1);
+
+	damage[0].x1 = fb->width;
+	damage[0].y1 = 0;
+	damage[0].x2 = fb->width + fb->width/2;
+	damage[0].y2 = fb->height/2;
+
+	cr_1 = igt_get_cairo_ctx(pipe->display->drm_fd, &fb_1);
+	cr_2 = igt_get_cairo_ctx(pipe->display->drm_fd, &fb_2);
+	cairo_set_source_surface(cr_1, fb_2.cairo_surface, 0, 0);
+	cairo_paint(cr_1);
+	igt_paint_color(cr_1, damage[0].x1, damage[0].y1,
+			damage_rect_width(&damage[0]),
+			damage_rect_height(&damage[0]), 0, 1.0, 0);
+	igt_put_cairo_ctx(cr_2);
+	igt_put_cairo_ctx(cr_1);
+	igt_plane_set_fb(plane, &fb_1);
+	igt_plane_set_size(plane, fb->width, fb->height);
+	igt_fb_set_position(&fb_1, plane, 0, 0);
+	igt_fb_set_size(&fb_1, plane, fb->width, fb->height);
+	igt_plane_replace_prop_blob(plane, IGT_PLANE_FB_DAMAGE_CLIPS, damage,
+				    sizeof(*damage));
+	crtc_commit(pipe, plane, COMMIT_ATOMIC, ATOMIC_RELAX_NONE);
+
+	/*
+	 * Issue a plane update with damage with a clip that overlap with plane
+	 * src (Top right from center extending outside src in below case).
+	 * NOTE: Here drm core should take care of intersecting the clip to
+	 * plane src.
+	 */
+	damage[0].x1 = fb->width/2;
+	damage[0].y1 = 0;
+	damage[0].x2 = fb->width/2 + fb->width;
+	damage[0].y2 = fb->height/2;
+
+	cr_1 = igt_get_cairo_ctx(pipe->display->drm_fd, &fb_1);
+	igt_paint_color(cr_1, damage[0].x1, damage[0].y1,
+			damage_rect_width(&damage[0]),
+			damage_rect_height(&damage[0]), 1.0, 1.0, 0);
+	igt_put_cairo_ctx(cr_1);
+	igt_plane_set_fb(plane, &fb_1);
+	igt_plane_set_size(plane, fb->width, fb->height);
+	igt_fb_set_position(&fb_1, plane, 0, 0);
+	igt_fb_set_size(&fb_1, plane, fb->width, fb->height);
+	igt_plane_replace_prop_blob(plane, IGT_PLANE_FB_DAMAGE_CLIPS, damage,
+				    sizeof(*damage));
+	crtc_commit(pipe, plane, COMMIT_ATOMIC, ATOMIC_RELAX_NONE);
+
+	/*
+	 * Issue a plane update with damage with two clips one inside plane src
+	 * and one outside
+	 * NOTE: This will result in plane update with clip inside plane src.
+	 */
+	damage[0].x1 = 0;
+	damage[0].y1 = fb->height/2;
+	damage[0].x2 = fb->width/2;
+	damage[0].y2 = fb->height;
+
+	damage[1].x1 = fb->width + fb->width/2;
+	damage[1].y1 = fb->height/2;
+	damage[1].x2 = fb->width * 2;
+	damage[1].y2 = fb->height;
+
+	cr_1 = igt_get_cairo_ctx(pipe->display->drm_fd, &fb_1);
+	igt_paint_color(cr_1, damage[0].x1, damage[0].y1,
+			damage_rect_width(&damage[0]),
+			damage_rect_height(&damage[0]), 0, 1.0, 1.0);
+	igt_paint_color(cr_1, damage[1].x1, damage[1].y1,
+			damage_rect_width(&damage[1]),
+			damage_rect_height(&damage[1]), 0, 1.0, 0);
+	igt_put_cairo_ctx(cr_1);
+	igt_plane_set_fb(plane, &fb_1);
+	igt_plane_set_size(plane, fb->width, fb->height);
+	igt_fb_set_position(&fb_1, plane, 0, 0);
+	igt_fb_set_size(&fb_1, plane, fb->width, fb->height);
+	igt_plane_replace_prop_blob(plane, IGT_PLANE_FB_DAMAGE_CLIPS, damage,
+				    sizeof(*damage) * 2);
+	crtc_commit(pipe, plane, COMMIT_ATOMIC, ATOMIC_RELAX_NONE);
+
+	/*
+	 * Issue a plane update with overlapping damage clips. White rect in
+	 * center overlap partially with top left red rect.
+	 * NOTE: Drm core does not error for overlapping damage clips so if any
+	 * driver does not support overlapping should have their own
+	 * validations.
+	 */
+	damage[0].x1 = 0;
+	damage[0].y1 = 0;
+	damage[0].x2 = fb->width/2;
+	damage[0].y2 = fb->height/2;
+
+	damage[1].x1 = fb->width/4;
+	damage[1].y1 = fb->height/4;
+	damage[1].x2 = fb->width/4 + fb->width/2;
+	damage[1].y2 = fb->height/4 + fb->height/2;
+
+	cr_1 = igt_get_cairo_ctx(pipe->display->drm_fd, &fb_1);
+	igt_paint_color(cr_1, damage[0].x1, damage[0].y1,
+			damage_rect_width(&damage[0]),
+			damage_rect_height(&damage[0]), 1.0, 0, 0);
+	igt_paint_color(cr_1, damage[1].x1, damage[1].y1,
+			damage_rect_width(&damage[1]),
+			damage_rect_height(&damage[1]), 1.0, 1.0, 1.0);
+	igt_put_cairo_ctx(cr_1);
+	igt_plane_set_fb(plane, &fb_1);
+	igt_plane_set_size(plane, fb->width, fb->height);
+	igt_fb_set_position(&fb_1, plane, 0, 0);
+	igt_fb_set_size(&fb_1, plane, fb->width, fb->height);
+	igt_plane_replace_prop_blob(plane, IGT_PLANE_FB_DAMAGE_CLIPS, damage,
+				    sizeof(*damage) * 2);
+	crtc_commit(pipe, plane, COMMIT_ATOMIC, ATOMIC_RELAX_NONE);
+
+	/* Restore the primary plane */
+	igt_plane_set_fb(plane, fb);
+	plane_commit(plane, COMMIT_ATOMIC, ATOMIC_RELAX_NONE);
+
+	/* Remove the fb created for this test */
+	igt_remove_fb(pipe->display->drm_fd, &fb_1);
+	igt_remove_fb(pipe->display->drm_fd, &fb_2);
+}
+
 static void atomic_setup(igt_display_t *display, enum pipe pipe, igt_output_t *output, igt_plane_t *primary, struct igt_fb *fb)
 {
 	igt_output_set_pipe(output, pipe);
@@ -1212,6 +1422,15 @@ igt_main
 		atomic_invalid_params(pipe_obj, primary, output, &fb);
 	}
 
+	igt_describe("Simple test cases to use FB_DAMAGE_CLIPS plane property");
+	igt_subtest("atomic_plane_damage") {
+		igt_require(igt_plane_has_prop(primary, IGT_PLANE_FB_DAMAGE_CLIPS));
+
+		atomic_setup(&display, pipe, output, primary, &fb);
+
+		atomic_plane_damage(pipe_obj, primary, &fb);
+	}
+
 	igt_fixture {
 		atomic_clear(&display, pipe, primary, output);
 		igt_remove_fb(display.drm_fd, &fb);
-- 
2.19.1

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

* [igt-dev] ✓ Fi.CI.BAT: success for Fix kms_psr2_sf test and add new test for FB_DAMAGE_CLIPS plane property (rev5)
  2021-12-03 16:28 [igt-dev] [PATCH i-g-t v5 0/3] Fix kms_psr2_sf test and add new test for FB_DAMAGE_CLIPS plane property Jeevan B
                   ` (2 preceding siblings ...)
  2021-12-03 16:28 ` [igt-dev] [PATCH i-g-t v5 3/3] tests/kms_atomic: Add a new test case for FB_DAMAGE_CLIPS plane property Jeevan B
@ 2021-12-03 16:52 ` Patchwork
  2021-12-04  0:21 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
  2021-12-08 17:00 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork
  5 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2021-12-03 16:52 UTC (permalink / raw)
  To: Jeevan B; +Cc: igt-dev

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

== Series Details ==

Series: Fix kms_psr2_sf test and add new test for FB_DAMAGE_CLIPS plane property (rev5)
URL   : https://patchwork.freedesktop.org/series/94883/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_10961 -> IGTPW_6465
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

Participating hosts (42 -> 34)
------------------------------

  Additional (1): fi-pnv-d510 
  Missing    (9): fi-ilk-m540 bat-dg1-6 bat-dg1-5 fi-hsw-4200u fi-bsw-cyan fi-ctg-p8600 fi-bdw-samus bat-jsl-2 bat-jsl-1 

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

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

### IGT changes ###

#### Issues hit ####

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

  * igt@amdgpu/amd_basic@semaphore:
    - fi-bsw-nick:        NOTRUN -> [SKIP][2] ([fdo#109271]) +17 similar issues
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/fi-bsw-nick/igt@amdgpu/amd_basic@semaphore.html

  * igt@amdgpu/amd_cs_nop@sync-fork-gfx0:
    - fi-skl-6600u:       NOTRUN -> [SKIP][3] ([fdo#109271]) +18 similar issues
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/fi-skl-6600u/igt@amdgpu/amd_cs_nop@sync-fork-gfx0.html

  * igt@prime_vgem@basic-userptr:
    - fi-pnv-d510:        NOTRUN -> [SKIP][4] ([fdo#109271]) +57 similar issues
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/fi-pnv-d510/igt@prime_vgem@basic-userptr.html

  
#### Possible fixes ####

  * igt@i915_selftest@live@gt_engines:
    - fi-rkl-guc:         [INCOMPLETE][5] ([i915#4432]) -> [PASS][6]
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/fi-rkl-guc/igt@i915_selftest@live@gt_engines.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/fi-rkl-guc/igt@i915_selftest@live@gt_engines.html

  * igt@i915_selftest@live@late_gt_pm:
    - fi-bsw-nick:        [DMESG-FAIL][7] ([i915#2927] / [i915#3428]) -> [PASS][8]
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/fi-bsw-nick/igt@i915_selftest@live@late_gt_pm.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/fi-bsw-nick/igt@i915_selftest@live@late_gt_pm.html

  * igt@kms_psr@primary_page_flip:
    - fi-skl-6600u:       [INCOMPLETE][9] ([i915#198] / [i915#4547]) -> [PASS][10]
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/fi-skl-6600u/igt@kms_psr@primary_page_flip.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/fi-skl-6600u/igt@kms_psr@primary_page_flip.html

  
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
  [i915#198]: https://gitlab.freedesktop.org/drm/intel/issues/198
  [i915#2927]: https://gitlab.freedesktop.org/drm/intel/issues/2927
  [i915#3428]: https://gitlab.freedesktop.org/drm/intel/issues/3428
  [i915#4432]: https://gitlab.freedesktop.org/drm/intel/issues/4432
  [i915#4547]: https://gitlab.freedesktop.org/drm/intel/issues/4547


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

  * CI: CI-20190529 -> None
  * IGT: IGT_6299 -> IGTPW_6465

  CI-20190529: 20190529
  CI_DRM_10961: e7bbdc541b4748718cd6ce8b839f3db335f3a0fc @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_6465: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/index.html
  IGT_6299: 0933b7ccdb2bb054b6a8154171e35315d84299b7 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git



== Testlist changes ==

+igt@kms_atomic@atomic_plane_damage
+igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area
+igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area
+igt@kms_psr2_sf@plane-move-sf-dmg-area
+igt@kms_psr2_sf@primary-plane-update-sf-dmg-area
-igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-1
-igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2
-igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-3
-igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-4
-igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-5
-igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-1
-igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-2
-igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-3
-igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-4
-igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-5
-igt@kms_psr2_sf@plane-move-sf-dmg-area-0
-igt@kms_psr2_sf@plane-move-sf-dmg-area-1
-igt@kms_psr2_sf@plane-move-sf-dmg-area-2
-igt@kms_psr2_sf@plane-move-sf-dmg-area-3
-igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-1
-igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-2
-igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-3
-igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-4
-igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-5

== Logs ==

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

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

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

* [igt-dev] ✗ Fi.CI.IGT: failure for Fix kms_psr2_sf test and add new test for FB_DAMAGE_CLIPS plane property (rev5)
  2021-12-03 16:28 [igt-dev] [PATCH i-g-t v5 0/3] Fix kms_psr2_sf test and add new test for FB_DAMAGE_CLIPS plane property Jeevan B
                   ` (3 preceding siblings ...)
  2021-12-03 16:52 ` [igt-dev] ✓ Fi.CI.BAT: success for Fix kms_psr2_sf test and add new test for FB_DAMAGE_CLIPS plane property (rev5) Patchwork
@ 2021-12-04  0:21 ` Patchwork
  2021-12-08 12:28   ` B, Jeevan
  2021-12-08 17:00 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork
  5 siblings, 1 reply; 13+ messages in thread
From: Patchwork @ 2021-12-04  0:21 UTC (permalink / raw)
  To: Jeevan B; +Cc: igt-dev

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

== Series Details ==

Series: Fix kms_psr2_sf test and add new test for FB_DAMAGE_CLIPS plane property (rev5)
URL   : https://patchwork.freedesktop.org/series/94883/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_10961_full -> IGTPW_6465_full
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with IGTPW_6465_full absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in IGTPW_6465_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_6465/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_6465_full:

### IGT changes ###

#### Possible regressions ####

  * igt@kms_plane_cursor@pipe-a-viewport-size-64:
    - shard-iclb:         [PASS][1] -> [FAIL][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-iclb2/igt@kms_plane_cursor@pipe-a-viewport-size-64.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb4/igt@kms_plane_cursor@pipe-a-viewport-size-64.html

  * {igt@kms_psr2_sf@primary-plane-update-sf-dmg-area} (NEW):
    - shard-iclb:         NOTRUN -> [SKIP][3] +4 similar issues
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb4/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html
    - shard-tglb:         NOTRUN -> [SKIP][4] +3 similar issues
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html

  
New tests
---------

  New tests have been introduced between CI_DRM_10961_full and IGTPW_6465_full:

### New IGT tests (5) ###

  * igt@kms_atomic@atomic_plane_damage:
    - Statuses : 1 pass(s) 5 skip(s)
    - Exec time: [0.0, 0.26] s

  * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area:
    - Statuses : 6 skip(s)
    - Exec time: [0.0] s

  * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area:
    - Statuses : 5 skip(s)
    - Exec time: [0.0] s

  * igt@kms_psr2_sf@plane-move-sf-dmg-area:
    - Statuses : 6 skip(s)
    - Exec time: [0.0] s

  * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area:
    - Statuses : 6 skip(s)
    - Exec time: [0.0] s

  

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_ctx_param@set-priority-not-supported:
    - shard-tglb:         NOTRUN -> [SKIP][5] ([fdo#109314])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb3/igt@gem_ctx_param@set-priority-not-supported.html
    - shard-iclb:         NOTRUN -> [SKIP][6] ([fdo#109314])
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb6/igt@gem_ctx_param@set-priority-not-supported.html

  * igt@gem_ctx_sseu@invalid-sseu:
    - shard-tglb:         NOTRUN -> [SKIP][7] ([i915#280])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb2/igt@gem_ctx_sseu@invalid-sseu.html

  * igt@gem_eio@unwedge-stress:
    - shard-iclb:         [PASS][8] -> [TIMEOUT][9] ([i915#2481] / [i915#3070])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-iclb2/igt@gem_eio@unwedge-stress.html
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb4/igt@gem_eio@unwedge-stress.html

  * igt@gem_exec_balancer@parallel-out-fence:
    - shard-iclb:         NOTRUN -> [SKIP][10] ([i915#4525])
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb3/igt@gem_exec_balancer@parallel-out-fence.html
    - shard-tglb:         NOTRUN -> [SKIP][11] ([i915#4525])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb5/igt@gem_exec_balancer@parallel-out-fence.html

  * igt@gem_exec_fair@basic-none-share@rcs0:
    - shard-tglb:         [PASS][12] -> [FAIL][13] ([i915#2842])
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-tglb6/igt@gem_exec_fair@basic-none-share@rcs0.html
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb8/igt@gem_exec_fair@basic-none-share@rcs0.html
    - shard-apl:          [PASS][14] -> [SKIP][15] ([fdo#109271])
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-apl7/igt@gem_exec_fair@basic-none-share@rcs0.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl7/igt@gem_exec_fair@basic-none-share@rcs0.html

  * igt@gem_exec_fair@basic-none-vip@rcs0:
    - shard-tglb:         NOTRUN -> [FAIL][16] ([i915#2842])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb6/igt@gem_exec_fair@basic-none-vip@rcs0.html
    - shard-iclb:         NOTRUN -> [FAIL][17] ([i915#2842])
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb2/igt@gem_exec_fair@basic-none-vip@rcs0.html
    - shard-glk:          NOTRUN -> [FAIL][18] ([i915#2842])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk9/igt@gem_exec_fair@basic-none-vip@rcs0.html

  * igt@gem_exec_fair@basic-none@vecs0:
    - shard-kbl:          [PASS][19] -> [FAIL][20] ([i915#2842]) +1 similar issue
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-kbl4/igt@gem_exec_fair@basic-none@vecs0.html
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl7/igt@gem_exec_fair@basic-none@vecs0.html
    - shard-apl:          [PASS][21] -> [FAIL][22] ([i915#2842])
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-apl6/igt@gem_exec_fair@basic-none@vecs0.html
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl4/igt@gem_exec_fair@basic-none@vecs0.html

  * igt@gem_exec_fair@basic-pace-solo@rcs0:
    - shard-iclb:         [PASS][23] -> [FAIL][24] ([i915#2842])
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-iclb8/igt@gem_exec_fair@basic-pace-solo@rcs0.html
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb5/igt@gem_exec_fair@basic-pace-solo@rcs0.html

  * igt@gem_exec_params@secure-non-master:
    - shard-tglb:         NOTRUN -> [SKIP][25] ([fdo#112283])
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb5/igt@gem_exec_params@secure-non-master.html

  * igt@gem_exec_schedule@u-semaphore-user:
    - shard-snb:          NOTRUN -> [SKIP][26] ([fdo#109271]) +101 similar issues
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-snb5/igt@gem_exec_schedule@u-semaphore-user.html

  * igt@gem_exec_whisper@basic-normal:
    - shard-glk:          [PASS][27] -> [DMESG-WARN][28] ([i915#118])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-glk5/igt@gem_exec_whisper@basic-normal.html
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk4/igt@gem_exec_whisper@basic-normal.html

  * igt@gem_lmem_swapping@heavy-random:
    - shard-iclb:         NOTRUN -> [SKIP][29] ([i915#4613])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb5/igt@gem_lmem_swapping@heavy-random.html
    - shard-tglb:         NOTRUN -> [SKIP][30] ([i915#4613])
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb3/igt@gem_lmem_swapping@heavy-random.html
    - shard-apl:          NOTRUN -> [SKIP][31] ([fdo#109271] / [i915#4613])
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl3/igt@gem_lmem_swapping@heavy-random.html
    - shard-glk:          NOTRUN -> [SKIP][32] ([fdo#109271] / [i915#4613])
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk6/igt@gem_lmem_swapping@heavy-random.html

  * igt@gem_lmem_swapping@parallel-random:
    - shard-kbl:          NOTRUN -> [SKIP][33] ([fdo#109271] / [i915#4613]) +2 similar issues
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl3/igt@gem_lmem_swapping@parallel-random.html

  * igt@gem_ppgtt@flink-and-close-vma-leak:
    - shard-glk:          [PASS][34] -> [FAIL][35] ([i915#644])
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-glk6/igt@gem_ppgtt@flink-and-close-vma-leak.html
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk7/igt@gem_ppgtt@flink-and-close-vma-leak.html

  * igt@gem_pread@exhaustion:
    - shard-apl:          NOTRUN -> [WARN][36] ([i915#2658])
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl4/igt@gem_pread@exhaustion.html

  * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted:
    - shard-iclb:         NOTRUN -> [SKIP][37] ([i915#4270])
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb1/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html
    - shard-tglb:         NOTRUN -> [SKIP][38] ([i915#4270])
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb2/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html

  * igt@gem_render_copy@x-tiled-to-vebox-yf-tiled:
    - shard-kbl:          NOTRUN -> [SKIP][39] ([fdo#109271]) +182 similar issues
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl3/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html
    - shard-iclb:         NOTRUN -> [SKIP][40] ([i915#768]) +1 similar issue
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb7/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html

  * igt@gem_softpin@evict-snoop:
    - shard-iclb:         NOTRUN -> [SKIP][41] ([fdo#109312])
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb6/igt@gem_softpin@evict-snoop.html
    - shard-tglb:         NOTRUN -> [SKIP][42] ([fdo#109312])
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb6/igt@gem_softpin@evict-snoop.html

  * igt@gem_userptr_blits@input-checking:
    - shard-tglb:         NOTRUN -> [DMESG-WARN][43] ([i915#3002])
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb8/igt@gem_userptr_blits@input-checking.html
    - shard-iclb:         NOTRUN -> [DMESG-WARN][44] ([i915#3002])
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb7/igt@gem_userptr_blits@input-checking.html

  * igt@gen7_exec_parse@basic-allocation:
    - shard-tglb:         NOTRUN -> [SKIP][45] ([fdo#109289])
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb2/igt@gen7_exec_parse@basic-allocation.html

  * igt@gen9_exec_parse@bb-large:
    - shard-tglb:         NOTRUN -> [SKIP][46] ([i915#2856])
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb2/igt@gen9_exec_parse@bb-large.html
    - shard-iclb:         NOTRUN -> [SKIP][47] ([i915#2856])
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb4/igt@gen9_exec_parse@bb-large.html

  * igt@i915_pm_dc@dc6-dpms:
    - shard-iclb:         [PASS][48] -> [FAIL][49] ([i915#454]) +1 similar issue
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-iclb5/igt@i915_pm_dc@dc6-dpms.html
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb3/igt@i915_pm_dc@dc6-dpms.html

  * igt@i915_pm_lpsp@screens-disabled:
    - shard-tglb:         NOTRUN -> [SKIP][50] ([i915#1902])
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb5/igt@i915_pm_lpsp@screens-disabled.html

  * igt@i915_pm_rc6_residency@media-rc6-accuracy:
    - shard-tglb:         NOTRUN -> [SKIP][51] ([fdo#109289] / [fdo#111719])
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb1/igt@i915_pm_rc6_residency@media-rc6-accuracy.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip:
    - shard-kbl:          NOTRUN -> [SKIP][52] ([fdo#109271] / [i915#3777])
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip.html

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

  * igt@kms_big_fb@yf-tiled-8bpp-rotate-270:
    - shard-iclb:         NOTRUN -> [SKIP][54] ([fdo#110723]) +1 similar issue
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb8/igt@kms_big_fb@yf-tiled-8bpp-rotate-270.html

  * igt@kms_big_fb@yf-tiled-addfb:
    - shard-tglb:         NOTRUN -> [SKIP][55] ([fdo#111615]) +4 similar issues
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb8/igt@kms_big_fb@yf-tiled-addfb.html

  * igt@kms_big_joiner@invalid-modeset:
    - shard-tglb:         NOTRUN -> [SKIP][56] ([i915#2705])
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb1/igt@kms_big_joiner@invalid-modeset.html

  * igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs:
    - shard-glk:          NOTRUN -> [SKIP][57] ([fdo#109271] / [i915#3886]) +1 similar issue
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk8/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-a-crc-sprite-planes-basic-yf_tiled_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][58] ([fdo#111615] / [i915#3689]) +1 similar issue
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb2/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-yf_tiled_ccs.html

  * igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs:
    - shard-kbl:          NOTRUN -> [SKIP][59] ([fdo#109271] / [i915#3886]) +8 similar issues
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl3/igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_mc_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][60] ([i915#3689] / [i915#3886])
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb5/igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_mc_ccs.html
    - shard-iclb:         NOTRUN -> [SKIP][61] ([fdo#109278] / [i915#3886])
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb7/igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_rc_ccs_cc:
    - shard-apl:          NOTRUN -> [SKIP][62] ([fdo#109271] / [i915#3886]) +4 similar issues
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl7/igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_rc_ccs_cc.html

  * igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][63] ([i915#3689]) +5 similar issues
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb1/igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_ccs.html

  * igt@kms_chamelium@dp-frame-dump:
    - shard-iclb:         NOTRUN -> [SKIP][64] ([fdo#109284] / [fdo#111827]) +3 similar issues
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb6/igt@kms_chamelium@dp-frame-dump.html

  * igt@kms_chamelium@hdmi-hpd-with-enabled-mode:
    - shard-kbl:          NOTRUN -> [SKIP][65] ([fdo#109271] / [fdo#111827]) +12 similar issues
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl6/igt@kms_chamelium@hdmi-hpd-with-enabled-mode.html
    - shard-snb:          NOTRUN -> [SKIP][66] ([fdo#109271] / [fdo#111827]) +3 similar issues
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-snb7/igt@kms_chamelium@hdmi-hpd-with-enabled-mode.html

  * igt@kms_chamelium@vga-edid-read:
    - shard-apl:          NOTRUN -> [SKIP][67] ([fdo#109271] / [fdo#111827]) +9 similar issues
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl3/igt@kms_chamelium@vga-edid-read.html

  * igt@kms_color_chamelium@pipe-d-degamma:
    - shard-glk:          NOTRUN -> [SKIP][68] ([fdo#109271] / [fdo#111827]) +7 similar issues
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk1/igt@kms_color_chamelium@pipe-d-degamma.html
    - shard-tglb:         NOTRUN -> [SKIP][69] ([fdo#109284] / [fdo#111827]) +7 similar issues
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb6/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_6465/shard-iclb6/igt@kms_color_chamelium@pipe-d-degamma.html

  * igt@kms_content_protection@atomic-dpms:
    - shard-kbl:          NOTRUN -> [TIMEOUT][71] ([i915#1319]) +1 similar issue
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl2/igt@kms_content_protection@atomic-dpms.html

  * igt@kms_content_protection@dp-mst-lic-type-1:
    - shard-tglb:         NOTRUN -> [SKIP][72] ([i915#3116])
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb2/igt@kms_content_protection@dp-mst-lic-type-1.html

  * igt@kms_content_protection@type1:
    - shard-iclb:         NOTRUN -> [SKIP][73] ([fdo#109300] / [fdo#111066])
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb2/igt@kms_content_protection@type1.html
    - shard-tglb:         NOTRUN -> [SKIP][74] ([fdo#111828])
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb8/igt@kms_content_protection@type1.html

  * igt@kms_cursor_crc@pipe-a-cursor-512x512-sliding:
    - shard-iclb:         NOTRUN -> [SKIP][75] ([fdo#109278] / [fdo#109279])
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb7/igt@kms_cursor_crc@pipe-a-cursor-512x512-sliding.html
    - shard-tglb:         NOTRUN -> [SKIP][76] ([fdo#109279] / [i915#3359])
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb5/igt@kms_cursor_crc@pipe-a-cursor-512x512-sliding.html

  * igt@kms_cursor_crc@pipe-b-cursor-32x10-onscreen:
    - shard-iclb:         NOTRUN -> [SKIP][77] ([fdo#109278]) +10 similar issues
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb5/igt@kms_cursor_crc@pipe-b-cursor-32x10-onscreen.html

  * igt@kms_cursor_crc@pipe-b-cursor-32x10-sliding:
    - shard-tglb:         NOTRUN -> [SKIP][78] ([i915#3359]) +2 similar issues
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb6/igt@kms_cursor_crc@pipe-b-cursor-32x10-sliding.html

  * igt@kms_cursor_crc@pipe-b-cursor-32x32-offscreen:
    - shard-tglb:         NOTRUN -> [SKIP][79] ([i915#3319]) +1 similar issue
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb1/igt@kms_cursor_crc@pipe-b-cursor-32x32-offscreen.html

  * igt@kms_cursor_crc@pipe-d-cursor-256x256-random:
    - shard-glk:          NOTRUN -> [SKIP][80] ([fdo#109271]) +82 similar issues
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk2/igt@kms_cursor_crc@pipe-d-cursor-256x256-random.html

  * igt@kms_fbcon_fbt@fbc-suspend:
    - shard-apl:          [PASS][81] -> [INCOMPLETE][82] ([i915#180] / [i915#1982])
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-apl3/igt@kms_fbcon_fbt@fbc-suspend.html
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl4/igt@kms_fbcon_fbt@fbc-suspend.html

  * igt@kms_flip@2x-flip-vs-suspend-interruptible:
    - shard-iclb:         NOTRUN -> [SKIP][83] ([fdo#109274]) +1 similar issue
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb7/igt@kms_flip@2x-flip-vs-suspend-interruptible.html

  * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible@ac-hdmi-a1-hdmi-a2:
    - shard-glk:          [PASS][84] -> [FAIL][85] ([i915#2122])
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-glk5/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible@ac-hdmi-a1-hdmi-a2.html
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk7/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible@ac-hdmi-a1-hdmi-a2.html

  * igt@kms_flip@flip-vs-suspend-interruptible@a-dp1:
    - shard-kbl:          NOTRUN -> [DMESG-WARN][86] ([i915#180]) +7 similar issues
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl4/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html

  * igt@kms_flip@flip-vs-suspend@a-dp1:
    - shard-apl:          [PASS][87] -> [DMESG-WARN][88] ([i915#180]) +4 similar issues
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-apl2/igt@kms_flip@flip-vs-suspend@a-dp1.html
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl2/igt@kms_flip@flip-vs-suspend@a-dp1.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile:
    - shard-iclb:         [PASS][89] -> [SKIP][90] ([i915#3701]) +1 similar issue
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-iclb5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile.html
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-render:
    - shard-iclb:         NOTRUN -> [SKIP][91] ([fdo#109280]) +11 similar issues
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-blt:
    - shard-tglb:         NOTRUN -> [SKIP][92] ([fdo#111825]) +22 similar issues
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-blt.html

  * igt@kms_hdr@bpc-switch-suspend:
    - shard-kbl:          [PASS][93] -> [DMESG-WARN][94] ([i915#180]) +2 similar issues
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-kbl2/igt@kms_hdr@bpc-switch-suspend.html
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl1/igt@kms_hdr@bpc-switch-suspend.html

  * igt@kms_plane_alpha_blend@pipe-b-alpha-basic:
    - shard-glk:          NOTRUN -> [FAIL][95] ([fdo#108145] / [i915#265])
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk4/igt@kms_plane_alpha_blend@pipe-b-alpha-basic.html

  * igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max:
    - shard-apl:          NOTRUN -> [FAIL][96] ([fdo#108145] / [i915#265]) +1 similar issue
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl3/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max.html

  * igt@kms_plane_alpha_blend@pipe-c-alpha-basic:
    - shard-kbl:          NOTRUN -> [FAIL][97] ([fdo#108145] / [i915#265]) +3 similar issues
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl6/igt@kms_plane_alpha_blend@pipe-c-alpha-basic.html

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

  * igt@kms_plane_cursor@pipe-a-viewport-size-64:
    - shard-glk:          [PASS][99] -> [FAIL][100] ([i915#1888]) +1 similar issue
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-glk8/igt@kms_plane_cursor@pipe-a-viewport-size-64.html
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk9/igt@kms_plane_cursor@pipe-a-viewport-size-64.html

  * igt@kms_plane_lowres@pipe-b-tiling-y:
    - shard-tglb:         NOTRUN -> [SKIP][101] ([i915#3536])
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb2/igt@kms_plane_lowres@pipe-b-tiling-y.html
    - shard-iclb:         NOTRUN -> [SKIP][102] ([i915#3536])
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb7/igt@kms_plane_lowres@pipe-b-tiling-y.html

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

  * igt@kms_psr@psr2_primary_mmap_gtt:
    - shard-iclb:         [PASS][104] -> [SKIP][105] ([fdo#109441]) +1 similar issue
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-iclb2/igt@kms_psr@psr2_primary_mmap_gtt.html
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb6/igt@kms_psr@psr2_primary_mmap_gtt.html

  * igt@kms_psr@psr2_sprite_plane_onoff:
    - shard-tglb:         NOTRUN -> [FAIL][106] ([i915#132] / [i915#3467]) +1 similar issue
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb3/igt@kms_psr@psr2_sprite_plane_onoff.html
    - shard-iclb:         NOTRUN -> [SKIP][107] ([fdo#109441])
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb1/igt@kms_psr@psr2_sprite_plane_onoff.html

  * igt@kms_setmode@basic:
    - shard-glk:          [PASS][108] -> [FAIL][109] ([i915#31])
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-glk4/igt@kms_setmode@basic.html
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk3/igt@kms_setmode@basic.html

  * igt@kms_vrr@flip-dpms:
    - shard-iclb:         NOTRUN -> [SKIP][110] ([fdo#109502])
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb8/igt@kms_vrr@flip-dpms.html
    - shard-tglb:         NOTRUN -> [SKIP][111] ([fdo#109502])
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb2/igt@kms_vrr@flip-dpms.html

  * igt@kms_writeback@writeback-pixel-formats:
    - shard-kbl:          NOTRUN -> [SKIP][112] ([fdo#109271] / [i915#2437])
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl1/igt@kms_writeback@writeback-pixel-formats.html

  * igt@nouveau_crc@pipe-b-source-outp-inactive:
    - shard-iclb:         NOTRUN -> [SKIP][113] ([i915#2530]) +1 similar issue
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb2/igt@nouveau_crc@pipe-b-source-outp-inactive.html

  * igt@nouveau_crc@pipe-c-source-rg:
    - shard-tglb:         NOTRUN -> [SKIP][114] ([i915#2530]) +1 similar issue
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb3/igt@nouveau_crc@pipe-c-source-rg.html

  * igt@perf@gen12-oa-tlb-invalidate:
    - shard-iclb:         NOTRUN -> [SKIP][115] ([fdo#109289]) +1 similar issue
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb3/igt@perf@gen12-oa-tlb-invalidate.html

  * igt@prime_nv_api@i915_nv_reimport_twice_check_flink_name:
    - shard-apl:          NOTRUN -> [SKIP][116] ([fdo#109271]) +144 similar issues
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl2/igt@prime_nv_api@i915_nv_reimport_twice_check_flink_name.html

  * igt@prime_nv_test@i915_blt_fill_nv_read:
    - shard-iclb:         NOTRUN -> [SKIP][117] ([fdo#109291]) +1 similar issue
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb4/igt@prime_nv_test@i915_blt_fill_nv_read.html

  * igt@prime_nv_test@nv_write_i915_cpu_mmap_read:
    - shard-tglb:         NOTRUN -> [SKIP][118] ([fdo#109291]) +1 similar issue
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb5/igt@prime_nv_test@nv_write_i915_cpu_mmap_read.html

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

  * igt@sysfs_clients@busy:
    - shard-apl:          NOTRUN -> [SKIP][120] ([fdo#109271] / [i915#2994])
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl7/igt@sysfs_clients@busy.html
    - shard-kbl:          NOTRUN -> [SKIP][121] ([fdo#109271] / [i915#2994])
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl3/igt@sysfs_clients@busy.html

  * igt@sysfs_clients@fair-3:
    - shard-tglb:         NOTRUN -> [SKIP][122] ([i915#2994])
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb3/igt@sysfs_clients@fair-3.html
    - shard-iclb:         NOTRUN -> [SKIP][123] ([i915#2994])
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb6/igt@sysfs_clients@fair-3.html
    - shard-glk:          NOTRUN -> [SKIP][124] ([fdo#109271] / [i915#2994])
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk5/igt@sysfs_clients@fair-3.html

  
#### Possible fixes ####

  * igt@gem_exec_fair@basic-deadline:
    - shard-glk:          [FAIL][125] ([i915#2846]) -> [PASS][126]
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-glk2/igt@gem_exec_fair@basic-deadline.html
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk7/igt@gem_exec_fair@basic-deadline.html

  * igt@gem_exec_fair@basic-none@vcs0:
    - shard-apl:          [FAIL][127] ([i915#2842]) -> [PASS][128]
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-apl6/igt@gem_exec_fair@basic-none@vcs0.html
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl4/igt@gem_exec_fair@basic-none@vcs0.html

  * igt@gem_exec_fair@basic-pace@vcs0:
    - shard-tglb:         [FAIL][129] ([i915#2842]) -> [PASS][130]
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-tglb3/igt@gem_exec_fair@basic-pace@vcs0.html
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb5/igt@gem_exec_fair@basic-pace@vcs0.html

  * igt@gem_exec_fair@basic-pace@vcs1:
    - shard-kbl:          [SKIP][131] ([fdo#109271]) -> [PASS][132]
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-kbl6/igt@gem_exec_fair@basic-pace@vcs1.html
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl2/igt@gem_exec_fair@basic-pace@vcs1.html

  * igt@gem_exec_fair@basic-throttle@rcs0:
    - shard-glk:          [FAIL][133] ([i915#2842]) -> [PASS][134]
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-glk7/igt@gem_exec_fair@basic-throttle@rcs0.html
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk4/igt@gem_exec_fair@basic-throttle@rcs0.html

  * igt@gem_workarounds@suspend-resume-fd:
    - shard-kbl:          [DMESG-WARN][135] ([i915#180]) -> [PASS][136] +2 similar issues
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-kbl1/igt@gem_workarounds@suspend-resume-fd.html
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl2/ig

== Logs ==

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

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

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

* Re: [igt-dev] ✗ Fi.CI.IGT: failure for Fix kms_psr2_sf test and add new test for FB_DAMAGE_CLIPS plane property (rev5)
  2021-12-04  0:21 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
@ 2021-12-08 12:28   ` B, Jeevan
  2021-12-08 16:03     ` Vudum, Lakshminarayana
  0 siblings, 1 reply; 13+ messages in thread
From: B, Jeevan @ 2021-12-08 12:28 UTC (permalink / raw)
  To: Vudum, Lakshminarayana; +Cc: igt-dev

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

Hi Lakshmi,

Can we have a rerun for this patch series.

Thanks
Jeevan B

From: Patchwork <patchwork@emeril.freedesktop.org>
Sent: Saturday, December 4, 2021 5:52 AM
To: B, Jeevan <jeevan.b@intel.com>
Cc: igt-dev@lists.freedesktop.org
Subject: ✗ Fi.CI.IGT: failure for Fix kms_psr2_sf test and add new test for FB_DAMAGE_CLIPS plane property (rev5)

Patch Details
Series:

Fix kms_psr2_sf test and add new test for FB_DAMAGE_CLIPS plane property (rev5)

URL:

https://patchwork.freedesktop.org/series/94883/

State:

failure

Details:

https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/index.html

CI Bug Log - changes from CI_DRM_10961_full -> IGTPW_6465_full
Summary

FAILURE

Serious unknown changes coming with IGTPW_6465_full absolutely need to be
verified manually.

If you think the reported changes have nothing to do with the changes
introduced in IGTPW_6465_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_6465/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_6465_full:

IGT changes
Possible regressions

  *   igt@kms_plane_cursor@pipe-a-viewport-size-64:

     *   shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-iclb2/igt@kms_plane_cursor@pipe-a-viewport-size-64.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb4/igt@kms_plane_cursor@pipe-a-viewport-size-64.html>

  *   {igt@kms_psr2_sf@primary-plane-update-sf-dmg-area} (NEW):

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb4/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html> +4 similar issues
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html> +3 similar issues

New tests

New tests have been introduced between CI_DRM_10961_full and IGTPW_6465_full:

New IGT tests (5)

  *   igt@kms_atomic@atomic_plane_damage:

     *   Statuses : 1 pass(s) 5 skip(s)
     *   Exec time: [0.0, 0.26] s

  *   igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area:

     *   Statuses : 6 skip(s)
     *   Exec time: [0.0] s

  *   igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area:

     *   Statuses : 5 skip(s)
     *   Exec time: [0.0] s

  *   igt@kms_psr2_sf@plane-move-sf-dmg-area:

     *   Statuses : 6 skip(s)
     *   Exec time: [0.0] s

  *   igt@kms_psr2_sf@primary-plane-update-sf-dmg-area:

     *   Statuses : 6 skip(s)
     *   Exec time: [0.0] s

Known issues

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

IGT changes
Issues hit

  *   igt@gem_ctx_param@set-priority-not-supported:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb3/igt@gem_ctx_param@set-priority-not-supported.html> ([fdo#109314])
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb6/igt@gem_ctx_param@set-priority-not-supported.html> ([fdo#109314])

  *   igt@gem_ctx_sseu@invalid-sseu:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb2/igt@gem_ctx_sseu@invalid-sseu.html> ([i915#280])

  *   igt@gem_eio@unwedge-stress:

     *   shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-iclb2/igt@gem_eio@unwedge-stress.html> -> TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb4/igt@gem_eio@unwedge-stress.html> ([i915#2481] / [i915#3070])

  *   igt@gem_exec_balancer@parallel-out-fence:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb3/igt@gem_exec_balancer@parallel-out-fence.html> ([i915#4525])
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb5/igt@gem_exec_balancer@parallel-out-fence.html> ([i915#4525])

  *   igt@gem_exec_fair@basic-none-share@rcs0:

     *   shard-tglb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-tglb6/igt@gem_exec_fair@basic-none-share@rcs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb8/igt@gem_exec_fair@basic-none-share@rcs0.html> ([i915#2842])
     *   shard-apl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-apl7/igt@gem_exec_fair@basic-none-share@rcs0.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl7/igt@gem_exec_fair@basic-none-share@rcs0.html> ([fdo#109271])

  *   igt@gem_exec_fair@basic-none-vip@rcs0:

     *   shard-tglb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb6/igt@gem_exec_fair@basic-none-vip@rcs0.html> ([i915#2842])
     *   shard-iclb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb2/igt@gem_exec_fair@basic-none-vip@rcs0.html> ([i915#2842])
     *   shard-glk: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk9/igt@gem_exec_fair@basic-none-vip@rcs0.html> ([i915#2842])

  *   igt@gem_exec_fair@basic-none@vecs0:

     *   shard-kbl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-kbl4/igt@gem_exec_fair@basic-none@vecs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl7/igt@gem_exec_fair@basic-none@vecs0.html> ([i915#2842]) +1 similar issue
     *   shard-apl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-apl6/igt@gem_exec_fair@basic-none@vecs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl4/igt@gem_exec_fair@basic-none@vecs0.html> ([i915#2842])

  *   igt@gem_exec_fair@basic-pace-solo@rcs0:

     *   shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-iclb8/igt@gem_exec_fair@basic-pace-solo@rcs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb5/igt@gem_exec_fair@basic-pace-solo@rcs0.html> ([i915#2842])

  *   igt@gem_exec_params@secure-non-master:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb5/igt@gem_exec_params@secure-non-master.html> ([fdo#112283])

  *   igt@gem_exec_schedule@u-semaphore-user:

     *   shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-snb5/igt@gem_exec_schedule@u-semaphore-user.html> ([fdo#109271]) +101 similar issues

  *   igt@gem_exec_whisper@basic-normal:

     *   shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-glk5/igt@gem_exec_whisper@basic-normal.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk4/igt@gem_exec_whisper@basic-normal.html> ([i915#118])

  *   igt@gem_lmem_swapping@heavy-random:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb5/igt@gem_lmem_swapping@heavy-random.html> ([i915#4613])
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb3/igt@gem_lmem_swapping@heavy-random.html> ([i915#4613])
     *   shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl3/igt@gem_lmem_swapping@heavy-random.html> ([fdo#109271] / [i915#4613])
     *   shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk6/igt@gem_lmem_swapping@heavy-random.html> ([fdo#109271] / [i915#4613])

  *   igt@gem_lmem_swapping@parallel-random:

     *   shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl3/igt@gem_lmem_swapping@parallel-random.html> ([fdo#109271] / [i915#4613]) +2 similar issues

  *   igt@gem_ppgtt@flink-and-close-vma-leak:

     *   shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-glk6/igt@gem_ppgtt@flink-and-close-vma-leak.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk7/igt@gem_ppgtt@flink-and-close-vma-leak.html> ([i915#644])

  *   igt@gem_pread@exhaustion:

     *   shard-apl: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl4/igt@gem_pread@exhaustion.html> ([i915#2658])

  *   igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb1/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html> ([i915#4270])
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb2/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html> ([i915#4270])

  *   igt@gem_render_copy@x-tiled-to-vebox-yf-tiled:

     *   shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl3/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html> ([fdo#109271]) +182 similar issues
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb7/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html> ([i915#768]) +1 similar issue

  *   igt@gem_softpin@evict-snoop:

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

  *   igt@gem_userptr_blits@input-checking:

     *   shard-tglb: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb8/igt@gem_userptr_blits@input-checking.html> ([i915#3002])
     *   shard-iclb: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb7/igt@gem_userptr_blits@input-checking.html> ([i915#3002])

  *   igt@gen7_exec_parse@basic-allocation:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb2/igt@gen7_exec_parse@basic-allocation.html> ([fdo#109289])

  *   igt@gen9_exec_parse@bb-large:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb2/igt@gen9_exec_parse@bb-large.html> ([i915#2856])
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb4/igt@gen9_exec_parse@bb-large.html> ([i915#2856])

  *   igt@i915_pm_dc@dc6-dpms:

     *   shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-iclb5/igt@i915_pm_dc@dc6-dpms.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb3/igt@i915_pm_dc@dc6-dpms.html> ([i915#454]) +1 similar issue

  *   igt@i915_pm_lpsp@screens-disabled:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb5/igt@i915_pm_lpsp@screens-disabled.html> ([i915#1902])

  *   igt@i915_pm_rc6_residency@media-rc6-accuracy:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb1/igt@i915_pm_rc6_residency@media-rc6-accuracy.html> ([fdo#109289] / [fdo#111719])

  *   igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip:

     *   shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip.html> ([fdo#109271] / [i915#3777])

  *   igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip:

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

  *   igt@kms_big_fb@yf-tiled-8bpp-rotate-270:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb8/igt@kms_big_fb@yf-tiled-8bpp-rotate-270.html> ([fdo#110723]) +1 similar issue

  *   igt@kms_big_fb@yf-tiled-addfb:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb8/igt@kms_big_fb@yf-tiled-addfb.html> ([fdo#111615]) +4 similar issues

  *   igt@kms_big_joiner@invalid-modeset:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb1/igt@kms_big_joiner@invalid-modeset.html> ([i915#2705])

  *   igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs:

     *   shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk8/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs.html> ([fdo#109271] / [i915#3886]) +1 similar issue

  *   igt@kms_ccs@pipe-a-crc-sprite-planes-basic-yf_tiled_ccs:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb2/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-yf_tiled_ccs.html> ([fdo#111615] / [i915#3689]) +1 similar issue

  *   igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs:

     *   shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl3/igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs.html> ([fdo#109271] / [i915#3886]) +8 similar issues

  *   igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_mc_ccs:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb5/igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_mc_ccs.html> ([i915#3689] / [i915#3886])
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb7/igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_mc_ccs.html> ([fdo#109278] / [i915#3886])

  *   igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_rc_ccs_cc:

     *   shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl7/igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_rc_ccs_cc.html> ([fdo#109271] / [i915#3886]) +4 similar issues

  *   igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_ccs:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb1/igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_ccs.html> ([i915#3689]) +5 similar issues

  *   igt@kms_chamelium@dp-frame-dump:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb6/igt@kms_chamelium@dp-frame-dump.html> ([fdo#109284] / [fdo#111827]) +3 similar issues

  *   igt@kms_chamelium@hdmi-hpd-with-enabled-mode:

     *   shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl6/igt@kms_chamelium@hdmi-hpd-with-enabled-mode.html> ([fdo#109271] / [fdo#111827]) +12 similar issues
     *   shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-snb7/igt@kms_chamelium@hdmi-hpd-with-enabled-mode.html> ([fdo#109271] / [fdo#111827]) +3 similar issues

  *   igt@kms_chamelium@vga-edid-read:

     *   shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl3/igt@kms_chamelium@vga-edid-read.html> ([fdo#109271] / [fdo#111827]) +9 similar issues

  *   igt@kms_color_chamelium@pipe-d-degamma:

     *   shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk1/igt@kms_color_chamelium@pipe-d-degamma.html> ([fdo#109271] / [fdo#111827]) +7 similar issues
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb6/igt@kms_color_chamelium@pipe-d-degamma.html> ([fdo#109284] / [fdo#111827]) +7 similar issues
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb6/igt@kms_color_chamelium@pipe-d-degamma.html> ([fdo#109278] / [fdo#109284] / [fdo#111827])

  *   igt@kms_content_protection@atomic-dpms:

     *   shard-kbl: NOTRUN -> TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl2/igt@kms_content_protection@atomic-dpms.html> ([i915#1319]) +1 similar issue

  *   igt@kms_content_protection@dp-mst-lic-type-1:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb2/igt@kms_content_protection@dp-mst-lic-type-1.html> ([i915#3116])

  *   igt@kms_content_protection@type1:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb2/igt@kms_content_protection@type1.html> ([fdo#109300] / [fdo#111066])
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb8/igt@kms_content_protection@type1.html> ([fdo#111828])

  *   igt@kms_cursor_crc@pipe-a-cursor-512x512-sliding:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb7/igt@kms_cursor_crc@pipe-a-cursor-512x512-sliding.html> ([fdo#109278] / [fdo#109279])
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb5/igt@kms_cursor_crc@pipe-a-cursor-512x512-sliding.html> ([fdo#109279] / [i915#3359])

  *   igt@kms_cursor_crc@pipe-b-cursor-32x10-onscreen:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb5/igt@kms_cursor_crc@pipe-b-cursor-32x10-onscreen.html> ([fdo#109278]) +10 similar issues

  *   igt@kms_cursor_crc@pipe-b-cursor-32x10-sliding:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb6/igt@kms_cursor_crc@pipe-b-cursor-32x10-sliding.html> ([i915#3359]) +2 similar issues

  *   igt@kms_cursor_crc@pipe-b-cursor-32x32-offscreen:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb1/igt@kms_cursor_crc@pipe-b-cursor-32x32-offscreen.html> ([i915#3319]) +1 similar issue

  *   igt@kms_cursor_crc@pipe-d-cursor-256x256-random:

     *   shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk2/igt@kms_cursor_crc@pipe-d-cursor-256x256-random.html> ([fdo#109271]) +82 similar issues

  *   igt@kms_fbcon_fbt@fbc-suspend:

     *   shard-apl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-apl3/igt@kms_fbcon_fbt@fbc-suspend.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl4/igt@kms_fbcon_fbt@fbc-suspend.html> ([i915#180] / [i915#1982])

  *   igt@kms_flip@2x-flip-vs-suspend-interruptible:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb7/igt@kms_flip@2x-flip-vs-suspend-interruptible.html> ([fdo#109274]) +1 similar issue

  *   igt@kms_flip@2x-flip-vs-wf_vblank-interruptible@ac-hdmi-a1-hdmi-a2:

     *   shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-glk5/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible@ac-hdmi-a1-hdmi-a2.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk7/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible@ac-hdmi-a1-hdmi-a2.html> ([i915#2122])

  *   igt@kms_flip@flip-vs-suspend-interruptible@a-dp1:

     *   shard-kbl: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl4/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html> ([i915#180]) +7 similar issues

  *   igt@kms_flip@flip-vs-suspend@a-dp1:

     *   shard-apl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-apl2/igt@kms_flip@flip-vs-suspend@a-dp1.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl2/igt@kms_flip@flip-vs-suspend@a-dp1.html> ([i915#180]) +4 similar issues

  *   igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile:

     *   shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-iclb5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile.html> ([i915#3701]) +1 similar issue

  *   igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-render:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-render.html> ([fdo#109280]) +11 similar issues

  *   igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-blt:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-blt.html> ([fdo#111825]) +22 similar issues

  *   igt@kms_hdr@bpc-switch-suspend:

     *   shard-kbl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-kbl2/igt@kms_hdr@bpc-switch-suspend.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl1/igt@kms_hdr@bpc-switch-suspend.html> ([i915#180]) +2 similar issues

  *   igt@kms_plane_alpha_blend@pipe-b-alpha-basic:

     *   shard-glk: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk4/igt@kms_plane_alpha_blend@pipe-b-alpha-basic.html> ([fdo#108145] / [i915#265])

  *   igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max:

     *   shard-apl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl3/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max.html> ([fdo#108145] / [i915#265]) +1 similar issue

  *   igt@kms_plane_alpha_blend@pipe-c-alpha-basic:

     *   shard-kbl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl6/igt@kms_plane_alpha_blend@pipe-c-alpha-basic.html> ([fdo#108145] / [i915#265]) +3 similar issues

  *   igt@kms_plane_alpha_blend@pipe-c-alpha-transparent-fb:

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

  *   igt@kms_plane_cursor@pipe-a-viewport-size-64:

     *   shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-glk8/igt@kms_plane_cursor@pipe-a-viewport-size-64.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk9/igt@kms_plane_cursor@pipe-a-viewport-size-64.html> ([i915#1888]) +1 similar issue

  *   igt@kms_plane_lowres@pipe-b-tiling-y:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb2/igt@kms_plane_lowres@pipe-b-tiling-y.html> ([i915#3536])
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb7/igt@kms_plane_lowres@pipe-b-tiling-y.html> ([i915#3536])

  *   igt@kms_psr2_sf@cursor-plane-update-sf:

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

  *   igt@kms_psr@psr2_primary_mmap_gtt:

     *   shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-iclb2/igt@kms_psr@psr2_primary_mmap_gtt.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb6/igt@kms_psr@psr2_primary_mmap_gtt.html> ([fdo#109441]) +1 similar issue

  *   igt@kms_psr@psr2_sprite_plane_onoff:

     *   shard-tglb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb3/igt@kms_psr@psr2_sprite_plane_onoff.html> ([i915#132] / [i915#3467]) +1 similar issue
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb1/igt@kms_psr@psr2_sprite_plane_onoff.html> ([fdo#109441])

  *   igt@kms_setmode@basic:

     *   shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-glk4/igt@kms_setmode@basic.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk3/igt@kms_setmode@basic.html> ([i915#31])

  *   igt@kms_vrr@flip-dpms:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb8/igt@kms_vrr@flip-dpms.html> ([fdo#109502])
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb2/igt@kms_vrr@flip-dpms.html> ([fdo#109502])

  *   igt@kms_writeback@writeback-pixel-formats:

     *   shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl1/igt@kms_writeback@writeback-pixel-formats.html> ([fdo#109271] / [i915#2437])

  *   igt@nouveau_crc@pipe-b-source-outp-inactive:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb2/igt@nouveau_crc@pipe-b-source-outp-inactive.html> ([i915#2530]) +1 similar issue

  *   igt@nouveau_crc@pipe-c-source-rg:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb3/igt@nouveau_crc@pipe-c-source-rg.html> ([i915#2530]) +1 similar issue

  *   igt@perf@gen12-oa-tlb-invalidate:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb3/igt@perf@gen12-oa-tlb-invalidate.html> ([fdo#109289]) +1 similar issue

  *   igt@prime_nv_api@i915_nv_reimport_twice_check_flink_name:

     *   shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl2/igt@prime_nv_api@i915_nv_reimport_twice_check_flink_name.html> ([fdo#109271]) +144 similar issues

  *   igt@prime_nv_test@i915_blt_fill_nv_read:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb4/igt@prime_nv_test@i915_blt_fill_nv_read.html> ([fdo#109291]) +1 similar issue

  *   igt@prime_nv_test@nv_write_i915_cpu_mmap_read:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb5/igt@prime_nv_test@nv_write_i915_cpu_mmap_read.html> ([fdo#109291]) +1 similar issue

  *   igt@prime_vgem@basic-userptr:

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

  *   igt@sysfs_clients@busy:

     *   shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl7/igt@sysfs_clients@busy.html> ([fdo#109271] / [i915#2994])
     *   shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl3/igt@sysfs_clients@busy.html> ([fdo#109271] / [i915#2994])

  *   igt@sysfs_clients@fair-3:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb3/igt@sysfs_clients@fair-3.html> ([i915#2994])
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb6/igt@sysfs_clients@fair-3.html> ([i915#2994])
     *   shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk5/igt@sysfs_clients@fair-3.html> ([fdo#109271] / [i915#2994])

Possible fixes

  *   igt@gem_exec_fair@basic-deadline:

     *   shard-glk: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-glk2/igt@gem_exec_fair@basic-deadline.html> ([i915#2846]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk7/igt@gem_exec_fair@basic-deadline.html>

  *   igt@gem_exec_fair@basic-none@vcs0:

     *   shard-apl: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-apl6/igt@gem_exec_fair@basic-none@vcs0.html> ([i915#2842]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl4/igt@gem_exec_fair@basic-none@vcs0.html>

  *   igt@gem_exec_fair@basic-pace@vcs0:

     *   shard-tglb: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-tglb3/igt@gem_exec_fair@basic-pace@vcs0.html> ([i915#2842]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb5/igt@gem_exec_fair@basic-pace@vcs0.html>

  *   igt@gem_exec_fair@basic-pace@vcs1:

     *   shard-kbl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-kbl6/igt@gem_exec_fair@basic-pace@vcs1.html> ([fdo#109271]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl2/igt@gem_exec_fair@basic-pace@vcs1.html>

  *   igt@gem_exec_fair@basic-throttle@rcs0:

     *   shard-glk: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-glk7/igt@gem_exec_fair@basic-throttle@rcs0.html> ([i915#2842]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk4/igt@gem_exec_fair@basic-throttle@rcs0.html>

  *   igt@gem_workarounds@suspend-resume-fd:

     *   shard-kbl: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-kbl1/igt@gem_workarounds@suspend-resume-fd.html> ([i915#180]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl2/ig> +2 similar issues

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

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

* Re: [igt-dev] ✗ Fi.CI.IGT: failure for Fix kms_psr2_sf test and add new test for FB_DAMAGE_CLIPS plane property (rev5)
  2021-12-08 12:28   ` B, Jeevan
@ 2021-12-08 16:03     ` Vudum, Lakshminarayana
  2021-12-08 16:21       ` B, Jeevan
  0 siblings, 1 reply; 13+ messages in thread
From: Vudum, Lakshminarayana @ 2021-12-08 16:03 UTC (permalink / raw)
  To: B, Jeevan; +Cc: igt-dev

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

Jeevan, I don’t re-run(retest) the series but I re-report the results if the regressions are not caused by the change.

Thanks,
Lakshmi.

From: B, Jeevan <jeevan.b@intel.com>
Sent: Wednesday, December 8, 2021 4:29 AM
To: Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com>
Cc: igt-dev@lists.freedesktop.org
Subject: RE: ✗ Fi.CI.IGT: failure for Fix kms_psr2_sf test and add new test for FB_DAMAGE_CLIPS plane property (rev5)

Hi Lakshmi,

Can we have a rerun for this patch series.

Thanks
Jeevan B

From: Patchwork <patchwork@emeril.freedesktop.org<mailto:patchwork@emeril.freedesktop.org>>
Sent: Saturday, December 4, 2021 5:52 AM
To: B, Jeevan <jeevan.b@intel.com<mailto:jeevan.b@intel.com>>
Cc: igt-dev@lists.freedesktop.org<mailto:igt-dev@lists.freedesktop.org>
Subject: ✗ Fi.CI.IGT: failure for Fix kms_psr2_sf test and add new test for FB_DAMAGE_CLIPS plane property (rev5)

Patch Details
Series:

Fix kms_psr2_sf test and add new test for FB_DAMAGE_CLIPS plane property (rev5)

URL:

https://patchwork.freedesktop.org/series/94883/

State:

failure

Details:

https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/index.html

CI Bug Log - changes from CI_DRM_10961_full -> IGTPW_6465_full
Summary

FAILURE

Serious unknown changes coming with IGTPW_6465_full absolutely need to be
verified manually.

If you think the reported changes have nothing to do with the changes
introduced in IGTPW_6465_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_6465/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_6465_full:

IGT changes
Possible regressions

  *   igt@kms_plane_cursor@pipe-a-viewport-size-64:

     *   shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-iclb2/igt@kms_plane_cursor@pipe-a-viewport-size-64.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb4/igt@kms_plane_cursor@pipe-a-viewport-size-64.html>

  *   {igt@kms_psr2_sf@primary-plane-update-sf-dmg-area} (NEW):

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb4/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html> +4 similar issues
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html> +3 similar issues

New tests

New tests have been introduced between CI_DRM_10961_full and IGTPW_6465_full:

New IGT tests (5)

  *   igt@kms_atomic@atomic_plane_damage:

     *   Statuses : 1 pass(s) 5 skip(s)
     *   Exec time: [0.0, 0.26] s

  *   igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area:

     *   Statuses : 6 skip(s)
     *   Exec time: [0.0] s

  *   igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area:

     *   Statuses : 5 skip(s)
     *   Exec time: [0.0] s

  *   igt@kms_psr2_sf@plane-move-sf-dmg-area:

     *   Statuses : 6 skip(s)
     *   Exec time: [0.0] s

  *   igt@kms_psr2_sf@primary-plane-update-sf-dmg-area:

     *   Statuses : 6 skip(s)
     *   Exec time: [0.0] s

Known issues

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

IGT changes
Issues hit

  *   igt@gem_ctx_param@set-priority-not-supported:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb3/igt@gem_ctx_param@set-priority-not-supported.html> ([fdo#109314])
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb6/igt@gem_ctx_param@set-priority-not-supported.html> ([fdo#109314])

  *   igt@gem_ctx_sseu@invalid-sseu:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb2/igt@gem_ctx_sseu@invalid-sseu.html> ([i915#280])

  *   igt@gem_eio@unwedge-stress:

     *   shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-iclb2/igt@gem_eio@unwedge-stress.html> -> TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb4/igt@gem_eio@unwedge-stress.html> ([i915#2481] / [i915#3070])

  *   igt@gem_exec_balancer@parallel-out-fence:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb3/igt@gem_exec_balancer@parallel-out-fence.html> ([i915#4525])
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb5/igt@gem_exec_balancer@parallel-out-fence.html> ([i915#4525])

  *   igt@gem_exec_fair@basic-none-share@rcs0:

     *   shard-tglb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-tglb6/igt@gem_exec_fair@basic-none-share@rcs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb8/igt@gem_exec_fair@basic-none-share@rcs0.html> ([i915#2842])
     *   shard-apl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-apl7/igt@gem_exec_fair@basic-none-share@rcs0.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl7/igt@gem_exec_fair@basic-none-share@rcs0.html> ([fdo#109271])

  *   igt@gem_exec_fair@basic-none-vip@rcs0:

     *   shard-tglb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb6/igt@gem_exec_fair@basic-none-vip@rcs0.html> ([i915#2842])
     *   shard-iclb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb2/igt@gem_exec_fair@basic-none-vip@rcs0.html> ([i915#2842])
     *   shard-glk: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk9/igt@gem_exec_fair@basic-none-vip@rcs0.html> ([i915#2842])

  *   igt@gem_exec_fair@basic-none@vecs0:

     *   shard-kbl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-kbl4/igt@gem_exec_fair@basic-none@vecs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl7/igt@gem_exec_fair@basic-none@vecs0.html> ([i915#2842]) +1 similar issue
     *   shard-apl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-apl6/igt@gem_exec_fair@basic-none@vecs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl4/igt@gem_exec_fair@basic-none@vecs0.html> ([i915#2842])

  *   igt@gem_exec_fair@basic-pace-solo@rcs0:

     *   shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-iclb8/igt@gem_exec_fair@basic-pace-solo@rcs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb5/igt@gem_exec_fair@basic-pace-solo@rcs0.html> ([i915#2842])

  *   igt@gem_exec_params@secure-non-master:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb5/igt@gem_exec_params@secure-non-master.html> ([fdo#112283])

  *   igt@gem_exec_schedule@u-semaphore-user:

     *   shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-snb5/igt@gem_exec_schedule@u-semaphore-user.html> ([fdo#109271]) +101 similar issues

  *   igt@gem_exec_whisper@basic-normal:

     *   shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-glk5/igt@gem_exec_whisper@basic-normal.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk4/igt@gem_exec_whisper@basic-normal.html> ([i915#118])

  *   igt@gem_lmem_swapping@heavy-random:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb5/igt@gem_lmem_swapping@heavy-random.html> ([i915#4613])
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb3/igt@gem_lmem_swapping@heavy-random.html> ([i915#4613])
     *   shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl3/igt@gem_lmem_swapping@heavy-random.html> ([fdo#109271] / [i915#4613])
     *   shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk6/igt@gem_lmem_swapping@heavy-random.html> ([fdo#109271] / [i915#4613])

  *   igt@gem_lmem_swapping@parallel-random:

     *   shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl3/igt@gem_lmem_swapping@parallel-random.html> ([fdo#109271] / [i915#4613]) +2 similar issues

  *   igt@gem_ppgtt@flink-and-close-vma-leak:

     *   shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-glk6/igt@gem_ppgtt@flink-and-close-vma-leak.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk7/igt@gem_ppgtt@flink-and-close-vma-leak.html> ([i915#644])

  *   igt@gem_pread@exhaustion:

     *   shard-apl: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl4/igt@gem_pread@exhaustion.html> ([i915#2658])

  *   igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb1/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html> ([i915#4270])
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb2/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html> ([i915#4270])

  *   igt@gem_render_copy@x-tiled-to-vebox-yf-tiled:

     *   shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl3/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html> ([fdo#109271]) +182 similar issues
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb7/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html> ([i915#768]) +1 similar issue

  *   igt@gem_softpin@evict-snoop:

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

  *   igt@gem_userptr_blits@input-checking:

     *   shard-tglb: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb8/igt@gem_userptr_blits@input-checking.html> ([i915#3002])
     *   shard-iclb: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb7/igt@gem_userptr_blits@input-checking.html> ([i915#3002])

  *   igt@gen7_exec_parse@basic-allocation:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb2/igt@gen7_exec_parse@basic-allocation.html> ([fdo#109289])

  *   igt@gen9_exec_parse@bb-large:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb2/igt@gen9_exec_parse@bb-large.html> ([i915#2856])
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb4/igt@gen9_exec_parse@bb-large.html> ([i915#2856])

  *   igt@i915_pm_dc@dc6-dpms:

     *   shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-iclb5/igt@i915_pm_dc@dc6-dpms.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb3/igt@i915_pm_dc@dc6-dpms.html> ([i915#454]) +1 similar issue

  *   igt@i915_pm_lpsp@screens-disabled:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb5/igt@i915_pm_lpsp@screens-disabled.html> ([i915#1902])

  *   igt@i915_pm_rc6_residency@media-rc6-accuracy:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb1/igt@i915_pm_rc6_residency@media-rc6-accuracy.html> ([fdo#109289] / [fdo#111719])

  *   igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip:

     *   shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip.html> ([fdo#109271] / [i915#3777])

  *   igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip:

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

  *   igt@kms_big_fb@yf-tiled-8bpp-rotate-270:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb8/igt@kms_big_fb@yf-tiled-8bpp-rotate-270.html> ([fdo#110723]) +1 similar issue

  *   igt@kms_big_fb@yf-tiled-addfb:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb8/igt@kms_big_fb@yf-tiled-addfb.html> ([fdo#111615]) +4 similar issues

  *   igt@kms_big_joiner@invalid-modeset:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb1/igt@kms_big_joiner@invalid-modeset.html> ([i915#2705])

  *   igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs:

     *   shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk8/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs.html> ([fdo#109271] / [i915#3886]) +1 similar issue

  *   igt@kms_ccs@pipe-a-crc-sprite-planes-basic-yf_tiled_ccs:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb2/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-yf_tiled_ccs.html> ([fdo#111615] / [i915#3689]) +1 similar issue

  *   igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs:

     *   shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl3/igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs.html> ([fdo#109271] / [i915#3886]) +8 similar issues

  *   igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_mc_ccs:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb5/igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_mc_ccs.html> ([i915#3689] / [i915#3886])
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb7/igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_mc_ccs.html> ([fdo#109278] / [i915#3886])

  *   igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_rc_ccs_cc:

     *   shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl7/igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_rc_ccs_cc.html> ([fdo#109271] / [i915#3886]) +4 similar issues

  *   igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_ccs:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb1/igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_ccs.html> ([i915#3689]) +5 similar issues

  *   igt@kms_chamelium@dp-frame-dump:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb6/igt@kms_chamelium@dp-frame-dump.html> ([fdo#109284] / [fdo#111827]) +3 similar issues

  *   igt@kms_chamelium@hdmi-hpd-with-enabled-mode:

     *   shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl6/igt@kms_chamelium@hdmi-hpd-with-enabled-mode.html> ([fdo#109271] / [fdo#111827]) +12 similar issues
     *   shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-snb7/igt@kms_chamelium@hdmi-hpd-with-enabled-mode.html> ([fdo#109271] / [fdo#111827]) +3 similar issues

  *   igt@kms_chamelium@vga-edid-read:

     *   shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl3/igt@kms_chamelium@vga-edid-read.html> ([fdo#109271] / [fdo#111827]) +9 similar issues

  *   igt@kms_color_chamelium@pipe-d-degamma:

     *   shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk1/igt@kms_color_chamelium@pipe-d-degamma.html> ([fdo#109271] / [fdo#111827]) +7 similar issues
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb6/igt@kms_color_chamelium@pipe-d-degamma.html> ([fdo#109284] / [fdo#111827]) +7 similar issues
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb6/igt@kms_color_chamelium@pipe-d-degamma.html> ([fdo#109278] / [fdo#109284] / [fdo#111827])

  *   igt@kms_content_protection@atomic-dpms:

     *   shard-kbl: NOTRUN -> TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl2/igt@kms_content_protection@atomic-dpms.html> ([i915#1319]) +1 similar issue

  *   igt@kms_content_protection@dp-mst-lic-type-1:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb2/igt@kms_content_protection@dp-mst-lic-type-1.html> ([i915#3116])

  *   igt@kms_content_protection@type1:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb2/igt@kms_content_protection@type1.html> ([fdo#109300] / [fdo#111066])
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb8/igt@kms_content_protection@type1.html> ([fdo#111828])

  *   igt@kms_cursor_crc@pipe-a-cursor-512x512-sliding:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb7/igt@kms_cursor_crc@pipe-a-cursor-512x512-sliding.html> ([fdo#109278] / [fdo#109279])
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb5/igt@kms_cursor_crc@pipe-a-cursor-512x512-sliding.html> ([fdo#109279] / [i915#3359])

  *   igt@kms_cursor_crc@pipe-b-cursor-32x10-onscreen:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb5/igt@kms_cursor_crc@pipe-b-cursor-32x10-onscreen.html> ([fdo#109278]) +10 similar issues

  *   igt@kms_cursor_crc@pipe-b-cursor-32x10-sliding:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb6/igt@kms_cursor_crc@pipe-b-cursor-32x10-sliding.html> ([i915#3359]) +2 similar issues

  *   igt@kms_cursor_crc@pipe-b-cursor-32x32-offscreen:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb1/igt@kms_cursor_crc@pipe-b-cursor-32x32-offscreen.html> ([i915#3319]) +1 similar issue

  *   igt@kms_cursor_crc@pipe-d-cursor-256x256-random:

     *   shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk2/igt@kms_cursor_crc@pipe-d-cursor-256x256-random.html> ([fdo#109271]) +82 similar issues

  *   igt@kms_fbcon_fbt@fbc-suspend:

     *   shard-apl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-apl3/igt@kms_fbcon_fbt@fbc-suspend.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl4/igt@kms_fbcon_fbt@fbc-suspend.html> ([i915#180] / [i915#1982])

  *   igt@kms_flip@2x-flip-vs-suspend-interruptible:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb7/igt@kms_flip@2x-flip-vs-suspend-interruptible.html> ([fdo#109274]) +1 similar issue

  *   igt@kms_flip@2x-flip-vs-wf_vblank-interruptible@ac-hdmi-a1-hdmi-a2:

     *   shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-glk5/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible@ac-hdmi-a1-hdmi-a2.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk7/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible@ac-hdmi-a1-hdmi-a2.html> ([i915#2122])

  *   igt@kms_flip@flip-vs-suspend-interruptible@a-dp1:

     *   shard-kbl: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl4/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html> ([i915#180]) +7 similar issues

  *   igt@kms_flip@flip-vs-suspend@a-dp1:

     *   shard-apl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-apl2/igt@kms_flip@flip-vs-suspend@a-dp1.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl2/igt@kms_flip@flip-vs-suspend@a-dp1.html> ([i915#180]) +4 similar issues

  *   igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile:

     *   shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-iclb5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile.html> ([i915#3701]) +1 similar issue

  *   igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-render:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-render.html> ([fdo#109280]) +11 similar issues

  *   igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-blt:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-blt.html> ([fdo#111825]) +22 similar issues

  *   igt@kms_hdr@bpc-switch-suspend:

     *   shard-kbl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-kbl2/igt@kms_hdr@bpc-switch-suspend.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl1/igt@kms_hdr@bpc-switch-suspend.html> ([i915#180]) +2 similar issues

  *   igt@kms_plane_alpha_blend@pipe-b-alpha-basic:

     *   shard-glk: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk4/igt@kms_plane_alpha_blend@pipe-b-alpha-basic.html> ([fdo#108145] / [i915#265])

  *   igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max:

     *   shard-apl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl3/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max.html> ([fdo#108145] / [i915#265]) +1 similar issue

  *   igt@kms_plane_alpha_blend@pipe-c-alpha-basic:

     *   shard-kbl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl6/igt@kms_plane_alpha_blend@pipe-c-alpha-basic.html> ([fdo#108145] / [i915#265]) +3 similar issues

  *   igt@kms_plane_alpha_blend@pipe-c-alpha-transparent-fb:

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

  *   igt@kms_plane_cursor@pipe-a-viewport-size-64:

     *   shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-glk8/igt@kms_plane_cursor@pipe-a-viewport-size-64.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk9/igt@kms_plane_cursor@pipe-a-viewport-size-64.html> ([i915#1888]) +1 similar issue

  *   igt@kms_plane_lowres@pipe-b-tiling-y:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb2/igt@kms_plane_lowres@pipe-b-tiling-y.html> ([i915#3536])
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb7/igt@kms_plane_lowres@pipe-b-tiling-y.html> ([i915#3536])

  *   igt@kms_psr2_sf@cursor-plane-update-sf:

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

  *   igt@kms_psr@psr2_primary_mmap_gtt:

     *   shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-iclb2/igt@kms_psr@psr2_primary_mmap_gtt.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb6/igt@kms_psr@psr2_primary_mmap_gtt.html> ([fdo#109441]) +1 similar issue

  *   igt@kms_psr@psr2_sprite_plane_onoff:

     *   shard-tglb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb3/igt@kms_psr@psr2_sprite_plane_onoff.html> ([i915#132] / [i915#3467]) +1 similar issue
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb1/igt@kms_psr@psr2_sprite_plane_onoff.html> ([fdo#109441])

  *   igt@kms_setmode@basic:

     *   shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-glk4/igt@kms_setmode@basic.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk3/igt@kms_setmode@basic.html> ([i915#31])

  *   igt@kms_vrr@flip-dpms:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb8/igt@kms_vrr@flip-dpms.html> ([fdo#109502])
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb2/igt@kms_vrr@flip-dpms.html> ([fdo#109502])

  *   igt@kms_writeback@writeback-pixel-formats:

     *   shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl1/igt@kms_writeback@writeback-pixel-formats.html> ([fdo#109271] / [i915#2437])

  *   igt@nouveau_crc@pipe-b-source-outp-inactive:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb2/igt@nouveau_crc@pipe-b-source-outp-inactive.html> ([i915#2530]) +1 similar issue

  *   igt@nouveau_crc@pipe-c-source-rg:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb3/igt@nouveau_crc@pipe-c-source-rg.html> ([i915#2530]) +1 similar issue

  *   igt@perf@gen12-oa-tlb-invalidate:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb3/igt@perf@gen12-oa-tlb-invalidate.html> ([fdo#109289]) +1 similar issue

  *   igt@prime_nv_api@i915_nv_reimport_twice_check_flink_name:

     *   shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl2/igt@prime_nv_api@i915_nv_reimport_twice_check_flink_name.html> ([fdo#109271]) +144 similar issues

  *   igt@prime_nv_test@i915_blt_fill_nv_read:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb4/igt@prime_nv_test@i915_blt_fill_nv_read.html> ([fdo#109291]) +1 similar issue

  *   igt@prime_nv_test@nv_write_i915_cpu_mmap_read:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb5/igt@prime_nv_test@nv_write_i915_cpu_mmap_read.html> ([fdo#109291]) +1 similar issue

  *   igt@prime_vgem@basic-userptr:

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

  *   igt@sysfs_clients@busy:

     *   shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl7/igt@sysfs_clients@busy.html> ([fdo#109271] / [i915#2994])
     *   shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl3/igt@sysfs_clients@busy.html> ([fdo#109271] / [i915#2994])

  *   igt@sysfs_clients@fair-3:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb3/igt@sysfs_clients@fair-3.html> ([i915#2994])
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb6/igt@sysfs_clients@fair-3.html> ([i915#2994])
     *   shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk5/igt@sysfs_clients@fair-3.html> ([fdo#109271] / [i915#2994])

Possible fixes

  *   igt@gem_exec_fair@basic-deadline:

     *   shard-glk: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-glk2/igt@gem_exec_fair@basic-deadline.html> ([i915#2846]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk7/igt@gem_exec_fair@basic-deadline.html>

  *   igt@gem_exec_fair@basic-none@vcs0:

     *   shard-apl: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-apl6/igt@gem_exec_fair@basic-none@vcs0.html> ([i915#2842]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl4/igt@gem_exec_fair@basic-none@vcs0.html>

  *   igt@gem_exec_fair@basic-pace@vcs0:

     *   shard-tglb: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-tglb3/igt@gem_exec_fair@basic-pace@vcs0.html> ([i915#2842]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb5/igt@gem_exec_fair@basic-pace@vcs0.html>

  *   igt@gem_exec_fair@basic-pace@vcs1:

     *   shard-kbl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-kbl6/igt@gem_exec_fair@basic-pace@vcs1.html> ([fdo#109271]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl2/igt@gem_exec_fair@basic-pace@vcs1.html>

  *   igt@gem_exec_fair@basic-throttle@rcs0:

     *   shard-glk: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-glk7/igt@gem_exec_fair@basic-throttle@rcs0.html> ([i915#2842]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk4/igt@gem_exec_fair@basic-throttle@rcs0.html>

  *   igt@gem_workarounds@suspend-resume-fd:

     *   shard-kbl: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-kbl1/igt@gem_workarounds@suspend-resume-fd.html> ([i915#180]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl2/ig> +2 similar issues

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

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

* Re: [igt-dev] ✗ Fi.CI.IGT: failure for Fix kms_psr2_sf test and add new test for FB_DAMAGE_CLIPS plane property (rev5)
  2021-12-08 16:03     ` Vudum, Lakshminarayana
@ 2021-12-08 16:21       ` B, Jeevan
  2021-12-08 17:54         ` Vudum, Lakshminarayana
  0 siblings, 1 reply; 13+ messages in thread
From: B, Jeevan @ 2021-12-08 16:21 UTC (permalink / raw)
  To: Vudum, Lakshminarayana; +Cc: igt-dev

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

Hi Lakshmi,

Sorry, Yea please re-report

  *   igt@kms_plane_cursor@pipe-a-viewport-size-64:
     *   shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-iclb2/igt@kms_plane_cursor@pipe-a-viewport-size-64.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb4/igt@kms_plane_cursor@pipe-a-viewport-size-64.html>
This regression is not related to the change.

Thanks
Jeevan B

From: Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com>
Sent: Wednesday, December 8, 2021 9:34 PM
To: B, Jeevan <jeevan.b@intel.com>
Cc: igt-dev@lists.freedesktop.org
Subject: RE: ✗ Fi.CI.IGT: failure for Fix kms_psr2_sf test and add new test for FB_DAMAGE_CLIPS plane property (rev5)

Jeevan, I don’t re-run(retest) the series but I re-report the results if the regressions are not caused by the change.

Thanks,
Lakshmi.

From: B, Jeevan <jeevan.b@intel.com<mailto:jeevan.b@intel.com>>
Sent: Wednesday, December 8, 2021 4:29 AM
To: Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com<mailto:lakshminarayana.vudum@intel.com>>
Cc: igt-dev@lists.freedesktop.org<mailto:igt-dev@lists.freedesktop.org>
Subject: RE: ✗ Fi.CI.IGT: failure for Fix kms_psr2_sf test and add new test for FB_DAMAGE_CLIPS plane property (rev5)

Hi Lakshmi,

Can we have a rerun for this patch series.

Thanks
Jeevan B

From: Patchwork <patchwork@emeril.freedesktop.org<mailto:patchwork@emeril.freedesktop.org>>
Sent: Saturday, December 4, 2021 5:52 AM
To: B, Jeevan <jeevan.b@intel.com<mailto:jeevan.b@intel.com>>
Cc: igt-dev@lists.freedesktop.org<mailto:igt-dev@lists.freedesktop.org>
Subject: ✗ Fi.CI.IGT: failure for Fix kms_psr2_sf test and add new test for FB_DAMAGE_CLIPS plane property (rev5)

Patch Details
Series:

Fix kms_psr2_sf test and add new test for FB_DAMAGE_CLIPS plane property (rev5)

URL:

https://patchwork.freedesktop.org/series/94883/

State:

failure

Details:

https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/index.html

CI Bug Log - changes from CI_DRM_10961_full -> IGTPW_6465_full
Summary

FAILURE

Serious unknown changes coming with IGTPW_6465_full absolutely need to be
verified manually.

If you think the reported changes have nothing to do with the changes
introduced in IGTPW_6465_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_6465/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_6465_full:

IGT changes
Possible regressions

  *   igt@kms_plane_cursor@pipe-a-viewport-size-64:

     *   shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-iclb2/igt@kms_plane_cursor@pipe-a-viewport-size-64.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb4/igt@kms_plane_cursor@pipe-a-viewport-size-64.html>

  *   {igt@kms_psr2_sf@primary-plane-update-sf-dmg-area} (NEW):

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb4/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html> +4 similar issues
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html> +3 similar issues

New tests

New tests have been introduced between CI_DRM_10961_full and IGTPW_6465_full:

New IGT tests (5)

  *   igt@kms_atomic@atomic_plane_damage:

     *   Statuses : 1 pass(s) 5 skip(s)
     *   Exec time: [0.0, 0.26] s

  *   igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area:

     *   Statuses : 6 skip(s)
     *   Exec time: [0.0] s

  *   igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area:

     *   Statuses : 5 skip(s)
     *   Exec time: [0.0] s

  *   igt@kms_psr2_sf@plane-move-sf-dmg-area:

     *   Statuses : 6 skip(s)
     *   Exec time: [0.0] s

  *   igt@kms_psr2_sf@primary-plane-update-sf-dmg-area:

     *   Statuses : 6 skip(s)
     *   Exec time: [0.0] s

Known issues

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

IGT changes
Issues hit

  *   igt@gem_ctx_param@set-priority-not-supported:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb3/igt@gem_ctx_param@set-priority-not-supported.html> ([fdo#109314])
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb6/igt@gem_ctx_param@set-priority-not-supported.html> ([fdo#109314])

  *   igt@gem_ctx_sseu@invalid-sseu:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb2/igt@gem_ctx_sseu@invalid-sseu.html> ([i915#280])

  *   igt@gem_eio@unwedge-stress:

     *   shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-iclb2/igt@gem_eio@unwedge-stress.html> -> TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb4/igt@gem_eio@unwedge-stress.html> ([i915#2481] / [i915#3070])

  *   igt@gem_exec_balancer@parallel-out-fence:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb3/igt@gem_exec_balancer@parallel-out-fence.html> ([i915#4525])
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb5/igt@gem_exec_balancer@parallel-out-fence.html> ([i915#4525])

  *   igt@gem_exec_fair@basic-none-share@rcs0:

     *   shard-tglb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-tglb6/igt@gem_exec_fair@basic-none-share@rcs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb8/igt@gem_exec_fair@basic-none-share@rcs0.html> ([i915#2842])
     *   shard-apl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-apl7/igt@gem_exec_fair@basic-none-share@rcs0.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl7/igt@gem_exec_fair@basic-none-share@rcs0.html> ([fdo#109271])

  *   igt@gem_exec_fair@basic-none-vip@rcs0:

     *   shard-tglb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb6/igt@gem_exec_fair@basic-none-vip@rcs0.html> ([i915#2842])
     *   shard-iclb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb2/igt@gem_exec_fair@basic-none-vip@rcs0.html> ([i915#2842])
     *   shard-glk: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk9/igt@gem_exec_fair@basic-none-vip@rcs0.html> ([i915#2842])

  *   igt@gem_exec_fair@basic-none@vecs0:

     *   shard-kbl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-kbl4/igt@gem_exec_fair@basic-none@vecs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl7/igt@gem_exec_fair@basic-none@vecs0.html> ([i915#2842]) +1 similar issue
     *   shard-apl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-apl6/igt@gem_exec_fair@basic-none@vecs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl4/igt@gem_exec_fair@basic-none@vecs0.html> ([i915#2842])

  *   igt@gem_exec_fair@basic-pace-solo@rcs0:

     *   shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-iclb8/igt@gem_exec_fair@basic-pace-solo@rcs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb5/igt@gem_exec_fair@basic-pace-solo@rcs0.html> ([i915#2842])

  *   igt@gem_exec_params@secure-non-master:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb5/igt@gem_exec_params@secure-non-master.html> ([fdo#112283])

  *   igt@gem_exec_schedule@u-semaphore-user:

     *   shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-snb5/igt@gem_exec_schedule@u-semaphore-user.html> ([fdo#109271]) +101 similar issues

  *   igt@gem_exec_whisper@basic-normal:

     *   shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-glk5/igt@gem_exec_whisper@basic-normal.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk4/igt@gem_exec_whisper@basic-normal.html> ([i915#118])

  *   igt@gem_lmem_swapping@heavy-random:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb5/igt@gem_lmem_swapping@heavy-random.html> ([i915#4613])
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb3/igt@gem_lmem_swapping@heavy-random.html> ([i915#4613])
     *   shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl3/igt@gem_lmem_swapping@heavy-random.html> ([fdo#109271] / [i915#4613])
     *   shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk6/igt@gem_lmem_swapping@heavy-random.html> ([fdo#109271] / [i915#4613])

  *   igt@gem_lmem_swapping@parallel-random:

     *   shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl3/igt@gem_lmem_swapping@parallel-random.html> ([fdo#109271] / [i915#4613]) +2 similar issues

  *   igt@gem_ppgtt@flink-and-close-vma-leak:

     *   shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-glk6/igt@gem_ppgtt@flink-and-close-vma-leak.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk7/igt@gem_ppgtt@flink-and-close-vma-leak.html> ([i915#644])

  *   igt@gem_pread@exhaustion:

     *   shard-apl: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl4/igt@gem_pread@exhaustion.html> ([i915#2658])

  *   igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb1/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html> ([i915#4270])
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb2/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html> ([i915#4270])

  *   igt@gem_render_copy@x-tiled-to-vebox-yf-tiled:

     *   shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl3/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html> ([fdo#109271]) +182 similar issues
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb7/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html> ([i915#768]) +1 similar issue

  *   igt@gem_softpin@evict-snoop:

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

  *   igt@gem_userptr_blits@input-checking:

     *   shard-tglb: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb8/igt@gem_userptr_blits@input-checking.html> ([i915#3002])
     *   shard-iclb: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb7/igt@gem_userptr_blits@input-checking.html> ([i915#3002])

  *   igt@gen7_exec_parse@basic-allocation:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb2/igt@gen7_exec_parse@basic-allocation.html> ([fdo#109289])

  *   igt@gen9_exec_parse@bb-large:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb2/igt@gen9_exec_parse@bb-large.html> ([i915#2856])
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb4/igt@gen9_exec_parse@bb-large.html> ([i915#2856])

  *   igt@i915_pm_dc@dc6-dpms:

     *   shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-iclb5/igt@i915_pm_dc@dc6-dpms.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb3/igt@i915_pm_dc@dc6-dpms.html> ([i915#454]) +1 similar issue

  *   igt@i915_pm_lpsp@screens-disabled:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb5/igt@i915_pm_lpsp@screens-disabled.html> ([i915#1902])

  *   igt@i915_pm_rc6_residency@media-rc6-accuracy:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb1/igt@i915_pm_rc6_residency@media-rc6-accuracy.html> ([fdo#109289] / [fdo#111719])

  *   igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip:

     *   shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip.html> ([fdo#109271] / [i915#3777])

  *   igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip:

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

  *   igt@kms_big_fb@yf-tiled-8bpp-rotate-270:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb8/igt@kms_big_fb@yf-tiled-8bpp-rotate-270.html> ([fdo#110723]) +1 similar issue

  *   igt@kms_big_fb@yf-tiled-addfb:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb8/igt@kms_big_fb@yf-tiled-addfb.html> ([fdo#111615]) +4 similar issues

  *   igt@kms_big_joiner@invalid-modeset:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb1/igt@kms_big_joiner@invalid-modeset.html> ([i915#2705])

  *   igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs:

     *   shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk8/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs.html> ([fdo#109271] / [i915#3886]) +1 similar issue

  *   igt@kms_ccs@pipe-a-crc-sprite-planes-basic-yf_tiled_ccs:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb2/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-yf_tiled_ccs.html> ([fdo#111615] / [i915#3689]) +1 similar issue

  *   igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs:

     *   shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl3/igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs.html> ([fdo#109271] / [i915#3886]) +8 similar issues

  *   igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_mc_ccs:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb5/igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_mc_ccs.html> ([i915#3689] / [i915#3886])
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb7/igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_mc_ccs.html> ([fdo#109278] / [i915#3886])

  *   igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_rc_ccs_cc:

     *   shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl7/igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_rc_ccs_cc.html> ([fdo#109271] / [i915#3886]) +4 similar issues

  *   igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_ccs:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb1/igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_ccs.html> ([i915#3689]) +5 similar issues

  *   igt@kms_chamelium@dp-frame-dump:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb6/igt@kms_chamelium@dp-frame-dump.html> ([fdo#109284] / [fdo#111827]) +3 similar issues

  *   igt@kms_chamelium@hdmi-hpd-with-enabled-mode:

     *   shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl6/igt@kms_chamelium@hdmi-hpd-with-enabled-mode.html> ([fdo#109271] / [fdo#111827]) +12 similar issues
     *   shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-snb7/igt@kms_chamelium@hdmi-hpd-with-enabled-mode.html> ([fdo#109271] / [fdo#111827]) +3 similar issues

  *   igt@kms_chamelium@vga-edid-read:

     *   shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl3/igt@kms_chamelium@vga-edid-read.html> ([fdo#109271] / [fdo#111827]) +9 similar issues

  *   igt@kms_color_chamelium@pipe-d-degamma:

     *   shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk1/igt@kms_color_chamelium@pipe-d-degamma.html> ([fdo#109271] / [fdo#111827]) +7 similar issues
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb6/igt@kms_color_chamelium@pipe-d-degamma.html> ([fdo#109284] / [fdo#111827]) +7 similar issues
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb6/igt@kms_color_chamelium@pipe-d-degamma.html> ([fdo#109278] / [fdo#109284] / [fdo#111827])

  *   igt@kms_content_protection@atomic-dpms:

     *   shard-kbl: NOTRUN -> TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl2/igt@kms_content_protection@atomic-dpms.html> ([i915#1319]) +1 similar issue

  *   igt@kms_content_protection@dp-mst-lic-type-1:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb2/igt@kms_content_protection@dp-mst-lic-type-1.html> ([i915#3116])

  *   igt@kms_content_protection@type1:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb2/igt@kms_content_protection@type1.html> ([fdo#109300] / [fdo#111066])
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb8/igt@kms_content_protection@type1.html> ([fdo#111828])

  *   igt@kms_cursor_crc@pipe-a-cursor-512x512-sliding:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb7/igt@kms_cursor_crc@pipe-a-cursor-512x512-sliding.html> ([fdo#109278] / [fdo#109279])
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb5/igt@kms_cursor_crc@pipe-a-cursor-512x512-sliding.html> ([fdo#109279] / [i915#3359])

  *   igt@kms_cursor_crc@pipe-b-cursor-32x10-onscreen:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb5/igt@kms_cursor_crc@pipe-b-cursor-32x10-onscreen.html> ([fdo#109278]) +10 similar issues

  *   igt@kms_cursor_crc@pipe-b-cursor-32x10-sliding:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb6/igt@kms_cursor_crc@pipe-b-cursor-32x10-sliding.html> ([i915#3359]) +2 similar issues

  *   igt@kms_cursor_crc@pipe-b-cursor-32x32-offscreen:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb1/igt@kms_cursor_crc@pipe-b-cursor-32x32-offscreen.html> ([i915#3319]) +1 similar issue

  *   igt@kms_cursor_crc@pipe-d-cursor-256x256-random:

     *   shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk2/igt@kms_cursor_crc@pipe-d-cursor-256x256-random.html> ([fdo#109271]) +82 similar issues

  *   igt@kms_fbcon_fbt@fbc-suspend:

     *   shard-apl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-apl3/igt@kms_fbcon_fbt@fbc-suspend.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl4/igt@kms_fbcon_fbt@fbc-suspend.html> ([i915#180] / [i915#1982])

  *   igt@kms_flip@2x-flip-vs-suspend-interruptible:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb7/igt@kms_flip@2x-flip-vs-suspend-interruptible.html> ([fdo#109274]) +1 similar issue

  *   igt@kms_flip@2x-flip-vs-wf_vblank-interruptible@ac-hdmi-a1-hdmi-a2:

     *   shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-glk5/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible@ac-hdmi-a1-hdmi-a2.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk7/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible@ac-hdmi-a1-hdmi-a2.html> ([i915#2122])

  *   igt@kms_flip@flip-vs-suspend-interruptible@a-dp1:

     *   shard-kbl: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl4/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html> ([i915#180]) +7 similar issues

  *   igt@kms_flip@flip-vs-suspend@a-dp1:

     *   shard-apl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-apl2/igt@kms_flip@flip-vs-suspend@a-dp1.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl2/igt@kms_flip@flip-vs-suspend@a-dp1.html> ([i915#180]) +4 similar issues

  *   igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile:

     *   shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-iclb5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile.html> ([i915#3701]) +1 similar issue

  *   igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-render:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-render.html> ([fdo#109280]) +11 similar issues

  *   igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-blt:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-blt.html> ([fdo#111825]) +22 similar issues

  *   igt@kms_hdr@bpc-switch-suspend:

     *   shard-kbl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-kbl2/igt@kms_hdr@bpc-switch-suspend.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl1/igt@kms_hdr@bpc-switch-suspend.html> ([i915#180]) +2 similar issues

  *   igt@kms_plane_alpha_blend@pipe-b-alpha-basic:

     *   shard-glk: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk4/igt@kms_plane_alpha_blend@pipe-b-alpha-basic.html> ([fdo#108145] / [i915#265])

  *   igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max:

     *   shard-apl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl3/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max.html> ([fdo#108145] / [i915#265]) +1 similar issue

  *   igt@kms_plane_alpha_blend@pipe-c-alpha-basic:

     *   shard-kbl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl6/igt@kms_plane_alpha_blend@pipe-c-alpha-basic.html> ([fdo#108145] / [i915#265]) +3 similar issues

  *   igt@kms_plane_alpha_blend@pipe-c-alpha-transparent-fb:

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

  *   igt@kms_plane_cursor@pipe-a-viewport-size-64:

     *   shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-glk8/igt@kms_plane_cursor@pipe-a-viewport-size-64.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk9/igt@kms_plane_cursor@pipe-a-viewport-size-64.html> ([i915#1888]) +1 similar issue

  *   igt@kms_plane_lowres@pipe-b-tiling-y:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb2/igt@kms_plane_lowres@pipe-b-tiling-y.html> ([i915#3536])
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb7/igt@kms_plane_lowres@pipe-b-tiling-y.html> ([i915#3536])

  *   igt@kms_psr2_sf@cursor-plane-update-sf:

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

  *   igt@kms_psr@psr2_primary_mmap_gtt:

     *   shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-iclb2/igt@kms_psr@psr2_primary_mmap_gtt.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb6/igt@kms_psr@psr2_primary_mmap_gtt.html> ([fdo#109441]) +1 similar issue

  *   igt@kms_psr@psr2_sprite_plane_onoff:

     *   shard-tglb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb3/igt@kms_psr@psr2_sprite_plane_onoff.html> ([i915#132] / [i915#3467]) +1 similar issue
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb1/igt@kms_psr@psr2_sprite_plane_onoff.html> ([fdo#109441])

  *   igt@kms_setmode@basic:

     *   shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-glk4/igt@kms_setmode@basic.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk3/igt@kms_setmode@basic.html> ([i915#31])

  *   igt@kms_vrr@flip-dpms:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb8/igt@kms_vrr@flip-dpms.html> ([fdo#109502])
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb2/igt@kms_vrr@flip-dpms.html> ([fdo#109502])

  *   igt@kms_writeback@writeback-pixel-formats:

     *   shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl1/igt@kms_writeback@writeback-pixel-formats.html> ([fdo#109271] / [i915#2437])

  *   igt@nouveau_crc@pipe-b-source-outp-inactive:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb2/igt@nouveau_crc@pipe-b-source-outp-inactive.html> ([i915#2530]) +1 similar issue

  *   igt@nouveau_crc@pipe-c-source-rg:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb3/igt@nouveau_crc@pipe-c-source-rg.html> ([i915#2530]) +1 similar issue

  *   igt@perf@gen12-oa-tlb-invalidate:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb3/igt@perf@gen12-oa-tlb-invalidate.html> ([fdo#109289]) +1 similar issue

  *   igt@prime_nv_api@i915_nv_reimport_twice_check_flink_name:

     *   shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl2/igt@prime_nv_api@i915_nv_reimport_twice_check_flink_name.html> ([fdo#109271]) +144 similar issues

  *   igt@prime_nv_test@i915_blt_fill_nv_read:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb4/igt@prime_nv_test@i915_blt_fill_nv_read.html> ([fdo#109291]) +1 similar issue

  *   igt@prime_nv_test@nv_write_i915_cpu_mmap_read:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb5/igt@prime_nv_test@nv_write_i915_cpu_mmap_read.html> ([fdo#109291]) +1 similar issue

  *   igt@prime_vgem@basic-userptr:

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

  *   igt@sysfs_clients@busy:

     *   shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl7/igt@sysfs_clients@busy.html> ([fdo#109271] / [i915#2994])
     *   shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl3/igt@sysfs_clients@busy.html> ([fdo#109271] / [i915#2994])

  *   igt@sysfs_clients@fair-3:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb3/igt@sysfs_clients@fair-3.html> ([i915#2994])
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb6/igt@sysfs_clients@fair-3.html> ([i915#2994])
     *   shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk5/igt@sysfs_clients@fair-3.html> ([fdo#109271] / [i915#2994])

Possible fixes

  *   igt@gem_exec_fair@basic-deadline:

     *   shard-glk: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-glk2/igt@gem_exec_fair@basic-deadline.html> ([i915#2846]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk7/igt@gem_exec_fair@basic-deadline.html>

  *   igt@gem_exec_fair@basic-none@vcs0:

     *   shard-apl: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-apl6/igt@gem_exec_fair@basic-none@vcs0.html> ([i915#2842]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl4/igt@gem_exec_fair@basic-none@vcs0.html>

  *   igt@gem_exec_fair@basic-pace@vcs0:

     *   shard-tglb: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-tglb3/igt@gem_exec_fair@basic-pace@vcs0.html> ([i915#2842]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb5/igt@gem_exec_fair@basic-pace@vcs0.html>

  *   igt@gem_exec_fair@basic-pace@vcs1:

     *   shard-kbl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-kbl6/igt@gem_exec_fair@basic-pace@vcs1.html> ([fdo#109271]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl2/igt@gem_exec_fair@basic-pace@vcs1.html>

  *   igt@gem_exec_fair@basic-throttle@rcs0:

     *   shard-glk: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-glk7/igt@gem_exec_fair@basic-throttle@rcs0.html> ([i915#2842]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk4/igt@gem_exec_fair@basic-throttle@rcs0.html>

  *   igt@gem_workarounds@suspend-resume-fd:

     *   shard-kbl: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-kbl1/igt@gem_workarounds@suspend-resume-fd.html> ([i915#180]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl2/ig> +2 similar issues

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

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

* [igt-dev] ✓ Fi.CI.IGT: success for Fix kms_psr2_sf test and add new test for FB_DAMAGE_CLIPS plane property (rev5)
  2021-12-03 16:28 [igt-dev] [PATCH i-g-t v5 0/3] Fix kms_psr2_sf test and add new test for FB_DAMAGE_CLIPS plane property Jeevan B
                   ` (4 preceding siblings ...)
  2021-12-04  0:21 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
@ 2021-12-08 17:00 ` Patchwork
  5 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2021-12-08 17:00 UTC (permalink / raw)
  To: Jeevan B; +Cc: igt-dev

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

== Series Details ==

Series: Fix kms_psr2_sf test and add new test for FB_DAMAGE_CLIPS plane property (rev5)
URL   : https://patchwork.freedesktop.org/series/94883/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_10961_full -> IGTPW_6465_full
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/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_6465_full:

### IGT changes ###

#### Possible regressions ####

  * {igt@kms_psr2_sf@primary-plane-update-sf-dmg-area} (NEW):
    - shard-iclb:         NOTRUN -> [SKIP][1] +4 similar issues
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb4/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html
    - shard-tglb:         NOTRUN -> [SKIP][2] +3 similar issues
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html

  
New tests
---------

  New tests have been introduced between CI_DRM_10961_full and IGTPW_6465_full:

### New IGT tests (5) ###

  * igt@kms_atomic@atomic_plane_damage:
    - Statuses : 1 pass(s) 5 skip(s)
    - Exec time: [0.0, 0.26] s

  * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area:
    - Statuses : 6 skip(s)
    - Exec time: [0.0] s

  * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area:
    - Statuses : 5 skip(s)
    - Exec time: [0.0] s

  * igt@kms_psr2_sf@plane-move-sf-dmg-area:
    - Statuses : 6 skip(s)
    - Exec time: [0.0] s

  * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area:
    - Statuses : 6 skip(s)
    - Exec time: [0.0] s

  

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_ctx_param@set-priority-not-supported:
    - shard-tglb:         NOTRUN -> [SKIP][3] ([fdo#109314])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb3/igt@gem_ctx_param@set-priority-not-supported.html
    - shard-iclb:         NOTRUN -> [SKIP][4] ([fdo#109314])
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb6/igt@gem_ctx_param@set-priority-not-supported.html

  * igt@gem_ctx_sseu@invalid-sseu:
    - shard-tglb:         NOTRUN -> [SKIP][5] ([i915#280])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb2/igt@gem_ctx_sseu@invalid-sseu.html

  * igt@gem_eio@unwedge-stress:
    - shard-iclb:         [PASS][6] -> [TIMEOUT][7] ([i915#2481] / [i915#3070])
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-iclb2/igt@gem_eio@unwedge-stress.html
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb4/igt@gem_eio@unwedge-stress.html

  * igt@gem_exec_balancer@parallel-out-fence:
    - shard-iclb:         NOTRUN -> [SKIP][8] ([i915#4525])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb3/igt@gem_exec_balancer@parallel-out-fence.html
    - shard-tglb:         NOTRUN -> [SKIP][9] ([i915#4525])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb5/igt@gem_exec_balancer@parallel-out-fence.html

  * igt@gem_exec_fair@basic-none-share@rcs0:
    - shard-tglb:         [PASS][10] -> [FAIL][11] ([i915#2842])
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-tglb6/igt@gem_exec_fair@basic-none-share@rcs0.html
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb8/igt@gem_exec_fair@basic-none-share@rcs0.html
    - shard-apl:          [PASS][12] -> [SKIP][13] ([fdo#109271])
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-apl7/igt@gem_exec_fair@basic-none-share@rcs0.html
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl7/igt@gem_exec_fair@basic-none-share@rcs0.html

  * igt@gem_exec_fair@basic-none-vip@rcs0:
    - shard-tglb:         NOTRUN -> [FAIL][14] ([i915#2842])
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb6/igt@gem_exec_fair@basic-none-vip@rcs0.html
    - shard-iclb:         NOTRUN -> [FAIL][15] ([i915#2842])
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb2/igt@gem_exec_fair@basic-none-vip@rcs0.html
    - shard-glk:          NOTRUN -> [FAIL][16] ([i915#2842])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk9/igt@gem_exec_fair@basic-none-vip@rcs0.html

  * igt@gem_exec_fair@basic-none@vecs0:
    - shard-kbl:          [PASS][17] -> [FAIL][18] ([i915#2842]) +1 similar issue
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-kbl4/igt@gem_exec_fair@basic-none@vecs0.html
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl7/igt@gem_exec_fair@basic-none@vecs0.html
    - shard-apl:          [PASS][19] -> [FAIL][20] ([i915#2842])
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-apl6/igt@gem_exec_fair@basic-none@vecs0.html
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl4/igt@gem_exec_fair@basic-none@vecs0.html

  * igt@gem_exec_fair@basic-pace-solo@rcs0:
    - shard-iclb:         [PASS][21] -> [FAIL][22] ([i915#2842])
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-iclb8/igt@gem_exec_fair@basic-pace-solo@rcs0.html
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb5/igt@gem_exec_fair@basic-pace-solo@rcs0.html

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

  * igt@gem_exec_schedule@u-semaphore-user:
    - shard-snb:          NOTRUN -> [SKIP][24] ([fdo#109271]) +101 similar issues
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-snb5/igt@gem_exec_schedule@u-semaphore-user.html

  * igt@gem_exec_whisper@basic-normal:
    - shard-glk:          [PASS][25] -> [DMESG-WARN][26] ([i915#118])
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-glk5/igt@gem_exec_whisper@basic-normal.html
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk4/igt@gem_exec_whisper@basic-normal.html

  * igt@gem_lmem_swapping@heavy-random:
    - shard-iclb:         NOTRUN -> [SKIP][27] ([i915#4613])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb5/igt@gem_lmem_swapping@heavy-random.html
    - shard-tglb:         NOTRUN -> [SKIP][28] ([i915#4613])
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb3/igt@gem_lmem_swapping@heavy-random.html
    - shard-apl:          NOTRUN -> [SKIP][29] ([fdo#109271] / [i915#4613])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl3/igt@gem_lmem_swapping@heavy-random.html
    - shard-glk:          NOTRUN -> [SKIP][30] ([fdo#109271] / [i915#4613])
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk6/igt@gem_lmem_swapping@heavy-random.html

  * igt@gem_lmem_swapping@parallel-random:
    - shard-kbl:          NOTRUN -> [SKIP][31] ([fdo#109271] / [i915#4613]) +2 similar issues
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl3/igt@gem_lmem_swapping@parallel-random.html

  * igt@gem_ppgtt@flink-and-close-vma-leak:
    - shard-glk:          [PASS][32] -> [FAIL][33] ([i915#644])
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-glk6/igt@gem_ppgtt@flink-and-close-vma-leak.html
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk7/igt@gem_ppgtt@flink-and-close-vma-leak.html

  * igt@gem_pread@exhaustion:
    - shard-apl:          NOTRUN -> [WARN][34] ([i915#2658])
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl4/igt@gem_pread@exhaustion.html

  * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted:
    - shard-iclb:         NOTRUN -> [SKIP][35] ([i915#4270])
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb1/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html
    - shard-tglb:         NOTRUN -> [SKIP][36] ([i915#4270])
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb2/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html

  * igt@gem_render_copy@x-tiled-to-vebox-yf-tiled:
    - shard-kbl:          NOTRUN -> [SKIP][37] ([fdo#109271]) +182 similar issues
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl3/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html
    - shard-iclb:         NOTRUN -> [SKIP][38] ([i915#768]) +1 similar issue
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb7/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html

  * igt@gem_softpin@evict-snoop:
    - shard-iclb:         NOTRUN -> [SKIP][39] ([fdo#109312])
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb6/igt@gem_softpin@evict-snoop.html
    - shard-tglb:         NOTRUN -> [SKIP][40] ([fdo#109312])
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb6/igt@gem_softpin@evict-snoop.html

  * igt@gem_userptr_blits@input-checking:
    - shard-tglb:         NOTRUN -> [DMESG-WARN][41] ([i915#3002])
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb8/igt@gem_userptr_blits@input-checking.html
    - shard-iclb:         NOTRUN -> [DMESG-WARN][42] ([i915#3002])
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb7/igt@gem_userptr_blits@input-checking.html

  * igt@gen7_exec_parse@basic-allocation:
    - shard-tglb:         NOTRUN -> [SKIP][43] ([fdo#109289])
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb2/igt@gen7_exec_parse@basic-allocation.html

  * igt@gen9_exec_parse@bb-large:
    - shard-tglb:         NOTRUN -> [SKIP][44] ([i915#2856])
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb2/igt@gen9_exec_parse@bb-large.html
    - shard-iclb:         NOTRUN -> [SKIP][45] ([i915#2856])
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb4/igt@gen9_exec_parse@bb-large.html

  * igt@i915_pm_dc@dc6-dpms:
    - shard-iclb:         [PASS][46] -> [FAIL][47] ([i915#454]) +1 similar issue
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-iclb5/igt@i915_pm_dc@dc6-dpms.html
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb3/igt@i915_pm_dc@dc6-dpms.html

  * igt@i915_pm_lpsp@screens-disabled:
    - shard-tglb:         NOTRUN -> [SKIP][48] ([i915#1902])
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb5/igt@i915_pm_lpsp@screens-disabled.html

  * igt@i915_pm_rc6_residency@media-rc6-accuracy:
    - shard-tglb:         NOTRUN -> [SKIP][49] ([fdo#109289] / [fdo#111719])
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb1/igt@i915_pm_rc6_residency@media-rc6-accuracy.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip:
    - shard-kbl:          NOTRUN -> [SKIP][50] ([fdo#109271] / [i915#3777])
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip.html

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

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

  * igt@kms_big_fb@yf-tiled-addfb:
    - shard-tglb:         NOTRUN -> [SKIP][53] ([fdo#111615]) +4 similar issues
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb8/igt@kms_big_fb@yf-tiled-addfb.html

  * igt@kms_big_joiner@invalid-modeset:
    - shard-tglb:         NOTRUN -> [SKIP][54] ([i915#2705])
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb1/igt@kms_big_joiner@invalid-modeset.html

  * igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs:
    - shard-glk:          NOTRUN -> [SKIP][55] ([fdo#109271] / [i915#3886]) +1 similar issue
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk8/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-a-crc-sprite-planes-basic-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_6465/shard-tglb2/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-yf_tiled_ccs.html

  * igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs:
    - shard-kbl:          NOTRUN -> [SKIP][57] ([fdo#109271] / [i915#3886]) +8 similar issues
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl3/igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_mc_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][58] ([i915#3689] / [i915#3886])
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb5/igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_mc_ccs.html
    - shard-iclb:         NOTRUN -> [SKIP][59] ([fdo#109278] / [i915#3886])
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb7/igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_rc_ccs_cc:
    - shard-apl:          NOTRUN -> [SKIP][60] ([fdo#109271] / [i915#3886]) +4 similar issues
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl7/igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_rc_ccs_cc.html

  * igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][61] ([i915#3689]) +5 similar issues
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb1/igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_ccs.html

  * igt@kms_chamelium@dp-frame-dump:
    - shard-iclb:         NOTRUN -> [SKIP][62] ([fdo#109284] / [fdo#111827]) +3 similar issues
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb6/igt@kms_chamelium@dp-frame-dump.html

  * igt@kms_chamelium@hdmi-hpd-with-enabled-mode:
    - shard-kbl:          NOTRUN -> [SKIP][63] ([fdo#109271] / [fdo#111827]) +12 similar issues
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl6/igt@kms_chamelium@hdmi-hpd-with-enabled-mode.html
    - shard-snb:          NOTRUN -> [SKIP][64] ([fdo#109271] / [fdo#111827]) +3 similar issues
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-snb7/igt@kms_chamelium@hdmi-hpd-with-enabled-mode.html

  * igt@kms_chamelium@vga-edid-read:
    - shard-apl:          NOTRUN -> [SKIP][65] ([fdo#109271] / [fdo#111827]) +9 similar issues
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl3/igt@kms_chamelium@vga-edid-read.html

  * igt@kms_color_chamelium@pipe-d-degamma:
    - shard-glk:          NOTRUN -> [SKIP][66] ([fdo#109271] / [fdo#111827]) +7 similar issues
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk1/igt@kms_color_chamelium@pipe-d-degamma.html
    - shard-tglb:         NOTRUN -> [SKIP][67] ([fdo#109284] / [fdo#111827]) +7 similar issues
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb6/igt@kms_color_chamelium@pipe-d-degamma.html
    - shard-iclb:         NOTRUN -> [SKIP][68] ([fdo#109278] / [fdo#109284] / [fdo#111827])
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb6/igt@kms_color_chamelium@pipe-d-degamma.html

  * igt@kms_content_protection@atomic-dpms:
    - shard-kbl:          NOTRUN -> [TIMEOUT][69] ([i915#1319]) +1 similar issue
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl2/igt@kms_content_protection@atomic-dpms.html

  * igt@kms_content_protection@dp-mst-lic-type-1:
    - shard-tglb:         NOTRUN -> [SKIP][70] ([i915#3116])
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb2/igt@kms_content_protection@dp-mst-lic-type-1.html

  * igt@kms_content_protection@type1:
    - shard-iclb:         NOTRUN -> [SKIP][71] ([fdo#109300] / [fdo#111066])
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb2/igt@kms_content_protection@type1.html
    - shard-tglb:         NOTRUN -> [SKIP][72] ([fdo#111828])
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb8/igt@kms_content_protection@type1.html

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

  * igt@kms_cursor_crc@pipe-b-cursor-32x10-onscreen:
    - shard-iclb:         NOTRUN -> [SKIP][75] ([fdo#109278]) +10 similar issues
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb5/igt@kms_cursor_crc@pipe-b-cursor-32x10-onscreen.html

  * igt@kms_cursor_crc@pipe-b-cursor-32x10-sliding:
    - shard-tglb:         NOTRUN -> [SKIP][76] ([i915#3359]) +2 similar issues
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb6/igt@kms_cursor_crc@pipe-b-cursor-32x10-sliding.html

  * igt@kms_cursor_crc@pipe-b-cursor-32x32-offscreen:
    - shard-tglb:         NOTRUN -> [SKIP][77] ([i915#3319]) +1 similar issue
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb1/igt@kms_cursor_crc@pipe-b-cursor-32x32-offscreen.html

  * igt@kms_cursor_crc@pipe-d-cursor-256x256-random:
    - shard-glk:          NOTRUN -> [SKIP][78] ([fdo#109271]) +82 similar issues
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk2/igt@kms_cursor_crc@pipe-d-cursor-256x256-random.html

  * igt@kms_fbcon_fbt@fbc-suspend:
    - shard-apl:          [PASS][79] -> [INCOMPLETE][80] ([i915#180] / [i915#1982])
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-apl3/igt@kms_fbcon_fbt@fbc-suspend.html
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl4/igt@kms_fbcon_fbt@fbc-suspend.html

  * igt@kms_flip@2x-flip-vs-suspend-interruptible:
    - shard-iclb:         NOTRUN -> [SKIP][81] ([fdo#109274]) +1 similar issue
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb7/igt@kms_flip@2x-flip-vs-suspend-interruptible.html

  * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible@ac-hdmi-a1-hdmi-a2:
    - shard-glk:          [PASS][82] -> [FAIL][83] ([i915#2122])
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-glk5/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible@ac-hdmi-a1-hdmi-a2.html
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk7/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible@ac-hdmi-a1-hdmi-a2.html

  * igt@kms_flip@flip-vs-suspend-interruptible@a-dp1:
    - shard-kbl:          NOTRUN -> [DMESG-WARN][84] ([i915#180]) +7 similar issues
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl4/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html

  * igt@kms_flip@flip-vs-suspend@a-dp1:
    - shard-apl:          [PASS][85] -> [DMESG-WARN][86] ([i915#180]) +4 similar issues
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-apl2/igt@kms_flip@flip-vs-suspend@a-dp1.html
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl2/igt@kms_flip@flip-vs-suspend@a-dp1.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile:
    - shard-iclb:         [PASS][87] -> [SKIP][88] ([i915#3701]) +1 similar issue
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-iclb5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile.html
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-render:
    - shard-iclb:         NOTRUN -> [SKIP][89] ([fdo#109280]) +11 similar issues
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-blt:
    - shard-tglb:         NOTRUN -> [SKIP][90] ([fdo#111825]) +22 similar issues
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-blt.html

  * igt@kms_hdr@bpc-switch-suspend:
    - shard-kbl:          [PASS][91] -> [DMESG-WARN][92] ([i915#180]) +2 similar issues
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-kbl2/igt@kms_hdr@bpc-switch-suspend.html
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl1/igt@kms_hdr@bpc-switch-suspend.html

  * igt@kms_plane_alpha_blend@pipe-b-alpha-basic:
    - shard-glk:          NOTRUN -> [FAIL][93] ([fdo#108145] / [i915#265])
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk4/igt@kms_plane_alpha_blend@pipe-b-alpha-basic.html

  * igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max:
    - shard-apl:          NOTRUN -> [FAIL][94] ([fdo#108145] / [i915#265]) +1 similar issue
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl3/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max.html

  * igt@kms_plane_alpha_blend@pipe-c-alpha-basic:
    - shard-kbl:          NOTRUN -> [FAIL][95] ([fdo#108145] / [i915#265]) +3 similar issues
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl6/igt@kms_plane_alpha_blend@pipe-c-alpha-basic.html

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

  * igt@kms_plane_cursor@pipe-a-viewport-size-64:
    - shard-glk:          [PASS][97] -> [FAIL][98] ([i915#1888]) +1 similar issue
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-glk8/igt@kms_plane_cursor@pipe-a-viewport-size-64.html
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk9/igt@kms_plane_cursor@pipe-a-viewport-size-64.html
    - shard-iclb:         [PASS][99] -> [FAIL][100] ([i915#4729])
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-iclb2/igt@kms_plane_cursor@pipe-a-viewport-size-64.html
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb4/igt@kms_plane_cursor@pipe-a-viewport-size-64.html

  * igt@kms_plane_lowres@pipe-b-tiling-y:
    - shard-tglb:         NOTRUN -> [SKIP][101] ([i915#3536])
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb2/igt@kms_plane_lowres@pipe-b-tiling-y.html
    - shard-iclb:         NOTRUN -> [SKIP][102] ([i915#3536])
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb7/igt@kms_plane_lowres@pipe-b-tiling-y.html

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

  * igt@kms_psr@psr2_primary_mmap_gtt:
    - shard-iclb:         [PASS][104] -> [SKIP][105] ([fdo#109441]) +1 similar issue
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-iclb2/igt@kms_psr@psr2_primary_mmap_gtt.html
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb6/igt@kms_psr@psr2_primary_mmap_gtt.html

  * igt@kms_psr@psr2_sprite_plane_onoff:
    - shard-tglb:         NOTRUN -> [FAIL][106] ([i915#132] / [i915#3467]) +1 similar issue
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb3/igt@kms_psr@psr2_sprite_plane_onoff.html
    - shard-iclb:         NOTRUN -> [SKIP][107] ([fdo#109441])
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb1/igt@kms_psr@psr2_sprite_plane_onoff.html

  * igt@kms_setmode@basic:
    - shard-glk:          [PASS][108] -> [FAIL][109] ([i915#31])
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-glk4/igt@kms_setmode@basic.html
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk3/igt@kms_setmode@basic.html

  * igt@kms_vrr@flip-dpms:
    - shard-iclb:         NOTRUN -> [SKIP][110] ([fdo#109502])
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb8/igt@kms_vrr@flip-dpms.html
    - shard-tglb:         NOTRUN -> [SKIP][111] ([fdo#109502])
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb2/igt@kms_vrr@flip-dpms.html

  * igt@kms_writeback@writeback-pixel-formats:
    - shard-kbl:          NOTRUN -> [SKIP][112] ([fdo#109271] / [i915#2437])
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl1/igt@kms_writeback@writeback-pixel-formats.html

  * igt@nouveau_crc@pipe-b-source-outp-inactive:
    - shard-iclb:         NOTRUN -> [SKIP][113] ([i915#2530]) +1 similar issue
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb2/igt@nouveau_crc@pipe-b-source-outp-inactive.html

  * igt@nouveau_crc@pipe-c-source-rg:
    - shard-tglb:         NOTRUN -> [SKIP][114] ([i915#2530]) +1 similar issue
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb3/igt@nouveau_crc@pipe-c-source-rg.html

  * igt@perf@gen12-oa-tlb-invalidate:
    - shard-iclb:         NOTRUN -> [SKIP][115] ([fdo#109289]) +1 similar issue
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb3/igt@perf@gen12-oa-tlb-invalidate.html

  * igt@prime_nv_api@i915_nv_reimport_twice_check_flink_name:
    - shard-apl:          NOTRUN -> [SKIP][116] ([fdo#109271]) +144 similar issues
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl2/igt@prime_nv_api@i915_nv_reimport_twice_check_flink_name.html

  * igt@prime_nv_test@i915_blt_fill_nv_read:
    - shard-iclb:         NOTRUN -> [SKIP][117] ([fdo#109291]) +1 similar issue
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb4/igt@prime_nv_test@i915_blt_fill_nv_read.html

  * igt@prime_nv_test@nv_write_i915_cpu_mmap_read:
    - shard-tglb:         NOTRUN -> [SKIP][118] ([fdo#109291]) +1 similar issue
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb5/igt@prime_nv_test@nv_write_i915_cpu_mmap_read.html

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

  * igt@sysfs_clients@busy:
    - shard-apl:          NOTRUN -> [SKIP][120] ([fdo#109271] / [i915#2994])
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl7/igt@sysfs_clients@busy.html
    - shard-kbl:          NOTRUN -> [SKIP][121] ([fdo#109271] / [i915#2994])
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl3/igt@sysfs_clients@busy.html

  * igt@sysfs_clients@fair-3:
    - shard-tglb:         NOTRUN -> [SKIP][122] ([i915#2994])
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb3/igt@sysfs_clients@fair-3.html
    - shard-iclb:         NOTRUN -> [SKIP][123] ([i915#2994])
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb6/igt@sysfs_clients@fair-3.html
    - shard-glk:          NOTRUN -> [SKIP][124] ([fdo#109271] / [i915#2994])
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk5/igt@sysfs_clients@fair-3.html

  
#### Possible fixes ####

  * igt@gem_exec_fair@basic-deadline:
    - shard-glk:          [FAIL][125] ([i915#2846]) -> [PASS][126]
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-glk2/igt@gem_exec_fair@basic-deadline.html
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk7/igt@gem_exec_fair@basic-deadline.html

  * igt@gem_exec_fair@basic-none@vcs0:
    - shard-apl:          [FAIL][127] ([i915#2842]) -> [PASS][128]
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-apl6/igt@gem_exec_fair@basic-none@vcs0.html
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl4/igt@gem_exec_fair@basic-none@vcs0.html

  * igt@gem_exec_fair@basic-pace@vcs0:
    - shard-tglb:         [FAIL][129] ([i915#2842]) -> [PASS][130]
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-tglb3/igt@gem_exec_fair@basic-pace@vcs0.html
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb5/igt@gem_exec_fair@basic-pace@vcs0.html

  * igt@gem_exec_fair@basic-pace@vcs1:
    - shard-kbl:          [SKIP][131] ([fdo#109271]) -> [PASS][132]
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-kbl6/igt@gem_exec_fair@basic-pace@vcs1.html
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl2/igt@gem_exec_fair@basic-pace@vcs1.html

  * igt@gem_exec_fair@basic-throttle@rcs0:
    - shard-glk:          [FAIL][133] ([i915#2842]) -> [PASS][134]
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-glk7/igt@gem_exec_fair@basic-throttle@rcs0.html
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk4/igt@gem_exec_fair@basic-throttle@rcs0.html

  * igt@gem_workarounds@suspend-resume-fd:
    - shard-kbl:          [DMESG-WARN][135] ([i915#180]) -> [PASS][136] +2 similar issues
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-kbl1/igt@gem_workarounds@suspend-resume-fd.html
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl2/igt@gem_workarounds@suspend-resume-fd.html

  * igt@gen9_exec_parse@allowed-all:
    - shard-glk:          [DMESG-WARN][137] ([i915#1436] / [i915#716]) -> [PASS][138]
   [137]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-glk3/igt@gen9_exec_parse@allowed-all.html
   [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465

== Logs ==

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

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

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

* Re: [igt-dev] ✗ Fi.CI.IGT: failure for Fix kms_psr2_sf test and add new test for FB_DAMAGE_CLIPS plane property (rev5)
  2021-12-08 16:21       ` B, Jeevan
@ 2021-12-08 17:54         ` Vudum, Lakshminarayana
  2021-12-08 18:08           ` B, Jeevan
  0 siblings, 1 reply; 13+ messages in thread
From: Vudum, Lakshminarayana @ 2021-12-08 17:54 UTC (permalink / raw)
  To: B, Jeevan; +Cc: igt-dev

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

Filed a new issue https://gitlab.freedesktop.org/drm/intel/-/issues/4729
igt@kms_plane_cursor@.*<mailto:igt@kms_plane_cursor@.*> - fail - Failed assertion: !mismatch || igt_skip_crc_compare

But skips are related to https://gitlab.freedesktop.org/drm/intel/-/issues/2920 .

Thanks,
Lakshmi.
From: B, Jeevan <jeevan.b@intel.com>
Sent: Wednesday, December 8, 2021 8:21 AM
To: Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com>
Cc: igt-dev@lists.freedesktop.org
Subject: RE: ✗ Fi.CI.IGT: failure for Fix kms_psr2_sf test and add new test for FB_DAMAGE_CLIPS plane property (rev5)

Hi Lakshmi,

Sorry, Yea please re-report

  *   igt@kms_plane_cursor@pipe-a-viewport-size-64:
     *   shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-iclb2/igt@kms_plane_cursor@pipe-a-viewport-size-64.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb4/igt@kms_plane_cursor@pipe-a-viewport-size-64.html>
This regression is not related to the change.

Thanks
Jeevan B

From: Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com<mailto:lakshminarayana.vudum@intel.com>>
Sent: Wednesday, December 8, 2021 9:34 PM
To: B, Jeevan <jeevan.b@intel.com<mailto:jeevan.b@intel.com>>
Cc: igt-dev@lists.freedesktop.org<mailto:igt-dev@lists.freedesktop.org>
Subject: RE: ✗ Fi.CI.IGT: failure for Fix kms_psr2_sf test and add new test for FB_DAMAGE_CLIPS plane property (rev5)

Jeevan, I don’t re-run(retest) the series but I re-report the results if the regressions are not caused by the change.

Thanks,
Lakshmi.

From: B, Jeevan <jeevan.b@intel.com<mailto:jeevan.b@intel.com>>
Sent: Wednesday, December 8, 2021 4:29 AM
To: Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com<mailto:lakshminarayana.vudum@intel.com>>
Cc: igt-dev@lists.freedesktop.org<mailto:igt-dev@lists.freedesktop.org>
Subject: RE: ✗ Fi.CI.IGT: failure for Fix kms_psr2_sf test and add new test for FB_DAMAGE_CLIPS plane property (rev5)

Hi Lakshmi,

Can we have a rerun for this patch series.

Thanks
Jeevan B

From: Patchwork <patchwork@emeril.freedesktop.org<mailto:patchwork@emeril.freedesktop.org>>
Sent: Saturday, December 4, 2021 5:52 AM
To: B, Jeevan <jeevan.b@intel.com<mailto:jeevan.b@intel.com>>
Cc: igt-dev@lists.freedesktop.org<mailto:igt-dev@lists.freedesktop.org>
Subject: ✗ Fi.CI.IGT: failure for Fix kms_psr2_sf test and add new test for FB_DAMAGE_CLIPS plane property (rev5)

Patch Details
Series:

Fix kms_psr2_sf test and add new test for FB_DAMAGE_CLIPS plane property (rev5)

URL:

https://patchwork.freedesktop.org/series/94883/

State:

failure

Details:

https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/index.html

CI Bug Log - changes from CI_DRM_10961_full -> IGTPW_6465_full
Summary

FAILURE

Serious unknown changes coming with IGTPW_6465_full absolutely need to be
verified manually.

If you think the reported changes have nothing to do with the changes
introduced in IGTPW_6465_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_6465/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_6465_full:

IGT changes
Possible regressions

  *   igt@kms_plane_cursor@pipe-a-viewport-size-64:

     *   shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-iclb2/igt@kms_plane_cursor@pipe-a-viewport-size-64.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb4/igt@kms_plane_cursor@pipe-a-viewport-size-64.html>

  *   {igt@kms_psr2_sf@primary-plane-update-sf-dmg-area} (NEW):

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb4/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html> +4 similar issues
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html> +3 similar issues

New tests

New tests have been introduced between CI_DRM_10961_full and IGTPW_6465_full:

New IGT tests (5)

  *   igt@kms_atomic@atomic_plane_damage:

     *   Statuses : 1 pass(s) 5 skip(s)
     *   Exec time: [0.0, 0.26] s

  *   igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area:

     *   Statuses : 6 skip(s)
     *   Exec time: [0.0] s

  *   igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area:

     *   Statuses : 5 skip(s)
     *   Exec time: [0.0] s

  *   igt@kms_psr2_sf@plane-move-sf-dmg-area:

     *   Statuses : 6 skip(s)
     *   Exec time: [0.0] s

  *   igt@kms_psr2_sf@primary-plane-update-sf-dmg-area:

     *   Statuses : 6 skip(s)
     *   Exec time: [0.0] s

Known issues

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

IGT changes
Issues hit

  *   igt@gem_ctx_param@set-priority-not-supported:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb3/igt@gem_ctx_param@set-priority-not-supported.html> ([fdo#109314])
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb6/igt@gem_ctx_param@set-priority-not-supported.html> ([fdo#109314])

  *   igt@gem_ctx_sseu@invalid-sseu:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb2/igt@gem_ctx_sseu@invalid-sseu.html> ([i915#280])

  *   igt@gem_eio@unwedge-stress:

     *   shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-iclb2/igt@gem_eio@unwedge-stress.html> -> TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb4/igt@gem_eio@unwedge-stress.html> ([i915#2481] / [i915#3070])

  *   igt@gem_exec_balancer@parallel-out-fence:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb3/igt@gem_exec_balancer@parallel-out-fence.html> ([i915#4525])
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb5/igt@gem_exec_balancer@parallel-out-fence.html> ([i915#4525])

  *   igt@gem_exec_fair@basic-none-share@rcs0:

     *   shard-tglb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-tglb6/igt@gem_exec_fair@basic-none-share@rcs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb8/igt@gem_exec_fair@basic-none-share@rcs0.html> ([i915#2842])
     *   shard-apl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-apl7/igt@gem_exec_fair@basic-none-share@rcs0.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl7/igt@gem_exec_fair@basic-none-share@rcs0.html> ([fdo#109271])

  *   igt@gem_exec_fair@basic-none-vip@rcs0:

     *   shard-tglb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb6/igt@gem_exec_fair@basic-none-vip@rcs0.html> ([i915#2842])
     *   shard-iclb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb2/igt@gem_exec_fair@basic-none-vip@rcs0.html> ([i915#2842])
     *   shard-glk: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk9/igt@gem_exec_fair@basic-none-vip@rcs0.html> ([i915#2842])

  *   igt@gem_exec_fair@basic-none@vecs0:

     *   shard-kbl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-kbl4/igt@gem_exec_fair@basic-none@vecs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl7/igt@gem_exec_fair@basic-none@vecs0.html> ([i915#2842]) +1 similar issue
     *   shard-apl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-apl6/igt@gem_exec_fair@basic-none@vecs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl4/igt@gem_exec_fair@basic-none@vecs0.html> ([i915#2842])

  *   igt@gem_exec_fair@basic-pace-solo@rcs0:

     *   shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-iclb8/igt@gem_exec_fair@basic-pace-solo@rcs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb5/igt@gem_exec_fair@basic-pace-solo@rcs0.html> ([i915#2842])

  *   igt@gem_exec_params@secure-non-master:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb5/igt@gem_exec_params@secure-non-master.html> ([fdo#112283])

  *   igt@gem_exec_schedule@u-semaphore-user:

     *   shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-snb5/igt@gem_exec_schedule@u-semaphore-user.html> ([fdo#109271]) +101 similar issues

  *   igt@gem_exec_whisper@basic-normal:

     *   shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-glk5/igt@gem_exec_whisper@basic-normal.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk4/igt@gem_exec_whisper@basic-normal.html> ([i915#118])

  *   igt@gem_lmem_swapping@heavy-random:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb5/igt@gem_lmem_swapping@heavy-random.html> ([i915#4613])
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb3/igt@gem_lmem_swapping@heavy-random.html> ([i915#4613])
     *   shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl3/igt@gem_lmem_swapping@heavy-random.html> ([fdo#109271] / [i915#4613])
     *   shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk6/igt@gem_lmem_swapping@heavy-random.html> ([fdo#109271] / [i915#4613])

  *   igt@gem_lmem_swapping@parallel-random:

     *   shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl3/igt@gem_lmem_swapping@parallel-random.html> ([fdo#109271] / [i915#4613]) +2 similar issues

  *   igt@gem_ppgtt@flink-and-close-vma-leak:

     *   shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-glk6/igt@gem_ppgtt@flink-and-close-vma-leak.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk7/igt@gem_ppgtt@flink-and-close-vma-leak.html> ([i915#644])

  *   igt@gem_pread@exhaustion:

     *   shard-apl: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl4/igt@gem_pread@exhaustion.html> ([i915#2658])

  *   igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb1/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html> ([i915#4270])
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb2/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html> ([i915#4270])

  *   igt@gem_render_copy@x-tiled-to-vebox-yf-tiled:

     *   shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl3/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html> ([fdo#109271]) +182 similar issues
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb7/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html> ([i915#768]) +1 similar issue

  *   igt@gem_softpin@evict-snoop:

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

  *   igt@gem_userptr_blits@input-checking:

     *   shard-tglb: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb8/igt@gem_userptr_blits@input-checking.html> ([i915#3002])
     *   shard-iclb: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb7/igt@gem_userptr_blits@input-checking.html> ([i915#3002])

  *   igt@gen7_exec_parse@basic-allocation:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb2/igt@gen7_exec_parse@basic-allocation.html> ([fdo#109289])

  *   igt@gen9_exec_parse@bb-large:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb2/igt@gen9_exec_parse@bb-large.html> ([i915#2856])
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb4/igt@gen9_exec_parse@bb-large.html> ([i915#2856])

  *   igt@i915_pm_dc@dc6-dpms:

     *   shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-iclb5/igt@i915_pm_dc@dc6-dpms.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb3/igt@i915_pm_dc@dc6-dpms.html> ([i915#454]) +1 similar issue

  *   igt@i915_pm_lpsp@screens-disabled:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb5/igt@i915_pm_lpsp@screens-disabled.html> ([i915#1902])

  *   igt@i915_pm_rc6_residency@media-rc6-accuracy:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb1/igt@i915_pm_rc6_residency@media-rc6-accuracy.html> ([fdo#109289] / [fdo#111719])

  *   igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip:

     *   shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip.html> ([fdo#109271] / [i915#3777])

  *   igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip:

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

  *   igt@kms_big_fb@yf-tiled-8bpp-rotate-270:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb8/igt@kms_big_fb@yf-tiled-8bpp-rotate-270.html> ([fdo#110723]) +1 similar issue

  *   igt@kms_big_fb@yf-tiled-addfb:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb8/igt@kms_big_fb@yf-tiled-addfb.html> ([fdo#111615]) +4 similar issues

  *   igt@kms_big_joiner@invalid-modeset:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb1/igt@kms_big_joiner@invalid-modeset.html> ([i915#2705])

  *   igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs:

     *   shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk8/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs.html> ([fdo#109271] / [i915#3886]) +1 similar issue

  *   igt@kms_ccs@pipe-a-crc-sprite-planes-basic-yf_tiled_ccs:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb2/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-yf_tiled_ccs.html> ([fdo#111615] / [i915#3689]) +1 similar issue

  *   igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs:

     *   shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl3/igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs.html> ([fdo#109271] / [i915#3886]) +8 similar issues

  *   igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_mc_ccs:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb5/igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_mc_ccs.html> ([i915#3689] / [i915#3886])
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb7/igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_mc_ccs.html> ([fdo#109278] / [i915#3886])

  *   igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_rc_ccs_cc:

     *   shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl7/igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_rc_ccs_cc.html> ([fdo#109271] / [i915#3886]) +4 similar issues

  *   igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_ccs:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb1/igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_ccs.html> ([i915#3689]) +5 similar issues

  *   igt@kms_chamelium@dp-frame-dump:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb6/igt@kms_chamelium@dp-frame-dump.html> ([fdo#109284] / [fdo#111827]) +3 similar issues

  *   igt@kms_chamelium@hdmi-hpd-with-enabled-mode:

     *   shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl6/igt@kms_chamelium@hdmi-hpd-with-enabled-mode.html> ([fdo#109271] / [fdo#111827]) +12 similar issues
     *   shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-snb7/igt@kms_chamelium@hdmi-hpd-with-enabled-mode.html> ([fdo#109271] / [fdo#111827]) +3 similar issues

  *   igt@kms_chamelium@vga-edid-read:

     *   shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl3/igt@kms_chamelium@vga-edid-read.html> ([fdo#109271] / [fdo#111827]) +9 similar issues

  *   igt@kms_color_chamelium@pipe-d-degamma:

     *   shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk1/igt@kms_color_chamelium@pipe-d-degamma.html> ([fdo#109271] / [fdo#111827]) +7 similar issues
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb6/igt@kms_color_chamelium@pipe-d-degamma.html> ([fdo#109284] / [fdo#111827]) +7 similar issues
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb6/igt@kms_color_chamelium@pipe-d-degamma.html> ([fdo#109278] / [fdo#109284] / [fdo#111827])

  *   igt@kms_content_protection@atomic-dpms:

     *   shard-kbl: NOTRUN -> TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl2/igt@kms_content_protection@atomic-dpms.html> ([i915#1319]) +1 similar issue

  *   igt@kms_content_protection@dp-mst-lic-type-1:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb2/igt@kms_content_protection@dp-mst-lic-type-1.html> ([i915#3116])

  *   igt@kms_content_protection@type1:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb2/igt@kms_content_protection@type1.html> ([fdo#109300] / [fdo#111066])
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb8/igt@kms_content_protection@type1.html> ([fdo#111828])

  *   igt@kms_cursor_crc@pipe-a-cursor-512x512-sliding:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb7/igt@kms_cursor_crc@pipe-a-cursor-512x512-sliding.html> ([fdo#109278] / [fdo#109279])
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb5/igt@kms_cursor_crc@pipe-a-cursor-512x512-sliding.html> ([fdo#109279] / [i915#3359])

  *   igt@kms_cursor_crc@pipe-b-cursor-32x10-onscreen:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb5/igt@kms_cursor_crc@pipe-b-cursor-32x10-onscreen.html> ([fdo#109278]) +10 similar issues

  *   igt@kms_cursor_crc@pipe-b-cursor-32x10-sliding:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb6/igt@kms_cursor_crc@pipe-b-cursor-32x10-sliding.html> ([i915#3359]) +2 similar issues

  *   igt@kms_cursor_crc@pipe-b-cursor-32x32-offscreen:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb1/igt@kms_cursor_crc@pipe-b-cursor-32x32-offscreen.html> ([i915#3319]) +1 similar issue

  *   igt@kms_cursor_crc@pipe-d-cursor-256x256-random:

     *   shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk2/igt@kms_cursor_crc@pipe-d-cursor-256x256-random.html> ([fdo#109271]) +82 similar issues

  *   igt@kms_fbcon_fbt@fbc-suspend:

     *   shard-apl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-apl3/igt@kms_fbcon_fbt@fbc-suspend.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl4/igt@kms_fbcon_fbt@fbc-suspend.html> ([i915#180] / [i915#1982])

  *   igt@kms_flip@2x-flip-vs-suspend-interruptible:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb7/igt@kms_flip@2x-flip-vs-suspend-interruptible.html> ([fdo#109274]) +1 similar issue

  *   igt@kms_flip@2x-flip-vs-wf_vblank-interruptible@ac-hdmi-a1-hdmi-a2:

     *   shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-glk5/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible@ac-hdmi-a1-hdmi-a2.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk7/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible@ac-hdmi-a1-hdmi-a2.html> ([i915#2122])

  *   igt@kms_flip@flip-vs-suspend-interruptible@a-dp1:

     *   shard-kbl: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl4/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html> ([i915#180]) +7 similar issues

  *   igt@kms_flip@flip-vs-suspend@a-dp1:

     *   shard-apl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-apl2/igt@kms_flip@flip-vs-suspend@a-dp1.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl2/igt@kms_flip@flip-vs-suspend@a-dp1.html> ([i915#180]) +4 similar issues

  *   igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile:

     *   shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-iclb5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile.html> ([i915#3701]) +1 similar issue

  *   igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-render:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-render.html> ([fdo#109280]) +11 similar issues

  *   igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-blt:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-blt.html> ([fdo#111825]) +22 similar issues

  *   igt@kms_hdr@bpc-switch-suspend:

     *   shard-kbl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-kbl2/igt@kms_hdr@bpc-switch-suspend.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl1/igt@kms_hdr@bpc-switch-suspend.html> ([i915#180]) +2 similar issues

  *   igt@kms_plane_alpha_blend@pipe-b-alpha-basic:

     *   shard-glk: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk4/igt@kms_plane_alpha_blend@pipe-b-alpha-basic.html> ([fdo#108145] / [i915#265])

  *   igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max:

     *   shard-apl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl3/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max.html> ([fdo#108145] / [i915#265]) +1 similar issue

  *   igt@kms_plane_alpha_blend@pipe-c-alpha-basic:

     *   shard-kbl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl6/igt@kms_plane_alpha_blend@pipe-c-alpha-basic.html> ([fdo#108145] / [i915#265]) +3 similar issues

  *   igt@kms_plane_alpha_blend@pipe-c-alpha-transparent-fb:

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

  *   igt@kms_plane_cursor@pipe-a-viewport-size-64:

     *   shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-glk8/igt@kms_plane_cursor@pipe-a-viewport-size-64.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk9/igt@kms_plane_cursor@pipe-a-viewport-size-64.html> ([i915#1888]) +1 similar issue

  *   igt@kms_plane_lowres@pipe-b-tiling-y:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb2/igt@kms_plane_lowres@pipe-b-tiling-y.html> ([i915#3536])
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb7/igt@kms_plane_lowres@pipe-b-tiling-y.html> ([i915#3536])

  *   igt@kms_psr2_sf@cursor-plane-update-sf:

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

  *   igt@kms_psr@psr2_primary_mmap_gtt:

     *   shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-iclb2/igt@kms_psr@psr2_primary_mmap_gtt.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb6/igt@kms_psr@psr2_primary_mmap_gtt.html> ([fdo#109441]) +1 similar issue

  *   igt@kms_psr@psr2_sprite_plane_onoff:

     *   shard-tglb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb3/igt@kms_psr@psr2_sprite_plane_onoff.html> ([i915#132] / [i915#3467]) +1 similar issue
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb1/igt@kms_psr@psr2_sprite_plane_onoff.html> ([fdo#109441])

  *   igt@kms_setmode@basic:

     *   shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-glk4/igt@kms_setmode@basic.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk3/igt@kms_setmode@basic.html> ([i915#31])

  *   igt@kms_vrr@flip-dpms:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb8/igt@kms_vrr@flip-dpms.html> ([fdo#109502])
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb2/igt@kms_vrr@flip-dpms.html> ([fdo#109502])

  *   igt@kms_writeback@writeback-pixel-formats:

     *   shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl1/igt@kms_writeback@writeback-pixel-formats.html> ([fdo#109271] / [i915#2437])

  *   igt@nouveau_crc@pipe-b-source-outp-inactive:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb2/igt@nouveau_crc@pipe-b-source-outp-inactive.html> ([i915#2530]) +1 similar issue

  *   igt@nouveau_crc@pipe-c-source-rg:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb3/igt@nouveau_crc@pipe-c-source-rg.html> ([i915#2530]) +1 similar issue

  *   igt@perf@gen12-oa-tlb-invalidate:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb3/igt@perf@gen12-oa-tlb-invalidate.html> ([fdo#109289]) +1 similar issue

  *   igt@prime_nv_api@i915_nv_reimport_twice_check_flink_name:

     *   shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl2/igt@prime_nv_api@i915_nv_reimport_twice_check_flink_name.html> ([fdo#109271]) +144 similar issues

  *   igt@prime_nv_test@i915_blt_fill_nv_read:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb4/igt@prime_nv_test@i915_blt_fill_nv_read.html> ([fdo#109291]) +1 similar issue

  *   igt@prime_nv_test@nv_write_i915_cpu_mmap_read:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb5/igt@prime_nv_test@nv_write_i915_cpu_mmap_read.html> ([fdo#109291]) +1 similar issue

  *   igt@prime_vgem@basic-userptr:

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

  *   igt@sysfs_clients@busy:

     *   shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl7/igt@sysfs_clients@busy.html> ([fdo#109271] / [i915#2994])
     *   shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl3/igt@sysfs_clients@busy.html> ([fdo#109271] / [i915#2994])

  *   igt@sysfs_clients@fair-3:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb3/igt@sysfs_clients@fair-3.html> ([i915#2994])
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb6/igt@sysfs_clients@fair-3.html> ([i915#2994])
     *   shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk5/igt@sysfs_clients@fair-3.html> ([fdo#109271] / [i915#2994])

Possible fixes

  *   igt@gem_exec_fair@basic-deadline:

     *   shard-glk: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-glk2/igt@gem_exec_fair@basic-deadline.html> ([i915#2846]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk7/igt@gem_exec_fair@basic-deadline.html>

  *   igt@gem_exec_fair@basic-none@vcs0:

     *   shard-apl: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-apl6/igt@gem_exec_fair@basic-none@vcs0.html> ([i915#2842]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl4/igt@gem_exec_fair@basic-none@vcs0.html>

  *   igt@gem_exec_fair@basic-pace@vcs0:

     *   shard-tglb: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-tglb3/igt@gem_exec_fair@basic-pace@vcs0.html> ([i915#2842]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb5/igt@gem_exec_fair@basic-pace@vcs0.html>

  *   igt@gem_exec_fair@basic-pace@vcs1:

     *   shard-kbl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-kbl6/igt@gem_exec_fair@basic-pace@vcs1.html> ([fdo#109271]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl2/igt@gem_exec_fair@basic-pace@vcs1.html>

  *   igt@gem_exec_fair@basic-throttle@rcs0:

     *   shard-glk: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-glk7/igt@gem_exec_fair@basic-throttle@rcs0.html> ([i915#2842]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk4/igt@gem_exec_fair@basic-throttle@rcs0.html>

  *   igt@gem_workarounds@suspend-resume-fd:

     *   shard-kbl: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-kbl1/igt@gem_workarounds@suspend-resume-fd.html> ([i915#180]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl2/ig> +2 similar issues

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

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

* Re: [igt-dev] ✗ Fi.CI.IGT: failure for Fix kms_psr2_sf test and add new test for FB_DAMAGE_CLIPS plane property (rev5)
  2021-12-08 17:54         ` Vudum, Lakshminarayana
@ 2021-12-08 18:08           ` B, Jeevan
  2021-12-08 18:09             ` Vudum, Lakshminarayana
  0 siblings, 1 reply; 13+ messages in thread
From: B, Jeevan @ 2021-12-08 18:08 UTC (permalink / raw)
  To: Vudum, Lakshminarayana; +Cc: igt-dev

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

This call is getting hit if PSR2 selective fetch is not enabled/ Sink does not support PSR2. So this patch shouldn’t be affecting this.



Thanks

Jeevan B

From: Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com>
Sent: Wednesday, December 8, 2021 11:24 PM
To: B, Jeevan <jeevan.b@intel.com>
Cc: igt-dev@lists.freedesktop.org
Subject: RE: ✗ Fi.CI.IGT: failure for Fix kms_psr2_sf test and add new test for FB_DAMAGE_CLIPS plane property (rev5)

Filed a new issue https://gitlab.freedesktop.org/drm/intel/-/issues/4729
igt@kms_plane_cursor@.*<mailto:igt@kms_plane_cursor@.*> - fail - Failed assertion: !mismatch || igt_skip_crc_compare

But skips are related to https://gitlab.freedesktop.org/drm/intel/-/issues/2920 .

Thanks,
Lakshmi.
From: B, Jeevan <jeevan.b@intel.com<mailto:jeevan.b@intel.com>>
Sent: Wednesday, December 8, 2021 8:21 AM
To: Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com<mailto:lakshminarayana.vudum@intel.com>>
Cc: igt-dev@lists.freedesktop.org<mailto:igt-dev@lists.freedesktop.org>
Subject: RE: ✗ Fi.CI.IGT: failure for Fix kms_psr2_sf test and add new test for FB_DAMAGE_CLIPS plane property (rev5)

Hi Lakshmi,

Sorry, Yea please re-report

  *   igt@kms_plane_cursor@pipe-a-viewport-size-64:

     *   shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-iclb2/igt@kms_plane_cursor@pipe-a-viewport-size-64.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb4/igt@kms_plane_cursor@pipe-a-viewport-size-64.html>
This regression is not related to the change.

Thanks
Jeevan B

From: Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com<mailto:lakshminarayana.vudum@intel.com>>
Sent: Wednesday, December 8, 2021 9:34 PM
To: B, Jeevan <jeevan.b@intel.com<mailto:jeevan.b@intel.com>>
Cc: igt-dev@lists.freedesktop.org<mailto:igt-dev@lists.freedesktop.org>
Subject: RE: ✗ Fi.CI.IGT: failure for Fix kms_psr2_sf test and add new test for FB_DAMAGE_CLIPS plane property (rev5)

Jeevan, I don’t re-run(retest) the series but I re-report the results if the regressions are not caused by the change.

Thanks,
Lakshmi.

From: B, Jeevan <jeevan.b@intel.com<mailto:jeevan.b@intel.com>>
Sent: Wednesday, December 8, 2021 4:29 AM
To: Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com<mailto:lakshminarayana.vudum@intel.com>>
Cc: igt-dev@lists.freedesktop.org<mailto:igt-dev@lists.freedesktop.org>
Subject: RE: ✗ Fi.CI.IGT: failure for Fix kms_psr2_sf test and add new test for FB_DAMAGE_CLIPS plane property (rev5)

Hi Lakshmi,

Can we have a rerun for this patch series.

Thanks
Jeevan B

From: Patchwork <patchwork@emeril.freedesktop.org<mailto:patchwork@emeril.freedesktop.org>>
Sent: Saturday, December 4, 2021 5:52 AM
To: B, Jeevan <jeevan.b@intel.com<mailto:jeevan.b@intel.com>>
Cc: igt-dev@lists.freedesktop.org<mailto:igt-dev@lists.freedesktop.org>
Subject: ✗ Fi.CI.IGT: failure for Fix kms_psr2_sf test and add new test for FB_DAMAGE_CLIPS plane property (rev5)

Patch Details
Series:

Fix kms_psr2_sf test and add new test for FB_DAMAGE_CLIPS plane property (rev5)

URL:

https://patchwork.freedesktop.org/series/94883/

State:

failure

Details:

https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/index.html

CI Bug Log - changes from CI_DRM_10961_full -> IGTPW_6465_full
Summary

FAILURE

Serious unknown changes coming with IGTPW_6465_full absolutely need to be
verified manually.

If you think the reported changes have nothing to do with the changes
introduced in IGTPW_6465_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_6465/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_6465_full:

IGT changes
Possible regressions

  *   igt@kms_plane_cursor@pipe-a-viewport-size-64:

     *   shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-iclb2/igt@kms_plane_cursor@pipe-a-viewport-size-64.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb4/igt@kms_plane_cursor@pipe-a-viewport-size-64.html>

  *   {igt@kms_psr2_sf@primary-plane-update-sf-dmg-area} (NEW):

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb4/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html> +4 similar issues
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html> +3 similar issues

New tests

New tests have been introduced between CI_DRM_10961_full and IGTPW_6465_full:

New IGT tests (5)

  *   igt@kms_atomic@atomic_plane_damage:

     *   Statuses : 1 pass(s) 5 skip(s)
     *   Exec time: [0.0, 0.26] s

  *   igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area:

     *   Statuses : 6 skip(s)
     *   Exec time: [0.0] s

  *   igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area:

     *   Statuses : 5 skip(s)
     *   Exec time: [0.0] s

  *   igt@kms_psr2_sf@plane-move-sf-dmg-area:

     *   Statuses : 6 skip(s)
     *   Exec time: [0.0] s

  *   igt@kms_psr2_sf@primary-plane-update-sf-dmg-area:

     *   Statuses : 6 skip(s)
     *   Exec time: [0.0] s

Known issues

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

IGT changes
Issues hit

  *   igt@gem_ctx_param@set-priority-not-supported:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb3/igt@gem_ctx_param@set-priority-not-supported.html> ([fdo#109314])
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb6/igt@gem_ctx_param@set-priority-not-supported.html> ([fdo#109314])

  *   igt@gem_ctx_sseu@invalid-sseu:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb2/igt@gem_ctx_sseu@invalid-sseu.html> ([i915#280])

  *   igt@gem_eio@unwedge-stress:

     *   shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-iclb2/igt@gem_eio@unwedge-stress.html> -> TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb4/igt@gem_eio@unwedge-stress.html> ([i915#2481] / [i915#3070])

  *   igt@gem_exec_balancer@parallel-out-fence:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb3/igt@gem_exec_balancer@parallel-out-fence.html> ([i915#4525])
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb5/igt@gem_exec_balancer@parallel-out-fence.html> ([i915#4525])

  *   igt@gem_exec_fair@basic-none-share@rcs0:

     *   shard-tglb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-tglb6/igt@gem_exec_fair@basic-none-share@rcs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb8/igt@gem_exec_fair@basic-none-share@rcs0.html> ([i915#2842])
     *   shard-apl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-apl7/igt@gem_exec_fair@basic-none-share@rcs0.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl7/igt@gem_exec_fair@basic-none-share@rcs0.html> ([fdo#109271])

  *   igt@gem_exec_fair@basic-none-vip@rcs0:

     *   shard-tglb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb6/igt@gem_exec_fair@basic-none-vip@rcs0.html> ([i915#2842])
     *   shard-iclb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb2/igt@gem_exec_fair@basic-none-vip@rcs0.html> ([i915#2842])
     *   shard-glk: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk9/igt@gem_exec_fair@basic-none-vip@rcs0.html> ([i915#2842])

  *   igt@gem_exec_fair@basic-none@vecs0:

     *   shard-kbl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-kbl4/igt@gem_exec_fair@basic-none@vecs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl7/igt@gem_exec_fair@basic-none@vecs0.html> ([i915#2842]) +1 similar issue
     *   shard-apl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-apl6/igt@gem_exec_fair@basic-none@vecs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl4/igt@gem_exec_fair@basic-none@vecs0.html> ([i915#2842])

  *   igt@gem_exec_fair@basic-pace-solo@rcs0:

     *   shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-iclb8/igt@gem_exec_fair@basic-pace-solo@rcs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb5/igt@gem_exec_fair@basic-pace-solo@rcs0.html> ([i915#2842])

  *   igt@gem_exec_params@secure-non-master:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb5/igt@gem_exec_params@secure-non-master.html> ([fdo#112283])

  *   igt@gem_exec_schedule@u-semaphore-user:

     *   shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-snb5/igt@gem_exec_schedule@u-semaphore-user.html> ([fdo#109271]) +101 similar issues

  *   igt@gem_exec_whisper@basic-normal:

     *   shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-glk5/igt@gem_exec_whisper@basic-normal.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk4/igt@gem_exec_whisper@basic-normal.html> ([i915#118])

  *   igt@gem_lmem_swapping@heavy-random:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb5/igt@gem_lmem_swapping@heavy-random.html> ([i915#4613])
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb3/igt@gem_lmem_swapping@heavy-random.html> ([i915#4613])
     *   shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl3/igt@gem_lmem_swapping@heavy-random.html> ([fdo#109271] / [i915#4613])
     *   shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk6/igt@gem_lmem_swapping@heavy-random.html> ([fdo#109271] / [i915#4613])

  *   igt@gem_lmem_swapping@parallel-random:

     *   shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl3/igt@gem_lmem_swapping@parallel-random.html> ([fdo#109271] / [i915#4613]) +2 similar issues

  *   igt@gem_ppgtt@flink-and-close-vma-leak:

     *   shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-glk6/igt@gem_ppgtt@flink-and-close-vma-leak.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk7/igt@gem_ppgtt@flink-and-close-vma-leak.html> ([i915#644])

  *   igt@gem_pread@exhaustion:

     *   shard-apl: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl4/igt@gem_pread@exhaustion.html> ([i915#2658])

  *   igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb1/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html> ([i915#4270])
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb2/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html> ([i915#4270])

  *   igt@gem_render_copy@x-tiled-to-vebox-yf-tiled:

     *   shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl3/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html> ([fdo#109271]) +182 similar issues
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb7/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html> ([i915#768]) +1 similar issue

  *   igt@gem_softpin@evict-snoop:

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

  *   igt@gem_userptr_blits@input-checking:

     *   shard-tglb: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb8/igt@gem_userptr_blits@input-checking.html> ([i915#3002])
     *   shard-iclb: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb7/igt@gem_userptr_blits@input-checking.html> ([i915#3002])

  *   igt@gen7_exec_parse@basic-allocation:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb2/igt@gen7_exec_parse@basic-allocation.html> ([fdo#109289])

  *   igt@gen9_exec_parse@bb-large:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb2/igt@gen9_exec_parse@bb-large.html> ([i915#2856])
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb4/igt@gen9_exec_parse@bb-large.html> ([i915#2856])

  *   igt@i915_pm_dc@dc6-dpms:

     *   shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-iclb5/igt@i915_pm_dc@dc6-dpms.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb3/igt@i915_pm_dc@dc6-dpms.html> ([i915#454]) +1 similar issue

  *   igt@i915_pm_lpsp@screens-disabled:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb5/igt@i915_pm_lpsp@screens-disabled.html> ([i915#1902])

  *   igt@i915_pm_rc6_residency@media-rc6-accuracy:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb1/igt@i915_pm_rc6_residency@media-rc6-accuracy.html> ([fdo#109289] / [fdo#111719])

  *   igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip:

     *   shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip.html> ([fdo#109271] / [i915#3777])

  *   igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip:

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

  *   igt@kms_big_fb@yf-tiled-8bpp-rotate-270:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb8/igt@kms_big_fb@yf-tiled-8bpp-rotate-270.html> ([fdo#110723]) +1 similar issue

  *   igt@kms_big_fb@yf-tiled-addfb:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb8/igt@kms_big_fb@yf-tiled-addfb.html> ([fdo#111615]) +4 similar issues

  *   igt@kms_big_joiner@invalid-modeset:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb1/igt@kms_big_joiner@invalid-modeset.html> ([i915#2705])

  *   igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs:

     *   shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk8/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs.html> ([fdo#109271] / [i915#3886]) +1 similar issue

  *   igt@kms_ccs@pipe-a-crc-sprite-planes-basic-yf_tiled_ccs:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb2/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-yf_tiled_ccs.html> ([fdo#111615] / [i915#3689]) +1 similar issue

  *   igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs:

     *   shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl3/igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs.html> ([fdo#109271] / [i915#3886]) +8 similar issues

  *   igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_mc_ccs:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb5/igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_mc_ccs.html> ([i915#3689] / [i915#3886])
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb7/igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_mc_ccs.html> ([fdo#109278] / [i915#3886])

  *   igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_rc_ccs_cc:

     *   shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl7/igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_rc_ccs_cc.html> ([fdo#109271] / [i915#3886]) +4 similar issues

  *   igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_ccs:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb1/igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_ccs.html> ([i915#3689]) +5 similar issues

  *   igt@kms_chamelium@dp-frame-dump:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb6/igt@kms_chamelium@dp-frame-dump.html> ([fdo#109284] / [fdo#111827]) +3 similar issues

  *   igt@kms_chamelium@hdmi-hpd-with-enabled-mode:

     *   shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl6/igt@kms_chamelium@hdmi-hpd-with-enabled-mode.html> ([fdo#109271] / [fdo#111827]) +12 similar issues
     *   shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-snb7/igt@kms_chamelium@hdmi-hpd-with-enabled-mode.html> ([fdo#109271] / [fdo#111827]) +3 similar issues

  *   igt@kms_chamelium@vga-edid-read:

     *   shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl3/igt@kms_chamelium@vga-edid-read.html> ([fdo#109271] / [fdo#111827]) +9 similar issues

  *   igt@kms_color_chamelium@pipe-d-degamma:

     *   shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk1/igt@kms_color_chamelium@pipe-d-degamma.html> ([fdo#109271] / [fdo#111827]) +7 similar issues
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb6/igt@kms_color_chamelium@pipe-d-degamma.html> ([fdo#109284] / [fdo#111827]) +7 similar issues
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb6/igt@kms_color_chamelium@pipe-d-degamma.html> ([fdo#109278] / [fdo#109284] / [fdo#111827])

  *   igt@kms_content_protection@atomic-dpms:

     *   shard-kbl: NOTRUN -> TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl2/igt@kms_content_protection@atomic-dpms.html> ([i915#1319]) +1 similar issue

  *   igt@kms_content_protection@dp-mst-lic-type-1:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb2/igt@kms_content_protection@dp-mst-lic-type-1.html> ([i915#3116])

  *   igt@kms_content_protection@type1:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb2/igt@kms_content_protection@type1.html> ([fdo#109300] / [fdo#111066])
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb8/igt@kms_content_protection@type1.html> ([fdo#111828])

  *   igt@kms_cursor_crc@pipe-a-cursor-512x512-sliding:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb7/igt@kms_cursor_crc@pipe-a-cursor-512x512-sliding.html> ([fdo#109278] / [fdo#109279])
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb5/igt@kms_cursor_crc@pipe-a-cursor-512x512-sliding.html> ([fdo#109279] / [i915#3359])

  *   igt@kms_cursor_crc@pipe-b-cursor-32x10-onscreen:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb5/igt@kms_cursor_crc@pipe-b-cursor-32x10-onscreen.html> ([fdo#109278]) +10 similar issues

  *   igt@kms_cursor_crc@pipe-b-cursor-32x10-sliding:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb6/igt@kms_cursor_crc@pipe-b-cursor-32x10-sliding.html> ([i915#3359]) +2 similar issues

  *   igt@kms_cursor_crc@pipe-b-cursor-32x32-offscreen:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb1/igt@kms_cursor_crc@pipe-b-cursor-32x32-offscreen.html> ([i915#3319]) +1 similar issue

  *   igt@kms_cursor_crc@pipe-d-cursor-256x256-random:

     *   shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk2/igt@kms_cursor_crc@pipe-d-cursor-256x256-random.html> ([fdo#109271]) +82 similar issues

  *   igt@kms_fbcon_fbt@fbc-suspend:

     *   shard-apl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-apl3/igt@kms_fbcon_fbt@fbc-suspend.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl4/igt@kms_fbcon_fbt@fbc-suspend.html> ([i915#180] / [i915#1982])

  *   igt@kms_flip@2x-flip-vs-suspend-interruptible:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb7/igt@kms_flip@2x-flip-vs-suspend-interruptible.html> ([fdo#109274]) +1 similar issue

  *   igt@kms_flip@2x-flip-vs-wf_vblank-interruptible@ac-hdmi-a1-hdmi-a2:

     *   shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-glk5/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible@ac-hdmi-a1-hdmi-a2.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk7/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible@ac-hdmi-a1-hdmi-a2.html> ([i915#2122])

  *   igt@kms_flip@flip-vs-suspend-interruptible@a-dp1:

     *   shard-kbl: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl4/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html> ([i915#180]) +7 similar issues

  *   igt@kms_flip@flip-vs-suspend@a-dp1:

     *   shard-apl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-apl2/igt@kms_flip@flip-vs-suspend@a-dp1.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl2/igt@kms_flip@flip-vs-suspend@a-dp1.html> ([i915#180]) +4 similar issues

  *   igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile:

     *   shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-iclb5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile.html> ([i915#3701]) +1 similar issue

  *   igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-render:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-render.html> ([fdo#109280]) +11 similar issues

  *   igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-blt:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-blt.html> ([fdo#111825]) +22 similar issues

  *   igt@kms_hdr@bpc-switch-suspend:

     *   shard-kbl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-kbl2/igt@kms_hdr@bpc-switch-suspend.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl1/igt@kms_hdr@bpc-switch-suspend.html> ([i915#180]) +2 similar issues

  *   igt@kms_plane_alpha_blend@pipe-b-alpha-basic:

     *   shard-glk: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk4/igt@kms_plane_alpha_blend@pipe-b-alpha-basic.html> ([fdo#108145] / [i915#265])

  *   igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max:

     *   shard-apl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl3/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max.html> ([fdo#108145] / [i915#265]) +1 similar issue

  *   igt@kms_plane_alpha_blend@pipe-c-alpha-basic:

     *   shard-kbl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl6/igt@kms_plane_alpha_blend@pipe-c-alpha-basic.html> ([fdo#108145] / [i915#265]) +3 similar issues

  *   igt@kms_plane_alpha_blend@pipe-c-alpha-transparent-fb:

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

  *   igt@kms_plane_cursor@pipe-a-viewport-size-64:

     *   shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-glk8/igt@kms_plane_cursor@pipe-a-viewport-size-64.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk9/igt@kms_plane_cursor@pipe-a-viewport-size-64.html> ([i915#1888]) +1 similar issue

  *   igt@kms_plane_lowres@pipe-b-tiling-y:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb2/igt@kms_plane_lowres@pipe-b-tiling-y.html> ([i915#3536])
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb7/igt@kms_plane_lowres@pipe-b-tiling-y.html> ([i915#3536])

  *   igt@kms_psr2_sf@cursor-plane-update-sf:

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

  *   igt@kms_psr@psr2_primary_mmap_gtt:

     *   shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-iclb2/igt@kms_psr@psr2_primary_mmap_gtt.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb6/igt@kms_psr@psr2_primary_mmap_gtt.html> ([fdo#109441]) +1 similar issue

  *   igt@kms_psr@psr2_sprite_plane_onoff:

     *   shard-tglb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb3/igt@kms_psr@psr2_sprite_plane_onoff.html> ([i915#132] / [i915#3467]) +1 similar issue
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb1/igt@kms_psr@psr2_sprite_plane_onoff.html> ([fdo#109441])

  *   igt@kms_setmode@basic:

     *   shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-glk4/igt@kms_setmode@basic.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk3/igt@kms_setmode@basic.html> ([i915#31])

  *   igt@kms_vrr@flip-dpms:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb8/igt@kms_vrr@flip-dpms.html> ([fdo#109502])
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb2/igt@kms_vrr@flip-dpms.html> ([fdo#109502])

  *   igt@kms_writeback@writeback-pixel-formats:

     *   shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl1/igt@kms_writeback@writeback-pixel-formats.html> ([fdo#109271] / [i915#2437])

  *   igt@nouveau_crc@pipe-b-source-outp-inactive:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb2/igt@nouveau_crc@pipe-b-source-outp-inactive.html> ([i915#2530]) +1 similar issue

  *   igt@nouveau_crc@pipe-c-source-rg:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb3/igt@nouveau_crc@pipe-c-source-rg.html> ([i915#2530]) +1 similar issue

  *   igt@perf@gen12-oa-tlb-invalidate:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb3/igt@perf@gen12-oa-tlb-invalidate.html> ([fdo#109289]) +1 similar issue

  *   igt@prime_nv_api@i915_nv_reimport_twice_check_flink_name:

     *   shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl2/igt@prime_nv_api@i915_nv_reimport_twice_check_flink_name.html> ([fdo#109271]) +144 similar issues

  *   igt@prime_nv_test@i915_blt_fill_nv_read:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb4/igt@prime_nv_test@i915_blt_fill_nv_read.html> ([fdo#109291]) +1 similar issue

  *   igt@prime_nv_test@nv_write_i915_cpu_mmap_read:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb5/igt@prime_nv_test@nv_write_i915_cpu_mmap_read.html> ([fdo#109291]) +1 similar issue

  *   igt@prime_vgem@basic-userptr:

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

  *   igt@sysfs_clients@busy:

     *   shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl7/igt@sysfs_clients@busy.html> ([fdo#109271] / [i915#2994])
     *   shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl3/igt@sysfs_clients@busy.html> ([fdo#109271] / [i915#2994])

  *   igt@sysfs_clients@fair-3:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb3/igt@sysfs_clients@fair-3.html> ([i915#2994])
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb6/igt@sysfs_clients@fair-3.html> ([i915#2994])
     *   shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk5/igt@sysfs_clients@fair-3.html> ([fdo#109271] / [i915#2994])

Possible fixes

  *   igt@gem_exec_fair@basic-deadline:

     *   shard-glk: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-glk2/igt@gem_exec_fair@basic-deadline.html> ([i915#2846]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk7/igt@gem_exec_fair@basic-deadline.html>

  *   igt@gem_exec_fair@basic-none@vcs0:

     *   shard-apl: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-apl6/igt@gem_exec_fair@basic-none@vcs0.html> ([i915#2842]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl4/igt@gem_exec_fair@basic-none@vcs0.html>

  *   igt@gem_exec_fair@basic-pace@vcs0:

     *   shard-tglb: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-tglb3/igt@gem_exec_fair@basic-pace@vcs0.html> ([i915#2842]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb5/igt@gem_exec_fair@basic-pace@vcs0.html>

  *   igt@gem_exec_fair@basic-pace@vcs1:

     *   shard-kbl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-kbl6/igt@gem_exec_fair@basic-pace@vcs1.html> ([fdo#109271]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl2/igt@gem_exec_fair@basic-pace@vcs1.html>

  *   igt@gem_exec_fair@basic-throttle@rcs0:

     *   shard-glk: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-glk7/igt@gem_exec_fair@basic-throttle@rcs0.html> ([i915#2842]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk4/igt@gem_exec_fair@basic-throttle@rcs0.html>

  *   igt@gem_workarounds@suspend-resume-fd:

     *   shard-kbl: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-kbl1/igt@gem_workarounds@suspend-resume-fd.html> ([i915#180]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl2/ig> +2 similar issues

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

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

* Re: [igt-dev] ✗ Fi.CI.IGT: failure for Fix kms_psr2_sf test and add new test for FB_DAMAGE_CLIPS plane property (rev5)
  2021-12-08 18:08           ` B, Jeevan
@ 2021-12-08 18:09             ` Vudum, Lakshminarayana
  0 siblings, 0 replies; 13+ messages in thread
From: Vudum, Lakshminarayana @ 2021-12-08 18:09 UTC (permalink / raw)
  To: B, Jeevan; +Cc: igt-dev

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

Yes, that’s a known issue and expected.

From: B, Jeevan <jeevan.b@intel.com>
Sent: Wednesday, December 8, 2021 10:08 AM
To: Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com>
Cc: igt-dev@lists.freedesktop.org
Subject: RE: ✗ Fi.CI.IGT: failure for Fix kms_psr2_sf test and add new test for FB_DAMAGE_CLIPS plane property (rev5)


This call is getting hit if PSR2 selective fetch is not enabled/ Sink does not support PSR2. So this patch shouldn’t be affecting this.



Thanks

Jeevan B

From: Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com<mailto:lakshminarayana.vudum@intel.com>>
Sent: Wednesday, December 8, 2021 11:24 PM
To: B, Jeevan <jeevan.b@intel.com<mailto:jeevan.b@intel.com>>
Cc: igt-dev@lists.freedesktop.org<mailto:igt-dev@lists.freedesktop.org>
Subject: RE: ✗ Fi.CI.IGT: failure for Fix kms_psr2_sf test and add new test for FB_DAMAGE_CLIPS plane property (rev5)

Filed a new issue https://gitlab.freedesktop.org/drm/intel/-/issues/4729
igt@kms_plane_cursor@.*<mailto:igt@kms_plane_cursor@.*> - fail - Failed assertion: !mismatch || igt_skip_crc_compare

But skips are related to https://gitlab.freedesktop.org/drm/intel/-/issues/2920 .

Thanks,
Lakshmi.
From: B, Jeevan <jeevan.b@intel.com<mailto:jeevan.b@intel.com>>
Sent: Wednesday, December 8, 2021 8:21 AM
To: Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com<mailto:lakshminarayana.vudum@intel.com>>
Cc: igt-dev@lists.freedesktop.org<mailto:igt-dev@lists.freedesktop.org>
Subject: RE: ✗ Fi.CI.IGT: failure for Fix kms_psr2_sf test and add new test for FB_DAMAGE_CLIPS plane property (rev5)

Hi Lakshmi,

Sorry, Yea please re-report

  *   igt@kms_plane_cursor@pipe-a-viewport-size-64:

     *   shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-iclb2/igt@kms_plane_cursor@pipe-a-viewport-size-64.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb4/igt@kms_plane_cursor@pipe-a-viewport-size-64.html>
This regression is not related to the change.

Thanks
Jeevan B

From: Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com<mailto:lakshminarayana.vudum@intel.com>>
Sent: Wednesday, December 8, 2021 9:34 PM
To: B, Jeevan <jeevan.b@intel.com<mailto:jeevan.b@intel.com>>
Cc: igt-dev@lists.freedesktop.org<mailto:igt-dev@lists.freedesktop.org>
Subject: RE: ✗ Fi.CI.IGT: failure for Fix kms_psr2_sf test and add new test for FB_DAMAGE_CLIPS plane property (rev5)

Jeevan, I don’t re-run(retest) the series but I re-report the results if the regressions are not caused by the change.

Thanks,
Lakshmi.

From: B, Jeevan <jeevan.b@intel.com<mailto:jeevan.b@intel.com>>
Sent: Wednesday, December 8, 2021 4:29 AM
To: Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com<mailto:lakshminarayana.vudum@intel.com>>
Cc: igt-dev@lists.freedesktop.org<mailto:igt-dev@lists.freedesktop.org>
Subject: RE: ✗ Fi.CI.IGT: failure for Fix kms_psr2_sf test and add new test for FB_DAMAGE_CLIPS plane property (rev5)

Hi Lakshmi,

Can we have a rerun for this patch series.

Thanks
Jeevan B

From: Patchwork <patchwork@emeril.freedesktop.org<mailto:patchwork@emeril.freedesktop.org>>
Sent: Saturday, December 4, 2021 5:52 AM
To: B, Jeevan <jeevan.b@intel.com<mailto:jeevan.b@intel.com>>
Cc: igt-dev@lists.freedesktop.org<mailto:igt-dev@lists.freedesktop.org>
Subject: ✗ Fi.CI.IGT: failure for Fix kms_psr2_sf test and add new test for FB_DAMAGE_CLIPS plane property (rev5)

Patch Details
Series:

Fix kms_psr2_sf test and add new test for FB_DAMAGE_CLIPS plane property (rev5)

URL:

https://patchwork.freedesktop.org/series/94883/

State:

failure

Details:

https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/index.html

CI Bug Log - changes from CI_DRM_10961_full -> IGTPW_6465_full
Summary

FAILURE

Serious unknown changes coming with IGTPW_6465_full absolutely need to be
verified manually.

If you think the reported changes have nothing to do with the changes
introduced in IGTPW_6465_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_6465/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_6465_full:

IGT changes
Possible regressions

  *   igt@kms_plane_cursor@pipe-a-viewport-size-64:

     *   shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-iclb2/igt@kms_plane_cursor@pipe-a-viewport-size-64.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb4/igt@kms_plane_cursor@pipe-a-viewport-size-64.html>

  *   {igt@kms_psr2_sf@primary-plane-update-sf-dmg-area} (NEW):

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb4/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html> +4 similar issues
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html> +3 similar issues

New tests

New tests have been introduced between CI_DRM_10961_full and IGTPW_6465_full:

New IGT tests (5)

  *   igt@kms_atomic@atomic_plane_damage:

     *   Statuses : 1 pass(s) 5 skip(s)
     *   Exec time: [0.0, 0.26] s

  *   igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area:

     *   Statuses : 6 skip(s)
     *   Exec time: [0.0] s

  *   igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area:

     *   Statuses : 5 skip(s)
     *   Exec time: [0.0] s

  *   igt@kms_psr2_sf@plane-move-sf-dmg-area:

     *   Statuses : 6 skip(s)
     *   Exec time: [0.0] s

  *   igt@kms_psr2_sf@primary-plane-update-sf-dmg-area:

     *   Statuses : 6 skip(s)
     *   Exec time: [0.0] s

Known issues

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

IGT changes
Issues hit

  *   igt@gem_ctx_param@set-priority-not-supported:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb3/igt@gem_ctx_param@set-priority-not-supported.html> ([fdo#109314])
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb6/igt@gem_ctx_param@set-priority-not-supported.html> ([fdo#109314])

  *   igt@gem_ctx_sseu@invalid-sseu:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb2/igt@gem_ctx_sseu@invalid-sseu.html> ([i915#280])

  *   igt@gem_eio@unwedge-stress:

     *   shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-iclb2/igt@gem_eio@unwedge-stress.html> -> TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb4/igt@gem_eio@unwedge-stress.html> ([i915#2481] / [i915#3070])

  *   igt@gem_exec_balancer@parallel-out-fence:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb3/igt@gem_exec_balancer@parallel-out-fence.html> ([i915#4525])
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb5/igt@gem_exec_balancer@parallel-out-fence.html> ([i915#4525])

  *   igt@gem_exec_fair@basic-none-share@rcs0:

     *   shard-tglb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-tglb6/igt@gem_exec_fair@basic-none-share@rcs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb8/igt@gem_exec_fair@basic-none-share@rcs0.html> ([i915#2842])
     *   shard-apl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-apl7/igt@gem_exec_fair@basic-none-share@rcs0.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl7/igt@gem_exec_fair@basic-none-share@rcs0.html> ([fdo#109271])

  *   igt@gem_exec_fair@basic-none-vip@rcs0:

     *   shard-tglb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb6/igt@gem_exec_fair@basic-none-vip@rcs0.html> ([i915#2842])
     *   shard-iclb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb2/igt@gem_exec_fair@basic-none-vip@rcs0.html> ([i915#2842])
     *   shard-glk: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk9/igt@gem_exec_fair@basic-none-vip@rcs0.html> ([i915#2842])

  *   igt@gem_exec_fair@basic-none@vecs0:

     *   shard-kbl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-kbl4/igt@gem_exec_fair@basic-none@vecs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl7/igt@gem_exec_fair@basic-none@vecs0.html> ([i915#2842]) +1 similar issue
     *   shard-apl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-apl6/igt@gem_exec_fair@basic-none@vecs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl4/igt@gem_exec_fair@basic-none@vecs0.html> ([i915#2842])

  *   igt@gem_exec_fair@basic-pace-solo@rcs0:

     *   shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-iclb8/igt@gem_exec_fair@basic-pace-solo@rcs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb5/igt@gem_exec_fair@basic-pace-solo@rcs0.html> ([i915#2842])

  *   igt@gem_exec_params@secure-non-master:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb5/igt@gem_exec_params@secure-non-master.html> ([fdo#112283])

  *   igt@gem_exec_schedule@u-semaphore-user:

     *   shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-snb5/igt@gem_exec_schedule@u-semaphore-user.html> ([fdo#109271]) +101 similar issues

  *   igt@gem_exec_whisper@basic-normal:

     *   shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-glk5/igt@gem_exec_whisper@basic-normal.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk4/igt@gem_exec_whisper@basic-normal.html> ([i915#118])

  *   igt@gem_lmem_swapping@heavy-random:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb5/igt@gem_lmem_swapping@heavy-random.html> ([i915#4613])
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb3/igt@gem_lmem_swapping@heavy-random.html> ([i915#4613])
     *   shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl3/igt@gem_lmem_swapping@heavy-random.html> ([fdo#109271] / [i915#4613])
     *   shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk6/igt@gem_lmem_swapping@heavy-random.html> ([fdo#109271] / [i915#4613])

  *   igt@gem_lmem_swapping@parallel-random:

     *   shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl3/igt@gem_lmem_swapping@parallel-random.html> ([fdo#109271] / [i915#4613]) +2 similar issues

  *   igt@gem_ppgtt@flink-and-close-vma-leak:

     *   shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-glk6/igt@gem_ppgtt@flink-and-close-vma-leak.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk7/igt@gem_ppgtt@flink-and-close-vma-leak.html> ([i915#644])

  *   igt@gem_pread@exhaustion:

     *   shard-apl: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl4/igt@gem_pread@exhaustion.html> ([i915#2658])

  *   igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb1/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html> ([i915#4270])
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb2/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html> ([i915#4270])

  *   igt@gem_render_copy@x-tiled-to-vebox-yf-tiled:

     *   shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl3/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html> ([fdo#109271]) +182 similar issues
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb7/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html> ([i915#768]) +1 similar issue

  *   igt@gem_softpin@evict-snoop:

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

  *   igt@gem_userptr_blits@input-checking:

     *   shard-tglb: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb8/igt@gem_userptr_blits@input-checking.html> ([i915#3002])
     *   shard-iclb: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb7/igt@gem_userptr_blits@input-checking.html> ([i915#3002])

  *   igt@gen7_exec_parse@basic-allocation:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb2/igt@gen7_exec_parse@basic-allocation.html> ([fdo#109289])

  *   igt@gen9_exec_parse@bb-large:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb2/igt@gen9_exec_parse@bb-large.html> ([i915#2856])
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb4/igt@gen9_exec_parse@bb-large.html> ([i915#2856])

  *   igt@i915_pm_dc@dc6-dpms:

     *   shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-iclb5/igt@i915_pm_dc@dc6-dpms.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb3/igt@i915_pm_dc@dc6-dpms.html> ([i915#454]) +1 similar issue

  *   igt@i915_pm_lpsp@screens-disabled:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb5/igt@i915_pm_lpsp@screens-disabled.html> ([i915#1902])

  *   igt@i915_pm_rc6_residency@media-rc6-accuracy:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb1/igt@i915_pm_rc6_residency@media-rc6-accuracy.html> ([fdo#109289] / [fdo#111719])

  *   igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip:

     *   shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip.html> ([fdo#109271] / [i915#3777])

  *   igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip:

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

  *   igt@kms_big_fb@yf-tiled-8bpp-rotate-270:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb8/igt@kms_big_fb@yf-tiled-8bpp-rotate-270.html> ([fdo#110723]) +1 similar issue

  *   igt@kms_big_fb@yf-tiled-addfb:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb8/igt@kms_big_fb@yf-tiled-addfb.html> ([fdo#111615]) +4 similar issues

  *   igt@kms_big_joiner@invalid-modeset:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb1/igt@kms_big_joiner@invalid-modeset.html> ([i915#2705])

  *   igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs:

     *   shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk8/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs.html> ([fdo#109271] / [i915#3886]) +1 similar issue

  *   igt@kms_ccs@pipe-a-crc-sprite-planes-basic-yf_tiled_ccs:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb2/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-yf_tiled_ccs.html> ([fdo#111615] / [i915#3689]) +1 similar issue

  *   igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs:

     *   shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl3/igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs.html> ([fdo#109271] / [i915#3886]) +8 similar issues

  *   igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_mc_ccs:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb5/igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_mc_ccs.html> ([i915#3689] / [i915#3886])
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb7/igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_mc_ccs.html> ([fdo#109278] / [i915#3886])

  *   igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_rc_ccs_cc:

     *   shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl7/igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_rc_ccs_cc.html> ([fdo#109271] / [i915#3886]) +4 similar issues

  *   igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_ccs:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb1/igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_ccs.html> ([i915#3689]) +5 similar issues

  *   igt@kms_chamelium@dp-frame-dump:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb6/igt@kms_chamelium@dp-frame-dump.html> ([fdo#109284] / [fdo#111827]) +3 similar issues

  *   igt@kms_chamelium@hdmi-hpd-with-enabled-mode:

     *   shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl6/igt@kms_chamelium@hdmi-hpd-with-enabled-mode.html> ([fdo#109271] / [fdo#111827]) +12 similar issues
     *   shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-snb7/igt@kms_chamelium@hdmi-hpd-with-enabled-mode.html> ([fdo#109271] / [fdo#111827]) +3 similar issues

  *   igt@kms_chamelium@vga-edid-read:

     *   shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl3/igt@kms_chamelium@vga-edid-read.html> ([fdo#109271] / [fdo#111827]) +9 similar issues

  *   igt@kms_color_chamelium@pipe-d-degamma:

     *   shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk1/igt@kms_color_chamelium@pipe-d-degamma.html> ([fdo#109271] / [fdo#111827]) +7 similar issues
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb6/igt@kms_color_chamelium@pipe-d-degamma.html> ([fdo#109284] / [fdo#111827]) +7 similar issues
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb6/igt@kms_color_chamelium@pipe-d-degamma.html> ([fdo#109278] / [fdo#109284] / [fdo#111827])

  *   igt@kms_content_protection@atomic-dpms:

     *   shard-kbl: NOTRUN -> TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl2/igt@kms_content_protection@atomic-dpms.html> ([i915#1319]) +1 similar issue

  *   igt@kms_content_protection@dp-mst-lic-type-1:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb2/igt@kms_content_protection@dp-mst-lic-type-1.html> ([i915#3116])

  *   igt@kms_content_protection@type1:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb2/igt@kms_content_protection@type1.html> ([fdo#109300] / [fdo#111066])
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb8/igt@kms_content_protection@type1.html> ([fdo#111828])

  *   igt@kms_cursor_crc@pipe-a-cursor-512x512-sliding:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb7/igt@kms_cursor_crc@pipe-a-cursor-512x512-sliding.html> ([fdo#109278] / [fdo#109279])
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb5/igt@kms_cursor_crc@pipe-a-cursor-512x512-sliding.html> ([fdo#109279] / [i915#3359])

  *   igt@kms_cursor_crc@pipe-b-cursor-32x10-onscreen:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb5/igt@kms_cursor_crc@pipe-b-cursor-32x10-onscreen.html> ([fdo#109278]) +10 similar issues

  *   igt@kms_cursor_crc@pipe-b-cursor-32x10-sliding:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb6/igt@kms_cursor_crc@pipe-b-cursor-32x10-sliding.html> ([i915#3359]) +2 similar issues

  *   igt@kms_cursor_crc@pipe-b-cursor-32x32-offscreen:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb1/igt@kms_cursor_crc@pipe-b-cursor-32x32-offscreen.html> ([i915#3319]) +1 similar issue

  *   igt@kms_cursor_crc@pipe-d-cursor-256x256-random:

     *   shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk2/igt@kms_cursor_crc@pipe-d-cursor-256x256-random.html> ([fdo#109271]) +82 similar issues

  *   igt@kms_fbcon_fbt@fbc-suspend:

     *   shard-apl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-apl3/igt@kms_fbcon_fbt@fbc-suspend.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl4/igt@kms_fbcon_fbt@fbc-suspend.html> ([i915#180] / [i915#1982])

  *   igt@kms_flip@2x-flip-vs-suspend-interruptible:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb7/igt@kms_flip@2x-flip-vs-suspend-interruptible.html> ([fdo#109274]) +1 similar issue

  *   igt@kms_flip@2x-flip-vs-wf_vblank-interruptible@ac-hdmi-a1-hdmi-a2:

     *   shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-glk5/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible@ac-hdmi-a1-hdmi-a2.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk7/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible@ac-hdmi-a1-hdmi-a2.html> ([i915#2122])

  *   igt@kms_flip@flip-vs-suspend-interruptible@a-dp1:

     *   shard-kbl: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl4/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html> ([i915#180]) +7 similar issues

  *   igt@kms_flip@flip-vs-suspend@a-dp1:

     *   shard-apl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-apl2/igt@kms_flip@flip-vs-suspend@a-dp1.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl2/igt@kms_flip@flip-vs-suspend@a-dp1.html> ([i915#180]) +4 similar issues

  *   igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile:

     *   shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-iclb5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile.html> ([i915#3701]) +1 similar issue

  *   igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-render:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-render.html> ([fdo#109280]) +11 similar issues

  *   igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-blt:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-blt.html> ([fdo#111825]) +22 similar issues

  *   igt@kms_hdr@bpc-switch-suspend:

     *   shard-kbl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-kbl2/igt@kms_hdr@bpc-switch-suspend.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl1/igt@kms_hdr@bpc-switch-suspend.html> ([i915#180]) +2 similar issues

  *   igt@kms_plane_alpha_blend@pipe-b-alpha-basic:

     *   shard-glk: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk4/igt@kms_plane_alpha_blend@pipe-b-alpha-basic.html> ([fdo#108145] / [i915#265])

  *   igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max:

     *   shard-apl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl3/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max.html> ([fdo#108145] / [i915#265]) +1 similar issue

  *   igt@kms_plane_alpha_blend@pipe-c-alpha-basic:

     *   shard-kbl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl6/igt@kms_plane_alpha_blend@pipe-c-alpha-basic.html> ([fdo#108145] / [i915#265]) +3 similar issues

  *   igt@kms_plane_alpha_blend@pipe-c-alpha-transparent-fb:

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

  *   igt@kms_plane_cursor@pipe-a-viewport-size-64:

     *   shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-glk8/igt@kms_plane_cursor@pipe-a-viewport-size-64.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk9/igt@kms_plane_cursor@pipe-a-viewport-size-64.html> ([i915#1888]) +1 similar issue

  *   igt@kms_plane_lowres@pipe-b-tiling-y:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb2/igt@kms_plane_lowres@pipe-b-tiling-y.html> ([i915#3536])
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb7/igt@kms_plane_lowres@pipe-b-tiling-y.html> ([i915#3536])

  *   igt@kms_psr2_sf@cursor-plane-update-sf:

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

  *   igt@kms_psr@psr2_primary_mmap_gtt:

     *   shard-iclb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-iclb2/igt@kms_psr@psr2_primary_mmap_gtt.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb6/igt@kms_psr@psr2_primary_mmap_gtt.html> ([fdo#109441]) +1 similar issue

  *   igt@kms_psr@psr2_sprite_plane_onoff:

     *   shard-tglb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb3/igt@kms_psr@psr2_sprite_plane_onoff.html> ([i915#132] / [i915#3467]) +1 similar issue
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb1/igt@kms_psr@psr2_sprite_plane_onoff.html> ([fdo#109441])

  *   igt@kms_setmode@basic:

     *   shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-glk4/igt@kms_setmode@basic.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk3/igt@kms_setmode@basic.html> ([i915#31])

  *   igt@kms_vrr@flip-dpms:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb8/igt@kms_vrr@flip-dpms.html> ([fdo#109502])
     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb2/igt@kms_vrr@flip-dpms.html> ([fdo#109502])

  *   igt@kms_writeback@writeback-pixel-formats:

     *   shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl1/igt@kms_writeback@writeback-pixel-formats.html> ([fdo#109271] / [i915#2437])

  *   igt@nouveau_crc@pipe-b-source-outp-inactive:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb2/igt@nouveau_crc@pipe-b-source-outp-inactive.html> ([i915#2530]) +1 similar issue

  *   igt@nouveau_crc@pipe-c-source-rg:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb3/igt@nouveau_crc@pipe-c-source-rg.html> ([i915#2530]) +1 similar issue

  *   igt@perf@gen12-oa-tlb-invalidate:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb3/igt@perf@gen12-oa-tlb-invalidate.html> ([fdo#109289]) +1 similar issue

  *   igt@prime_nv_api@i915_nv_reimport_twice_check_flink_name:

     *   shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl2/igt@prime_nv_api@i915_nv_reimport_twice_check_flink_name.html> ([fdo#109271]) +144 similar issues

  *   igt@prime_nv_test@i915_blt_fill_nv_read:

     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb4/igt@prime_nv_test@i915_blt_fill_nv_read.html> ([fdo#109291]) +1 similar issue

  *   igt@prime_nv_test@nv_write_i915_cpu_mmap_read:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb5/igt@prime_nv_test@nv_write_i915_cpu_mmap_read.html> ([fdo#109291]) +1 similar issue

  *   igt@prime_vgem@basic-userptr:

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

  *   igt@sysfs_clients@busy:

     *   shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl7/igt@sysfs_clients@busy.html> ([fdo#109271] / [i915#2994])
     *   shard-kbl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl3/igt@sysfs_clients@busy.html> ([fdo#109271] / [i915#2994])

  *   igt@sysfs_clients@fair-3:

     *   shard-tglb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb3/igt@sysfs_clients@fair-3.html> ([i915#2994])
     *   shard-iclb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-iclb6/igt@sysfs_clients@fair-3.html> ([i915#2994])
     *   shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk5/igt@sysfs_clients@fair-3.html> ([fdo#109271] / [i915#2994])

Possible fixes

  *   igt@gem_exec_fair@basic-deadline:

     *   shard-glk: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-glk2/igt@gem_exec_fair@basic-deadline.html> ([i915#2846]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk7/igt@gem_exec_fair@basic-deadline.html>

  *   igt@gem_exec_fair@basic-none@vcs0:

     *   shard-apl: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-apl6/igt@gem_exec_fair@basic-none@vcs0.html> ([i915#2842]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-apl4/igt@gem_exec_fair@basic-none@vcs0.html>

  *   igt@gem_exec_fair@basic-pace@vcs0:

     *   shard-tglb: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-tglb3/igt@gem_exec_fair@basic-pace@vcs0.html> ([i915#2842]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-tglb5/igt@gem_exec_fair@basic-pace@vcs0.html>

  *   igt@gem_exec_fair@basic-pace@vcs1:

     *   shard-kbl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-kbl6/igt@gem_exec_fair@basic-pace@vcs1.html> ([fdo#109271]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl2/igt@gem_exec_fair@basic-pace@vcs1.html>

  *   igt@gem_exec_fair@basic-throttle@rcs0:

     *   shard-glk: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-glk7/igt@gem_exec_fair@basic-throttle@rcs0.html> ([i915#2842]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-glk4/igt@gem_exec_fair@basic-throttle@rcs0.html>

  *   igt@gem_workarounds@suspend-resume-fd:

     *   shard-kbl: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10961/shard-kbl1/igt@gem_workarounds@suspend-resume-fd.html> ([i915#180]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6465/shard-kbl2/ig> +2 similar issues

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

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

end of thread, other threads:[~2021-12-08 18:09 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-12-03 16:28 [igt-dev] [PATCH i-g-t v5 0/3] Fix kms_psr2_sf test and add new test for FB_DAMAGE_CLIPS plane property Jeevan B
2021-12-03 16:28 ` [igt-dev] [PATCH i-g-t v5 1/3] lib/igt_aux: Rename igt_debug_manual_check and assert check if all is supplied Jeevan B
2021-12-03 16:28 ` [igt-dev] [PATCH i-g-t v5 2/3] tests/kms_psr2_sf: Change testcase design Jeevan B
2021-12-03 16:28 ` [igt-dev] [PATCH i-g-t v5 3/3] tests/kms_atomic: Add a new test case for FB_DAMAGE_CLIPS plane property Jeevan B
2021-12-03 16:52 ` [igt-dev] ✓ Fi.CI.BAT: success for Fix kms_psr2_sf test and add new test for FB_DAMAGE_CLIPS plane property (rev5) Patchwork
2021-12-04  0:21 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2021-12-08 12:28   ` B, Jeevan
2021-12-08 16:03     ` Vudum, Lakshminarayana
2021-12-08 16:21       ` B, Jeevan
2021-12-08 17:54         ` Vudum, Lakshminarayana
2021-12-08 18:08           ` B, Jeevan
2021-12-08 18:09             ` Vudum, Lakshminarayana
2021-12-08 17:00 ` [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.