* [PATCH i-g-t 1/4] tests/intel/xe_wedged: Introduce a new test for Xe device wedged state
@ 2024-04-23 22:22 Rodrigo Vivi
2024-04-23 22:22 ` [PATCH i-g-t 2/4] tests/intel/xe_wedged: Also add a simple exec to confirm GPU health Rodrigo Vivi
` (5 more replies)
0 siblings, 6 replies; 10+ messages in thread
From: Rodrigo Vivi @ 2024-04-23 22:22 UTC (permalink / raw)
To: igt-dev; +Cc: himal.prasad.ghimiray, Rodrigo Vivi, Lucas De Marchi
Let's inject a gt_reset failure that will put Xe device in the
new wedged state, then we confirm the IOCTL is blocked and we
reload the driver to get back to a clean state for other test
execution, since wedged state in Xe is a final state that can only
be cleared with a device rebind/reprobe.
The fault injection of this test is entirely based on xe_uevent
provided by Himal.
v2: Use rebind instead of module reload (Lucas)
And other improvements also pointed out by Lucas.
Cc: Lucas De Marchi <lucas.demarchi@intel.com>
Cc: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com>
Reviewed-by: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com>
Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
---
tests/intel/xe_wedged.c | 108 ++++++++++++++++++++++++++++++++++++++++
tests/meson.build | 1 +
2 files changed, 109 insertions(+)
create mode 100644 tests/intel/xe_wedged.c
diff --git a/tests/intel/xe_wedged.c b/tests/intel/xe_wedged.c
new file mode 100644
index 000000000..f2587cc43
--- /dev/null
+++ b/tests/intel/xe_wedged.c
@@ -0,0 +1,108 @@
+// SPDX-License-Identifier: MIT
+/*
+ * Copyright © 2024 Intel Corporation
+ */
+
+/**
+ * TEST: cause fake gt reset failure which put Xe device in wedged state
+ * Category: Software building block
+ * Sub-category: driver
+ * Functionality: wedged
+ * Test category: functionality test
+ */
+
+#include <limits.h>
+#include <dirent.h>
+
+#include "igt.h"
+#include "igt_device.h"
+#include "igt_kmod.h"
+#include "igt_sysfs.h"
+
+#include "xe/xe_ioctl.h"
+
+static void force_wedged(int fd)
+{
+ igt_debugfs_write(fd, "fail_gt_reset/probability", "100");
+ igt_debugfs_write(fd, "fail_gt_reset/times", "2");
+
+ xe_force_gt_reset(fd, 0);
+ sleep(1);
+}
+
+static int rebind_xe(int fd)
+{
+ char pci_slot[NAME_MAX];
+ int sysfs;
+
+ igt_device_get_pci_slot_name(fd, pci_slot);
+
+ sysfs = open("/sys/bus/pci/drivers/xe", O_DIRECTORY);
+ igt_assert(sysfs);
+
+ igt_assert(igt_sysfs_set(sysfs, "unbind", pci_slot));
+
+ /*
+ * We need to close the client for a proper release, before
+ * binding back again.
+ */
+ close(fd);
+
+ igt_assert(igt_sysfs_set(sysfs, "bind", pci_slot));
+ close(sysfs);
+
+ /* Renew the client connection */
+ fd = drm_open_driver(DRIVER_XE);
+ igt_assert(fd);
+
+ return fd;
+}
+
+static int simple_ioctl(int fd)
+{
+ int ret;
+
+ struct drm_xe_vm_create create = {
+ .extensions = 0,
+ .flags = 0,
+ };
+
+ ret = igt_ioctl(fd, DRM_IOCTL_XE_VM_CREATE, &create);
+
+ if (ret == 0)
+ xe_vm_destroy(fd, create.vm_id);
+
+ return ret;
+}
+
+/**
+ * SUBTEST: basic-wedged
+ * Description: Force Xe device wedged after injecting a failure in GT reset
+ */
+igt_main
+{
+ int fd;
+
+ igt_fixture {
+ fd = drm_open_driver(DRIVER_XE);
+ }
+
+ igt_subtest("basic-wedged") {
+ igt_require(igt_debugfs_exists(fd, "fail_gt_reset/probability",
+ O_RDWR));
+
+ igt_assert_eq(simple_ioctl(fd), 0);
+ force_wedged(fd);
+ igt_assert_neq(simple_ioctl(fd), 0);
+ fd = rebind_xe(fd);
+ igt_assert_eq(simple_ioctl(fd), 0);
+ }
+
+ igt_fixture {
+ if (igt_debugfs_exists(fd, "fail_gt_reset/probability", O_RDWR)) {
+ igt_debugfs_write(fd, "fail_gt_reset/probability", "0");
+ igt_debugfs_write(fd, "fail_gt_reset/times", "1");
+ }
+ drm_close_driver(fd);
+ }
+}
diff --git a/tests/meson.build b/tests/meson.build
index a856510fc..65b8bf23b 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -274,6 +274,7 @@ intel_kms_progs = [
]
intel_xe_progs = [
+ 'xe_wedged',
'xe_ccs',
'xe_create',
'xe_compute',
--
2.44.0
^ permalink raw reply related [flat|nested] 10+ messages in thread* [PATCH i-g-t 2/4] tests/intel/xe_wedged: Also add a simple exec to confirm GPU health 2024-04-23 22:22 [PATCH i-g-t 1/4] tests/intel/xe_wedged: Introduce a new test for Xe device wedged state Rodrigo Vivi @ 2024-04-23 22:22 ` Rodrigo Vivi 2024-04-23 22:22 ` [PATCH i-g-t 3/4] tests/intel/xe_wedged: Introduce test for wedged_mode=2 Rodrigo Vivi ` (4 subsequent siblings) 5 siblings, 0 replies; 10+ messages in thread From: Rodrigo Vivi @ 2024-04-23 22:22 UTC (permalink / raw) To: igt-dev; +Cc: himal.prasad.ghimiray, Rodrigo Vivi Besides confirming that the rebind puts the device in a state where we can send IOCTLs, let's also ensure it can really perform some basic exec functions. Reviewed-by: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com> Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com> --- tests/intel/xe_wedged.c | 90 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 90 insertions(+) diff --git a/tests/intel/xe_wedged.c b/tests/intel/xe_wedged.c index f2587cc43..ab9bf23d5 100644 --- a/tests/intel/xe_wedged.c +++ b/tests/intel/xe_wedged.c @@ -17,9 +17,13 @@ #include "igt.h" #include "igt_device.h" #include "igt_kmod.h" +#include "igt_syncobj.h" #include "igt_sysfs.h" +#include "xe_drm.h" #include "xe/xe_ioctl.h" +#include "xe/xe_query.h" +#include "xe/xe_spin.h" static void force_wedged(int fd) { @@ -75,12 +79,96 @@ static int simple_ioctl(int fd) return ret; } +static void +simple_exec(int fd, struct drm_xe_engine_class_instance *eci) +{ + uint32_t vm; + uint64_t addr = 0x1a0000; + struct drm_xe_sync sync[2] = { + { .type = DRM_XE_SYNC_TYPE_SYNCOBJ, .flags = DRM_XE_SYNC_FLAG_SIGNAL, }, + { .type = DRM_XE_SYNC_TYPE_SYNCOBJ, .flags = DRM_XE_SYNC_FLAG_SIGNAL, }, + }; + struct drm_xe_exec exec = { + .num_batch_buffer = 1, + .num_syncs = 2, + .syncs = to_user_pointer(sync), + }; + uint64_t batch_offset, batch_addr, sdi_offset, sdi_addr; + uint32_t exec_queue; + uint32_t syncobjs; + size_t bo_size; + uint32_t bo = 0; + struct { + uint32_t batch[16]; + uint64_t pad; + uint32_t data; + } *data; + int b; + + vm = xe_vm_create(fd, 0, 0); + + bo_size = sizeof(*data) * 2; + bo_size = xe_bb_size(fd, bo_size); + bo = xe_bo_create(fd, vm, bo_size, + vram_if_possible(fd, eci->gt_id), + DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM); + data = xe_bo_map(fd, bo, bo_size); + + exec_queue = xe_exec_queue_create(fd, vm, eci, 0); + + syncobjs = syncobj_create(fd, 0); + sync[0].handle = syncobj_create(fd, 0); + + xe_vm_bind_async(fd, vm, 0, bo, 0, addr, + bo_size, sync, 1); + + batch_offset = (char *)&data[0].batch - (char *)data; + batch_addr = addr + batch_offset; + sdi_offset = (char *)&data[0].data - (char *)data; + sdi_addr = addr + sdi_offset; + + b = 0; + data[0].batch[b++] = MI_STORE_DWORD_IMM_GEN4; + data[0].batch[b++] = sdi_addr; + data[0].batch[b++] = sdi_addr >> 32; + data[0].batch[b++] = 0xc0ffee; + data[0].batch[b++] = MI_BATCH_BUFFER_END; + igt_assert(b <= ARRAY_SIZE(data[0].batch)); + + sync[0].flags &= ~DRM_XE_SYNC_FLAG_SIGNAL; + sync[1].flags |= DRM_XE_SYNC_FLAG_SIGNAL; + sync[1].handle = syncobjs; + + exec.exec_queue_id = exec_queue; + exec.address = batch_addr; + + syncobj_reset(fd, &syncobjs, 1); + + xe_exec(fd, &exec); + + igt_assert(syncobj_wait(fd, &syncobjs, 1, INT64_MAX, 0, NULL)); + igt_assert_eq(data[0].data, 0xc0ffee); + igt_assert(syncobj_wait(fd, &sync[0].handle, 1, INT64_MAX, 0, NULL)); + sync[0].flags |= DRM_XE_SYNC_FLAG_SIGNAL; + xe_vm_unbind_async(fd, vm, 0, 0, addr, bo_size, sync, 1); + igt_assert(syncobj_wait(fd, &sync[0].handle, 1, INT64_MAX, 0, NULL)); + igt_assert_eq(data[0].data, 0xc0ffee); + + syncobj_destroy(fd, sync[0].handle); + syncobj_destroy(fd, syncobjs); + xe_exec_queue_destroy(fd, exec_queue); + munmap(data, bo_size); + gem_close(fd, bo); + xe_vm_destroy(fd, vm); +} + /** * SUBTEST: basic-wedged * Description: Force Xe device wedged after injecting a failure in GT reset */ igt_main { + struct drm_xe_engine_class_instance *hwe; int fd; igt_fixture { @@ -96,6 +184,8 @@ igt_main igt_assert_neq(simple_ioctl(fd), 0); fd = rebind_xe(fd); igt_assert_eq(simple_ioctl(fd), 0); + xe_for_each_engine(fd, hwe) + simple_exec(fd, hwe); } igt_fixture { -- 2.44.0 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH i-g-t 3/4] tests/intel/xe_wedged: Introduce test for wedged_mode=2 2024-04-23 22:22 [PATCH i-g-t 1/4] tests/intel/xe_wedged: Introduce a new test for Xe device wedged state Rodrigo Vivi 2024-04-23 22:22 ` [PATCH i-g-t 2/4] tests/intel/xe_wedged: Also add a simple exec to confirm GPU health Rodrigo Vivi @ 2024-04-23 22:22 ` Rodrigo Vivi 2024-04-23 22:22 ` [PATCH i-g-t 4/4] tests/intel/xe_wedged: Test wedged_mode=1 after had toggled mode=2 Rodrigo Vivi ` (3 subsequent siblings) 5 siblings, 0 replies; 10+ messages in thread From: Rodrigo Vivi @ 2024-04-23 22:22 UTC (permalink / raw) To: igt-dev; +Cc: himal.prasad.ghimiray, Rodrigo Vivi In this mode, selected with debugfs, the GPU will be declared as wedged at any timeout. So, let's also introduce a command that will surely timeout. Based on the xe_exec_threads hang. Then we confirm the GPU is back alive after a rebind. Reviewed-by: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com> Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com> --- tests/intel/xe_wedged.c | 69 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 69 insertions(+) diff --git a/tests/intel/xe_wedged.c b/tests/intel/xe_wedged.c index ab9bf23d5..35fc905e7 100644 --- a/tests/intel/xe_wedged.c +++ b/tests/intel/xe_wedged.c @@ -162,10 +162,60 @@ simple_exec(int fd, struct drm_xe_engine_class_instance *eci) xe_vm_destroy(fd, vm); } +static void +simple_hang(int fd) +{ + struct drm_xe_engine_class_instance *eci = &xe_engine(fd, 0)->instance; + uint32_t vm; + uint64_t addr = 0x1a0000; + struct drm_xe_exec exec_hang = { + .num_batch_buffer = 1, + }; + uint64_t spin_offset; + uint32_t hang_exec_queue; + size_t bo_size; + uint32_t bo = 0; + struct { + struct xe_spin spin; + uint32_t batch[16]; + uint64_t pad; + uint32_t data; + } *data; + struct xe_spin_opts spin_opts = { .preempt = false }; + int err; + + vm = xe_vm_create(fd, 0, 0); + bo_size = xe_bb_size(fd, sizeof(*data)); + bo = xe_bo_create(fd, vm, bo_size, + vram_if_possible(fd, eci->gt_id), + DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM); + data = xe_bo_map(fd, bo, bo_size); + hang_exec_queue = xe_exec_queue_create(fd, vm, eci, 0); + + spin_offset = (char *)&data[0].spin - (char *)data; + spin_opts.addr = addr + spin_offset; + xe_spin_init(&data[0].spin, &spin_opts); + exec_hang.exec_queue_id = hang_exec_queue; + exec_hang.address = spin_opts.addr; + + do { + err = igt_ioctl(fd, DRM_IOCTL_XE_EXEC, &exec_hang); + } while (err && errno == ENOMEM); + + xe_exec_queue_destroy(fd, hang_exec_queue); + munmap(data, bo_size); + gem_close(fd, bo); + xe_vm_destroy(fd, vm); +} + /** * SUBTEST: basic-wedged * Description: Force Xe device wedged after injecting a failure in GT reset */ +/** + * SUBTEST: wedged-at-any-timeout + * Description: Force Xe device wedged after a simple guc timeout + */ igt_main { struct drm_xe_engine_class_instance *hwe; @@ -188,6 +238,25 @@ igt_main simple_exec(fd, hwe); } + igt_subtest_f("wedged-at-any-timeout") { + igt_require(igt_debugfs_exists(fd, "wedged_mode", O_RDWR)); + + igt_debugfs_write(fd, "wedged_mode", "2"); + simple_hang(fd); + /* + * Any ioctl after the first timeout on wedged_mode=2 is blocked + * so we cannot relly on sync objects. Let's wait a bit for + * things to settle before we confirm device as wedged and + * rebind. + */ + sleep(1); + igt_assert_neq(simple_ioctl(fd), 0); + fd = rebind_xe(fd); + igt_assert_eq(simple_ioctl(fd), 0); + xe_for_each_engine(fd, hwe) + simple_exec(fd, hwe); + } + igt_fixture { if (igt_debugfs_exists(fd, "fail_gt_reset/probability", O_RDWR)) { igt_debugfs_write(fd, "fail_gt_reset/probability", "0"); -- 2.44.0 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH i-g-t 4/4] tests/intel/xe_wedged: Test wedged_mode=1 after had toggled mode=2 2024-04-23 22:22 [PATCH i-g-t 1/4] tests/intel/xe_wedged: Introduce a new test for Xe device wedged state Rodrigo Vivi 2024-04-23 22:22 ` [PATCH i-g-t 2/4] tests/intel/xe_wedged: Also add a simple exec to confirm GPU health Rodrigo Vivi 2024-04-23 22:22 ` [PATCH i-g-t 3/4] tests/intel/xe_wedged: Introduce test for wedged_mode=2 Rodrigo Vivi @ 2024-04-23 22:22 ` Rodrigo Vivi 2024-04-24 2:52 ` Ghimiray, Himal Prasad 2024-04-24 0:24 ` ✗ Fi.CI.BAT: failure for series starting with [i-g-t,1/4] tests/intel/xe_wedged: Introduce a new test for Xe device wedged state Patchwork ` (2 subsequent siblings) 5 siblings, 1 reply; 10+ messages in thread From: Rodrigo Vivi @ 2024-04-23 22:22 UTC (permalink / raw) To: igt-dev; +Cc: himal.prasad.ghimiray, Rodrigo Vivi Let's toggle between different modes. Suggested-by: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com> Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com> --- tests/intel/xe_wedged.c | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/tests/intel/xe_wedged.c b/tests/intel/xe_wedged.c index 35fc905e7..b9bd49fad 100644 --- a/tests/intel/xe_wedged.c +++ b/tests/intel/xe_wedged.c @@ -216,6 +216,10 @@ simple_hang(int fd) * SUBTEST: wedged-at-any-timeout * Description: Force Xe device wedged after a simple guc timeout */ +/** + * SUBTEST: wedged-mode-toggle + * Description: Test wedged.mode=1 after testing wedged.mode=2 + */ igt_main { struct drm_xe_engine_class_instance *hwe; @@ -257,6 +261,16 @@ igt_main simple_exec(fd, hwe); } + igt_subtest_f("wedged-mode-toggle") { + igt_require(igt_debugfs_exists(fd, "wedged_mode", O_RDWR)); + + igt_debugfs_write(fd, "wedged_mode", "2"); + igt_assert_eq(simple_ioctl(fd), 0); + igt_debugfs_write(fd, "wedged_mode", "1"); + simple_hang(fd); + igt_assert_eq(simple_ioctl(fd), 0); + } + igt_fixture { if (igt_debugfs_exists(fd, "fail_gt_reset/probability", O_RDWR)) { igt_debugfs_write(fd, "fail_gt_reset/probability", "0"); -- 2.44.0 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [PATCH i-g-t 4/4] tests/intel/xe_wedged: Test wedged_mode=1 after had toggled mode=2 2024-04-23 22:22 ` [PATCH i-g-t 4/4] tests/intel/xe_wedged: Test wedged_mode=1 after had toggled mode=2 Rodrigo Vivi @ 2024-04-24 2:52 ` Ghimiray, Himal Prasad 0 siblings, 0 replies; 10+ messages in thread From: Ghimiray, Himal Prasad @ 2024-04-24 2:52 UTC (permalink / raw) To: Rodrigo Vivi, igt-dev [-- Attachment #1: Type: text/plain, Size: 1434 bytes --] On 24-04-2024 03:52, Rodrigo Vivi wrote: > Let's toggle between different modes. > > Suggested-by: Himal Prasad Ghimiray<himal.prasad.ghimiray@intel.com> > Signed-off-by: Rodrigo Vivi<rodrigo.vivi@intel.com> > --- > tests/intel/xe_wedged.c | 14 ++++++++++++++ > 1 file changed, 14 insertions(+) > > diff --git a/tests/intel/xe_wedged.c b/tests/intel/xe_wedged.c > index 35fc905e7..b9bd49fad 100644 > --- a/tests/intel/xe_wedged.c > +++ b/tests/intel/xe_wedged.c > @@ -216,6 +216,10 @@ simple_hang(int fd) > * SUBTEST: wedged-at-any-timeout > * Description: Force Xe device wedged after a simple guc timeout > */ > +/** > + * SUBTEST: wedged-mode-toggle > + * Description: Test wedged.mode=1 after testing wedged.mode=2 > + */ > igt_main > { > struct drm_xe_engine_class_instance *hwe; > @@ -257,6 +261,16 @@ igt_main > simple_exec(fd, hwe); > } > > + igt_subtest_f("wedged-mode-toggle") { > + igt_require(igt_debugfs_exists(fd, "wedged_mode", O_RDWR)); > + > + igt_debugfs_write(fd, "wedged_mode", "2"); > + igt_assert_eq(simple_ioctl(fd), 0); > + igt_debugfs_write(fd, "wedged_mode", "1"); > + simple_hang(fd); > + igt_assert_eq(simple_ioctl(fd), 0); > + } > + LGTM. Reviewed-by: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com> > igt_fixture { > if (igt_debugfs_exists(fd, "fail_gt_reset/probability", O_RDWR)) { > igt_debugfs_write(fd, "fail_gt_reset/probability", "0"); [-- Attachment #2: Type: text/html, Size: 2489 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* ✗ Fi.CI.BAT: failure for series starting with [i-g-t,1/4] tests/intel/xe_wedged: Introduce a new test for Xe device wedged state 2024-04-23 22:22 [PATCH i-g-t 1/4] tests/intel/xe_wedged: Introduce a new test for Xe device wedged state Rodrigo Vivi ` (2 preceding siblings ...) 2024-04-23 22:22 ` [PATCH i-g-t 4/4] tests/intel/xe_wedged: Test wedged_mode=1 after had toggled mode=2 Rodrigo Vivi @ 2024-04-24 0:24 ` Patchwork 2024-04-24 16:50 ` Kamil Konieczny 2024-04-24 1:09 ` ✓ CI.xeBAT: success " Patchwork 2024-04-24 14:35 ` ✗ CI.xeFULL: failure " Patchwork 5 siblings, 1 reply; 10+ messages in thread From: Patchwork @ 2024-04-24 0:24 UTC (permalink / raw) To: Rodrigo Vivi; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 3109 bytes --] == Series Details == Series: series starting with [i-g-t,1/4] tests/intel/xe_wedged: Introduce a new test for Xe device wedged state URL : https://patchwork.freedesktop.org/series/132799/ State : failure == Summary == CI Bug Log - changes from CI_DRM_14637 -> IGTPW_11062 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_11062 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_11062, please notify your bug team ('I915-ci-infra@lists.freedesktop.org') 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_11062/index.html Participating hosts (39 -> 37) ------------------------------ Missing (2): fi-apl-guc fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_11062: ### IGT changes ### #### Possible regressions #### * igt@gem_exec_fence@nb-await: - bat-arls-2: NOTRUN -> [TIMEOUT][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11062/bat-arls-2/igt@gem_exec_fence@nb-await.html * igt@gem_exec_gttfill@basic: - bat-arls-2: [PASS][2] -> [TIMEOUT][3] +1 other test timeout [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14637/bat-arls-2/igt@gem_exec_gttfill@basic.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11062/bat-arls-2/igt@gem_exec_gttfill@basic.html * igt@gem_exec_parallel@engines: - bat-arls-2: NOTRUN -> [ABORT][4] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11062/bat-arls-2/igt@gem_exec_parallel@engines.html Known issues ------------ Here are the changes found in IGTPW_11062 that come from known issues: ### IGT changes ### #### Possible fixes #### * igt@i915_selftest@live@execlists: - fi-bsw-nick: [ABORT][5] ([i915#10594]) -> [PASS][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14637/fi-bsw-nick/igt@i915_selftest@live@execlists.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11062/fi-bsw-nick/igt@i915_selftest@live@execlists.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#10594]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10594 [i915#10911]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10911 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7819 -> IGTPW_11062 CI-20190529: 20190529 CI_DRM_14637: b5b592a3902a51cc5747c625aa1898768d4ce79a @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_11062: a72f03b3feb0591c8cf0260253a8a04b9f6ea779 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_7819: 98e0d03839ce31141328a2935eb193361eca61e3 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11062/index.html [-- Attachment #2: Type: text/html, Size: 3739 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: ✗ Fi.CI.BAT: failure for series starting with [i-g-t,1/4] tests/intel/xe_wedged: Introduce a new test for Xe device wedged state 2024-04-24 0:24 ` ✗ Fi.CI.BAT: failure for series starting with [i-g-t,1/4] tests/intel/xe_wedged: Introduce a new test for Xe device wedged state Patchwork @ 2024-04-24 16:50 ` Kamil Konieczny 0 siblings, 0 replies; 10+ messages in thread From: Kamil Konieczny @ 2024-04-24 16:50 UTC (permalink / raw) To: igt-dev; +Cc: Rodrigo Vivi, I915-ci-infra Hi igt-dev, On 2024-04-24 at 00:24:35 -0000, Patchwork wrote: > == Series Details == > > Series: series starting with [i-g-t,1/4] tests/intel/xe_wedged: Introduce a new test for Xe device wedged state > URL : https://patchwork.freedesktop.org/series/132799/ > State : failure > > == Summary == > > CI Bug Log - changes from CI_DRM_14637 -> IGTPW_11062 > ==================================================== > > Summary > ------- > > **FAILURE** > > Serious unknown changes coming with IGTPW_11062 absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_11062, please notify your bug team ('I915-ci-infra@lists.freedesktop.org') 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_11062/index.html > > Participating hosts (39 -> 37) > ------------------------------ > > Missing (2): fi-apl-guc fi-snb-2520m > > Possible new issues > ------------------- > > Here are the unknown changes that may have been introduced in IGTPW_11062: > > ### IGT changes ### > > #### Possible regressions #### > > * igt@gem_exec_fence@nb-await: > - bat-arls-2: NOTRUN -> [TIMEOUT][1] > [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11062/bat-arls-2/igt@gem_exec_fence@nb-await.html > > * igt@gem_exec_gttfill@basic: > - bat-arls-2: [PASS][2] -> [TIMEOUT][3] +1 other test timeout > [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14637/bat-arls-2/igt@gem_exec_gttfill@basic.html > [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11062/bat-arls-2/igt@gem_exec_gttfill@basic.html > > * igt@gem_exec_parallel@engines: > - bat-arls-2: NOTRUN -> [ABORT][4] > [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11062/bat-arls-2/igt@gem_exec_parallel@engines.html > These are unrelated to Xe test, no need for respin as it is already merged. Regards, Kamil > > Known issues > ------------ > > Here are the changes found in IGTPW_11062 that come from known issues: > > ### IGT changes ### > > #### Possible fixes #### > > * igt@i915_selftest@live@execlists: > - fi-bsw-nick: [ABORT][5] ([i915#10594]) -> [PASS][6] > [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14637/fi-bsw-nick/igt@i915_selftest@live@execlists.html > [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11062/fi-bsw-nick/igt@i915_selftest@live@execlists.html > > > {name}: This element is suppressed. This means it is ignored when computing > the status of the difference (SUCCESS, WARNING, or FAILURE). > > [i915#10594]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10594 > [i915#10911]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10911 > > > Build changes > ------------- > > * CI: CI-20190529 -> None > * IGT: IGT_7819 -> IGTPW_11062 > > CI-20190529: 20190529 > CI_DRM_14637: b5b592a3902a51cc5747c625aa1898768d4ce79a @ git://anongit.freedesktop.org/gfx-ci/linux > IGTPW_11062: a72f03b3feb0591c8cf0260253a8a04b9f6ea779 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git > IGT_7819: 98e0d03839ce31141328a2935eb193361eca61e3 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git > > == Logs == > > For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11062/index.html ^ permalink raw reply [flat|nested] 10+ messages in thread
* ✓ CI.xeBAT: success for series starting with [i-g-t,1/4] tests/intel/xe_wedged: Introduce a new test for Xe device wedged state 2024-04-23 22:22 [PATCH i-g-t 1/4] tests/intel/xe_wedged: Introduce a new test for Xe device wedged state Rodrigo Vivi ` (3 preceding siblings ...) 2024-04-24 0:24 ` ✗ Fi.CI.BAT: failure for series starting with [i-g-t,1/4] tests/intel/xe_wedged: Introduce a new test for Xe device wedged state Patchwork @ 2024-04-24 1:09 ` Patchwork 2024-04-24 14:35 ` ✗ CI.xeFULL: failure " Patchwork 5 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2024-04-24 1:09 UTC (permalink / raw) To: Rodrigo Vivi; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1889 bytes --] == Series Details == Series: series starting with [i-g-t,1/4] tests/intel/xe_wedged: Introduce a new test for Xe device wedged state URL : https://patchwork.freedesktop.org/series/132799/ State : success == Summary == CI Bug Log - changes from XEIGT_7819_BAT -> XEIGTPW_11062_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (5 -> 5) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_11062_BAT that come from known issues: ### IGT changes ### #### Possible fixes #### * igt@xe_exec_threads@threads-basic: - {bat-lnl-1}: [FAIL][1] ([Intel XE#1256]) -> [PASS][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/bat-lnl-1/igt@xe_exec_threads@threads-basic.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/bat-lnl-1/igt@xe_exec_threads@threads-basic.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1256]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1256 Build changes ------------- * IGT: IGT_7819 -> IGTPW_11062 * Linux: xe-1162-e1dc9638bb47a28181fee1a9a180445ca2a8b9cf -> xe-1163-b5b592a3902a51cc5747c625aa1898768d4ce79a IGTPW_11062: a72f03b3feb0591c8cf0260253a8a04b9f6ea779 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_7819: 98e0d03839ce31141328a2935eb193361eca61e3 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-1162-e1dc9638bb47a28181fee1a9a180445ca2a8b9cf: e1dc9638bb47a28181fee1a9a180445ca2a8b9cf xe-1163-b5b592a3902a51cc5747c625aa1898768d4ce79a: b5b592a3902a51cc5747c625aa1898768d4ce79a == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/index.html [-- Attachment #2: Type: text/html, Size: 2475 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* ✗ CI.xeFULL: failure for series starting with [i-g-t,1/4] tests/intel/xe_wedged: Introduce a new test for Xe device wedged state 2024-04-23 22:22 [PATCH i-g-t 1/4] tests/intel/xe_wedged: Introduce a new test for Xe device wedged state Rodrigo Vivi ` (4 preceding siblings ...) 2024-04-24 1:09 ` ✓ CI.xeBAT: success " Patchwork @ 2024-04-24 14:35 ` Patchwork 5 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2024-04-24 14:35 UTC (permalink / raw) To: Rodrigo Vivi; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 67683 bytes --] == Series Details == Series: series starting with [i-g-t,1/4] tests/intel/xe_wedged: Introduce a new test for Xe device wedged state URL : https://patchwork.freedesktop.org/series/132799/ State : failure == Summary == CI Bug Log - changes from XEIGT_7819_full -> XEIGTPW_11062_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_11062_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_11062_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (3 -> 1) ------------------------------ ERROR: It appears as if the changes made in XEIGTPW_11062_full prevented too many machines from booting. Missing (2): shard-adlp shard-lnl New tests --------- New tests have been introduced between XEIGT_7819_full and XEIGTPW_11062_full: ### New IGT tests (3) ### * igt@xe_wedged@basic-wedged: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@xe_wedged@wedged-at-any-timeout: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@xe_wedged@wedged-mode-toggle: - Statuses : 1 skip(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in XEIGTPW_11062_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@core_hotunplug@hotunplug-rescan: - shard-dg2-set2: NOTRUN -> [DMESG-FAIL][1] ([Intel XE#1345] / [Intel XE#1548]) [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-435/igt@core_hotunplug@hotunplug-rescan.html * igt@kms_big_fb@x-tiled-16bpp-rotate-90: - shard-dg2-set2: NOTRUN -> [SKIP][2] ([Intel XE#1201] / [Intel XE#316]) [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-466/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180: - shard-dg2-set2: [PASS][3] -> [SKIP][4] ([Intel XE#1201] / [Intel XE#829]) +1 other test skip [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-434/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-466/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180.html * igt@kms_bw@linear-tiling-4-displays-2160x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][5] ([Intel XE#1201] / [Intel XE#367]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-466/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][6] ([Intel XE#1201] / [Intel XE#787]) +223 other tests skip [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-434/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-6.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [FAIL][7] ([Intel XE#650]) +31 other tests fail [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-466/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6.html * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][8] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +32 other tests skip [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-434/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4.html * igt@kms_cdclk@mode-transition@pipe-c-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][9] ([Intel XE#1201] / [Intel XE#314]) +4 other tests skip [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-463/igt@kms_cdclk@mode-transition@pipe-c-dp-4.html * igt@kms_chamelium_color@gamma: - shard-dg2-set2: NOTRUN -> [SKIP][10] ([Intel XE#1201] / [Intel XE#306]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-435/igt@kms_chamelium_color@gamma.html * igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe: - shard-dg2-set2: NOTRUN -> [SKIP][11] ([Intel XE#1201] / [Intel XE#373]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-463/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-dg2-set2: NOTRUN -> [SKIP][12] ([Intel XE#1201] / [Intel XE#307]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-433/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@srm@pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][13] ([Intel XE#1178]) +1 other test fail [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-466/igt@kms_content_protection@srm@pipe-a-dp-4.html * igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy: - shard-dg2-set2: [PASS][14] -> [DMESG-WARN][15] ([Intel XE#1214] / [Intel XE#282] / [Intel XE#910]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-434/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-436/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html * igt@kms_cursor_legacy@cursor-vs-flip-toggle: - shard-dg2-set2: [PASS][16] -> [DMESG-WARN][17] ([Intel XE#1214] / [Intel XE#282]) +2 other tests dmesg-warn [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-466/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-466/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html * igt@kms_cursor_legacy@single-bo@all-pipes: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][18] ([Intel XE#1214] / [Intel XE#282]) +9 other tests dmesg-warn [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-466/igt@kms_cursor_legacy@single-bo@all-pipes.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#929]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-466/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-dp-4.html * igt@kms_flip@flip-vs-suspend@a-hdmi-a6: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][20] ([Intel XE#1214]) +2 other tests dmesg-warn [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-436/igt@kms_flip@flip-vs-suspend@a-hdmi-a6.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode: - shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#1201] / [Intel XE#455]) +10 other tests skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-434/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-mmap-wc: - shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#1201] / [Intel XE#651]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt: - shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#1201] / [Intel XE#653]) +2 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html * igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [FAIL][24] ([Intel XE#616]) +10 other tests fail [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-433/igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-6.html * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b: - shard-dg2-set2: NOTRUN -> [DMESG-FAIL][25] ([Intel XE#1162]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-434/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][26] ([Intel XE#361]) [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-466/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#1201] / [Intel XE#498]) +2 other tests skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-435/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b-hdmi-a-6.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#498]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-435/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d-hdmi-a-6.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format: - shard-dg2-set2: NOTRUN -> [TIMEOUT][29] ([Intel XE#380] / [Intel XE#904] / [Intel XE#909]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-434/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [TIMEOUT][30] ([Intel XE#904] / [Intel XE#909]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-434/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-a-hdmi-a-6.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers: - shard-dg2-set2: [PASS][31] -> [SKIP][32] ([Intel XE#1201]) +10 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-435/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers.html [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-466/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#1201] / [Intel XE#305]) +8 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-433/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b-hdmi-a-6.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#1201] / [Intel XE#305] / [Intel XE#455]) +2 other tests skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-433/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-6.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#1149] / [Intel XE#1201]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-435/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_universal_plane@cursor-fb-leak: - shard-dg2-set2: [PASS][36] -> [FAIL][37] ([Intel XE#771] / [Intel XE#899]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-433/igt@kms_universal_plane@cursor-fb-leak.html [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-435/igt@kms_universal_plane@cursor-fb-leak.html * igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-6: - shard-dg2-set2: [PASS][38] -> [FAIL][39] ([Intel XE#899]) +1 other test fail [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-433/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-6.html [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-435/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-6.html * igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute: - shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#1201] / [Intel XE#1280] / [Intel XE#455]) +1 other test skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-433/igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute.html * igt@xe_evict@evict-beng-mixed-many-threads-small: - shard-dg2-set2: [PASS][41] -> [TIMEOUT][42] ([Intel XE#1473] / [Intel XE#402]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-435/igt@xe_evict@evict-beng-mixed-many-threads-small.html [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-466/igt@xe_evict@evict-beng-mixed-many-threads-small.html * igt@xe_exec_compute_mode@once-bindexecqueue-userptr-invalidate: - shard-dg2-set2: [PASS][43] -> [INCOMPLETE][44] ([Intel XE#1044] / [Intel XE#1195]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-433/igt@xe_exec_compute_mode@once-bindexecqueue-userptr-invalidate.html [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-436/igt@xe_exec_compute_mode@once-bindexecqueue-userptr-invalidate.html * igt@xe_exec_fault_mode@twice-rebind: - shard-dg2-set2: NOTRUN -> [SKIP][45] ([Intel XE#1201] / [Intel XE#288]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-433/igt@xe_exec_fault_mode@twice-rebind.html * igt@xe_live_ktest@xe_dma_buf: - shard-dg2-set2: [PASS][46] -> [SKIP][47] ([Intel XE#1192] / [Intel XE#1201]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-436/igt@xe_live_ktest@xe_dma_buf.html [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-463/igt@xe_live_ktest@xe_dma_buf.html * igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p: - shard-dg2-set2: NOTRUN -> [FAIL][48] ([Intel XE#1173]) +1 other test fail [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-466/igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p.html * igt@xe_query@multigpu-query-invalid-size: - shard-dg2-set2: NOTRUN -> [SKIP][49] ([Intel XE#1201] / [Intel XE#944]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-433/igt@xe_query@multigpu-query-invalid-size.html * {igt@xe_wedged@wedged-at-any-timeout} (NEW): - shard-dg2-set2: NOTRUN -> [SKIP][50] ([Intel XE#1201]) +3 other tests skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-433/igt@xe_wedged@wedged-at-any-timeout.html #### Possible fixes #### * igt@kms_addfb_basic@invalid-get-prop: - shard-dg2-set2: [SKIP][51] ([Intel XE#1201] / [i915#6077]) -> [PASS][52] [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-463/igt@kms_addfb_basic@invalid-get-prop.html [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-435/igt@kms_addfb_basic@invalid-get-prop.html * igt@kms_atomic_transition@modeset-transition-nonblocking-fencing: - shard-dg2-set2: [SKIP][53] ([Intel XE#1201] / [i915#2575]) -> [PASS][54] +163 other tests pass [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-436/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-435/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html * igt@kms_cursor_legacy@cursora-vs-flipa-atomic-transitions: - shard-dg2-set2: [DMESG-WARN][55] ([Intel XE#1214] / [Intel XE#282]) -> [PASS][56] +3 other tests pass [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-434/igt@kms_cursor_legacy@cursora-vs-flipa-atomic-transitions.html [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-436/igt@kms_cursor_legacy@cursora-vs-flipa-atomic-transitions.html * igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-legacy: - shard-dg2-set2: [SKIP][57] ([Intel XE#1201] / [Intel XE#1234]) -> [PASS][58] [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-463/igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-legacy.html [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-434/igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-legacy.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-dg2-set2: [DMESG-WARN][59] ([Intel XE#1162] / [Intel XE#1214]) -> [PASS][60] [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-466/igt@kms_flip@flip-vs-suspend-interruptible.html [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-466/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a6: - shard-dg2-set2: [DMESG-WARN][61] ([Intel XE#1214]) -> [PASS][62] +3 other tests pass [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-466/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a6.html [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-466/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a6.html * igt@kms_pipe_crc_basic@hang-read-crc: - shard-dg2-set2: [SKIP][63] ([Intel XE#1201] / [Intel XE#829]) -> [PASS][64] +2 other tests pass [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-463/igt@kms_pipe_crc_basic@hang-read-crc.html [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-433/igt@kms_pipe_crc_basic@hang-read-crc.html * igt@kms_pm_rpm@cursor-dpms: - shard-dg2-set2: [SKIP][65] ([Intel XE#1201] / [Intel XE#1211]) -> [PASS][66] +2 other tests pass [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-433/igt@kms_pm_rpm@cursor-dpms.html [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-433/igt@kms_pm_rpm@cursor-dpms.html * igt@xe_evict@evict-threads-large: - shard-dg2-set2: [TIMEOUT][67] ([Intel XE#1473] / [Intel XE#392]) -> [PASS][68] +1 other test pass [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-466/igt@xe_evict@evict-threads-large.html [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-433/igt@xe_evict@evict-threads-large.html * igt@xe_exec_balancer@once-parallel-rebind: - shard-dg2-set2: [SKIP][69] ([Intel XE#1201]) -> [PASS][70] +442 other tests pass [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-436/igt@xe_exec_balancer@once-parallel-rebind.html [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-466/igt@xe_exec_balancer@once-parallel-rebind.html * igt@xe_gt_freq@freq_low_max: - shard-dg2-set2: [FAIL][71] ([Intel XE#1045] / [Intel XE#1204]) -> [PASS][72] [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-435/igt@xe_gt_freq@freq_low_max.html [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-436/igt@xe_gt_freq@freq_low_max.html * igt@xe_module_load@reload: - shard-dg2-set2: [FAIL][73] -> [PASS][74] +1 other test pass [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-436/igt@xe_module_load@reload.html [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-436/igt@xe_module_load@reload.html * igt@xe_pm@d3-mmap-vram: - shard-dg2-set2: [FAIL][75] ([Intel XE#1221]) -> [PASS][76] [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-434/igt@xe_pm@d3-mmap-vram.html [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-433/igt@xe_pm@d3-mmap-vram.html #### Warnings #### * igt@core_hotunplug@hotreplug-lateclose: - shard-dg2-set2: [SKIP][77] ([Intel XE#1201]) -> [DMESG-FAIL][78] ([Intel XE#1548]) [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-436/igt@core_hotunplug@hotreplug-lateclose.html [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-466/igt@core_hotunplug@hotreplug-lateclose.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-dg2-set2: [SKIP][79] ([Intel XE#1201] / [i915#6077]) -> [SKIP][80] ([Intel XE#1201] / [Intel XE#623]) [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-463/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-435/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@bad-pitch-0: - shard-dg2-set2: [SKIP][81] ([Intel XE#1201] / [i915#2575]) -> [SKIP][82] ([Intel XE#1201] / [i915#6077]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-436/igt@kms_addfb_basic@bad-pitch-0.html [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-466/igt@kms_addfb_basic@bad-pitch-0.html * igt@kms_atomic@plane-invalid-params-fence: - shard-dg2-set2: [SKIP][83] ([Intel XE#1201] / [i915#2575]) -> [SKIP][84] ([Intel XE#1201]) +7 other tests skip [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-436/igt@kms_atomic@plane-invalid-params-fence.html [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-466/igt@kms_atomic@plane-invalid-params-fence.html * igt@kms_big_fb@4-tiled-addfb-size-overflow: - shard-dg2-set2: [SKIP][85] ([Intel XE#1201]) -> [SKIP][86] ([Intel XE#1201] / [Intel XE#829]) +2 other tests skip [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-436/igt@kms_big_fb@4-tiled-addfb-size-overflow.html [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-466/igt@kms_big_fb@4-tiled-addfb-size-overflow.html * igt@kms_big_fb@x-tiled-16bpp-rotate-270: - shard-dg2-set2: [SKIP][87] ([Intel XE#1201]) -> [SKIP][88] ([Intel XE#1201] / [Intel XE#316]) +6 other tests skip [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-436/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-463/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html * igt@kms_big_fb@x-tiled-8bpp-rotate-90: - shard-dg2-set2: [SKIP][89] ([Intel XE#1201] / [Intel XE#829]) -> [SKIP][90] ([Intel XE#1201] / [Intel XE#316]) [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-463/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-434/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html * igt@kms_big_fb@y-tiled-8bpp-rotate-270: - shard-dg2-set2: [SKIP][91] ([Intel XE#1201] / [Intel XE#829]) -> [SKIP][92] ([Intel XE#1124] / [Intel XE#1201]) +2 other tests skip [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-463/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-436/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-dg2-set2: [SKIP][93] ([Intel XE#1124] / [Intel XE#1201]) -> [SKIP][94] ([Intel XE#1201] / [Intel XE#829]) [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-434/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-466/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-180: - shard-dg2-set2: [SKIP][95] ([Intel XE#1201]) -> [SKIP][96] ([Intel XE#1124] / [Intel XE#1201]) +26 other tests skip [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-436/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-433/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-addfb: - shard-dg2-set2: [SKIP][97] ([Intel XE#1201]) -> [SKIP][98] ([Intel XE#1201] / [Intel XE#619]) [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-436/igt@kms_big_fb@yf-tiled-addfb.html [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-433/igt@kms_big_fb@yf-tiled-addfb.html * igt@kms_bw@linear-tiling-2-displays-1920x1080p: - shard-dg2-set2: [SKIP][99] ([Intel XE#1201] / [i915#2575]) -> [SKIP][100] ([Intel XE#1201] / [Intel XE#367]) +3 other tests skip [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-436/igt@kms_bw@linear-tiling-2-displays-1920x1080p.html [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-463/igt@kms_bw@linear-tiling-2-displays-1920x1080p.html * igt@kms_bw@linear-tiling-2-displays-2160x1440p: - shard-dg2-set2: [SKIP][101] ([Intel XE#1201]) -> [SKIP][102] ([Intel XE#1201] / [Intel XE#367]) [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-463/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-436/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html * igt@kms_bw@linear-tiling-3-displays-1920x1080p: - shard-dg2-set2: [SKIP][103] ([Intel XE#1201] / [Intel XE#367]) -> [SKIP][104] ([Intel XE#1201]) [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-434/igt@kms_bw@linear-tiling-3-displays-1920x1080p.html [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-466/igt@kms_bw@linear-tiling-3-displays-1920x1080p.html * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc: - shard-dg2-set2: [SKIP][105] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) -> [SKIP][106] ([Intel XE#1201] / [Intel XE#829]) [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-434/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-466/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@bad-pixel-format-yf-tiled-ccs: - shard-dg2-set2: [SKIP][107] ([Intel XE#1201]) -> [SKIP][108] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +28 other tests skip [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-436/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs.html [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-434/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs: - shard-dg2-set2: [SKIP][109] ([Intel XE#1201]) -> [FAIL][110] ([Intel XE#650]) +3 other tests fail [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-436/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs.html [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-466/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-xe2-ccs: - shard-dg2-set2: [SKIP][111] ([Intel XE#1201] / [Intel XE#829]) -> [SKIP][112] ([Intel XE#1201] / [Intel XE#1252]) [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-463/igt@kms_ccs@crc-primary-rotation-180-4-tiled-xe2-ccs.html [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-436/igt@kms_ccs@crc-primary-rotation-180-4-tiled-xe2-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc: - shard-dg2-set2: [SKIP][113] ([Intel XE#1201]) -> [FAIL][114] ([Intel XE#616]) [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-436/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-433/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs: - shard-dg2-set2: [SKIP][115] ([Intel XE#1201] / [Intel XE#829]) -> [SKIP][116] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +1 other test skip [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-463/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs.html [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-434/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs.html * igt@kms_chamelium_color@ctm-limited-range: - shard-dg2-set2: [SKIP][117] ([Intel XE#1201] / [Intel XE#306]) -> [SKIP][118] ([Intel XE#1201]) [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-463/igt@kms_chamelium_color@ctm-limited-range.html [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-466/igt@kms_chamelium_color@ctm-limited-range.html * igt@kms_chamelium_color@ctm-negative: - shard-dg2-set2: [SKIP][119] ([Intel XE#1201]) -> [SKIP][120] ([Intel XE#1201] / [Intel XE#306]) [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-463/igt@kms_chamelium_color@ctm-negative.html [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-436/igt@kms_chamelium_color@ctm-negative.html * igt@kms_chamelium_color@ctm-red-to-blue: - shard-dg2-set2: [SKIP][121] ([Intel XE#1201] / [i915#2575]) -> [SKIP][122] ([Intel XE#1201] / [Intel XE#306]) +2 other tests skip [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-436/igt@kms_chamelium_color@ctm-red-to-blue.html [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-466/igt@kms_chamelium_color@ctm-red-to-blue.html * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k: - shard-dg2-set2: [SKIP][123] ([Intel XE#1201] / [Intel XE#373]) -> [SKIP][124] ([Intel XE#1201]) [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-433/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-466/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html * igt@kms_chamelium_frames@hdmi-aspect-ratio: - shard-dg2-set2: [SKIP][125] ([Intel XE#1201]) -> [SKIP][126] ([Intel XE#1201] / [Intel XE#373]) +1 other test skip [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-463/igt@kms_chamelium_frames@hdmi-aspect-ratio.html [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-463/igt@kms_chamelium_frames@hdmi-aspect-ratio.html * igt@kms_chamelium_hpd@vga-hpd-for-each-pipe: - shard-dg2-set2: [SKIP][127] ([Intel XE#1201] / [i915#2575]) -> [SKIP][128] ([Intel XE#1201] / [Intel XE#373]) +22 other tests skip [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-436/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-463/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-dg2-set2: [SKIP][129] ([Intel XE#1201] / [i915#2575]) -> [SKIP][130] ([Intel XE#1201] / [Intel XE#307]) +1 other test skip [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-436/igt@kms_content_protection@dp-mst-lic-type-0.html [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-434/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@srm: - shard-dg2-set2: [SKIP][131] ([Intel XE#1201] / [i915#2575]) -> [FAIL][132] ([Intel XE#1178]) +1 other test fail [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-436/igt@kms_content_protection@srm.html [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-466/igt@kms_content_protection@srm.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-dg2-set2: [SKIP][133] ([Intel XE#1201] / [i915#2575]) -> [SKIP][134] ([Intel XE#1201] / [Intel XE#308]) +6 other tests skip [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-436/igt@kms_cursor_crc@cursor-onscreen-512x512.html [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-434/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-max-size: - shard-dg2-set2: [SKIP][135] ([Intel XE#1201] / [Intel XE#1234]) -> [SKIP][136] ([Intel XE#1201] / [Intel XE#455]) [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-463/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-436/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html * igt@kms_cursor_edge_walk@256x256-right-edge: - shard-dg2-set2: [FAIL][137] ([Intel XE#581]) -> [DMESG-WARN][138] ([Intel XE#1214] / [Intel XE#282]) [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-463/igt@kms_cursor_edge_walk@256x256-right-edge.html [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-433/igt@kms_cursor_edge_walk@256x256-right-edge.html * igt@kms_cursor_edge_walk@64x64-top-bottom: - shard-dg2-set2: [SKIP][139] ([Intel XE#1201] / [i915#2575]) -> [FAIL][140] ([Intel XE#581]) [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-436/igt@kms_cursor_edge_walk@64x64-top-bottom.html [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-466/igt@kms_cursor_edge_walk@64x64-top-bottom.html * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy: - shard-dg2-set2: [DMESG-WARN][141] ([Intel XE#1214] / [Intel XE#282]) -> [DMESG-WARN][142] ([Intel XE#1214] / [Intel XE#282] / [Intel XE#910]) [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-433/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-466/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html * igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size: - shard-dg2-set2: [SKIP][143] ([Intel XE#1201] / [i915#2575]) -> [DMESG-WARN][144] ([Intel XE#1214] / [Intel XE#282] / [Intel XE#910]) [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-436/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-466/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@cursor-vs-flip-varying-size: - shard-dg2-set2: [SKIP][145] ([Intel XE#1201] / [i915#2575]) -> [DMESG-WARN][146] ([Intel XE#1214] / [Intel XE#282]) +12 other tests dmesg-warn [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-436/igt@kms_cursor_legacy@cursor-vs-flip-varying-size.html [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-435/igt@kms_cursor_legacy@cursor-vs-flip-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-dg2-set2: [SKIP][147] ([Intel XE#1201] / [i915#2575]) -> [SKIP][148] ([Intel XE#1201] / [Intel XE#323]) +1 other test skip [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-436/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-463/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_fbcon_fbt@psr: - shard-dg2-set2: [SKIP][149] ([Intel XE#1201]) -> [SKIP][150] ([Intel XE#1201] / [Intel XE#776]) [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-436/igt@kms_fbcon_fbt@psr.html [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-466/igt@kms_fbcon_fbt@psr.html * igt@kms_feature_discovery@display-4x: - shard-dg2-set2: [SKIP][151] ([Intel XE#1201] / [i915#2575]) -> [SKIP][152] ([Intel XE#1138] / [Intel XE#1201]) [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-436/igt@kms_feature_discovery@display-4x.html [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-466/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@psr2: - shard-dg2-set2: [SKIP][153] ([Intel XE#1201] / [i915#2575]) -> [SKIP][154] ([Intel XE#1135] / [Intel XE#1201]) [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-436/igt@kms_feature_discovery@psr2.html [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-434/igt@kms_feature_discovery@psr2.html * igt@kms_flip@flip-vs-suspend: - shard-dg2-set2: [SKIP][155] ([Intel XE#1201] / [i915#2575]) -> [DMESG-WARN][156] ([Intel XE#1214]) +2 other tests dmesg-warn [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-436/igt@kms_flip@flip-vs-suspend.html [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-436/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-dg2-set2: [SKIP][157] ([Intel XE#1201]) -> [SKIP][158] ([Intel XE#1201] / [Intel XE#455]) +17 other tests skip [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-436/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-435/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling: - shard-dg2-set2: [SKIP][159] ([Intel XE#1201] / [Intel XE#455]) -> [SKIP][160] ([Intel XE#1201]) +1 other test skip [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-463/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-466/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][161] ([Intel XE#1201]) -> [SKIP][162] ([Intel XE#1201] / [Intel XE#651]) +74 other tests skip [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc.html [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen: - shard-dg2-set2: [SKIP][163] ([Intel XE#1201] / [Intel XE#651]) -> [SKIP][164] ([Intel XE#1201]) +3 other tests skip [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-render: - shard-dg2-set2: [SKIP][165] ([Intel XE#1201] / [Intel XE#653]) -> [SKIP][166] ([Intel XE#1201] / [Intel XE#1234]) [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-render.html [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt: - shard-dg2-set2: [SKIP][167] ([Intel XE#1201] / [Intel XE#653]) -> [SKIP][168] ([Intel XE#1201]) +1 other test skip [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt.html [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2-set2: [SKIP][169] ([Intel XE#1201]) -> [SKIP][170] ([Intel XE#1201] / [Intel XE#653]) +74 other tests skip [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-dg2-set2: [SKIP][171] ([Intel XE#1201]) -> [SKIP][172] ([Intel XE#1201] / [Intel XE#658]) [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt@kms_frontbuffer_tracking@plane-fbc-rte: - shard-dg2-set2: [SKIP][173] ([Intel XE#1201]) -> [SKIP][174] ([Intel XE#1158] / [Intel XE#1201]) [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-436/igt@kms_frontbuffer_tracking@plane-fbc-rte.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-434/igt@kms_frontbuffer_tracking@plane-fbc-rte.html * igt@kms_hdmi_inject@inject-audio: - shard-dg2-set2: [SKIP][175] ([Intel XE#1201] / [i915#2575]) -> [SKIP][176] ([Intel XE#1201] / [Intel XE#417]) [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-436/igt@kms_hdmi_inject@inject-audio.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-463/igt@kms_hdmi_inject@inject-audio.html * igt@kms_hdr@static-toggle-suspend: - shard-dg2-set2: [SKIP][177] ([Intel XE#1201] / [i915#2575]) -> [FAIL][178] ([Intel XE#616]) [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-436/igt@kms_hdr@static-toggle-suspend.html [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-433/igt@kms_hdr@static-toggle-suspend.html * igt@kms_plane@plane-panning-bottom-right-suspend: - shard-dg2-set2: [SKIP][179] ([Intel XE#1201] / [Intel XE#829]) -> [DMESG-FAIL][180] ([Intel XE#1162]) [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-463/igt@kms_plane@plane-panning-bottom-right-suspend.html [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-434/igt@kms_plane@plane-panning-bottom-right-suspend.html * igt@kms_plane_lowres@tiling-none: - shard-dg2-set2: [SKIP][181] ([Intel XE#1201] / [i915#2575]) -> [SKIP][182] ([Intel XE#1201] / [Intel XE#829]) [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-436/igt@kms_plane_lowres@tiling-none.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-466/igt@kms_plane_lowres@tiling-none.html * igt@kms_plane_multiple@tiling-y: - shard-dg2-set2: [SKIP][183] ([Intel XE#1201] / [i915#2575]) -> [SKIP][184] ([Intel XE#1201] / [Intel XE#455]) +19 other tests skip [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-436/igt@kms_plane_multiple@tiling-y.html [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-463/igt@kms_plane_multiple@tiling-y.html * igt@kms_plane_scaling@intel-max-src-size: - shard-dg2-set2: [SKIP][185] ([Intel XE#1201] / [Intel XE#455]) -> [FAIL][186] ([Intel XE#361]) [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-435/igt@kms_plane_scaling@intel-max-src-size.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-466/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation: - shard-dg2-set2: [SKIP][187] ([Intel XE#1201] / [i915#2575]) -> [SKIP][188] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#498]) [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-436/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-435/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats: - shard-dg2-set2: [TIMEOUT][189] ([Intel XE#295] / [Intel XE#380] / [Intel XE#909]) -> [TIMEOUT][190] ([Intel XE#909]) [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-433/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-434/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-a-hdmi-a-6: - shard-dg2-set2: [TIMEOUT][191] ([Intel XE#904] / [Intel XE#909]) -> [TIMEOUT][192] ([Intel XE#909]) [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-433/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-a-hdmi-a-6.html [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-434/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-a-hdmi-a-6.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling: - shard-dg2-set2: [SKIP][193] ([Intel XE#1201] / [i915#2575]) -> [SKIP][194] ([Intel XE#1201] / [Intel XE#305] / [Intel XE#455]) +2 other tests skip [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-436/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-463/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html * igt@kms_pm_backlight@fade: - shard-dg2-set2: [SKIP][195] ([Intel XE#1201]) -> [SKIP][196] ([Intel XE#1201] / [Intel XE#870]) +1 other test skip [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-436/igt@kms_pm_backlight@fade.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-463/igt@kms_pm_backlight@fade.html * igt@kms_pm_dc@dc6-dpms: - shard-dg2-set2: [SKIP][197] ([Intel XE#1201]) -> [SKIP][198] ([Intel XE#1201] / [Intel XE#908]) [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-436/igt@kms_pm_dc@dc6-dpms.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-436/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_rpm@basic-rte: - shard-dg2-set2: [SKIP][199] ([Intel XE#1201]) -> [FAIL][200] ([Intel XE#1203]) [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-436/igt@kms_pm_rpm@basic-rte.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-433/igt@kms_pm_rpm@basic-rte.html * igt@kms_pm_rpm@dpms-mode-unset-lpsp: - shard-dg2-set2: [SKIP][201] ([Intel XE#1201]) -> [SKIP][202] ([Intel XE#1201] / [Intel XE#1211]) +1 other test skip [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-436/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-433/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html * igt@kms_psr2_su@page_flip-nv12: - shard-dg2-set2: [SKIP][203] ([Intel XE#1201]) -> [SKIP][204] ([Intel XE#1122] / [Intel XE#1201]) [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-436/igt@kms_psr2_su@page_flip-nv12.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-434/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr@pr-basic: - shard-dg2-set2: [SKIP][205] ([Intel XE#1201] / [Intel XE#929]) -> [SKIP][206] ([Intel XE#1201] / [Intel XE#1234]) [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-434/igt@kms_psr@pr-basic.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-466/igt@kms_psr@pr-basic.html * igt@kms_psr@psr-sprite-plane-onoff: - shard-dg2-set2: [SKIP][207] ([Intel XE#1201]) -> [SKIP][208] ([Intel XE#1201] / [Intel XE#929]) +46 other tests skip [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-436/igt@kms_psr@psr-sprite-plane-onoff.html [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-434/igt@kms_psr@psr-sprite-plane-onoff.html * igt@kms_rotation_crc@primary-rotation-270: - shard-dg2-set2: [SKIP][209] ([Intel XE#1201] / [Intel XE#327]) -> [SKIP][210] ([Intel XE#1201] / [Intel XE#829]) [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-435/igt@kms_rotation_crc@primary-rotation-270.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-466/igt@kms_rotation_crc@primary-rotation-270.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-dg2-set2: [SKIP][211] ([Intel XE#1201] / [i915#2575]) -> [SKIP][212] ([Intel XE#1127] / [Intel XE#1201]) [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-436/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-433/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-dg2-set2: [SKIP][213] ([Intel XE#1201] / [Intel XE#829]) -> [SKIP][214] ([Intel XE#1127] / [Intel XE#1201]) [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-463/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-433/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-dg2-set2: [SKIP][215] ([Intel XE#1201] / [i915#2575]) -> [SKIP][216] ([Intel XE#1201] / [Intel XE#327]) +3 other tests skip [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-436/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-433/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2-set2: [SKIP][217] ([Intel XE#1201] / [Intel XE#362]) -> [SKIP][218] ([Intel XE#1201]) [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-434/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_tv_load_detect@load-detect: - shard-dg2-set2: [SKIP][219] ([Intel XE#1201] / [i915#2575]) -> [SKIP][220] ([Intel XE#1201] / [Intel XE#330]) [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-436/igt@kms_tv_load_detect@load-detect.html [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-435/igt@kms_tv_load_detect@load-detect.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-dg2-set2: [SKIP][221] ([Intel XE#1201] / [i915#2575]) -> [SKIP][222] ([Intel XE#1201] / [Intel XE#756]) +2 other tests skip [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-436/igt@kms_writeback@writeback-check-output-xrgb2101010.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-466/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-dg2-set2: [SKIP][223] ([Intel XE#1201] / [i915#2575]) -> [SKIP][224] ([Intel XE#1091] / [Intel XE#1201]) [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-436/igt@sriov_basic@enable-vfs-autoprobe-off.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-436/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@xe_compute@ccs-mode-basic: - shard-dg2-set2: [SKIP][225] ([Intel XE#1201]) -> [FAIL][226] ([Intel XE#1050]) [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-436/igt@xe_compute@ccs-mode-basic.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-466/igt@xe_compute@ccs-mode-basic.html * igt@xe_compute_preempt@compute-preempt: - shard-dg2-set2: [SKIP][227] ([Intel XE#1201]) -> [SKIP][228] ([Intel XE#1201] / [Intel XE#1280] / [Intel XE#455]) +1 other test skip [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-436/igt@xe_compute_preempt@compute-preempt.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-466/igt@xe_compute_preempt@compute-preempt.html * igt@xe_copy_basic@mem-copy-linear-0xfffe: - shard-dg2-set2: [SKIP][229] ([Intel XE#1201]) -> [SKIP][230] ([Intel XE#1123] / [Intel XE#1201]) +3 other tests skip [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-436/igt@xe_copy_basic@mem-copy-linear-0xfffe.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-435/igt@xe_copy_basic@mem-copy-linear-0xfffe.html * igt@xe_copy_basic@mem-set-linear-0x3fff: - shard-dg2-set2: [SKIP][231] ([Intel XE#1201]) -> [SKIP][232] ([Intel XE#1126] / [Intel XE#1201]) [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-436/igt@xe_copy_basic@mem-set-linear-0x3fff.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-466/igt@xe_copy_basic@mem-set-linear-0x3fff.html * igt@xe_evict@evict-beng-large-multi-vm-cm: - shard-dg2-set2: [SKIP][233] ([Intel XE#1201]) -> [DMESG-FAIL][234] ([Intel XE#821]) [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-436/igt@xe_evict@evict-beng-large-multi-vm-cm.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-463/igt@xe_evict@evict-beng-large-multi-vm-cm.html * igt@xe_evict@evict-beng-mixed-many-threads-large: - shard-dg2-set2: [INCOMPLETE][235] ([Intel XE#1195] / [Intel XE#1473] / [Intel XE#392]) -> [TIMEOUT][236] ([Intel XE#1041] / [Intel XE#1473] / [Intel XE#392]) [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-466/igt@xe_evict@evict-beng-mixed-many-threads-large.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-434/igt@xe_evict@evict-beng-mixed-many-threads-large.html * igt@xe_evict@evict-beng-mixed-threads-large: - shard-dg2-set2: [SKIP][237] ([Intel XE#1201]) -> [TIMEOUT][238] ([Intel XE#1473] / [Intel XE#392] / [Intel XE#931]) [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-436/igt@xe_evict@evict-beng-mixed-threads-large.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-436/igt@xe_evict@evict-beng-mixed-threads-large.html * igt@xe_evict@evict-mixed-many-threads-large: - shard-dg2-set2: [SKIP][239] ([Intel XE#1201]) -> [TIMEOUT][240] ([Intel XE#1041] / [Intel XE#1473] / [Intel XE#392]) [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-436/igt@xe_evict@evict-mixed-many-threads-large.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-434/igt@xe_evict@evict-mixed-many-threads-large.html * igt@xe_evict@evict-mixed-threads-large: - shard-dg2-set2: [TIMEOUT][241] ([Intel XE#1473] / [Intel XE#392]) -> [INCOMPLETE][242] ([Intel XE#1195] / [Intel XE#1473] / [Intel XE#392]) [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-434/igt@xe_evict@evict-mixed-threads-large.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-433/igt@xe_evict@evict-mixed-threads-large.html * igt@xe_exec_fault_mode@twice-userptr-invalidate-race: - shard-dg2-set2: [SKIP][243] ([Intel XE#1201]) -> [SKIP][244] ([Intel XE#1201] / [Intel XE#288]) +41 other tests skip [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-436/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-434/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html * igt@xe_exec_reset@cm-gt-reset: - shard-dg2-set2: [SKIP][245] ([Intel XE#1201]) -> [FAIL][246] ([Intel XE#1068]) [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-436/igt@xe_exec_reset@cm-gt-reset.html [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-436/igt@xe_exec_reset@cm-gt-reset.html * igt@xe_exec_threads@threads-hang-userptr-invalidate-race: - shard-dg2-set2: [SKIP][247] ([Intel XE#1201]) -> [FAIL][248] ([Intel XE#1081]) [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-436/igt@xe_exec_threads@threads-hang-userptr-invalidate-race.html [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-463/igt@xe_exec_threads@threads-hang-userptr-invalidate-race.html * igt@xe_media_fill@media-fill: - shard-dg2-set2: [SKIP][249] ([Intel XE#1201]) -> [SKIP][250] ([Intel XE#1201] / [Intel XE#560]) [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-436/igt@xe_media_fill@media-fill.html [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-435/igt@xe_media_fill@media-fill.html * igt@xe_mmap@small-bar: - shard-dg2-set2: [SKIP][251] ([Intel XE#1201]) -> [SKIP][252] ([Intel XE#1201] / [Intel XE#512]) [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-436/igt@xe_mmap@small-bar.html [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-463/igt@xe_mmap@small-bar.html * igt@xe_pat@display-vs-wb-transient: - shard-dg2-set2: [SKIP][253] ([Intel XE#1201]) -> [SKIP][254] ([Intel XE#1201] / [Intel XE#1337]) [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-436/igt@xe_pat@display-vs-wb-transient.html [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-463/igt@xe_pat@display-vs-wb-transient.html * igt@xe_pat@pat-index-xelpg: - shard-dg2-set2: [SKIP][255] ([Intel XE#1201]) -> [SKIP][256] ([Intel XE#1201] / [Intel XE#979]) [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-436/igt@xe_pat@pat-index-xelpg.html [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-435/igt@xe_pat@pat-index-xelpg.html * igt@xe_peer2peer@read: - shard-dg2-set2: [SKIP][257] ([Intel XE#1061] / [Intel XE#1201]) -> [FAIL][258] ([Intel XE#1173]) +1 other test fail [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-436/igt@xe_peer2peer@read.html [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-466/igt@xe_peer2peer@read.html * igt@xe_pm@d3cold-basic: - shard-dg2-set2: [INCOMPLETE][259] ([Intel XE#1195] / [Intel XE#1358]) -> [SKIP][260] ([Intel XE#1201] / [Intel XE#366]) [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-466/igt@xe_pm@d3cold-basic.html [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-463/igt@xe_pm@d3cold-basic.html * igt@xe_pm@s3-basic-exec: - shard-dg2-set2: [SKIP][261] ([Intel XE#1201]) -> [DMESG-WARN][262] ([Intel XE#1162] / [Intel XE#1214]) +1 other test dmesg-warn [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-436/igt@xe_pm@s3-basic-exec.html [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-463/igt@xe_pm@s3-basic-exec.html * igt@xe_pm@s3-d3cold-basic-exec: - shard-dg2-set2: [SKIP][263] ([Intel XE#1201]) -> [SKIP][264] ([Intel XE#1201] / [Intel XE#366]) +3 other tests skip [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-436/igt@xe_pm@s3-d3cold-basic-exec.html [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-436/igt@xe_pm@s3-d3cold-basic-exec.html * igt@xe_pm@s4-multiple-execs: - shard-dg2-set2: [FAIL][265] ([Intel XE#1043] / [Intel XE#845]) -> [DMESG-FAIL][266] ([Intel XE#1162] / [Intel XE#1551]) [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-435/igt@xe_pm@s4-multiple-execs.html [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-434/igt@xe_pm@s4-multiple-execs.html * igt@xe_query@multigpu-query-uc-fw-version-huc: - shard-dg2-set2: [SKIP][267] ([Intel XE#1201]) -> [SKIP][268] ([Intel XE#1201] / [Intel XE#944]) +6 other tests skip [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7819/shard-dg2-436/igt@xe_query@multigpu-query-uc-fw-version-huc.html [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11062/shard-dg2-433/igt@xe_query@multigpu-query-uc-fw-version-huc.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1041]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1041 [Intel XE#1043]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1043 [Intel XE#1044]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1044 [Intel XE#1045]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1045 [Intel XE#1050]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1050 [Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061 [Intel XE#1068]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1068 [Intel XE#1081]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1081 [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091 [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122 [Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126 [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127 [Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135 [Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138 [Intel XE#1149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1149 [Intel XE#1158]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1158 [Intel XE#1162]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1162 [Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192 [Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195 [Intel XE#1201]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201 [Intel XE#1203]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1203 [Intel XE#1204]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1204 [Intel XE#1211]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1211 [Intel XE#1214]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1214 [Intel XE#1221]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1221 [Intel XE#1234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1234 [Intel XE#1252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1252 [Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280 [Intel XE#1337]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1337 [Intel XE#1345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1345 [Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358 [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473 [Intel XE#1548]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1548 [Intel XE#1551]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1551 [Intel XE#282]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/282 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#295]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/295 [Intel XE#305]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/305 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307 [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308 [Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323 [Intel XE#327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/327 [Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330 [Intel XE#361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/361 [Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362 [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/380 [Intel XE#392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/392 [Intel XE#402]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/402 [Intel XE#417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/417 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#498]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/498 [Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512 [Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560 [Intel XE#581]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/581 [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616 [Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619 [Intel XE#623]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/623 [Intel XE#650]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/650 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653 [Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658 [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756 [Intel XE#771]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/771 [Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#821]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/821 [Intel XE#829]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/829 [Intel XE#845]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/845 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899 [Intel XE#904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/904 [Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908 [Intel XE#909]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/909 [Intel XE#910]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/910 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#931]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/931 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 [i915#6077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6077 Build changes ------------- * IGT: IGT_7819 -> IGTPW_11062 * Linux: xe-1162-e1dc9638bb47a28181fee1a9a180445ca2a8b9cf -> xe-1163-b5b592a3902a51cc5747c625aa1898768d4ce79a IGTPW_11062: a72f03b3feb0591c8cf0260253a8a04b9f6ea779 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_7819: 98e0d03839ce31141328a2935eb193361eca61e3 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-1162-e1dc9638bb47a28181fee1a9a180445ca2a8b9cf: e1dc9638bb47a28181fee1a9a180445ca2a8b9cf xe-1163-b5b592a3902a51cc5747c625aa1898768d4ce79a: b5b592a3902a51cc5747c625aa1898768d4ce79a == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-132799v1/index.html [-- Attachment #2: Type: text/html, Size: 95352 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH i-g-t 1/4] tests/intel/xe_wedged: Introduce a new test for Xe device wedged state
@ 2024-04-23 22:20 Rodrigo Vivi
2024-04-23 22:20 ` [PATCH i-g-t 4/4] tests/intel/xe_wedged: Test wedged_mode=1 after had toggled mode=2 Rodrigo Vivi
0 siblings, 1 reply; 10+ messages in thread
From: Rodrigo Vivi @ 2024-04-23 22:20 UTC (permalink / raw)
To: igt-dev; +Cc: Rodrigo Vivi, Lucas De Marchi, Himal Prasad Ghimiray
Let's inject a gt_reset failure that will put Xe device in the
new wedged state, then we confirm the IOCTL is blocked and we
reload the driver to get back to a clean state for other test
execution, since wedged state in Xe is a final state that can only
be cleared with a device rebind/reprobe.
The fault injection of this test is entirely based on xe_uevent
provided by Himal.
v2: Use rebind instead of module reload (Lucas)
And other improvements also pointed out by Lucas.
Cc: Lucas De Marchi <lucas.demarchi@intel.com>
Cc: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com>
Reviewed-by: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com>
Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
---
tests/intel/xe_wedged.c | 108 ++++++++++++++++++++++++++++++++++++++++
tests/meson.build | 1 +
2 files changed, 109 insertions(+)
create mode 100644 tests/intel/xe_wedged.c
diff --git a/tests/intel/xe_wedged.c b/tests/intel/xe_wedged.c
new file mode 100644
index 000000000..f2587cc43
--- /dev/null
+++ b/tests/intel/xe_wedged.c
@@ -0,0 +1,108 @@
+// SPDX-License-Identifier: MIT
+/*
+ * Copyright © 2024 Intel Corporation
+ */
+
+/**
+ * TEST: cause fake gt reset failure which put Xe device in wedged state
+ * Category: Software building block
+ * Sub-category: driver
+ * Functionality: wedged
+ * Test category: functionality test
+ */
+
+#include <limits.h>
+#include <dirent.h>
+
+#include "igt.h"
+#include "igt_device.h"
+#include "igt_kmod.h"
+#include "igt_sysfs.h"
+
+#include "xe/xe_ioctl.h"
+
+static void force_wedged(int fd)
+{
+ igt_debugfs_write(fd, "fail_gt_reset/probability", "100");
+ igt_debugfs_write(fd, "fail_gt_reset/times", "2");
+
+ xe_force_gt_reset(fd, 0);
+ sleep(1);
+}
+
+static int rebind_xe(int fd)
+{
+ char pci_slot[NAME_MAX];
+ int sysfs;
+
+ igt_device_get_pci_slot_name(fd, pci_slot);
+
+ sysfs = open("/sys/bus/pci/drivers/xe", O_DIRECTORY);
+ igt_assert(sysfs);
+
+ igt_assert(igt_sysfs_set(sysfs, "unbind", pci_slot));
+
+ /*
+ * We need to close the client for a proper release, before
+ * binding back again.
+ */
+ close(fd);
+
+ igt_assert(igt_sysfs_set(sysfs, "bind", pci_slot));
+ close(sysfs);
+
+ /* Renew the client connection */
+ fd = drm_open_driver(DRIVER_XE);
+ igt_assert(fd);
+
+ return fd;
+}
+
+static int simple_ioctl(int fd)
+{
+ int ret;
+
+ struct drm_xe_vm_create create = {
+ .extensions = 0,
+ .flags = 0,
+ };
+
+ ret = igt_ioctl(fd, DRM_IOCTL_XE_VM_CREATE, &create);
+
+ if (ret == 0)
+ xe_vm_destroy(fd, create.vm_id);
+
+ return ret;
+}
+
+/**
+ * SUBTEST: basic-wedged
+ * Description: Force Xe device wedged after injecting a failure in GT reset
+ */
+igt_main
+{
+ int fd;
+
+ igt_fixture {
+ fd = drm_open_driver(DRIVER_XE);
+ }
+
+ igt_subtest("basic-wedged") {
+ igt_require(igt_debugfs_exists(fd, "fail_gt_reset/probability",
+ O_RDWR));
+
+ igt_assert_eq(simple_ioctl(fd), 0);
+ force_wedged(fd);
+ igt_assert_neq(simple_ioctl(fd), 0);
+ fd = rebind_xe(fd);
+ igt_assert_eq(simple_ioctl(fd), 0);
+ }
+
+ igt_fixture {
+ if (igt_debugfs_exists(fd, "fail_gt_reset/probability", O_RDWR)) {
+ igt_debugfs_write(fd, "fail_gt_reset/probability", "0");
+ igt_debugfs_write(fd, "fail_gt_reset/times", "1");
+ }
+ drm_close_driver(fd);
+ }
+}
diff --git a/tests/meson.build b/tests/meson.build
index a856510fc..65b8bf23b 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -274,6 +274,7 @@ intel_kms_progs = [
]
intel_xe_progs = [
+ 'xe_wedged',
'xe_ccs',
'xe_create',
'xe_compute',
--
2.44.0
^ permalink raw reply related [flat|nested] 10+ messages in thread* [PATCH i-g-t 4/4] tests/intel/xe_wedged: Test wedged_mode=1 after had toggled mode=2 2024-04-23 22:20 [PATCH i-g-t 1/4] " Rodrigo Vivi @ 2024-04-23 22:20 ` Rodrigo Vivi 0 siblings, 0 replies; 10+ messages in thread From: Rodrigo Vivi @ 2024-04-23 22:20 UTC (permalink / raw) To: igt-dev; +Cc: Rodrigo Vivi, Himal Prasad Ghimiray Let's toggle between different modes. Suggested-by: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com> Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com> --- tests/intel/xe_wedged.c | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/tests/intel/xe_wedged.c b/tests/intel/xe_wedged.c index 35fc905e7..b9bd49fad 100644 --- a/tests/intel/xe_wedged.c +++ b/tests/intel/xe_wedged.c @@ -216,6 +216,10 @@ simple_hang(int fd) * SUBTEST: wedged-at-any-timeout * Description: Force Xe device wedged after a simple guc timeout */ +/** + * SUBTEST: wedged-mode-toggle + * Description: Test wedged.mode=1 after testing wedged.mode=2 + */ igt_main { struct drm_xe_engine_class_instance *hwe; @@ -257,6 +261,16 @@ igt_main simple_exec(fd, hwe); } + igt_subtest_f("wedged-mode-toggle") { + igt_require(igt_debugfs_exists(fd, "wedged_mode", O_RDWR)); + + igt_debugfs_write(fd, "wedged_mode", "2"); + igt_assert_eq(simple_ioctl(fd), 0); + igt_debugfs_write(fd, "wedged_mode", "1"); + simple_hang(fd); + igt_assert_eq(simple_ioctl(fd), 0); + } + igt_fixture { if (igt_debugfs_exists(fd, "fail_gt_reset/probability", O_RDWR)) { igt_debugfs_write(fd, "fail_gt_reset/probability", "0"); -- 2.44.0 ^ permalink raw reply related [flat|nested] 10+ messages in thread
end of thread, other threads:[~2024-04-24 16:51 UTC | newest] Thread overview: 10+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-04-23 22:22 [PATCH i-g-t 1/4] tests/intel/xe_wedged: Introduce a new test for Xe device wedged state Rodrigo Vivi 2024-04-23 22:22 ` [PATCH i-g-t 2/4] tests/intel/xe_wedged: Also add a simple exec to confirm GPU health Rodrigo Vivi 2024-04-23 22:22 ` [PATCH i-g-t 3/4] tests/intel/xe_wedged: Introduce test for wedged_mode=2 Rodrigo Vivi 2024-04-23 22:22 ` [PATCH i-g-t 4/4] tests/intel/xe_wedged: Test wedged_mode=1 after had toggled mode=2 Rodrigo Vivi 2024-04-24 2:52 ` Ghimiray, Himal Prasad 2024-04-24 0:24 ` ✗ Fi.CI.BAT: failure for series starting with [i-g-t,1/4] tests/intel/xe_wedged: Introduce a new test for Xe device wedged state Patchwork 2024-04-24 16:50 ` Kamil Konieczny 2024-04-24 1:09 ` ✓ CI.xeBAT: success " Patchwork 2024-04-24 14:35 ` ✗ CI.xeFULL: failure " Patchwork -- strict thread matches above, loose matches on Subject: below -- 2024-04-23 22:20 [PATCH i-g-t 1/4] " Rodrigo Vivi 2024-04-23 22:20 ` [PATCH i-g-t 4/4] tests/intel/xe_wedged: Test wedged_mode=1 after had toggled mode=2 Rodrigo Vivi
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox