Igt-dev Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH i-g-t 0/6] Force joiner support in bigjoiner checks
@ 2024-04-17 14:33 Bhanuprakash Modem
  2024-04-17 14:33 ` [PATCH i-g-t 1/6] lib/igt_kms: New helper to check force joiner status Bhanuprakash Modem
                   ` (7 more replies)
  0 siblings, 8 replies; 9+ messages in thread
From: Bhanuprakash Modem @ 2024-04-17 14:33 UTC (permalink / raw)
  To: igt-dev; +Cc: Bhanuprakash Modem

As we recently introduced the option (through debugfs) to
force the bigjoiner, needs to extend the support in bigjoiner
checks to handle the force joiner.

Bhanuprakash Modem (6):
  lib/igt_kms: New helper to check force joiner status
  lib/igt_kms: Force joiner support in bigjoiner checks
  tests/intel/kms_pm_lpsp: Force joiner support in bigjoiner checks
  tests/kms_flip: Force joiner support in bigjoiner checks
  tests/kms_setmode: Force joiner support in bigjoiner checks
  HAX: Test force joiner on BAT

 lib/igt_kms.c             | 43 +++++++++++++++++++++++++++++++++++----
 lib/igt_kms.h             |  1 +
 tests/intel/kms_pm_lpsp.c |  3 +++
 tests/kms_cursor_legacy.c |  5 +++++
 tests/kms_flip.c          | 23 +++++++++++++++++----
 tests/kms_setmode.c       | 22 ++++++++++++++++----
 6 files changed, 85 insertions(+), 12 deletions(-)

-- 
2.43.2


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

* [PATCH i-g-t 1/6] lib/igt_kms: New helper to check force joiner status
  2024-04-17 14:33 [PATCH i-g-t 0/6] Force joiner support in bigjoiner checks Bhanuprakash Modem
@ 2024-04-17 14:33 ` Bhanuprakash Modem
  2024-04-17 14:33 ` [PATCH i-g-t 2/6] lib/igt_kms: Force joiner support in bigjoiner checks Bhanuprakash Modem
                   ` (6 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: Bhanuprakash Modem @ 2024-04-17 14:33 UTC (permalink / raw)
  To: igt-dev; +Cc: Bhanuprakash Modem, Kunal Joshi

Add a new function to check the force joiner status
on selected connecter, so that it would be helpful to
check the force joiner status from other places too.

Cc: Kunal Joshi <kunal1.joshi@intel.com>
Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
---
 lib/igt_kms.c | 30 ++++++++++++++++++++++++++++++
 lib/igt_kms.h |  1 +
 2 files changed, 31 insertions(+)

diff --git a/lib/igt_kms.c b/lib/igt_kms.c
index 3216fe7e4..5271010be 100644
--- a/lib/igt_kms.c
+++ b/lib/igt_kms.c
@@ -6283,6 +6283,36 @@ bool igt_force_and_check_bigjoiner_status(int drmfd, char *connector_name, bool
 			strstr(buf, "N");
 }
 
+/**
+ * igt_check_force_joiner_status
+ * @drmfd: file descriptor of the DRM device.
+ * @connector_name: connector to check.
+ *
+ * Checks if the force big joiner is enabled.
+ *
+ * Returns: True if the force big joiner is enabled, False otherwise.
+ */
+bool igt_check_force_joiner_status(int drmfd, char *connector_name)
+{
+	char buf[512];
+	int debugfs_fd, ret;
+
+	if (!connector_name)
+		return false;
+
+	debugfs_fd = igt_debugfs_connector_dir(drmfd, connector_name, O_RDONLY);
+	if (debugfs_fd < 0)
+		return false;
+
+	ret = igt_debugfs_simple_read(debugfs_fd, "i915_bigjoiner_force_enable", buf, sizeof(buf));
+	close(debugfs_fd);
+
+	if (ret < 0)
+		return false;
+
+	return strstr(buf, "Y");
+}
+
 /**
  * igt_check_bigjoiner_support:
  * @display: a pointer to an #igt_display_t structure
diff --git a/lib/igt_kms.h b/lib/igt_kms.h
index 6d13e5851..b8f7c745b 100644
--- a/lib/igt_kms.h
+++ b/lib/igt_kms.h
@@ -1216,6 +1216,7 @@ bool bigjoiner_mode_found(int drm_fd, drmModeConnector *connector,
 			  int max_dotclock, drmModeModeInfo *mode);
 bool igt_has_force_joiner_debugfs(int drmfd, igt_output_t *output);
 bool igt_force_and_check_bigjoiner_status(int drmfd, char *connector_name, bool enable);
+bool igt_check_force_joiner_status(int drmfd, char *connector_name);
 bool igt_check_bigjoiner_support(igt_display_t *display);
 bool igt_parse_mode_string(const char *mode_string, drmModeModeInfo *mode);
 bool intel_pipe_output_combo_valid(igt_display_t *display);
-- 
2.43.2


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

* [PATCH i-g-t 2/6] lib/igt_kms: Force joiner support in bigjoiner checks
  2024-04-17 14:33 [PATCH i-g-t 0/6] Force joiner support in bigjoiner checks Bhanuprakash Modem
  2024-04-17 14:33 ` [PATCH i-g-t 1/6] lib/igt_kms: New helper to check force joiner status Bhanuprakash Modem
