Igt-dev Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [igt-dev] [PATCH i-g-t 0/2] drmtest changes for running tests on multi-gpu
@ 2023-09-27 14:34 Kamil Konieczny
  2023-09-27 14:34 ` [igt-dev] [PATCH i-g-t v4 1/2] lib/drmtest: allow out of order device opening Kamil Konieczny
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Kamil Konieczny @ 2023-09-27 14:34 UTC (permalink / raw)
  To: igt-dev

Allow to open other cards out of order with __drm_open_driver_another()
and also introduce helper for multi-gpu scenarios. There is still a problem
left when opening first device because it is useally already opened at
first fixture but I will leave that for later. With that it works
on four GPUs board, when first card is non-Intel one with no render
device:

sudo IGT_DEVICE=pci:vendor=Intel,device=discrete,card=all build/tests/xe_create --r multigpu-create-massive-size

Opened device: /dev/dri/card1
Starting subtest: multigpu-create-massive-size
<g:1> Opened device: /dev/dri/card2
<g:2> Opened device: /dev/dri/card3
<g:3> Opened device: /dev/dri/card4
Subtest multigpu-create-massive-size: SUCCESS (0.209s)

v3: fixes in test (Zbigniew)
  fixes in drmlib functions (Zbigniew, Kamil)
v4: corrected test description (Kamil)

Cc: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>

Kamil Konieczny (2):
  lib/drmtest: allow out of order device opening
  tests/intel/xe_create: extend massive subtest to multi-gpu

 lib/drmtest.c           | 26 ++++++++++++++++++++------
 tests/intel/xe_create.c | 25 +++++++++++++++++++++++++
 2 files changed, 45 insertions(+), 6 deletions(-)

-- 
2.42.0

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

* [igt-dev] [PATCH i-g-t v4 1/2] lib/drmtest: allow out of order device opening
  2023-09-27 14:34 [igt-dev] [PATCH i-g-t 0/2] drmtest changes for running tests on multi-gpu Kamil Konieczny
@ 2023-09-27 14:34 ` Kamil Konieczny
  2023-09-27 14:34 ` [igt-dev] [PATCH i-g-t v4 2/2] tests/intel/xe_create: extend massive subtest to multi-gpu Kamil Konieczny
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Kamil Konieczny @ 2023-09-27 14:34 UTC (permalink / raw)
  To: igt-dev

Allow to open cards with filters out of order, not in
the sequence 0...N. This will fix problem found out with test
gem_exec_gttfill@multigpu-basic with three discrete GPUs:

Opened device: /dev/dri/card1
Starting subtest: multigpu-basic
<g:1> Opened device: /dev/dri/card2
gem_exec_gttfill: ../lib/drmtest.c:313: _is_already_opened: Assertion `as_idx <= _opened_fds_count' failed.

Added also some debug prints for diagnosing problems with
multi-GPU tests.

v2: fix setting opened count in _set_opened_fd()
v3: search all already opened fds in _is_already_opened()

Cc: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
Signed-off-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
---
 lib/drmtest.c | 26 ++++++++++++++++++++------
 1 file changed, 20 insertions(+), 6 deletions(-)

diff --git a/lib/drmtest.c b/lib/drmtest.c
index e1da66c87..2d9e6c497 100644
--- a/lib/drmtest.c
+++ b/lib/drmtest.c
@@ -296,13 +296,18 @@ static int _opened_fds_count;
 static void _set_opened_fd(int idx, int fd)
 {
 	assert(idx < ARRAY_SIZE(_opened_fds));
-	assert(idx <= _opened_fds_count);
+
+	if (idx >= _opened_fds_count) {
+		for (int i = _opened_fds_count; i < idx; ++i)
+			_opened_fds[i].fd = -1;
+	}
 
 	_opened_fds[idx].fd = fd;
 
 	assert(fstat(fd, &_opened_fds[idx].stat) == 0);
 
-	_opened_fds_count = idx+1;
+	if (idx >= _opened_fds_count)
+		_opened_fds_count = idx + 1;
 }
 
 static bool _is_already_opened(const char *path, int as_idx)
@@ -310,16 +315,20 @@ static bool _is_already_opened(const char *path, int as_idx)
 	struct stat new;
 
 	assert(as_idx < ARRAY_SIZE(_opened_fds));
-	assert(as_idx <= _opened_fds_count);
 
 	/*
 	 * we cannot even stat the device, so it's of no use - let's claim it's
 	 * already opened
 	 */
-	if (igt_debug_on(stat(path, &new) != 0))
+	if (igt_debug_on(stat(path, &new) != 0)) {
+		igt_debug("cannot stat device: %s\n", path);
 		return true;
+	}
+
+	for (int i = 0; i < _opened_fds_count; ++i) {
+		if (_opened_fds[i].fd == -1)
+			continue;
 
-	for (int i = 0; i < as_idx; ++i) {
 		/* did we cross filesystem boundary? */
 		assert(_opened_fds[i].stat.st_dev == new.st_dev);
 
@@ -484,6 +493,7 @@ int __drm_open_driver_another(int idx, int chipset)
 {
 	int fd = -1;
 
+	igt_debug("card idx: %d chipset: %d\n", idx, chipset);
 	if (chipset != DRIVER_VGEM && igt_device_filter_count() > idx) {
 		struct igt_device_card card;
 		bool found;
@@ -491,6 +501,7 @@ int __drm_open_driver_another(int idx, int chipset)
 		found = __get_card_for_nth_filter(idx, &card);
 
 		if (!found) {
+			igt_debug("cannot find card idx: %d, loading module\n", idx);
 			drm_load_module(chipset);
 			found = __get_card_for_nth_filter(idx, &card);
 		}
@@ -500,11 +511,14 @@ int __drm_open_driver_another(int idx, int chipset)
 				 igt_device_filter_get(idx));
 		else if (_is_already_opened(card.card, idx))
 			igt_warn("card maching filter %d is already opened\n", idx);
-		else
+		else {
+			igt_debug("card idx: %d found: %s\n", idx, card.card);
 			fd = __open_driver_exact(card.card, chipset);
+		}
 
 	} else {
 		/* no filter for device idx, let's open whatever is available */
+		igt_debug("No filter for device idx: %d\n", idx);
 		fd = __open_driver("/dev/dri/card", 0, chipset, idx);
 	}
 
-- 
2.42.0

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

* [igt-dev] [PATCH i-g-t v4 2/2] tests/intel/xe_create: extend massive subtest to multi-gpu
  2023-09-27 14:34 [igt-dev] [PATCH i-g-t 0/2] drmtest changes for running tests on multi-gpu Kamil Konieczny
  2023-09-27 14:34 ` [igt-dev] [PATCH i-g-t v4 1/2] lib/drmtest: allow out of order device opening Kamil Konieczny
@ 2023-09-27 14:34 ` Kamil Konieczny
  2023-09-27 15:38 ` [igt-dev] ✗ Fi.CI.BAT: failure for drmtest changes for running tests on multi-gpu (rev3) Patchwork
  2023-09-27 15:41 ` [igt-dev] ✗ CI.xeBAT: " Patchwork
  3 siblings, 0 replies; 5+ messages in thread
From: Kamil Konieczny @ 2023-09-27 14:34 UTC (permalink / raw)
  To: igt-dev

Sample code extends existing create-massive-size subtest to run
on multi-GPUs boards. This will currently work only with
--drivers or IGT_DRIVERS options selecting at least two dGPU
cards.

v2: Fixed bug in opening wrong multi-gpu device (Zbigniew)
v3: revert to use filter count, add require for xe, change
    subtest description
v4: correct description

Cc: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
Signed-off-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
---
 tests/intel/xe_create.c | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/tests/intel/xe_create.c b/tests/intel/xe_create.c
index 8d845e5c8..ee970450f 100644
--- a/tests/intel/xe_create.c
+++ b/tests/intel/xe_create.c
@@ -12,6 +12,7 @@
 #include <string.h>
 
 #include "igt.h"
+#include "igt_device_scan.h"
 #include "xe_drm.h"
 #include "xe/xe_ioctl.h"
 #include "xe/xe_query.h"
@@ -191,6 +192,13 @@ static void create_execqueues(int fd, enum exec_queue_destroy ed)
  * Test category: functionality test
  * Description: Verifies xe bo create returns expected error code on massive
  *              buffer sizes.
+ *
+ * SUBTEST: multigpu-create-massive-size
+ * Functionality: ioctl
+ * Test category: functionality test
+ * Feature: multigpu
+ * Description: Verifies xe bo create with massive buffer sizes runs correctly
+ *		on two or more GPUs.
  */
 static void create_massive_size(int fd)
 {
@@ -228,6 +236,23 @@ igt_main
 		create_massive_size(xe);
 	}
 
+	igt_subtest("multigpu-create-massive-size") {
+		int gpu_filter_count = igt_device_filter_count();
+
+		igt_require(xe > 0);
+		igt_require(gpu_filter_count >= 2);
+		igt_multi_fork(child, gpu_filter_count) {
+			int gpu_fd;
+
+			gpu_fd = child ? __drm_open_driver_another(child, DRIVER_XE) : drm_reopen_driver(xe);
+			igt_assert_f(gpu_fd > 0, "cannot open gpu-%d, errno=%d\n", child, errno);
+
+			create_massive_size(gpu_fd);
+			drm_close_driver(gpu_fd);
+		}
+		igt_waitchildren();
+	}
+
 	igt_fixture
 		drm_close_driver(xe);
 }
-- 
2.42.0

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

* [igt-dev] ✗ Fi.CI.BAT: failure for drmtest changes for running tests on multi-gpu (rev3)
  2023-09-27 14:34 [igt-dev] [PATCH i-g-t 0/2] drmtest changes for running tests on multi-gpu Kamil Konieczny
  2023-09-27 14:34 ` [igt-dev] [PATCH i-g-t v4 1/2] lib/drmtest: allow out of order device opening Kamil Konieczny
  2023-09-27 14:34 ` [igt-dev] [PATCH i-g-t v4 2/2] tests/intel/xe_create: extend massive subtest to multi-gpu Kamil Konieczny
@ 2023-09-27 15:38 ` Patchwork
  2023-09-27 15:41 ` [igt-dev] ✗ CI.xeBAT: " Patchwork
  3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2023-09-27 15:38 UTC (permalink / raw)
  To: Kamil Konieczny; +Cc: igt-dev

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

== Series Details ==

Series: drmtest changes for running tests on multi-gpu (rev3)
URL   : https://patchwork.freedesktop.org/series/123991/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_13685 -> IGTPW_9888
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with IGTPW_9888 absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in IGTPW_9888, please notify your bug team (lgci.bug.filing@intel.com) 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_9888/index.html

Participating hosts (39 -> 33)
------------------------------

  Additional (1): fi-kbl-soraka 
  Missing    (7): fi-rkl-11600 fi-cfl-guc fi-snb-2520m fi-ivb-3770 fi-pnv-d510 bat-dg2-14 fi-bsw-nick 

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@core_hotunplug@unbind-rebind:
    - fi-bsw-n3050:       [PASS][1] -> [FAIL][2] +2 other tests fail
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13685/fi-bsw-n3050/igt@core_hotunplug@unbind-rebind.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/fi-bsw-n3050/igt@core_hotunplug@unbind-rebind.html
    - bat-dg2-9:          [PASS][3] -> [FAIL][4] +2 other tests fail
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13685/bat-dg2-9/igt@core_hotunplug@unbind-rebind.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/bat-dg2-9/igt@core_hotunplug@unbind-rebind.html
    - fi-kbl-x1275:       [PASS][5] -> [FAIL][6] +2 other tests fail
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13685/fi-kbl-x1275/igt@core_hotunplug@unbind-rebind.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/fi-kbl-x1275/igt@core_hotunplug@unbind-rebind.html
    - bat-mtlp-8:         [PASS][7] -> [FAIL][8] +2 other tests fail
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13685/bat-mtlp-8/igt@core_hotunplug@unbind-rebind.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/bat-mtlp-8/igt@core_hotunplug@unbind-rebind.html

  * igt@gem_close_race@basic-process:
    - bat-rplp-1:         [PASS][9] -> [SKIP][10] +4 other tests skip
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13685/bat-rplp-1/igt@gem_close_race@basic-process.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/bat-rplp-1/igt@gem_close_race@basic-process.html

  * igt@gem_exec_gttfill@basic:
    - bat-adln-1:         [PASS][11] -> [SKIP][12] +5 other tests skip
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13685/bat-adln-1/igt@gem_exec_gttfill@basic.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/bat-adln-1/igt@gem_exec_gttfill@basic.html

  * igt@gem_ringfill@basic-all:
    - bat-adls-5:         [PASS][13] -> [SKIP][14] +1 other test skip
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13685/bat-adls-5/igt@gem_ringfill@basic-all.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/bat-adls-5/igt@gem_ringfill@basic-all.html
    - bat-dg1-5:          [PASS][15] -> [SKIP][16] +1 other test skip
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13685/bat-dg1-5/igt@gem_ringfill@basic-all.html
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/bat-dg1-5/igt@gem_ringfill@basic-all.html
    - bat-atsm-1:         [PASS][17] -> [SKIP][18] +1 other test skip
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13685/bat-atsm-1/igt@gem_ringfill@basic-all.html
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/bat-atsm-1/igt@gem_ringfill@basic-all.html
    - bat-jsl-3:          [PASS][19] -> [SKIP][20] +1 other test skip
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13685/bat-jsl-3/igt@gem_ringfill@basic-all.html
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/bat-jsl-3/igt@gem_ringfill@basic-all.html
    - bat-adlp-9:         [PASS][21] -> [SKIP][22] +1 other test skip
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13685/bat-adlp-9/igt@gem_ringfill@basic-all.html
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/bat-adlp-9/igt@gem_ringfill@basic-all.html
    - bat-dg2-11:         [PASS][23] -> [SKIP][24] +1 other test skip
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13685/bat-dg2-11/igt@gem_ringfill@basic-all.html
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/bat-dg2-11/igt@gem_ringfill@basic-all.html
    - bat-adlp-11:        [PASS][25] -> [SKIP][26]
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13685/bat-adlp-11/igt@gem_ringfill@basic-all.html
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/bat-adlp-11/igt@gem_ringfill@basic-all.html
    - bat-rpls-1:         [PASS][27] -> [SKIP][28]
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13685/bat-rpls-1/igt@gem_ringfill@basic-all.html
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/bat-rpls-1/igt@gem_ringfill@basic-all.html
    - bat-adlp-6:         [PASS][29] -> [SKIP][30]
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13685/bat-adlp-6/igt@gem_ringfill@basic-all.html
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/bat-adlp-6/igt@gem_ringfill@basic-all.html

  * igt@i915_module_load@load:
    - fi-ilk-650:         [PASS][31] -> [FAIL][32] +2 other tests fail
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13685/fi-ilk-650/igt@i915_module_load@load.html
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/fi-ilk-650/igt@i915_module_load@load.html
    - bat-jsl-1:          [PASS][33] -> [FAIL][34] +2 other tests fail
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13685/bat-jsl-1/igt@i915_module_load@load.html
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/bat-jsl-1/igt@i915_module_load@load.html
    - fi-blb-e6850:       [PASS][35] -> [FAIL][36] +2 other tests fail
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13685/fi-blb-e6850/igt@i915_module_load@load.html
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/fi-blb-e6850/igt@i915_module_load@load.html
    - bat-rpls-1:         [PASS][37] -> [FAIL][38]
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13685/bat-rpls-1/igt@i915_module_load@load.html
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/bat-rpls-1/igt@i915_module_load@load.html
    - bat-adlp-6:         [PASS][39] -> [FAIL][40]
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13685/bat-adlp-6/igt@i915_module_load@load.html
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/bat-adlp-6/igt@i915_module_load@load.html
    - bat-adls-5:         [PASS][41] -> [FAIL][42] +2 other tests fail
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13685/bat-adls-5/igt@i915_module_load@load.html
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/bat-adls-5/igt@i915_module_load@load.html
    - bat-jsl-3:          [PASS][43] -> [FAIL][44] +2 other tests fail
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13685/bat-jsl-3/igt@i915_module_load@load.html
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/bat-jsl-3/igt@i915_module_load@load.html
    - fi-kbl-7567u:       [PASS][45] -> [FAIL][46]
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13685/fi-kbl-7567u/igt@i915_module_load@load.html
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/fi-kbl-7567u/igt@i915_module_load@load.html
    - bat-adln-1:         [PASS][47] -> [FAIL][48]
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13685/bat-adln-1/igt@i915_module_load@load.html
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/bat-adln-1/igt@i915_module_load@load.html
    - fi-elk-e7500:       [PASS][49] -> [FAIL][50] +2 other tests fail
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13685/fi-elk-e7500/igt@i915_module_load@load.html
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/fi-elk-e7500/igt@i915_module_load@load.html
    - bat-adlm-1:         [PASS][51] -> [FAIL][52] +2 other tests fail
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13685/bat-adlm-1/igt@i915_module_load@load.html
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/bat-adlm-1/igt@i915_module_load@load.html
    - bat-rplp-1:         [PASS][53] -> [FAIL][54]
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13685/bat-rplp-1/igt@i915_module_load@load.html
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/bat-rplp-1/igt@i915_module_load@load.html
    - fi-tgl-1115g4:      [PASS][55] -> [FAIL][56] +2 other tests fail
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13685/fi-tgl-1115g4/igt@i915_module_load@load.html
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/fi-tgl-1115g4/igt@i915_module_load@load.html
    - bat-adlp-11:        [PASS][57] -> [FAIL][58]
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13685/bat-adlp-11/igt@i915_module_load@load.html
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/bat-adlp-11/igt@i915_module_load@load.html

  * igt@i915_module_load@reload:
    - bat-mtlp-6:         [PASS][59] -> [FAIL][60] +2 other tests fail
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13685/bat-mtlp-6/igt@i915_module_load@reload.html
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/bat-mtlp-6/igt@i915_module_load@reload.html
    - fi-skl-6600u:       [PASS][61] -> [FAIL][62] +2 other tests fail
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13685/fi-skl-6600u/igt@i915_module_load@reload.html
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/fi-skl-6600u/igt@i915_module_load@reload.html
    - fi-apl-guc:         [PASS][63] -> [FAIL][64] +2 other tests fail
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13685/fi-apl-guc/igt@i915_module_load@reload.html
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/fi-apl-guc/igt@i915_module_load@reload.html
    - bat-dg1-5:          [PASS][65] -> [FAIL][66] +2 other tests fail
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13685/bat-dg1-5/igt@i915_module_load@reload.html
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/bat-dg1-5/igt@i915_module_load@reload.html
    - fi-glk-j4005:       [PASS][67] -> [FAIL][68] +2 other tests fail
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13685/fi-glk-j4005/igt@i915_module_load@reload.html
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/fi-glk-j4005/igt@i915_module_load@reload.html
    - bat-adlp-9:         [PASS][69] -> [FAIL][70] +2 other tests fail
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13685/bat-adlp-9/igt@i915_module_load@reload.html
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/bat-adlp-9/igt@i915_module_load@reload.html
    - fi-skl-guc:         [PASS][71] -> [FAIL][72] +2 other tests fail
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13685/fi-skl-guc/igt@i915_module_load@reload.html
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/fi-skl-guc/igt@i915_module_load@reload.html
    - bat-dg2-11:         [PASS][73] -> [FAIL][74] +2 other tests fail
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13685/bat-dg2-11/igt@i915_module_load@reload.html
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/bat-dg2-11/igt@i915_module_load@reload.html
    - fi-kbl-soraka:      NOTRUN -> [FAIL][75] +2 other tests fail
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/fi-kbl-soraka/igt@i915_module_load@reload.html
    - fi-cfl-8700k:       [PASS][76] -> [FAIL][77] +2 other tests fail
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13685/fi-cfl-8700k/igt@i915_module_load@reload.html
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/fi-cfl-8700k/igt@i915_module_load@reload.html
    - bat-kbl-2:          [PASS][78] -> [FAIL][79] +2 other tests fail
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13685/bat-kbl-2/igt@i915_module_load@reload.html
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/bat-kbl-2/igt@i915_module_load@reload.html
    - bat-atsm-1:         [PASS][80] -> [FAIL][81] +2 other tests fail
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13685/bat-atsm-1/igt@i915_module_load@reload.html
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/bat-atsm-1/igt@i915_module_load@reload.html
    - fi-cfl-8109u:       [PASS][82] -> [FAIL][83] +2 other tests fail
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13685/fi-cfl-8109u/igt@i915_module_load@reload.html
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/fi-cfl-8109u/igt@i915_module_load@reload.html
    - fi-kbl-guc:         [PASS][84] -> [FAIL][85] +2 other tests fail
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13685/fi-kbl-guc/igt@i915_module_load@reload.html
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/fi-kbl-guc/igt@i915_module_load@reload.html

  * igt@prime_self_import@basic-with_fd_dup:
    - bat-mtlp-8:         [PASS][86] -> [SKIP][87] +11 other tests skip
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13685/bat-mtlp-8/igt@prime_self_import@basic-with_fd_dup.html
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/bat-mtlp-8/igt@prime_self_import@basic-with_fd_dup.html

  * igt@vgem_basic@second-client:
    - bat-adlm-1:         [PASS][88] -> [SKIP][89] +1 other test skip
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13685/bat-adlm-1/igt@vgem_basic@second-client.html
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/bat-adlm-1/igt@vgem_basic@second-client.html
    - bat-mtlp-6:         [PASS][90] -> [SKIP][91] +11 other tests skip
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13685/bat-mtlp-6/igt@vgem_basic@second-client.html
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/bat-mtlp-6/igt@vgem_basic@second-client.html
    - bat-dg2-9:          [PASS][92] -> [SKIP][93] +1 other test skip
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13685/bat-dg2-9/igt@vgem_basic@second-client.html
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/bat-dg2-9/igt@vgem_basic@second-client.html
    - bat-jsl-1:          [PASS][94] -> [SKIP][95] +1 other test skip
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13685/bat-jsl-1/igt@vgem_basic@second-client.html
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/bat-jsl-1/igt@vgem_basic@second-client.html

  
#### Suppressed ####

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

  * igt@i915_module_load@load:
    - {bat-dg2-13}:       [PASS][96] -> [FAIL][97]
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13685/bat-dg2-13/igt@i915_module_load@load.html
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/bat-dg2-13/igt@i915_module_load@load.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@core_auth@basic-auth:
    - bat-adlp-9:         [PASS][98] -> [SKIP][99] ([i915#2575]) +12 other tests skip
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13685/bat-adlp-9/igt@core_auth@basic-auth.html
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/bat-adlp-9/igt@core_auth@basic-auth.html
    - fi-kbl-7567u:       [PASS][100] -> [SKIP][101] ([fdo#109271])
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13685/fi-kbl-7567u/igt@core_auth@basic-auth.html
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/fi-kbl-7567u/igt@core_auth@basic-auth.html

  * igt@gem_close_race@basic-process:
    - fi-blb-e6850:       [PASS][102] -> [SKIP][103] ([fdo#109271]) +13 other tests skip
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13685/fi-blb-e6850/igt@gem_close_race@basic-process.html
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/fi-blb-e6850/igt@gem_close_race@basic-process.html
    - bat-kbl-2:          [PASS][104] -> [SKIP][105] ([fdo#109271]) +14 other tests skip
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13685/bat-kbl-2/igt@gem_close_race@basic-process.html
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/bat-kbl-2/igt@gem_close_race@basic-process.html
    - bat-adlp-6:         [PASS][106] -> [SKIP][107] ([i915#2575]) +8 other tests skip
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13685/bat-adlp-6/igt@gem_close_race@basic-process.html
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/bat-adlp-6/igt@gem_close_race@basic-process.html

  * igt@gem_close_race@basic-threads:
    - bat-adln-1:         [PASS][108] -> [SKIP][109] ([i915#2575]) +3 other tests skip
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13685/bat-adln-1/igt@gem_close_race@basic-threads.html
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/bat-adln-1/igt@gem_close_race@basic-threads.html

  * igt@gem_exec_gttfill@basic:
    - bat-atsm-1:         [PASS][110] -> [SKIP][111] ([i915#2575]) +9 other tests skip
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13685/bat-atsm-1/igt@gem_exec_gttfill@basic.html
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/bat-atsm-1/igt@gem_exec_gttfill@basic.html
    - bat-jsl-3:          [PASS][112] -> [SKIP][113] ([i915#2575]) +12 other tests skip
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13685/bat-jsl-3/igt@gem_exec_gttfill@basic.html
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/bat-jsl-3/igt@gem_exec_gttfill@basic.html
    - bat-dg2-9:          [PASS][114] -> [SKIP][115] ([i915#2575]) +9 other tests skip
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13685/bat-dg2-9/igt@gem_exec_gttfill@basic.html
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/bat-dg2-9/igt@gem_exec_gttfill@basic.html

  * igt@gem_exec_suspend@basic-s0@smem:
    - bat-dg2-9:          [PASS][116] -> [INCOMPLETE][117] ([i915#9275])
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13685/bat-dg2-9/igt@gem_exec_suspend@basic-s0@smem.html
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/bat-dg2-9/igt@gem_exec_suspend@basic-s0@smem.html

  * igt@gem_flink_basic@flink-lifetime:
    - fi-cfl-8700k:       [PASS][118] -> [SKIP][119] ([fdo#109271]) +14 other tests skip
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13685/fi-cfl-8700k/igt@gem_flink_basic@flink-lifetime.html
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/fi-cfl-8700k/igt@gem_flink_basic@flink-lifetime.html

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

  * igt@gem_linear_blits@basic:
    - bat-rplp-1:         [PASS][121] -> [SKIP][122] ([i915#2575]) +4 other tests skip
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13685/bat-rplp-1/igt@gem_linear_blits@basic.html
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/bat-rplp-1/igt@gem_linear_blits@basic.html
    - bat-adls-5:         [PASS][123] -> [SKIP][124] ([i915#2575]) +4 other tests skip
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13685/bat-adls-5/igt@gem_linear_blits@basic.html
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/bat-adls-5/igt@gem_linear_blits@basic.html
    - fi-apl-guc:         [PASS][125] -> [SKIP][126] ([fdo#109271]) +14 other tests skip
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13685/fi-apl-guc/igt@gem_linear_blits@basic.html
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/fi-apl-guc/igt@gem_linear_blits@basic.html
    - bat-dg1-5:          [PASS][127] -> [SKIP][128] ([i915#2575]) +9 other tests skip
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13685/bat-dg1-5/igt@gem_linear_blits@basic.html
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/bat-dg1-5/igt@gem_linear_blits@basic.html

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

  * igt@gem_mmap_gtt@basic:
    - fi-kbl-x1275:       [PASS][130] -> [SKIP][131] ([fdo#109271]) +14 other tests skip
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13685/fi-kbl-x1275/igt@gem_mmap_gtt@basic.html
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/fi-kbl-x1275/igt@gem_mmap_gtt@basic.html
    - bat-adlp-11:        [PASS][132] -> [SKIP][133] ([i915#2575]) +8 other tests skip
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13685/bat-adlp-11/igt@gem_mmap_gtt@basic.html
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/bat-adlp-11/igt@gem_mmap_gtt@basic.html
    - fi-cfl-8109u:       [PASS][134] -> [SKIP][135] ([fdo#109271]) +14 other tests skip
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13685/fi-cfl-8109u/igt@gem_mmap_gtt@basic.html
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/fi-cfl-8109u/igt@gem_mmap_gtt@basic.html
    - fi-bsw-n3050:       [PASS][136] -> [SKIP][137] ([fdo#109271]) +11 other tests skip
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13685/fi-bsw-n3050/igt@gem_mmap_gtt@basic.html
   [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/fi-bsw-n3050/igt@gem_mmap_gtt@basic.html

  * igt@gem_ringfill@basic-all:
    - fi-skl-6600u:       [PASS][138] -> [SKIP][139] ([fdo#109271]) +14 other tests skip
   [138]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13685/fi-skl-6600u/igt@gem_ringfill@basic-all.html
   [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/fi-skl-6600u/igt@gem_ringfill@basic-all.html

  * igt@gem_tiled_blits@basic:
    - fi-kbl-guc:         [PASS][140] -> [SKIP][141] ([fdo#109271]) +14 other tests skip
   [140]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13685/fi-kbl-guc/igt@gem_tiled_blits@basic.html
   [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/fi-kbl-guc/igt@gem_tiled_blits@basic.html
    - bat-adlm-1:         [PASS][142] -> [SKIP][143] ([i915#2575]) +12 other tests skip
   [142]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13685/bat-adlm-1/igt@gem_tiled_blits@basic.html
   [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/bat-adlm-1/igt@gem_tiled_blits@basic.html
    - fi-ilk-650:         [PASS][144] -> [SKIP][145] ([fdo#109271]) +14 other tests skip
   [144]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13685/fi-ilk-650/igt@gem_tiled_blits@basic.html
   [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/fi-ilk-650/igt@gem_tiled_blits@basic.html
    - bat-jsl-1:          [PASS][146] -> [SKIP][147] ([i915#2575]) +12 other tests skip
   [146]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13685/bat-jsl-1/igt@gem_tiled_blits@basic.html
   [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/bat-jsl-1/igt@gem_tiled_blits@basic.html
    - fi-tgl-1115g4:      [PASS][148] -> [SKIP][149] ([i915#2575]) +6 other tests skip
   [148]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13685/fi-tgl-1115g4/igt@gem_tiled_blits@basic.html
   [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/fi-tgl-1115g4/igt@gem_tiled_blits@basic.html
    - bat-rpls-1:         [PASS][150] -> [SKIP][151] ([i915#2575]) +8 other tests skip
   [150]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13685/bat-rpls-1/igt@gem_tiled_blits@basic.html
   [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/bat-rpls-1/igt@gem_tiled_blits@basic.html

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

  * igt@kms_dsc@dsc-basic:
    - fi-kbl-soraka:      NOTRUN -> [SKIP][153] ([fdo#109271]) +21 other tests skip
   [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/fi-kbl-soraka/igt@kms_dsc@dsc-basic.html

  * igt@kms_force_connector_basic@force-connector-state:
    - bat-rpls-1:         [PASS][154] -> [ABORT][155] ([i915#9315])
   [154]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13685/bat-rpls-1/igt@kms_force_connector_basic@force-connector-state.html
   [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/bat-rpls-1/igt@kms_force_connector_basic@force-connector-state.html

  * igt@prime_self_import@basic-with_one_bo:
    - fi-skl-guc:         [PASS][156] -> [SKIP][157] ([fdo#109271]) +14 other tests skip
   [156]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13685/fi-skl-guc/igt@prime_self_import@basic-with_one_bo.html
   [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/fi-skl-guc/igt@prime_self_import@basic-with_one_bo.html
    - bat-dg2-11:         [PASS][158] -> [SKIP][159] ([i915#2575]) +9 other tests skip
   [158]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13685/bat-dg2-11/igt@prime_self_import@basic-with_one_bo.html
   [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/bat-dg2-11/igt@prime_self_import@basic-with_one_bo.html
    - fi-tgl-1115g4:      [PASS][160] -> [SKIP][161] ([fdo#109315] / [i915#2575]) +7 other tests skip
   [160]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13685/fi-tgl-1115g4/igt@prime_self_import@basic-with_one_bo.html
   [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/fi-tgl-1115g4/igt@prime_self_import@basic-with_one_bo.html

  * igt@prime_self_import@basic-with_one_bo_two_files:
    - fi-glk-j4005:       [PASS][162] -> [SKIP][163] ([fdo#109271]) +14 other tests skip
   [162]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13685/fi-glk-j4005/igt@prime_self_import@basic-with_one_bo_two_files.html
   [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/fi-glk-j4005/igt@prime_self_import@basic-with_one_bo_two_files.html

  * igt@prime_self_import@basic-with_two_bos:
    - bat-adls-5:         [PASS][164] -> [SKIP][165] ([fdo#109315] / [i915#2575]) +7 other tests skip
   [164]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13685/bat-adls-5/igt@prime_self_import@basic-with_two_bos.html
   [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/bat-adls-5/igt@prime_self_import@basic-with_two_bos.html

  * igt@vgem_basic@second-client:
    - fi-elk-e7500:       [PASS][166] -> [SKIP][167] ([fdo#109271]) +14 other tests skip
   [166]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13685/fi-elk-e7500/igt@vgem_basic@second-client.html
   [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/fi-elk-e7500/igt@vgem_basic@second-client.html

  
#### Possible fixes ####

  * igt@i915_selftest@live@gt_heartbeat:
    - fi-apl-guc:         [DMESG-FAIL][168] ([i915#5334]) -> [PASS][169]
   [168]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13685/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html
   [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html

  
#### Warnings ####

  * igt@kms_force_connector_basic@force-load-detect:
    - bat-jsl-3:          [SKIP][170] ([fdo#109285]) -> [SKIP][171] ([fdo#109285] / [i915#2575])
   [170]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13685/bat-jsl-3/igt@kms_force_connector_basic@force-load-detect.html
   [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/bat-jsl-3/igt@kms_force_connector_basic@force-load-detect.html
    - bat-dg2-9:          [SKIP][172] ([fdo#109285]) -> [SKIP][173] ([fdo#109285] / [i915#2575])
   [172]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13685/bat-dg2-9/igt@kms_force_connector_basic@force-load-detect.html
   [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/bat-dg2-9/igt@kms_force_connector_basic@force-load-detect.html
    - bat-jsl-1:          [SKIP][174] ([fdo#109285]) -> [SKIP][175] ([fdo#109285] / [i915#2575])
   [174]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13685/bat-jsl-1/igt@kms_force_connector_basic@force-load-detect.html
   [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/bat-jsl-1/igt@kms_force_connector_basic@force-load-detect.html
    - bat-adlp-6:         [SKIP][176] ([fdo#109285]) -> [SKIP][177] ([fdo#109285] / [i915#2575])
   [176]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13685/bat-adlp-6/igt@kms_force_connector_basic@force-load-detect.html
   [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/bat-adlp-6/igt@kms_force_connector_basic@force-load-detect.html
    - bat-adls-5:         [SKIP][178] ([fdo#109285]) -> [SKIP][179] ([fdo#109285] / [i915#2575])
   [178]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13685/bat-adls-5/igt@kms_force_connector_basic@force-load-detect.html
   [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/bat-adls-5/igt@kms_force_connector_basic@force-load-detect.html
    - bat-dg1-5:          [SKIP][180] ([fdo#109285]) -> [SKIP][181] ([fdo#109285] / [i915#2575])
   [180]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13685/bat-dg1-5/igt@kms_force_connector_basic@force-load-detect.html
   [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/bat-dg1-5/igt@kms_force_connector_basic@force-load-detect.html
    - bat-adlp-9:         [SKIP][182] ([fdo#109285]) -> [SKIP][183] ([fdo#109285] / [i915#2575])
   [182]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13685/bat-adlp-9/igt@kms_force_connector_basic@force-load-detect.html
   [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/bat-adlp-9/igt@kms_force_connector_basic@force-load-detect.html
    - bat-dg2-11:         [SKIP][184] ([fdo#109285]) -> [SKIP][185] ([fdo#109285] / [i915#2575])
   [184]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13685/bat-dg2-11/igt@kms_force_connector_basic@force-load-detect.html
   [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/bat-dg2-11/igt@kms_force_connector_basic@force-load-detect.html

  * igt@kms_force_connector_basic@prune-stale-modes:
    - bat-dg2-9:          [SKIP][186] ([i915#5274]) -> [SKIP][187] ([i915#2575] / [i915#5274])
   [186]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13685/bat-dg2-9/igt@kms_force_connector_basic@prune-stale-modes.html
   [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/bat-dg2-9/igt@kms_force_connector_basic@prune-stale-modes.html
    - bat-dg2-11:         [SKIP][188] ([i915#5274]) -> [SKIP][189] ([i915#2575] / [i915#5274])
   [188]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13685/bat-dg2-11/igt@kms_force_connector_basic@prune-stale-modes.html
   [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/bat-dg2-11/igt@kms_force_connector_basic@prune-stale-modes.html

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

  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
  [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
  [i915#1886]: https://gitlab.freedesktop.org/drm/intel/issues/1886
  [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
  [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
  [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
  [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274
  [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334
  [i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913
  [i915#7952]: https://gitlab.freedesktop.org/drm/intel/issues/7952
  [i915#9275]: https://gitlab.freedesktop.org/drm/intel/issues/9275
  [i915#9315]: https://gitlab.freedesktop.org/drm/intel/issues/9315


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

  * CI: CI-20190529 -> None
  * IGT: IGT_7506 -> IGTPW_9888

  CI-20190529: 20190529
  CI_DRM_13685: 1907f24fed1f58a8c7210aa4abaee56dd897936b @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_9888: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/index.html
  IGT_7506: 4fdf544bd0a38c5a100ef43c30171827e1c8c442 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git


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

+igt@xe_create@multigpu-create-massive-size
-igt@drm_fdinfo@context-close-stress
-igt@drm_fdinfo@memory-info-active
-igt@drm_fdinfo@memory-info-idle
-igt@drm_fdinfo@memory-info-purgeable
-igt@drm_fdinfo@memory-info-resident
-igt@drm_fdinfo@memory-info-shared

== Logs ==

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

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

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

* [igt-dev] ✗ CI.xeBAT: failure for drmtest changes for running tests on multi-gpu (rev3)
  2023-09-27 14:34 [igt-dev] [PATCH i-g-t 0/2] drmtest changes for running tests on multi-gpu Kamil Konieczny
                   ` (2 preceding siblings ...)
  2023-09-27 15:38 ` [igt-dev] ✗ Fi.CI.BAT: failure for drmtest changes for running tests on multi-gpu (rev3) Patchwork
@ 2023-09-27 15:41 ` Patchwork
  3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2023-09-27 15:41 UTC (permalink / raw)
  To: Kamil Konieczny; +Cc: igt-dev

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

== Series Details ==

Series: drmtest changes for running tests on multi-gpu (rev3)
URL   : https://patchwork.freedesktop.org/series/123991/
State : failure

== Summary ==

CI Bug Log - changes from XEIGT_7506_BAT -> XEIGTPW_9888_BAT
====================================================

Summary
-------

  **FAILURE**

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

  

Participating hosts (3 -> 4)
------------------------------

  Additional (1): bat-pvc-2 

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@core_hotunplug@unbind-rebind:
    - bat-dg2-oem2:       [PASS][1] -> [FAIL][2]
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7506/bat-dg2-oem2/igt@core_hotunplug@unbind-rebind.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9888/bat-dg2-oem2/igt@core_hotunplug@unbind-rebind.html
    - bat-atsm-2:         [PASS][3] -> [FAIL][4]
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7506/bat-atsm-2/igt@core_hotunplug@unbind-rebind.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9888/bat-atsm-2/igt@core_hotunplug@unbind-rebind.html

  * igt@kms_force_connector_basic@force-connector-state:
    - bat-adlp-7:         [PASS][5] -> [DMESG-WARN][6]
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7506/bat-adlp-7/igt@kms_force_connector_basic@force-connector-state.html
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9888/bat-adlp-7/igt@kms_force_connector_basic@force-connector-state.html

  * igt@xe_evict@evict-mixed-threads-small:
    - bat-atsm-2:         [PASS][7] -> [INCOMPLETE][8] +3 other tests incomplete
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7506/bat-atsm-2/igt@xe_evict@evict-mixed-threads-small.html
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9888/bat-atsm-2/igt@xe_evict@evict-mixed-threads-small.html

  * igt@xe_evict@evict-threads-small:
    - bat-pvc-2:          NOTRUN -> [INCOMPLETE][9] +4 other tests incomplete
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9888/bat-pvc-2/igt@xe_evict@evict-threads-small.html
    - bat-dg2-oem2:       [PASS][10] -> [INCOMPLETE][11] +3 other tests incomplete
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7506/bat-dg2-oem2/igt@xe_evict@evict-threads-small.html
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9888/bat-dg2-oem2/igt@xe_evict@evict-threads-small.html

  * igt@xe_exec_reset@cm-close-fd-no-exec:
    - bat-adlp-7:         [PASS][12] -> [SKIP][13] +6 other tests skip
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7506/bat-adlp-7/igt@xe_exec_reset@cm-close-fd-no-exec.html
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9888/bat-adlp-7/igt@xe_exec_reset@cm-close-fd-no-exec.html

  * igt@xe_exec_threads@threads-mixed-fd-basic:
    - bat-adlp-7:         [PASS][14] -> [INCOMPLETE][15]
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7506/bat-adlp-7/igt@xe_exec_threads@threads-mixed-fd-basic.html
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9888/bat-adlp-7/igt@xe_exec_threads@threads-mixed-fd-basic.html

  * igt@xe_live_ktest@bo@xe_bo-xe_ccs_migrate_kunit:
    - bat-dg2-oem2:       [PASS][16] -> [DMESG-WARN][17] +1 other test dmesg-warn
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7506/bat-dg2-oem2/igt@xe_live_ktest@bo@xe_bo-xe_ccs_migrate_kunit.html
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9888/bat-dg2-oem2/igt@xe_live_ktest@bo@xe_bo-xe_ccs_migrate_kunit.html

  * igt@xe_prime_self_import@basic-with_one_bo:
    - bat-atsm-2:         [PASS][18] -> [SKIP][19] +17 other tests skip
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7506/bat-atsm-2/igt@xe_prime_self_import@basic-with_one_bo.html
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9888/bat-atsm-2/igt@xe_prime_self_import@basic-with_one_bo.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@kms_addfb_basic@addfb25-x-tiled-legacy:
    - bat-pvc-2:          NOTRUN -> [SKIP][20] ([Intel XE#538]) +33 other tests skip
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9888/bat-pvc-2/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html

  * igt@kms_cursor_legacy@basic-flip-after-cursor-atomic:
    - bat-pvc-2:          NOTRUN -> [SKIP][21] ([Intel XE#539]) +7 other tests skip
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9888/bat-pvc-2/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html

  * igt@kms_flip@basic-flip-vs-wf_vblank:
    - bat-pvc-2:          NOTRUN -> [SKIP][22] ([Intel XE#275] / [Intel XE#541]) +3 other tests skip
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9888/bat-pvc-2/igt@kms_flip@basic-flip-vs-wf_vblank.html

  * igt@kms_force_connector_basic@force-connector-state:
    - bat-pvc-2:          NOTRUN -> [SKIP][23] ([Intel XE#540]) +3 other tests skip
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9888/bat-pvc-2/igt@kms_force_connector_basic@force-connector-state.html

  * igt@kms_pipe_crc_basic@nonblocking-crc:
    - bat-pvc-2:          NOTRUN -> [SKIP][24] ([Intel XE#537]) +6 other tests skip
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9888/bat-pvc-2/igt@kms_pipe_crc_basic@nonblocking-crc.html

  * igt@kms_prop_blob@basic:
    - bat-pvc-2:          NOTRUN -> [SKIP][25] ([Intel XE#536])
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9888/bat-pvc-2/igt@kms_prop_blob@basic.html

  * igt@kms_psr@primary_page_flip:
    - bat-pvc-2:          NOTRUN -> [SKIP][26] ([Intel XE#535]) +2 other tests skip
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9888/bat-pvc-2/igt@kms_psr@primary_page_flip.html

  * igt@xe_evict@evict-beng-mixed-threads-small-multi-vm:
    - bat-pvc-2:          NOTRUN -> [INCOMPLETE][27] ([Intel XE#685])
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9888/bat-pvc-2/igt@xe_evict@evict-beng-mixed-threads-small-multi-vm.html
    - bat-dg2-oem2:       [PASS][28] -> [INCOMPLETE][29] ([Intel XE#685])
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7506/bat-dg2-oem2/igt@xe_evict@evict-beng-mixed-threads-small-multi-vm.html
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9888/bat-dg2-oem2/igt@xe_evict@evict-beng-mixed-threads-small-multi-vm.html
    - bat-atsm-2:         [PASS][30] -> [INCOMPLETE][31] ([Intel XE#685])
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7506/bat-atsm-2/igt@xe_evict@evict-beng-mixed-threads-small-multi-vm.html
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9888/bat-atsm-2/igt@xe_evict@evict-beng-mixed-threads-small-multi-vm.html

  * igt@xe_evict@evict-beng-small-external:
    - bat-pvc-2:          NOTRUN -> [SKIP][32] ([Intel XE#678]) +17 other tests skip
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9888/bat-pvc-2/igt@xe_evict@evict-beng-small-external.html

  * igt@xe_exec_threads@threads-mixed-fd-basic:
    - bat-dg2-oem2:       [PASS][33] -> [INCOMPLETE][34] ([Intel XE#451])
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7506/bat-dg2-oem2/igt@xe_exec_threads@threads-mixed-fd-basic.html
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9888/bat-dg2-oem2/igt@xe_exec_threads@threads-mixed-fd-basic.html
    - bat-atsm-2:         [PASS][35] -> [INCOMPLETE][36] ([Intel XE#451])
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7506/bat-atsm-2/igt@xe_exec_threads@threads-mixed-fd-basic.html
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9888/bat-atsm-2/igt@xe_exec_threads@threads-mixed-fd-basic.html

  * igt@xe_guc_pc@freq_fixed_idle:
    - bat-pvc-2:          NOTRUN -> [SKIP][37] ([Intel XE#533]) +1 other test skip
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9888/bat-pvc-2/igt@xe_guc_pc@freq_fixed_idle.html

  * igt@xe_huc_copy@huc_copy:
    - bat-pvc-2:          NOTRUN -> [SKIP][38] ([Intel XE#255])
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9888/bat-pvc-2/igt@xe_huc_copy@huc_copy.html

  * igt@xe_intel_bb@render:
    - bat-pvc-2:          NOTRUN -> [SKIP][39] ([Intel XE#532])
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9888/bat-pvc-2/igt@xe_intel_bb@render.html

  * igt@xe_module_load@load:
    - bat-pvc-2:          NOTRUN -> [SKIP][40] ([Intel XE#378])
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9888/bat-pvc-2/igt@xe_module_load@load.html

  * igt@xe_pm_residency@gt-c6-on-idle:
    - bat-pvc-2:          NOTRUN -> [SKIP][41] ([Intel XE#531])
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9888/bat-pvc-2/igt@xe_pm_residency@gt-c6-on-idle.html

  * igt@xe_prime_self_import@basic-with_fd_dup:
    - bat-dg2-oem2:       [PASS][42] -> [SKIP][43] ([Intel XE#678]) +17 other tests skip
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7506/bat-dg2-oem2/igt@xe_prime_self_import@basic-with_fd_dup.html
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9888/bat-dg2-oem2/igt@xe_prime_self_import@basic-with_fd_dup.html

  
#### Possible fixes ####

  * igt@kms_flip@basic-flip-vs-wf_vblank@b-edp1:
    - bat-adlp-7:         [FAIL][44] ([Intel XE#480]) -> [PASS][45] +1 other test pass
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7506/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@b-edp1.html
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9888/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@b-edp1.html

  
  [Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255
  [Intel XE#275]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/275
  [Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
  [Intel XE#451]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/451
  [Intel XE#480]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/480
  [Intel XE#531]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/531
  [Intel XE#532]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/532
  [Intel XE#533]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/533
  [Intel XE#535]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/535
  [Intel XE#536]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/536
  [Intel XE#537]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/537
  [Intel XE#538]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/538
  [Intel XE#539]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/539
  [Intel XE#540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/540
  [Intel XE#541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/541
  [Intel XE#678]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/678
  [Intel XE#685]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/685


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

  * IGT: IGT_7506 -> IGTPW_9888

  IGTPW_9888: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9888/index.html
  IGT_7506: 4fdf544bd0a38c5a100ef43c30171827e1c8c442 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-397-bce60b0ff2937cb2ea51841a479bc1a2da65052b: bce60b0ff2937cb2ea51841a479bc1a2da65052b

== Logs ==

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

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

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

end of thread, other threads:[~2023-09-27 15:41 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-09-27 14:34 [igt-dev] [PATCH i-g-t 0/2] drmtest changes for running tests on multi-gpu Kamil Konieczny
2023-09-27 14:34 ` [igt-dev] [PATCH i-g-t v4 1/2] lib/drmtest: allow out of order device opening Kamil Konieczny
2023-09-27 14:34 ` [igt-dev] [PATCH i-g-t v4 2/2] tests/intel/xe_create: extend massive subtest to multi-gpu Kamil Konieczny
2023-09-27 15:38 ` [igt-dev] ✗ Fi.CI.BAT: failure for drmtest changes for running tests on multi-gpu (rev3) Patchwork
2023-09-27 15:41 ` [igt-dev] ✗ CI.xeBAT: " Patchwork

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