@ 2024-04-17 14:33 ` Bhanuprakash Modem
  2024-04-17 14:33 ` [PATCH i-g-t 3/6] tests/intel/kms_pm_lpsp: " Bhanuprakash Modem
                   ` (5 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: Bhanuprakash Modem @ 2024-04-17 14:33 UTC (permalink / raw)
  To: igt-dev; +Cc: Bhanuprakash Modem, Kunal Joshi

As we recently introduced the option (through debugfs) to
force the bigjoiner, needs to extend the support in bigjoiner
checks to handle the force joiner.

Cc: Kunal Joshi <kunal1.joshi@intel.com>
Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
---
 lib/igt_kms.c | 13 +++++++++----
 1 file changed, 9 insertions(+), 4 deletions(-)

diff --git a/lib/igt_kms.c b/lib/igt_kms.c
index 5271010be..80c22a86d 100644
--- a/lib/igt_kms.c
+++ b/lib/igt_kms.c
@@ -6334,6 +6334,7 @@ bool igt_check_bigjoiner_support(igt_display_t *display)
 	struct {
 		enum pipe idx;
 		drmModeModeInfo *mode;
+		bool force_joiner;
 	} pipes[IGT_MAX_PIPES];
 	int max_dotclock;
 
@@ -6351,6 +6352,7 @@ bool igt_check_bigjoiner_support(igt_display_t *display)
 
 		pipes[pipes_in_use].idx = output->pending_pipe;
 		pipes[pipes_in_use].mode = igt_output_get_mode(output);
+		pipes[pipes_in_use].force_joiner = igt_check_force_joiner_status(display->drm_fd, output->name);
 		pipes_in_use++;
 	}
 
@@ -6362,21 +6364,24 @@ bool igt_check_bigjoiner_support(igt_display_t *display)
 	max_dotclock = igt_get_max_dotclock(display->drm_fd);
 
 	/*
-	 * if mode resolution > 5K (or) mode.clock > max dot-clock, then ignore
+	 * if force joiner (or) mode resolution > 5K (or) mode.clock > max dot-clock,
+	 * then ignore
 	 *  - if the consecutive pipe is not available
 	 *  - last crtc in single/multi-connector config
 	 *  - consecutive crtcs in multi-connector config
 	 *
 	 * in multi-connector config ignore if
-	 *  - previous crtc (mode resolution > 5K or mode.clock > max dot-clock) and
+	 *  - previous crtc (force joiner or mode resolution > 5K or mode.clock > max dot-clock) and
 	 *  - current & previous crtcs are consecutive
 	 */
 	for (i = 0; i < pipes_in_use; i++) {
-		if ((igt_bigjoiner_possible(pipes[i].mode, max_dotclock) &&
+		if (((pipes[i].force_joiner ||
+		      igt_bigjoiner_possible(pipes[i].mode, max_dotclock)) &&
 		     ((pipes[i].idx >= (total_pipes - 1)) ||
 		      (!display->pipes[pipes[i].idx + 1].enabled) ||
 		      ((i < (pipes_in_use - 1)) && (abs(pipes[i + 1].idx - pipes[i].idx) <= 1)))) ||
-		    ((i > 0) && igt_bigjoiner_possible(pipes[i - 1].mode, max_dotclock) &&
+		    ((i > 0) && (pipes[i - 1].force_joiner ||
+				 igt_bigjoiner_possible(pipes[i - 1].mode, max_dotclock)) &&
 		     ((!display->pipes[pipes[i - 1].idx + 1].enabled) ||
 		      (abs(pipes[i].idx - pipes[i - 1].idx) <= 1)))) {
 			igt_debug("Pipe/Output combo is not possible with selected mode(s).\n");
-- 
2.43.2


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

* [PATCH i-g-t 3/6] tests/intel/kms_pm_lpsp: Force joiner support in bigjoiner checks
  2024-04-17 14:33 [PATCH i-g-t 0/6] Force joiner support in bigjoiner checks Bhanuprakash Modem
  2024-04-17 14:33 ` [PATCH i-g-t 1/6] lib/igt_kms: New helper to check force joiner status Bhanuprakash Modem
  2024-04-17 14:33 ` [PATCH i-g-t 2/6] lib/igt_kms: Force joiner support in bigjoiner checks Bhanuprakash Modem
@ 2024-04-17 14:33 ` Bhanuprakash Modem
  2024-04-17 14:33 ` [PATCH i-g-t 4/6] tests/kms_flip: " Bhanuprakash Modem
                   ` (4 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: Bhanuprakash Modem @ 2024-04-17 14:33 UTC (permalink / raw)
  To: igt-dev; +Cc: Bhanuprakash Modem, Kunal Joshi

As we recently introduced the option (through debugfs) to
force the bigjoiner, needs to extend the support in bigjoiner
checks to handle the force joiner.

Cc: Kunal Joshi <kunal1.joshi@intel.com>
Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
---
 tests/intel/kms_pm_lpsp.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/tests/intel/kms_pm_lpsp.c b/tests/intel/kms_pm_lpsp.c
index a76b423f4..f9ac508fb 100644
--- a/tests/intel/kms_pm_lpsp.c
+++ b/tests/intel/kms_pm_lpsp.c
@@ -163,6 +163,9 @@ static bool test_constraint(data_t *data)
 	mode = igt_output_get_mode(data->output);
 
 	/* For LPSP avoid Bigjoiner. */
+	if (igt_check_force_joiner_status(data->drm_fd, data->output->name))
+		return false;
+
 	if (igt_bigjoiner_possible(mode, max_dotclock)) {
 		for_each_connector_mode(data->output) {
 			mode = &data->output->config.connector->modes[j__];
-- 
2.43.2


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

* [PATCH i-g-t 4/6] tests/kms_flip: Force joiner support in bigjoiner checks
  2024-04-17 14:33 [PATCH i-g-t 0/6] Force joiner support in bigjoiner checks Bhanuprakash Modem
                   ` (2 preceding siblings ...)
  2024-04-17 14:33 ` [PATCH i-g-t 3/6] tests/intel/kms_pm_lpsp: " Bhanuprakash Modem
@ 2024-04-17 14:33 ` Bhanuprakash Modem
  2024-04-17 14:33 ` [PATCH i-g-t 5/6] tests/kms_setmode: " Bhanuprakash Modem
                   ` (3 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: Bhanuprakash Modem @ 2024-04-17 14:33 UTC (permalink / raw)
  To: igt-dev; +Cc: Bhanuprakash Modem, Kunal Joshi

As we recently introduced the option (through debugfs) to
force the bigjoiner, needs to extend the support in bigjoiner
checks to handle the force joiner.

Cc: Kunal Joshi <kunal1.joshi@intel.com>
Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
---
 tests/kms_flip.c | 23 +++++++++++++++++++----
 1 file changed, 19 insertions(+), 4 deletions(-)

diff --git a/tests/kms_flip.c b/tests/kms_flip.c
index 15c3b5ba2..18729c890 100755
--- a/tests/kms_flip.c
+++ b/tests/kms_flip.c
@@ -1730,22 +1730,37 @@ static void run_test_on_crtc_set(struct test_output *o, int *crtc_idxs,
 	/*
 	 * Handle BW limitations on intel hardware:
 	 *
-	 * if mode resolution > 5K (or) mode clock > max_dotclock, then ignore
+	 * if force joiner (or) mode resolution > 5K (or) mode clock > max_dotclock, then ignore
 	 *  - last crtc in single/multi-connector config
 	 *  - consecutive crtcs in multi-connector config
 	 *
 	 * in multi-connector config ignore if
-	 *  - previous crtc (mode resolution > 5K or mode clock > max_dotclock) and
+	 *  - previous crtc (force joiner or mode resolution > 5K or mode clock > max_dotclock) and
 	 *  - current & previous crtcs are consecutive
 	 */
 	if (!is_intel_device(drm_fd))
 		goto test;
 
 	for (i = 0; i < crtc_count; i++) {
-		if ((igt_bigjoiner_possible(&o->kmode[i], max_dotclock) &&
+		char conn_name[24], prev_conn_name[24];
+
+		snprintf(conn_name, sizeof(conn_name),
+			 "%s%d",
+			 kmstest_connector_type_str(o->kconnector[i]->connector_type),
+			 o->kconnector[i]->connector_type_id);
+
+		if (i > 0)
+			snprintf(prev_conn_name, sizeof(prev_conn_name),
+				 "%s%d",
+				 kmstest_connector_type_str(o->kconnector[i - 1]->connector_type),
+				 o->kconnector[i - 1]->connector_type_id);
+
+		if (((igt_check_force_joiner_status(drm_fd, conn_name) ||
+		      igt_bigjoiner_possible(&o->kmode[i], max_dotclock)) &&
 		     ((crtc_idxs[i] >= (total_crtcs - 1)) ||
 		      ((i < (crtc_count - 1)) && (abs(crtc_idxs[i + 1] - crtc_idxs[i]) <= 1)))) ||
-		    ((i > 0) && igt_bigjoiner_possible(&o->kmode[i - 1], max_dotclock) &&
+		    ((i > 0) && (igt_check_force_joiner_status(drm_fd, prev_conn_name) ||
+				 igt_bigjoiner_possible(&o->kmode[i - 1], max_dotclock)) &&
 		     (abs(crtc_idxs[i] - crtc_idxs[i - 1]) <= 1))) {
 
 			igt_debug("Combo: %s is not possible with selected mode(s).\n", test_name);
-- 
2.43.2


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

* [PATCH i-g-t 5/6] tests/kms_setmode: Force joiner support in bigjoiner checks
  2024-04-17 14:33 [PATCH i-g-t 0/6] Force joiner support in bigjoiner checks Bhanuprakash Modem
                   ` (3 preceding siblings ...)
  2024-04-17 14:33 ` [PATCH i-g-t 4/6] tests/kms_flip: " Bhanuprakash Modem
@ 2024-04-17 14:33 ` Bhanuprakash Modem
  2024-04-17 14:33 ` [PATCH i-g-t 6/6] HAX: Test force joiner on BAT Bhanuprakash Modem
                   ` (2 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: Bhanuprakash Modem @ 2024-04-17 14:33 UTC (permalink / raw)
  To: igt-dev; +Cc: Bhanuprakash Modem, Kunal Joshi

As we recently introduced the option (through debugfs) to
force the bigjoiner, needs to extend the support in bigjoiner
checks to handle the force joiner.

Cc: Kunal Joshi <kunal1.joshi@intel.com>
Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
---
 tests/kms_setmode.c | 22 ++++++++++++++++++----
 1 file changed, 18 insertions(+), 4 deletions(-)

diff --git a/tests/kms_setmode.c b/tests/kms_setmode.c
index 490bfd3dd..9559dc472 100644
--- a/tests/kms_setmode.c
+++ b/tests/kms_setmode.c
@@ -709,24 +709,38 @@ static void test_one_combination(const struct test_config *tconf,
 
 		for (i = 0; i < crtc_count; i++) {
 			struct crtc_config *crtc = &crtcs[i];
+			char conn_name[24], prev_conn_name[24];
+
+			snprintf(conn_name, sizeof(conn_name),
+				 "%s%d",
+				 kmstest_connector_type_str(crtcs[i].cconfs->connector->connector_type),
+				 crtcs[i].cconfs->connector->connector_type_id);
+
+			if (i > 0)
+				snprintf(prev_conn_name, sizeof(prev_conn_name),
+					 "%s%d",
+					 kmstest_connector_type_str(crtcs[i - 1].cconfs->connector->connector_type),
+					 crtcs[i - 1].cconfs->connector->connector_type_id);
 
 			/*
 			 * Handle BW limitations on intel hardware:
 			 *
-			 * if mode resolution > 5K (or) mode clock > max_dotclock,
+			 * if force joiner (or) mode resolution > 5K (or) mode clock > max_dotclock,
 			 * then ignore
 			 *   - last crtc in single/multi-connector config
 			 *   - consecutive crtcs in multi-connector config
 			 *
 			 * in multi-connector config ignore if
-			 *   - previous crtc (mode resolution > 5K (or)
+			 *   - previous crtc (force joiner (or) mode resolution > 5K (or)
 			 *     mode clock > max_dotclock) and
 			 *   - current & previous crtcs are consecutive
 			 */
-			if ((igt_bigjoiner_possible(&crtc->mode, max_dotclock) &&
+			if (((igt_check_force_joiner_status(drm_fd, conn_name) ||
+			      igt_bigjoiner_possible(&crtc->mode, max_dotclock)) &&
 			     ((crtc->crtc_idx >= (tconf->resources->count_crtcs - 1)) ||
 			      ((i < (crtc_count - 1)) && (abs(crtcs[i + 1].crtc_idx - crtc->crtc_idx) <= 1)))) ||
-			    ((i > 0) && igt_bigjoiner_possible(&crtc[i - 1].mode, max_dotclock) &&
+			    ((i > 0) && (igt_check_force_joiner_status(drm_fd, prev_conn_name) ||
+					 igt_bigjoiner_possible(&crtc[i - 1].mode, max_dotclock)) &&
 			     (abs(crtc->crtc_idx - crtcs[i - 1].crtc_idx) <= 1))) {
 				igt_info("Combo: %s is not possible with selected mode(s).\n", test_name);
 				goto out;
-- 
2.43.2


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

* [PATCH i-g-t 6/6] HAX: Test force joiner on BAT
  2024-04-17 14:33 [PATCH i-g-t 0/6] Force joiner support in bigjoiner checks Bhanuprakash Modem
                   ` (4 preceding siblings ...)
  2024-04-17 14:33 ` [PATCH i-g-t 5/6] tests/kms_setmode: " Bhanuprakash Modem
@ 2024-04-17 14:33 ` Bhanuprakash Modem
  2024-04-17 21:07 ` ✗ Fi.CI.BAT: failure for Force joiner support in bigjoiner checks (rev2) Patchwork
  2024-04-17 21:13 ` ✓ CI.xeBAT: success " Patchwork
  7 siblings, 0 replies; 9+ messages in thread
From: Bhanuprakash Modem @ 2024-04-17 14:33 UTC (permalink / raw)
  To: igt-dev; +Cc: Bhanuprakash Modem

Expectation: All pipe-D tests should skip.

Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
---
 tests/kms_cursor_legacy.c | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/tests/kms_cursor_legacy.c b/tests/kms_cursor_legacy.c
index a430f735a..10dd481c9 100644
--- a/tests/kms_cursor_legacy.c
+++ b/tests/kms_cursor_legacy.c
@@ -1838,6 +1838,7 @@ igt_main
 		"atomic-transitions",
 		"atomic-transitions-varying-size"
 	};
+	igt_output_t *o;
 
 	igt_fixture {
 		display.drm_fd = drm_open_driver_master(DRIVER_ANY);
@@ -1850,6 +1851,10 @@ igt_main
 		 * fetch is enabled, so switching PSR1 for this whole test.
 		 */
 		intel_psr2_restore = i915_psr2_sel_fetch_to_psr1(display.drm_fd, NULL);
+
+		for_each_connected_output(&display, o)
+			igt_force_and_check_bigjoiner_status(display.drm_fd, o->name, true);
+
 	}
 
 	igt_describe("Test checks how many cursor updates we can fit between vblanks "
-- 
2.43.2


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

* ✗ Fi.CI.BAT: failure for Force joiner support in bigjoiner checks (rev2)
  2024-04-17 14:33 [PATCH i-g-t 0/6] Force joiner support in bigjoiner checks Bhanuprakash Modem
                   ` (5 preceding siblings ...)
  2024-04-17 14:33 ` [PATCH i-g-t 6/6] HAX: Test force joiner on BAT Bhanuprakash Modem
@ 2024-04-17 21:07 ` Patchwork
  2024-04-17 21:13 ` ✓ CI.xeBAT: success " Patchwork
  7 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2024-04-17 21:07 UTC (permalink / raw)
  To: Bhanuprakash Modem; +Cc: igt-dev

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

== Series Details ==

Series: Force joiner support in bigjoiner checks (rev2)
URL   : https://patchwork.freedesktop.org/series/132557/
State : failure

== Summary ==

CI Bug Log - changes from IGT_7811 -> IGTPW_11034
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with IGTPW_11034 absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in IGTPW_11034, please notify your bug team (&quot;I915-ci-infra@lists.freedesktop.org&quot;) 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_11034/index.html

Participating hosts (40 -> 36)
------------------------------

  Additional (2): bat-kbl-2 bat-dg2-11 
  Missing    (6): fi-snb-2520m fi-glk-j4005 fi-kbl-8809g fi-elk-e7500 bat-arls-1 bat-arls-3 

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
    - fi-bsw-nick:        [PASS][1] -> [FAIL][2] +7 other tests fail
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7811/fi-bsw-nick/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11034/fi-bsw-nick/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html

  * igt@kms_cursor_legacy@basic-flip-after-cursor-legacy:
    - fi-blb-e6850:       [PASS][3] -> [FAIL][4] +4 other tests fail
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7811/fi-blb-e6850/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11034/fi-blb-e6850/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html
    - fi-apl-guc:         [PASS][5] -> [FAIL][6] +5 other tests fail
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7811/fi-apl-guc/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11034/fi-apl-guc/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html
    - fi-pnv-d510:        [PASS][7] -> [FAIL][8] +4 other tests fail
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7811/fi-pnv-d510/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11034/fi-pnv-d510/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html
    - bat-dg1-7:          [PASS][9] -> [FAIL][10] +5 other tests fail
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7811/bat-dg1-7/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11034/bat-dg1-7/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html

  * igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size:
    - fi-tgl-1115g4:      [PASS][11] -> [FAIL][12] +5 other tests fail
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7811/fi-tgl-1115g4/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11034/fi-tgl-1115g4/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html
    - fi-cfl-guc:         [PASS][13] -> [FAIL][14] +5 other tests fail
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7811/fi-cfl-guc/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11034/fi-cfl-guc/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html

  * igt@kms_cursor_legacy@basic-flip-before-cursor-atomic:
    - fi-cfl-8700k:       [PASS][15] -> [FAIL][16] +5 other tests fail
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7811/fi-cfl-8700k/igt@kms_cursor_legacy@basic-flip-before-cursor-atomic.html
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11034/fi-cfl-8700k/igt@kms_cursor_legacy@basic-flip-before-cursor-atomic.html

  * igt@kms_cursor_legacy@basic-flip-before-cursor-legacy:
    - bat-dg2-11:         NOTRUN -> [FAIL][17] +7 other tests fail
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11034/bat-dg2-11/igt@kms_cursor_legacy@basic-flip-before-cursor-legacy.html
    - fi-cfl-8109u:       [PASS][18] -> [FAIL][19] +5 other tests fail
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7811/fi-cfl-8109u/igt@kms_cursor_legacy@basic-flip-before-cursor-legacy.html
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11034/fi-cfl-8109u/igt@kms_cursor_legacy@basic-flip-before-cursor-legacy.html
    - fi-kbl-7567u:       [PASS][20] -> [FAIL][21] +5 other tests fail
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7811/fi-kbl-7567u/igt@kms_cursor_legacy@basic-flip-before-cursor-legacy.html
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11034/fi-kbl-7567u/igt@kms_cursor_legacy@basic-flip-before-cursor-legacy.html
    - fi-ivb-3770:        [PASS][22] -> [FAIL][23] +7 other tests fail
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7811/fi-ivb-3770/igt@kms_cursor_legacy@basic-flip-before-cursor-legacy.html
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11034/fi-ivb-3770/igt@kms_cursor_legacy@basic-flip-before-cursor-legacy.html
    - bat-dg2-14:         [PASS][24] -> [FAIL][25] +5 other tests fail
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7811/bat-dg2-14/igt@kms_cursor_legacy@basic-flip-before-cursor-legacy.html
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11034/bat-dg2-14/igt@kms_cursor_legacy@basic-flip-before-cursor-legacy.html

  * igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size:
    - bat-adls-6:         [PASS][26] -> [FAIL][27] +5 other tests fail
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7811/bat-adls-6/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11034/bat-adls-6/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html
    - fi-ilk-650:         [PASS][28] -> [FAIL][29] +7 other tests fail
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7811/fi-ilk-650/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11034/fi-ilk-650/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html

  * igt@kms_psr@psr-cursor-plane-move@edp-1:
    - bat-adln-1:         [PASS][30] -> [FAIL][31] +7 other tests fail
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7811/bat-adln-1/igt@kms_psr@psr-cursor-plane-move@edp-1.html
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11034/bat-adln-1/igt@kms_psr@psr-cursor-plane-move@edp-1.html
    - bat-mtlp-8:         [PASS][32] -> [FAIL][33] +2 other tests fail
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7811/bat-mtlp-8/igt@kms_psr@psr-cursor-plane-move@edp-1.html
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11034/bat-mtlp-8/igt@kms_psr@psr-cursor-plane-move@edp-1.html

  * igt@kms_psr@psr-primary-mmap-gtt@edp-1:
    - bat-adlp-6:         [PASS][34] -> [FAIL][35] +3 other tests fail
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7811/bat-adlp-6/igt@kms_psr@psr-primary-mmap-gtt@edp-1.html
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11034/bat-adlp-6/igt@kms_psr@psr-primary-mmap-gtt@edp-1.html

  
#### Warnings ####

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
    - fi-kbl-7567u:       [SKIP][36] -> [FAIL][37] +1 other test fail
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7811/fi-kbl-7567u/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11034/fi-kbl-7567u/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
    - fi-cfl-8700k:       [SKIP][38] -> [FAIL][39] +1 other test fail
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7811/fi-cfl-8700k/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11034/fi-cfl-8700k/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
    - fi-tgl-1115g4:      [SKIP][40] ([i915#4103]) -> [FAIL][41] +1 other test fail
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7811/fi-tgl-1115g4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11034/fi-tgl-1115g4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
    - bat-dg2-14:         [SKIP][42] ([i915#4103] / [i915#4213]) -> [FAIL][43] +1 other test fail
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7811/bat-dg2-14/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11034/bat-dg2-14/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
    - fi-cfl-guc:         [SKIP][44] -> [FAIL][45] +1 other test fail
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7811/fi-cfl-guc/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11034/fi-cfl-guc/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
    - fi-cfl-8109u:       [SKIP][46] -> [FAIL][47] +1 other test fail
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7811/fi-cfl-8109u/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11034/fi-cfl-8109u/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
    - bat-adls-6:         [SKIP][48] ([i915#4103]) -> [FAIL][49] +1 other test fail
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7811/bat-adls-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11034/bat-adls-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
    - fi-apl-guc:         [SKIP][50] -> [FAIL][51] +1 other test fail
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7811/fi-apl-guc/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11034/fi-apl-guc/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
    - bat-dg1-7:          [SKIP][52] ([i915#4103] / [i915#4213]) -> [FAIL][53] +1 other test fail
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7811/bat-dg1-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11034/bat-dg1-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html

  * igt@kms_cursor_legacy@basic-flip-after-cursor-atomic:
    - fi-blb-e6850:       [SKIP][54] -> [FAIL][55] +2 other tests fail
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7811/fi-blb-e6850/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11034/fi-blb-e6850/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html
    - fi-pnv-d510:        [SKIP][56] -> [FAIL][57] +2 other tests fail
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7811/fi-pnv-d510/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11034/fi-pnv-d510/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html

  * igt@kms_psr@psr-primary-mmap-gtt@edp-1:
    - bat-mtlp-8:         [SKIP][58] ([i915#4077] / [i915#9688]) -> [FAIL][59]
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7811/bat-mtlp-8/igt@kms_psr@psr-primary-mmap-gtt@edp-1.html
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11034/bat-mtlp-8/igt@kms_psr@psr-primary-mmap-gtt@edp-1.html

  
#### Suppressed ####

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

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
    - {bat-rpls-4}:       [SKIP][60] ([i915#4103]) -> [FAIL][61] +1 other test fail
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7811/bat-rpls-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11034/bat-rpls-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html

  * igt@kms_cursor_legacy@basic-flip-before-cursor-legacy:
    - {bat-rpls-4}:       [PASS][62] -> [FAIL][63] +5 other tests fail
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7811/bat-rpls-4/igt@kms_cursor_legacy@basic-flip-before-cursor-legacy.html
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11034/bat-rpls-4/igt@kms_cursor_legacy@basic-flip-before-cursor-legacy.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@fbdev@info:
    - bat-kbl-2:          NOTRUN -> [SKIP][64] ([i915#1849])
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11034/bat-kbl-2/igt@fbdev@info.html

  * igt@gem_lmem_swapping@parallel-random-engines:
    - bat-kbl-2:          NOTRUN -> [SKIP][65] +39 other tests skip
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11034/bat-kbl-2/igt@gem_lmem_swapping@parallel-random-engines.html

  * igt@gem_mmap@basic:
    - bat-dg2-11:         NOTRUN -> [SKIP][66] ([i915#4083])
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11034/bat-dg2-11/igt@gem_mmap@basic.html

  * igt@gem_tiled_fence_blits@basic:
    - bat-dg2-11:         NOTRUN -> [SKIP][67] ([i915#4077]) +2 other tests skip
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11034/bat-dg2-11/igt@gem_tiled_fence_blits@basic.html

  * igt@gem_tiled_pread_basic:
    - bat-dg2-11:         NOTRUN -> [SKIP][68] ([i915#4079]) +1 other test skip
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11034/bat-dg2-11/igt@gem_tiled_pread_basic.html

  * igt@i915_module_load@load:
    - bat-dg2-9:          [PASS][69] -> [DMESG-WARN][70] ([i915#10014])
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7811/bat-dg2-9/igt@i915_module_load@load.html
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11034/bat-dg2-9/igt@i915_module_load@load.html

  * igt@i915_pm_rps@basic-api:
    - bat-dg2-11:         NOTRUN -> [SKIP][71] ([i915#6621])
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11034/bat-dg2-11/igt@i915_pm_rps@basic-api.html

  * igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy:
    - bat-dg2-11:         NOTRUN -> [SKIP][72] ([i915#4212]) +7 other tests skip
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11034/bat-dg2-11/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html

  * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
    - bat-dg2-11:         NOTRUN -> [SKIP][73] ([i915#5190])
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11034/bat-dg2-11/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html

  * igt@kms_addfb_basic@basic-y-tiled-legacy:
    - bat-dg2-11:         NOTRUN -> [SKIP][74] ([i915#4215] / [i915#5190])
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11034/bat-dg2-11/igt@kms_addfb_basic@basic-y-tiled-legacy.html

  * igt@kms_dsc@dsc-basic:
    - bat-dg2-11:         NOTRUN -> [SKIP][75] ([i915#3555] / [i915#3840])
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11034/bat-dg2-11/igt@kms_dsc@dsc-basic.html

  * igt@kms_flip@basic-flip-vs-modeset@d-edp1:
    - bat-adlp-6:         [PASS][76] -> [FAIL][77] ([i915#6121]) +6 other tests fail
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7811/bat-adlp-6/igt@kms_flip@basic-flip-vs-modeset@d-edp1.html
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11034/bat-adlp-6/igt@kms_flip@basic-flip-vs-modeset@d-edp1.html

  * igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1:
    - bat-rplp-1:         [PASS][78] -> [FAIL][79] ([i915#6121]) +3 other tests fail
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7811/bat-rplp-1/igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1.html
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11034/bat-rplp-1/igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1.html
    - bat-mtlp-8:         [PASS][80] -> [FAIL][81] ([i915#6121]) +3 other tests fail
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7811/bat-mtlp-8/igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1.html
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11034/bat-mtlp-8/igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1.html

  * igt@kms_flip@basic-plain-flip@d-dp1:
    - bat-adlp-9:         [PASS][82] -> [FAIL][83] ([i915#6121]) +3 other tests fail
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7811/bat-adlp-9/igt@kms_flip@basic-plain-flip@d-dp1.html
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11034/bat-adlp-9/igt@kms_flip@basic-plain-flip@d-dp1.html

  * igt@kms_force_connector_basic@force-load-detect:
    - bat-dg2-11:         NOTRUN -> [SKIP][84]
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11034/bat-dg2-11/igt@kms_force_connector_basic@force-load-detect.html

  * igt@kms_force_connector_basic@prune-stale-modes:
    - bat-dg2-11:         NOTRUN -> [SKIP][85] ([i915#5274])
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11034/bat-dg2-11/igt@kms_force_connector_basic@prune-stale-modes.html

  * igt@kms_pm_backlight@basic-brightness:
    - bat-dg2-11:         NOTRUN -> [SKIP][86] ([i915#5354])
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11034/bat-dg2-11/igt@kms_pm_backlight@basic-brightness.html

  * igt@kms_psr@psr-sprite-plane-onoff:
    - bat-dg2-11:         NOTRUN -> [SKIP][87] ([i915#1072] / [i915#9732]) +3 other tests skip
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11034/bat-dg2-11/igt@kms_psr@psr-sprite-plane-onoff.html

  * igt@kms_setmode@basic-clone-single-crtc:
    - bat-dg2-11:         NOTRUN -> [SKIP][88] ([i915#3555])
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11034/bat-dg2-11/igt@kms_setmode@basic-clone-single-crtc.html

  * igt@prime_vgem@basic-fence-flip:
    - bat-dg2-11:         NOTRUN -> [SKIP][89] ([i915#3708])
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11034/bat-dg2-11/igt@prime_vgem@basic-fence-flip.html

  * igt@prime_vgem@basic-fence-mmap:
    - bat-dg2-11:         NOTRUN -> [SKIP][90] ([i915#3708] / [i915#4077]) +1 other test skip
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11034/bat-dg2-11/igt@prime_vgem@basic-fence-mmap.html

  * igt@prime_vgem@basic-read:
    - bat-dg2-11:         NOTRUN -> [SKIP][91] ([i915#3291] / [i915#3708]) +2 other tests skip
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11034/bat-dg2-11/igt@prime_vgem@basic-read.html

  * igt@runner@aborted:
    - bat-arls-2:         NOTRUN -> [FAIL][92] ([i915#10690])
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11034/bat-arls-2/igt@runner@aborted.html

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

  [i915#10014]: https://gitlab.freedesktop.org/drm/intel/issues/10014
  [i915#10690]: https://gitlab.freedesktop.org/drm/intel/issues/10690
  [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
  [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849
  [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
  [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
  [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
  [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
  [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
  [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
  [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
  [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
  [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
  [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
  [i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215
  [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
  [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274
  [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
  [i915#6121]: https://gitlab.freedesktop.org/drm/intel/issues/6121
  [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
  [i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688
  [i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732


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

  * CI: CI-20190529 -> None
  * IGT: IGT_7811 -> IGTPW_11034

  CI-20190529: 20190529
  CI_DRM_14597: 64a20aacb61e4ce6d8a0b3dc6e4bff72e316ffa3 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_11034: ab77409aca94cbff50e84b861ccac681e6361637 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_7811: 2d95df5757eb99a42ea9ac30fd74001dee804d03 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git

== Logs ==

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

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

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

* ✓ CI.xeBAT: success for Force joiner support in bigjoiner checks (rev2)
  2024-04-17 14:33 [PATCH i-g-t 0/6] Force joiner support in bigjoiner checks Bhanuprakash Modem
                   ` (6 preceding siblings ...)
  2024-04-17 21:07 ` ✗ Fi.CI.BAT: failure for Force joiner support in bigjoiner checks (rev2) Patchwork
@ 2024-04-17 21:13 ` Patchwork
  7 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2024-04-17 21:13 UTC (permalink / raw)
  To: Bhanuprakash Modem; +Cc: igt-dev

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

== Series Details ==

Series: Force joiner support in bigjoiner checks (rev2)
URL   : https://patchwork.freedesktop.org/series/132557/
State : success

== Summary ==

CI Bug Log - changes from XEIGT_7811_BAT -> XEIGTPW_11034_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (0 -> 0)
------------------------------

  No changes in participating hosts


Changes
-------

  No changes found


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

  * IGT: IGT_7811 -> IGTPW_11034

  IGTPW_11034: ab77409aca94cbff50e84b861ccac681e6361637 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_7811: 2d95df5757eb99a42ea9ac30fd74001dee804d03 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-1109-64a20aacb61e4ce6d8a0b3dc6e4bff72e316ffa3: 64a20aacb61e4ce6d8a0b3dc6e4bff72e316ffa3

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11034/index.html

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

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

end of thread, other threads:[~2024-04-17 21:13 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-04-17 14:33 [PATCH i-g-t 0/6] Force joiner support in bigjoiner checks Bhanuprakash Modem
2024-04-17 14:33 ` [PATCH i-g-t 1/6] lib/igt_kms: New helper to check force joiner status Bhanuprakash Modem
2024-04-17 14:33 ` [PATCH i-g-t 2/6] lib/igt_kms: Force joiner support in bigjoiner checks Bhanuprakash Modem
2024-04-17 14:33 ` [PATCH i-g-t 3/6] tests/intel/kms_pm_lpsp: " Bhanuprakash Modem
2024-04-17 14:33 ` [PATCH i-g-t 4/6] tests/kms_flip: " Bhanuprakash Modem
2024-04-17 14:33 ` [PATCH i-g-t 5/6] tests/kms_setmode: " Bhanuprakash Modem
2024-04-17 14:33 ` [PATCH i-g-t 6/6] HAX: Test force joiner on BAT Bhanuprakash Modem
2024-04-17 21:07 ` ✗ Fi.CI.BAT: failure for Force joiner support in bigjoiner checks (rev2) Patchwork
2024-04-17 21:13 ` ✓ CI.xeBAT: success " Patchwork

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