* [PATCH i-g-t 1/3] tests/intel/xe_wedged: Introduce a new test for Xe device wedged state
@ 2024-04-09 22:19 Rodrigo Vivi
2024-04-09 22:19 ` [PATCH i-g-t 2/3] tests/intel/xe_wedged: Also add a simple exec to confirm GPU health Rodrigo Vivi
` (6 more replies)
0 siblings, 7 replies; 10+ messages in thread
From: Rodrigo Vivi @ 2024-04-09 22:19 UTC (permalink / raw)
To: igt-dev; +Cc: intel-xe, 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>
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/3] tests/intel/xe_wedged: Also add a simple exec to confirm GPU health 2024-04-09 22:19 [PATCH i-g-t 1/3] tests/intel/xe_wedged: Introduce a new test for Xe device wedged state Rodrigo Vivi @ 2024-04-09 22:19 ` Rodrigo Vivi 2024-04-18 14:35 ` Ghimiray, Himal Prasad 2024-04-09 22:19 ` [PATCH i-g-t 3/3] tests/intel/xe_wedged: Introduce test for wedged_mode=2 Rodrigo Vivi ` (5 subsequent siblings) 6 siblings, 1 reply; 10+ messages in thread From: Rodrigo Vivi @ 2024-04-09 22:19 UTC (permalink / raw) To: igt-dev; +Cc: intel-xe, 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. 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
* Re: [PATCH i-g-t 2/3] tests/intel/xe_wedged: Also add a simple exec to confirm GPU health 2024-04-09 22:19 ` [PATCH i-g-t 2/3] tests/intel/xe_wedged: Also add a simple exec to confirm GPU health Rodrigo Vivi @ 2024-04-18 14:35 ` Ghimiray, Himal Prasad 0 siblings, 0 replies; 10+ messages in thread From: Ghimiray, Himal Prasad @ 2024-04-18 14:35 UTC (permalink / raw) To: Rodrigo Vivi, igt-dev; +Cc: intel-xe On 10-04-2024 03:49, Rodrigo Vivi wrote: > 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. > > 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); LGTM Reviewed-by: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com> > } > > igt_fixture { ^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH i-g-t 3/3] tests/intel/xe_wedged: Introduce test for wedged_mode=2 2024-04-09 22:19 [PATCH i-g-t 1/3] tests/intel/xe_wedged: Introduce a new test for Xe device wedged state Rodrigo Vivi 2024-04-09 22:19 ` [PATCH i-g-t 2/3] tests/intel/xe_wedged: Also add a simple exec to confirm GPU health Rodrigo Vivi @ 2024-04-09 22:19 ` Rodrigo Vivi 2024-04-18 3:55 ` Ghimiray, Himal Prasad 2024-04-09 23:22 ` ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/3] tests/intel/xe_wedged: Introduce a new test for Xe device wedged state Patchwork ` (4 subsequent siblings) 6 siblings, 1 reply; 10+ messages in thread From: Rodrigo Vivi @ 2024-04-09 22:19 UTC (permalink / raw) To: igt-dev; +Cc: intel-xe, 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. 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
* Re: [PATCH i-g-t 3/3] tests/intel/xe_wedged: Introduce test for wedged_mode=2 2024-04-09 22:19 ` [PATCH i-g-t 3/3] tests/intel/xe_wedged: Introduce test for wedged_mode=2 Rodrigo Vivi @ 2024-04-18 3:55 ` Ghimiray, Himal Prasad 0 siblings, 0 replies; 10+ messages in thread From: Ghimiray, Himal Prasad @ 2024-04-18 3:55 UTC (permalink / raw) To: igt-dev On 10-04-2024 03:49, Rodrigo Vivi wrote: > 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. Patch LGTM. 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"); ^ permalink raw reply [flat|nested] 10+ messages in thread
* ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/3] tests/intel/xe_wedged: Introduce a new test for Xe device wedged state 2024-04-09 22:19 [PATCH i-g-t 1/3] tests/intel/xe_wedged: Introduce a new test for Xe device wedged state Rodrigo Vivi 2024-04-09 22:19 ` [PATCH i-g-t 2/3] tests/intel/xe_wedged: Also add a simple exec to confirm GPU health Rodrigo Vivi 2024-04-09 22:19 ` [PATCH i-g-t 3/3] tests/intel/xe_wedged: Introduce test for wedged_mode=2 Rodrigo Vivi @ 2024-04-09 23:22 ` Patchwork 2024-04-09 23:22 ` ✓ CI.xeBAT: " Patchwork ` (3 subsequent siblings) 6 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2024-04-09 23:22 UTC (permalink / raw) To: Rodrigo Vivi; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 9332 bytes --] == Series Details == Series: series starting with [i-g-t,1/3] tests/intel/xe_wedged: Introduce a new test for Xe device wedged state URL : https://patchwork.freedesktop.org/series/132234/ State : success == Summary == CI Bug Log - changes from CI_DRM_14552 -> IGTPW_10993 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/index.html Participating hosts (37 -> 29) ------------------------------ Additional (3): bat-kbl-2 fi-rkl-11600 fi-cfl-8109u Missing (11): fi-kbl-7567u bat-mtlp-8 fi-bsw-n3050 fi-apl-guc fi-glk-j4005 fi-kbl-8809g bat-atsm-1 fi-elk-e7500 bat-dg2-11 bat-jsl-1 bat-arls-2 Known issues ------------ Here are the changes found in IGTPW_10993 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@debugfs_test@basic-hwmon: - fi-rkl-11600: NOTRUN -> [SKIP][1] ([i915#9318]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/fi-rkl-11600/igt@debugfs_test@basic-hwmon.html * igt@fbdev@info: - bat-kbl-2: NOTRUN -> [SKIP][2] ([i915#1849]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/bat-kbl-2/igt@fbdev@info.html * igt@gem_huc_copy@huc-copy: - fi-cfl-8109u: NOTRUN -> [SKIP][3] ([i915#2190]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/fi-cfl-8109u/igt@gem_huc_copy@huc-copy.html - fi-rkl-11600: NOTRUN -> [SKIP][4] ([i915#2190]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/fi-rkl-11600/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@parallel-random-engines: - bat-kbl-2: NOTRUN -> [SKIP][5] +39 other tests skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/bat-kbl-2/igt@gem_lmem_swapping@parallel-random-engines.html - fi-rkl-11600: NOTRUN -> [SKIP][6] ([i915#4613]) +3 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/fi-rkl-11600/igt@gem_lmem_swapping@parallel-random-engines.html * igt@gem_lmem_swapping@verify-random: - fi-cfl-8109u: NOTRUN -> [SKIP][7] ([i915#4613]) +3 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/fi-cfl-8109u/igt@gem_lmem_swapping@verify-random.html * igt@gem_tiled_pread_basic: - fi-rkl-11600: NOTRUN -> [SKIP][8] ([i915#3282]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/fi-rkl-11600/igt@gem_tiled_pread_basic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - fi-rkl-11600: NOTRUN -> [SKIP][9] ([i915#4103]) +1 other test skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/fi-rkl-11600/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_dsc@dsc-basic: - fi-rkl-11600: NOTRUN -> [SKIP][10] ([i915#3555] / [i915#3840]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/fi-rkl-11600/igt@kms_dsc@dsc-basic.html * igt@kms_force_connector_basic@force-load-detect: - fi-rkl-11600: NOTRUN -> [SKIP][11] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/fi-rkl-11600/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_pm_backlight@basic-brightness: - fi-rkl-11600: NOTRUN -> [SKIP][12] ([i915#5354]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/fi-rkl-11600/igt@kms_pm_backlight@basic-brightness.html - fi-cfl-8109u: NOTRUN -> [SKIP][13] +11 other tests skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/fi-cfl-8109u/igt@kms_pm_backlight@basic-brightness.html * igt@kms_psr@psr-sprite-plane-onoff: - fi-rkl-11600: NOTRUN -> [SKIP][14] ([i915#1072] / [i915#9732]) +3 other tests skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/fi-rkl-11600/igt@kms_psr@psr-sprite-plane-onoff.html * igt@kms_setmode@basic-clone-single-crtc: - fi-rkl-11600: NOTRUN -> [SKIP][15] ([i915#3555]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/fi-rkl-11600/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-read: - fi-rkl-11600: NOTRUN -> [SKIP][16] ([i915#3291] / [i915#3708]) +2 other tests skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/fi-rkl-11600/igt@prime_vgem@basic-read.html #### Possible fixes #### * igt@gem_lmem_swapping@basic@lmem0: - bat-dg2-9: [FAIL][17] ([i915#10378]) -> [PASS][18] [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/bat-dg2-9/igt@gem_lmem_swapping@basic@lmem0.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/bat-dg2-9/igt@gem_lmem_swapping@basic@lmem0.html * igt@i915_selftest@live@gt_contexts: - bat-dg2-8: [ABORT][19] ([i915#10366]) -> [PASS][20] [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/bat-dg2-8/igt@i915_selftest@live@gt_contexts.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/bat-dg2-8/igt@i915_selftest@live@gt_contexts.html [i915#10366]: https://gitlab.freedesktop.org/drm/intel/issues/10366 [i915#10378]: https://gitlab.freedesktop.org/drm/intel/issues/10378 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#9318]: https://gitlab.freedesktop.org/drm/intel/issues/9318 [i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7803 -> IGTPW_10993 CI-20190529: 20190529 CI_DRM_14552: 057ec21a54cddd595a7725fa8731eb4c5bd5abff @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10993: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/index.html IGT_7803: 9669a17ae56f1dcd22ba4c5cb39b3cd334a46862 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Testlist changes ---------------- +igt@xe_wedged@basic-wedged +igt@xe_wedged@wedged-at-any-timeout -igt@xe_exec_fault_mode@many-basic-imm -igt@xe_exec_fault_mode@many-bindexecqueue-imm -igt@xe_exec_fault_mode@many-bindexecqueue-rebind-imm -igt@xe_exec_fault_mode@many-bindexecqueue-userptr-imm -igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-imm -igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race-imm -igt@xe_exec_fault_mode@many-bindexecqueue-userptr-rebind-imm -igt@xe_exec_fault_mode@many-execqueues-basic-imm -igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-imm -igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-rebind-imm -igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-imm -igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-imm -igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race-imm -igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-rebind-imm -igt@xe_exec_fault_mode@many-execqueues-rebind-imm -igt@xe_exec_fault_mode@many-execqueues-userptr-imm -igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-imm -igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-imm -igt@xe_exec_fault_mode@many-execqueues-userptr-rebind-imm -igt@xe_exec_fault_mode@many-rebind-imm -igt@xe_exec_fault_mode@many-userptr-imm -igt@xe_exec_fault_mode@many-userptr-invalidate-imm -igt@xe_exec_fault_mode@many-userptr-invalidate-race-imm -igt@xe_exec_fault_mode@many-userptr-rebind-imm -igt@xe_exec_fault_mode@once-basic-imm -igt@xe_exec_fault_mode@once-bindexecqueue-imm -igt@xe_exec_fault_mode@once-bindexecqueue-rebind-imm -igt@xe_exec_fault_mode@once-bindexecqueue-userptr-imm -igt@xe_exec_fault_mode@once-bindexecqueue-userptr-invalidate-imm -igt@xe_exec_fault_mode@once-bindexecqueue-userptr-invalidate-race-imm -igt@xe_exec_fault_mode@once-bindexecqueue-userptr-rebind-imm -igt@xe_exec_fault_mode@once-rebind-imm -igt@xe_exec_fault_mode@once-userptr-imm -igt@xe_exec_fault_mode@once-userptr-invalidate-imm -igt@xe_exec_fault_mode@once-userptr-invalidate-race-imm -igt@xe_exec_fault_mode@once-userptr-rebind-imm -igt@xe_exec_fault_mode@twice-basic-imm -igt@xe_exec_fault_mode@twice-bindexecqueue-imm -igt@xe_exec_fault_mode@twice-bindexecqueue-rebind-imm -igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-imm -igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate-imm -igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate-race-imm -igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-imm -igt@xe_exec_fault_mode@twice-rebind-imm -igt@xe_exec_fault_mode@twice-userptr-imm -igt@xe_exec_fault_mode@twice-userptr-invalidate-imm -igt@xe_exec_fault_mode@twice-userptr-invalidate-race-imm -igt@xe_exec_fault_mode@twice-userptr-rebind-imm == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/index.html [-- Attachment #2: Type: text/html, Size: 10815 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* ✓ CI.xeBAT: success for series starting with [i-g-t,1/3] tests/intel/xe_wedged: Introduce a new test for Xe device wedged state 2024-04-09 22:19 [PATCH i-g-t 1/3] tests/intel/xe_wedged: Introduce a new test for Xe device wedged state Rodrigo Vivi ` (2 preceding siblings ...) 2024-04-09 23:22 ` ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/3] tests/intel/xe_wedged: Introduce a new test for Xe device wedged state Patchwork @ 2024-04-09 23:22 ` Patchwork 2024-04-10 4:17 ` [PATCH i-g-t 1/3] " Ghimiray, Himal Prasad ` (2 subsequent siblings) 6 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2024-04-09 23:22 UTC (permalink / raw) To: Rodrigo Vivi; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1185 bytes --] == Series Details == Series: series starting with [i-g-t,1/3] tests/intel/xe_wedged: Introduce a new test for Xe device wedged state URL : https://patchwork.freedesktop.org/series/132234/ State : success == Summary == CI Bug Log - changes from XEIGT_7803_BAT -> XEIGTPW_10993_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (5 -> 5) ------------------------------ No changes in participating hosts Changes ------- No changes found Build changes ------------- * IGT: IGT_7803 -> IGTPW_10993 * Linux: xe-1063-7be27f645de2f00384b862d2812a90675e8392fa -> xe-1064-057ec21a54cddd595a7725fa8731eb4c5bd5abff IGTPW_10993: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/index.html IGT_7803: 9669a17ae56f1dcd22ba4c5cb39b3cd334a46862 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-1063-7be27f645de2f00384b862d2812a90675e8392fa: 7be27f645de2f00384b862d2812a90675e8392fa xe-1064-057ec21a54cddd595a7725fa8731eb4c5bd5abff: 057ec21a54cddd595a7725fa8731eb4c5bd5abff == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10993/index.html [-- Attachment #2: Type: text/html, Size: 1744 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH i-g-t 1/3] tests/intel/xe_wedged: Introduce a new test for Xe device wedged state 2024-04-09 22:19 [PATCH i-g-t 1/3] tests/intel/xe_wedged: Introduce a new test for Xe device wedged state Rodrigo Vivi ` (3 preceding siblings ...) 2024-04-09 23:22 ` ✓ CI.xeBAT: " Patchwork @ 2024-04-10 4:17 ` Ghimiray, Himal Prasad 2024-04-10 20:12 ` ✗ Fi.CI.IGT: failure for series starting with [i-g-t,1/3] " Patchwork 2024-04-18 14:28 ` [PATCH i-g-t 1/3] " Ghimiray, Himal Prasad 6 siblings, 0 replies; 10+ messages in thread From: Ghimiray, Himal Prasad @ 2024-04-10 4:17 UTC (permalink / raw) To: Rodrigo Vivi, igt-dev; +Cc: intel-xe, Lucas De Marchi [-- Attachment #1: Type: text/plain, Size: 3884 bytes --] On 10-04-2024 03:49, Rodrigo Vivi wrote: > 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> > 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', Acked-by: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com> [-- Attachment #2: Type: text/html, Size: 40107 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* ✗ Fi.CI.IGT: failure for series starting with [i-g-t,1/3] tests/intel/xe_wedged: Introduce a new test for Xe device wedged state 2024-04-09 22:19 [PATCH i-g-t 1/3] tests/intel/xe_wedged: Introduce a new test for Xe device wedged state Rodrigo Vivi ` (4 preceding siblings ...) 2024-04-10 4:17 ` [PATCH i-g-t 1/3] " Ghimiray, Himal Prasad @ 2024-04-10 20:12 ` Patchwork 2024-04-18 14:28 ` [PATCH i-g-t 1/3] " Ghimiray, Himal Prasad 6 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2024-04-10 20:12 UTC (permalink / raw) To: Rodrigo Vivi; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 96623 bytes --] == Series Details == Series: series starting with [i-g-t,1/3] tests/intel/xe_wedged: Introduce a new test for Xe device wedged state URL : https://patchwork.freedesktop.org/series/132234/ State : failure == Summary == CI Bug Log - changes from CI_DRM_14552_full -> IGTPW_10993_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_10993_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_10993_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. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/index.html Participating hosts (10 -> 9) ------------------------------ Missing (1): shard-snb-0 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_10993_full: ### IGT changes ### #### Possible regressions #### * igt@i915_module_load@reload-with-fault-injection: - shard-tglu: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/shard-tglu-7/igt@i915_module_load@reload-with-fault-injection.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-tglu-9/igt@i915_module_load@reload-with-fault-injection.html * igt@kms_big_fb@x-tiled-8bpp-rotate-180: - shard-mtlp: [PASS][3] -> [ABORT][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/shard-mtlp-5/igt@kms_big_fb@x-tiled-8bpp-rotate-180.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-mtlp-3/igt@kms_big_fb@x-tiled-8bpp-rotate-180.html Known issues ------------ Here are the changes found in IGTPW_10993_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-keep-cache: - shard-mtlp: NOTRUN -> [SKIP][5] ([i915#8411]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-mtlp-7/igt@api_intel_bb@blit-reloc-keep-cache.html * igt@api_intel_bb@crc32: - shard-rkl: NOTRUN -> [SKIP][6] ([i915#6230]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-rkl-4/igt@api_intel_bb@crc32.html * igt@api_intel_bb@object-reloc-keep-cache: - shard-dg1: NOTRUN -> [SKIP][7] ([i915#8411]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg1-15/igt@api_intel_bb@object-reloc-keep-cache.html * igt@debugfs_test@basic-hwmon: - shard-rkl: NOTRUN -> [SKIP][8] ([i915#9318]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-rkl-5/igt@debugfs_test@basic-hwmon.html * igt@device_reset@unbind-reset-rebind: - shard-dg1: NOTRUN -> [INCOMPLETE][9] ([i915#9408] / [i915#9618]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg1-16/igt@device_reset@unbind-reset-rebind.html * igt@drm_fdinfo@all-busy-check-all: - shard-mtlp: NOTRUN -> [SKIP][10] ([i915#8414]) +6 other tests skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-mtlp-2/igt@drm_fdinfo@all-busy-check-all.html * igt@drm_fdinfo@busy-idle-check-all@vcs1: - shard-dg1: NOTRUN -> [SKIP][11] ([i915#8414]) +10 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg1-17/igt@drm_fdinfo@busy-idle-check-all@vcs1.html * igt@drm_fdinfo@most-busy-check-all@bcs0: - shard-dg2: NOTRUN -> [SKIP][12] ([i915#8414]) +8 other tests skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg2-10/igt@drm_fdinfo@most-busy-check-all@bcs0.html * igt@gem_busy@semaphore: - shard-dg1: NOTRUN -> [SKIP][13] ([i915#3936]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg1-16/igt@gem_busy@semaphore.html * igt@gem_caching@reads: - shard-mtlp: NOTRUN -> [SKIP][14] ([i915#4873]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-mtlp-4/igt@gem_caching@reads.html * igt@gem_ccs@block-copy-compressed: - shard-dg1: NOTRUN -> [SKIP][15] ([i915#3555] / [i915#9323]) +1 other test skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg1-15/igt@gem_ccs@block-copy-compressed.html * igt@gem_ccs@suspend-resume: - shard-rkl: NOTRUN -> [SKIP][16] ([i915#9323]) +1 other test skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-rkl-2/igt@gem_ccs@suspend-resume.html * igt@gem_close_race@multigpu-basic-process: - shard-dg2: NOTRUN -> [SKIP][17] ([i915#7697]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg2-3/igt@gem_close_race@multigpu-basic-process.html * igt@gem_ctx_persistence@engines-hostile-preempt: - shard-snb: NOTRUN -> [SKIP][18] ([i915#1099]) +1 other test skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-snb7/igt@gem_ctx_persistence@engines-hostile-preempt.html * igt@gem_ctx_persistence@hang: - shard-mtlp: NOTRUN -> [SKIP][19] ([i915#8555]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-mtlp-4/igt@gem_ctx_persistence@hang.html * igt@gem_ctx_persistence@heartbeat-hang: - shard-dg2: NOTRUN -> [SKIP][20] ([i915#8555]) +1 other test skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg2-11/igt@gem_ctx_persistence@heartbeat-hang.html - shard-dg1: NOTRUN -> [SKIP][21] ([i915#8555]) +1 other test skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg1-17/igt@gem_ctx_persistence@heartbeat-hang.html * igt@gem_ctx_sseu@invalid-args: - shard-mtlp: NOTRUN -> [SKIP][22] ([i915#280]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-mtlp-4/igt@gem_ctx_sseu@invalid-args.html * igt@gem_ctx_sseu@invalid-sseu: - shard-dg1: NOTRUN -> [SKIP][23] ([i915#280]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg1-18/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_ctx_sseu@mmap-args: - shard-dg2: NOTRUN -> [SKIP][24] ([i915#280]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg2-2/igt@gem_ctx_sseu@mmap-args.html - shard-rkl: NOTRUN -> [SKIP][25] ([i915#280]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-rkl-4/igt@gem_ctx_sseu@mmap-args.html - shard-tglu: NOTRUN -> [SKIP][26] ([i915#280]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-tglu-6/igt@gem_ctx_sseu@mmap-args.html * igt@gem_exec_balancer@bonded-sync: - shard-dg2: NOTRUN -> [SKIP][27] ([i915#4771]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg2-10/igt@gem_exec_balancer@bonded-sync.html * igt@gem_exec_balancer@invalid-bonds: - shard-dg2: NOTRUN -> [SKIP][28] ([i915#4036]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg2-3/igt@gem_exec_balancer@invalid-bonds.html - shard-dg1: NOTRUN -> [SKIP][29] ([i915#4036]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg1-16/igt@gem_exec_balancer@invalid-bonds.html * igt@gem_exec_balancer@parallel-keep-submit-fence: - shard-rkl: NOTRUN -> [SKIP][30] ([i915#4525]) +1 other test skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-rkl-5/igt@gem_exec_balancer@parallel-keep-submit-fence.html * igt@gem_exec_balancer@sliced: - shard-dg2: NOTRUN -> [SKIP][31] ([i915#4812]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg2-6/igt@gem_exec_balancer@sliced.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-glk: NOTRUN -> [SKIP][32] ([i915#6334]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-glk5/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_capture@capture@vecs0-lmem0: - shard-dg1: NOTRUN -> [FAIL][33] ([i915#10386]) +1 other test fail [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg1-17/igt@gem_exec_capture@capture@vecs0-lmem0.html * igt@gem_exec_capture@many-4k-incremental: - shard-dg1: NOTRUN -> [FAIL][34] ([i915#9606]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg1-14/igt@gem_exec_capture@many-4k-incremental.html * igt@gem_exec_capture@many-4k-zero: - shard-rkl: NOTRUN -> [FAIL][35] ([i915#9606]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-rkl-3/igt@gem_exec_capture@many-4k-zero.html * igt@gem_exec_fair@basic-none-rrul: - shard-mtlp: NOTRUN -> [SKIP][36] ([i915#4473] / [i915#4771]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-mtlp-3/igt@gem_exec_fair@basic-none-rrul.html * igt@gem_exec_fair@basic-none-share: - shard-dg2: NOTRUN -> [SKIP][37] ([i915#3539] / [i915#4852]) +3 other tests skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg2-6/igt@gem_exec_fair@basic-none-share.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-rkl: NOTRUN -> [FAIL][38] ([i915#2842]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-rkl-5/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-pace: - shard-dg1: NOTRUN -> [SKIP][39] ([i915#3539]) +1 other test skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg1-17/igt@gem_exec_fair@basic-pace.html - shard-dg2: NOTRUN -> [SKIP][40] ([i915#3539]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg2-5/igt@gem_exec_fair@basic-pace.html * igt@gem_exec_fair@basic-pace@rcs0: - shard-rkl: [PASS][41] -> [FAIL][42] ([i915#2842]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/shard-rkl-4/igt@gem_exec_fair@basic-pace@rcs0.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-rkl-4/igt@gem_exec_fair@basic-pace@rcs0.html * igt@gem_exec_flush@basic-uc-pro-default: - shard-dg1: NOTRUN -> [SKIP][43] ([i915#3539] / [i915#4852]) +4 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg1-18/igt@gem_exec_flush@basic-uc-pro-default.html * igt@gem_exec_params@rsvd2-dirt: - shard-dg2: NOTRUN -> [SKIP][44] ([i915#5107]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg2-11/igt@gem_exec_params@rsvd2-dirt.html * igt@gem_exec_reloc@basic-cpu-read: - shard-dg2: NOTRUN -> [SKIP][45] ([i915#3281]) +15 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg2-8/igt@gem_exec_reloc@basic-cpu-read.html * igt@gem_exec_reloc@basic-gtt-cpu: - shard-rkl: NOTRUN -> [SKIP][46] ([i915#3281]) +13 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-rkl-5/igt@gem_exec_reloc@basic-gtt-cpu.html * igt@gem_exec_reloc@basic-gtt-wc-noreloc: - shard-dg1: NOTRUN -> [SKIP][47] ([i915#3281]) +10 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg1-18/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html * igt@gem_exec_schedule@preempt-queue: - shard-dg2: NOTRUN -> [SKIP][48] ([i915#4537] / [i915#4812]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg2-6/igt@gem_exec_schedule@preempt-queue.html * igt@gem_exec_schedule@semaphore-power: - shard-dg1: NOTRUN -> [SKIP][49] ([i915#4812]) +3 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg1-14/igt@gem_exec_schedule@semaphore-power.html * igt@gem_fence_thrash@bo-write-verify-threaded-none: - shard-dg1: NOTRUN -> [SKIP][50] ([i915#4860]) +2 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg1-17/igt@gem_fence_thrash@bo-write-verify-threaded-none.html * igt@gem_fenced_exec_thrash@no-spare-fences-interruptible: - shard-mtlp: NOTRUN -> [SKIP][51] ([i915#4860]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-mtlp-4/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-rkl: NOTRUN -> [SKIP][52] ([i915#4613] / [i915#7582]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-rkl-2/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_lmem_swapping@heavy-verify-multi@lmem0: - shard-dg1: NOTRUN -> [FAIL][53] ([i915#10378]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg1-16/igt@gem_lmem_swapping@heavy-verify-multi@lmem0.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-rkl: NOTRUN -> [SKIP][54] ([i915#4613]) +6 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-rkl-5/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_lmem_swapping@random: - shard-mtlp: NOTRUN -> [SKIP][55] ([i915#4613]) +1 other test skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-mtlp-7/igt@gem_lmem_swapping@random.html * igt@gem_lmem_swapping@verify-ccs: - shard-tglu: NOTRUN -> [SKIP][56] ([i915#4613]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-tglu-10/igt@gem_lmem_swapping@verify-ccs.html - shard-glk: NOTRUN -> [SKIP][57] ([i915#4613]) +3 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-glk2/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_lmem_swapping@verify-ccs@lmem0: - shard-dg2: NOTRUN -> [FAIL][58] ([i915#10378]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg2-7/igt@gem_lmem_swapping@verify-ccs@lmem0.html * igt@gem_media_vme: - shard-dg1: NOTRUN -> [SKIP][59] ([i915#284]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg1-16/igt@gem_media_vme.html * igt@gem_mmap@basic: - shard-mtlp: NOTRUN -> [SKIP][60] ([i915#4083]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-mtlp-3/igt@gem_mmap@basic.html * igt@gem_mmap_gtt@cpuset-basic-small-copy-odd: - shard-dg1: NOTRUN -> [SKIP][61] ([i915#4077]) +15 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg1-15/igt@gem_mmap_gtt@cpuset-basic-small-copy-odd.html * igt@gem_mmap_gtt@cpuset-big-copy-odd: - shard-dg2: NOTRUN -> [SKIP][62] ([i915#4077]) +12 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg2-11/igt@gem_mmap_gtt@cpuset-big-copy-odd.html * igt@gem_mmap_wc@copy: - shard-dg2: NOTRUN -> [SKIP][63] ([i915#4083]) +8 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg2-8/igt@gem_mmap_wc@copy.html * igt@gem_mmap_wc@read: - shard-dg1: NOTRUN -> [SKIP][64] ([i915#4083]) +3 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg1-17/igt@gem_mmap_wc@read.html * igt@gem_partial_pwrite_pread@reads-display: - shard-mtlp: NOTRUN -> [SKIP][65] ([i915#3282]) +2 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-mtlp-3/igt@gem_partial_pwrite_pread@reads-display.html * igt@gem_pread@display: - shard-dg2: NOTRUN -> [SKIP][66] ([i915#3282]) +3 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg2-10/igt@gem_pread@display.html * igt@gem_pwrite@basic-exhaustion: - shard-dg1: NOTRUN -> [SKIP][67] ([i915#3282]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg1-17/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pwrite_snooped: - shard-rkl: NOTRUN -> [SKIP][68] ([i915#3282]) +4 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-rkl-2/igt@gem_pwrite_snooped.html * igt@gem_pxp@create-valid-protected-context: - shard-rkl: NOTRUN -> [SKIP][69] ([i915#4270]) +1 other test skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-rkl-1/igt@gem_pxp@create-valid-protected-context.html * igt@gem_pxp@protected-encrypted-src-copy-not-readible: - shard-dg1: NOTRUN -> [SKIP][70] ([i915#4270]) +3 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg1-15/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html * igt@gem_pxp@reject-modify-context-protection-off-2: - shard-dg2: NOTRUN -> [SKIP][71] ([i915#4270]) +1 other test skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg2-5/igt@gem_pxp@reject-modify-context-protection-off-2.html * igt@gem_pxp@verify-pxp-stale-buf-optout-execution: - shard-mtlp: NOTRUN -> [SKIP][72] ([i915#4270]) +1 other test skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-mtlp-5/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html * igt@gem_render_copy@y-tiled-to-vebox-y-tiled: - shard-dg2: NOTRUN -> [SKIP][73] ([i915#5190] / [i915#8428]) +7 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg2-10/igt@gem_render_copy@y-tiled-to-vebox-y-tiled.html * igt@gem_render_copy@yf-tiled-to-vebox-linear: - shard-mtlp: NOTRUN -> [SKIP][74] ([i915#8428]) +1 other test skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-mtlp-7/igt@gem_render_copy@yf-tiled-to-vebox-linear.html * igt@gem_render_tiled_blits@basic: - shard-dg1: NOTRUN -> [SKIP][75] ([i915#4079]) +1 other test skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg1-14/igt@gem_render_tiled_blits@basic.html * igt@gem_set_tiling_vs_blt@tiled-to-tiled: - shard-dg2: NOTRUN -> [SKIP][76] ([i915#4079]) +2 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg2-6/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-rkl: NOTRUN -> [SKIP][77] ([i915#8411]) +1 other test skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-rkl-4/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_softpin@evict-snoop: - shard-mtlp: NOTRUN -> [SKIP][78] ([i915#4885]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-mtlp-7/igt@gem_softpin@evict-snoop.html * igt@gem_tiled_pread_basic: - shard-mtlp: NOTRUN -> [SKIP][79] ([i915#4079]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-mtlp-7/igt@gem_tiled_pread_basic.html * igt@gem_userptr_blits@coherency-unsync: - shard-rkl: NOTRUN -> [SKIP][80] ([i915#3297]) +1 other test skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-rkl-4/igt@gem_userptr_blits@coherency-unsync.html * igt@gem_userptr_blits@dmabuf-sync: - shard-glk: NOTRUN -> [SKIP][81] ([i915#3323]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-glk2/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@map-fixed-invalidate: - shard-dg2: NOTRUN -> [SKIP][82] ([i915#3297] / [i915#4880]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg2-8/igt@gem_userptr_blits@map-fixed-invalidate.html * igt@gem_userptr_blits@readonly-unsync: - shard-dg1: NOTRUN -> [SKIP][83] ([i915#3297]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg1-18/igt@gem_userptr_blits@readonly-unsync.html * igt@gem_userptr_blits@relocations: - shard-mtlp: NOTRUN -> [SKIP][84] ([i915#3281]) +5 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-mtlp-4/igt@gem_userptr_blits@relocations.html * igt@gem_userptr_blits@unsync-overlap: - shard-mtlp: NOTRUN -> [SKIP][85] ([i915#3297]) +1 other test skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-mtlp-4/igt@gem_userptr_blits@unsync-overlap.html * igt@gen9_exec_parse@bb-start-cmd: - shard-dg1: NOTRUN -> [SKIP][86] ([i915#2527]) +4 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg1-15/igt@gen9_exec_parse@bb-start-cmd.html * igt@gen9_exec_parse@bb-start-far: - shard-mtlp: NOTRUN -> [SKIP][87] ([i915#2856]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-mtlp-2/igt@gen9_exec_parse@bb-start-far.html * igt@gen9_exec_parse@bb-start-param: - shard-dg2: NOTRUN -> [SKIP][88] ([i915#2856]) +5 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg2-2/igt@gen9_exec_parse@bb-start-param.html - shard-rkl: NOTRUN -> [SKIP][89] ([i915#2527]) +4 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-rkl-4/igt@gen9_exec_parse@bb-start-param.html * igt@i915_fb_tiling: - shard-dg2: NOTRUN -> [SKIP][90] ([i915#4881]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg2-6/igt@i915_fb_tiling.html * igt@i915_module_load@load: - shard-glk: NOTRUN -> [SKIP][91] ([i915#6227]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-glk1/igt@i915_module_load@load.html * igt@i915_module_load@reload-with-fault-injection: - shard-rkl: [PASS][92] -> [INCOMPLETE][93] ([i915#9820] / [i915#9849]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/shard-rkl-3/igt@i915_module_load@reload-with-fault-injection.html [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-rkl-4/igt@i915_module_load@reload-with-fault-injection.html - shard-snb: NOTRUN -> [INCOMPLETE][94] ([i915#9849]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-snb5/igt@i915_module_load@reload-with-fault-injection.html - shard-mtlp: [PASS][95] -> [ABORT][96] ([i915#10131] / [i915#9820]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/shard-mtlp-6/igt@i915_module_load@reload-with-fault-injection.html [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-mtlp-5/igt@i915_module_load@reload-with-fault-injection.html - shard-dg2: [PASS][97] -> [INCOMPLETE][98] ([i915#9820] / [i915#9849]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/shard-dg2-5/igt@i915_module_load@reload-with-fault-injection.html [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg2-11/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_module_load@resize-bar: - shard-rkl: NOTRUN -> [SKIP][99] ([i915#6412]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-rkl-3/igt@i915_module_load@resize-bar.html * igt@i915_pm_freq_api@freq-basic-api: - shard-rkl: NOTRUN -> [SKIP][100] ([i915#8399]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-rkl-4/igt@i915_pm_freq_api@freq-basic-api.html * igt@i915_pm_freq_mult@media-freq@gt0: - shard-rkl: NOTRUN -> [SKIP][101] ([i915#6590]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-rkl-3/igt@i915_pm_freq_mult@media-freq@gt0.html * igt@i915_pm_rpm@gem-evict-pwrite: - shard-mtlp: NOTRUN -> [SKIP][102] ([i915#4077]) +4 other tests skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-mtlp-3/igt@i915_pm_rpm@gem-evict-pwrite.html * igt@i915_pm_rps@basic-api: - shard-dg1: NOTRUN -> [SKIP][103] ([i915#6621]) +1 other test skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg1-14/igt@i915_pm_rps@basic-api.html * igt@i915_pm_rps@thresholds-idle@gt0: - shard-dg1: NOTRUN -> [SKIP][104] ([i915#8925]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg1-17/igt@i915_pm_rps@thresholds-idle@gt0.html * igt@i915_pm_rps@thresholds@gt0: - shard-dg2: NOTRUN -> [SKIP][105] ([i915#8925]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg2-6/igt@i915_pm_rps@thresholds@gt0.html * igt@i915_power@sanity: - shard-mtlp: [PASS][106] -> [SKIP][107] ([i915#7984]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/shard-mtlp-2/igt@i915_power@sanity.html [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-mtlp-8/igt@i915_power@sanity.html * igt@i915_query@test-query-geometry-subslices: - shard-dg1: NOTRUN -> [SKIP][108] ([i915#5723]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg1-15/igt@i915_query@test-query-geometry-subslices.html * igt@i915_selftest@live@hangcheck: - shard-dg1: NOTRUN -> [INCOMPLETE][109] ([i915#10461]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg1-18/igt@i915_selftest@live@hangcheck.html * igt@kms_addfb_basic@addfb25-x-tiled-legacy: - shard-mtlp: NOTRUN -> [SKIP][110] ([i915#4212]) +1 other test skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-mtlp-7/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html * igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy: - shard-dg2: NOTRUN -> [SKIP][111] ([i915#4212]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg2-8/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html * igt@kms_addfb_basic@basic-x-tiled-legacy: - shard-dg1: NOTRUN -> [SKIP][112] ([i915#4212]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg1-15/igt@kms_addfb_basic@basic-x-tiled-legacy.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][113] ([i915#8709]) +11 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg2-5/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-mtlp: NOTRUN -> [SKIP][114] ([i915#3555]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-mtlp-6/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-glk: NOTRUN -> [SKIP][115] ([i915#1769]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-glk5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-dg2: NOTRUN -> [SKIP][116] ([i915#1769] / [i915#3555]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg2-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-snb: NOTRUN -> [SKIP][117] ([i915#1769]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-snb4/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-16bpp-rotate-0: - shard-tglu: NOTRUN -> [SKIP][118] ([i915#5286]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-tglu-6/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html * igt@kms_big_fb@4-tiled-16bpp-rotate-90: - shard-mtlp: NOTRUN -> [SKIP][119] +5 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-mtlp-5/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html * igt@kms_big_fb@4-tiled-8bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][120] ([i915#4538] / [i915#5286]) +6 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg1-15/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][121] ([i915#5286]) +8 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-rkl-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_big_fb@linear-8bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][122] ([i915#3638]) +2 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg1-16/igt@kms_big_fb@linear-8bpp-rotate-270.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-tglu: [PASS][123] -> [FAIL][124] ([i915#3743]) +1 other test fail [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/shard-tglu-2/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-tglu-8/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@y-tiled-64bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][125] ([i915#3638]) +4 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-rkl-4/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html * igt@kms_big_fb@y-tiled-8bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][126] ([i915#4538] / [i915#5190]) +10 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg2-11/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2: NOTRUN -> [SKIP][127] ([i915#5190]) +3 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg2-10/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][128] ([i915#4538]) +5 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg1-16/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-mtlp: NOTRUN -> [SKIP][129] ([i915#6187]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-mtlp-5/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_big_joiner@basic: - shard-dg2: NOTRUN -> [SKIP][130] ([i915#10656]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg2-6/igt@kms_big_joiner@basic.html - shard-dg1: NOTRUN -> [SKIP][131] ([i915#10656]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg1-13/igt@kms_big_joiner@basic.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][132] ([i915#6095]) +63 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-rkl-3/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@bad-rotation-90-4-tiled-xe2-ccs: - shard-dg2: NOTRUN -> [SKIP][133] ([i915#10278]) +1 other test skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg2-10/igt@kms_ccs@bad-rotation-90-4-tiled-xe2-ccs.html - shard-dg1: NOTRUN -> [SKIP][134] ([i915#10278]) +1 other test skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg1-15/igt@kms_ccs@bad-rotation-90-4-tiled-xe2-ccs.html * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc@pipe-a-dp-4: - shard-dg2: NOTRUN -> [SKIP][135] ([i915#10307] / [i915#6095]) +138 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg2-11/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc@pipe-a-dp-4.html * igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][136] ([i915#6095]) +27 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-mtlp-8/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs@pipe-c-edp-1.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][137] ([i915#6095]) +59 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg1-18/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-4.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs: - shard-rkl: NOTRUN -> [SKIP][138] ([i915#10278]) +1 other test skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-rkl-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][139] ([i915#10307] / [i915#10434] / [i915#6095]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg2-8/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1.html * igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [SKIP][140] +236 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-glk4/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-1.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-rkl: NOTRUN -> [SKIP][141] ([i915#3742]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-rkl-4/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@mode-transition@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][142] ([i915#7213] / [i915#9010]) +4 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-mtlp-4/igt@kms_cdclk@mode-transition@pipe-b-edp-1.html * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][143] ([i915#7213]) +3 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg2-10/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1.html * igt@kms_chamelium_edid@hdmi-edid-change-during-suspend: - shard-rkl: NOTRUN -> [SKIP][144] ([i915#7828]) +10 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-rkl-5/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html - shard-tglu: NOTRUN -> [SKIP][145] ([i915#7828]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-tglu-3/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html * igt@kms_chamelium_frames@hdmi-crc-fast: - shard-mtlp: NOTRUN -> [SKIP][146] ([i915#7828]) +3 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-mtlp-2/igt@kms_chamelium_frames@hdmi-crc-fast.html * igt@kms_chamelium_frames@hdmi-crc-multiple: - shard-dg2: NOTRUN -> [SKIP][147] ([i915#7828]) +7 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg2-10/igt@kms_chamelium_frames@hdmi-crc-multiple.html * igt@kms_chamelium_hpd@dp-hpd-storm-disable: - shard-dg1: NOTRUN -> [SKIP][148] ([i915#7828]) +6 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg1-16/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html * igt@kms_content_protection@atomic-dpms: - shard-mtlp: NOTRUN -> [SKIP][149] ([i915#6944] / [i915#9424]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-mtlp-7/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@atomic@pipe-a-dp-4: - shard-dg2: NOTRUN -> [TIMEOUT][150] ([i915#7173]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg2-11/igt@kms_content_protection@atomic@pipe-a-dp-4.html * igt@kms_content_protection@dp-mst-type-0: - shard-dg2: NOTRUN -> [SKIP][151] ([i915#3299]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg2-10/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@dp-mst-type-1: - shard-rkl: NOTRUN -> [SKIP][152] ([i915#3116]) +1 other test skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-rkl-5/igt@kms_content_protection@dp-mst-type-1.html - shard-mtlp: NOTRUN -> [SKIP][153] ([i915#3299]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-mtlp-8/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@lic-type-0: - shard-dg2: NOTRUN -> [SKIP][154] ([i915#9424]) +1 other test skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg2-3/igt@kms_content_protection@lic-type-0.html - shard-rkl: NOTRUN -> [SKIP][155] ([i915#9424]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-rkl-1/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@lic-type-1: - shard-dg1: NOTRUN -> [SKIP][156] ([i915#9424]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg1-15/igt@kms_content_protection@lic-type-1.html * igt@kms_content_protection@uevent: - shard-dg2: NOTRUN -> [SKIP][157] ([i915#7118] / [i915#9424]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg2-3/igt@kms_content_protection@uevent.html - shard-rkl: NOTRUN -> [SKIP][158] ([i915#7118] / [i915#9424]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-rkl-1/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-rkl: NOTRUN -> [SKIP][159] ([i915#3359]) +2 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-rkl-1/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-random-128x42: - shard-mtlp: NOTRUN -> [SKIP][160] ([i915#8814]) +1 other test skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-mtlp-2/igt@kms_cursor_crc@cursor-random-128x42.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-dg2: NOTRUN -> [SKIP][161] ([i915#3359]) +2 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg2-11/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-dg1: NOTRUN -> [SKIP][162] ([i915#3359]) +1 other test skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg1-14/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy: - shard-mtlp: NOTRUN -> [SKIP][163] ([i915#9809]) +2 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-mtlp-7/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html * igt@kms_cursor_legacy@cursora-vs-flipb-varying-size: - shard-snb: [PASS][164] -> [SKIP][165] +3 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/shard-snb7/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-snb6/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: NOTRUN -> [FAIL][166] ([i915#2346]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-dg2: NOTRUN -> [SKIP][167] ([i915#4103] / [i915#4213]) +1 other test skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg2-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html - shard-rkl: NOTRUN -> [SKIP][168] ([i915#4103]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-rkl-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html - shard-dg1: NOTRUN -> [SKIP][169] ([i915#4103] / [i915#4213]) +2 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg1-16/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@torture-bo@pipe-a: - shard-snb: [PASS][170] -> [DMESG-WARN][171] ([i915#10166]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/shard-snb2/igt@kms_cursor_legacy@torture-bo@pipe-a.html [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-snb1/igt@kms_cursor_legacy@torture-bo@pipe-a.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][172] ([i915#9723]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-rkl-5/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][173] ([i915#9227]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg2-6/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3.html - shard-dg1: NOTRUN -> [SKIP][174] ([i915#9723]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg1-13/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-mtlp: NOTRUN -> [SKIP][175] ([i915#8588]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-mtlp-5/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][176] ([i915#3804]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-rkl-2/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_dither@fb-8bpc-vs-panel-8bpc: - shard-dg2: NOTRUN -> [SKIP][177] ([i915#3555]) +4 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg2-5/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html * igt@kms_dsc@dsc-basic: - shard-rkl: NOTRUN -> [SKIP][178] ([i915#3555] / [i915#3840]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-rkl-3/igt@kms_dsc@dsc-basic.html - shard-mtlp: NOTRUN -> [SKIP][179] ([i915#3555] / [i915#3840] / [i915#9159]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-mtlp-3/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-fractional-bpp: - shard-dg2: NOTRUN -> [SKIP][180] ([i915#3840] / [i915#9688]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg2-6/igt@kms_dsc@dsc-fractional-bpp.html - shard-rkl: NOTRUN -> [SKIP][181] ([i915#3840]) +1 other test skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-rkl-5/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-dg2: NOTRUN -> [SKIP][182] ([i915#3840]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg2-11/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html - shard-tglu: NOTRUN -> [SKIP][183] ([i915#3840]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-tglu-2/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-bpc: - shard-mtlp: NOTRUN -> [SKIP][184] ([i915#3555] / [i915#3840]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-mtlp-7/igt@kms_dsc@dsc-with-bpc.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-dg2: NOTRUN -> [SKIP][185] ([i915#3555] / [i915#3840]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg2-5/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_fbcon_fbt@psr: - shard-dg2: NOTRUN -> [SKIP][186] ([i915#3469]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg2-10/igt@kms_fbcon_fbt@psr.html - shard-rkl: NOTRUN -> [SKIP][187] ([i915#3955]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-rkl-4/igt@kms_fbcon_fbt@psr.html - shard-tglu: NOTRUN -> [SKIP][188] ([i915#3469]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-tglu-6/igt@kms_fbcon_fbt@psr.html * igt@kms_feature_discovery@chamelium: - shard-rkl: NOTRUN -> [SKIP][189] ([i915#4854]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-rkl-3/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-3x: - shard-dg2: NOTRUN -> [SKIP][190] ([i915#1839]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg2-6/igt@kms_feature_discovery@display-3x.html - shard-dg1: NOTRUN -> [SKIP][191] ([i915#1839]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg1-18/igt@kms_feature_discovery@display-3x.html * igt@kms_feature_discovery@psr2: - shard-dg2: NOTRUN -> [SKIP][192] ([i915#658]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg2-8/igt@kms_feature_discovery@psr2.html - shard-rkl: NOTRUN -> [SKIP][193] ([i915#658]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-rkl-3/igt@kms_feature_discovery@psr2.html * igt@kms_fence_pin_leak: - shard-mtlp: NOTRUN -> [SKIP][194] ([i915#4881]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-mtlp-3/igt@kms_fence_pin_leak.html * igt@kms_flip@2x-blocking-wf_vblank@ab-vga1-hdmi-a1: - shard-snb: [PASS][195] -> [FAIL][196] ([i915#2122]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/shard-snb6/igt@kms_flip@2x-blocking-wf_vblank@ab-vga1-hdmi-a1.html [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-snb7/igt@kms_flip@2x-blocking-wf_vblank@ab-vga1-hdmi-a1.html * igt@kms_flip@2x-flip-vs-panning-interruptible: - shard-dg2: NOTRUN -> [SKIP][197] +27 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg2-2/igt@kms_flip@2x-flip-vs-panning-interruptible.html * igt@kms_flip@2x-flip-vs-panning-vs-hang: - shard-mtlp: NOTRUN -> [SKIP][198] ([i915#3637]) +1 other test skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-mtlp-7/igt@kms_flip@2x-flip-vs-panning-vs-hang.html * igt@kms_flip@2x-plain-flip: - shard-dg1: NOTRUN -> [SKIP][199] ([i915#9934]) +7 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg1-17/igt@kms_flip@2x-plain-flip.html * igt@kms_flip@flip-vs-fences-interruptible: - shard-mtlp: NOTRUN -> [SKIP][200] ([i915#8381]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-mtlp-2/igt@kms_flip@flip-vs-fences-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][201] ([i915#2672]) +1 other test skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][202] ([i915#2587] / [i915#2672]) +1 other test skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg1-16/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][203] ([i915#2672]) +5 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg2-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html - shard-rkl: NOTRUN -> [SKIP][204] ([i915#2672]) +3 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-rkl-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][205] ([i915#8810]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][206] ([i915#3555] / [i915#8810]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][207] ([i915#2672] / [i915#3555]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][208] ([i915#2672] / [i915#3555]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg2-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-1p-rte: - shard-dg2: [PASS][209] -> [FAIL][210] ([i915#6880]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-rte.html [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-rte.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][211] ([i915#1825]) +46 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][212] +51 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg1-15/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt: - shard-dg2: NOTRUN -> [SKIP][213] ([i915#5354]) +41 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt: - shard-tglu: NOTRUN -> [SKIP][214] +1 other test skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-tglu-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu: - shard-dg2: NOTRUN -> [FAIL][215] ([i915#6880]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-tiling-4: - shard-dg1: NOTRUN -> [SKIP][216] ([i915#5439]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg1-15/igt@kms_frontbuffer_tracking@fbc-tiling-4.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-dg2: NOTRUN -> [SKIP][217] ([i915#10055]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move: - shard-dg1: NOTRUN -> [SKIP][218] ([i915#3458]) +16 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][219] +47 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][220] ([i915#8708]) +25 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][221] ([i915#3458]) +20 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][222] ([i915#8708]) +25 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][223] ([i915#3023]) +23 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][224] ([i915#8708]) +3 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-mtlp-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-cpu: - shard-mtlp: NOTRUN -> [SKIP][225] ([i915#1825]) +17 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-mtlp-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-cpu.html * igt@kms_hdr@bpc-switch: - shard-dg2: NOTRUN -> [SKIP][226] ([i915#3555] / [i915#8228]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg2-8/igt@kms_hdr@bpc-switch.html * igt@kms_hdr@static-toggle-suspend: - shard-rkl: NOTRUN -> [SKIP][227] ([i915#3555] / [i915#8228]) +1 other test skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-rkl-4/igt@kms_hdr@static-toggle-suspend.html - shard-dg1: NOTRUN -> [SKIP][228] ([i915#3555] / [i915#8228]) +2 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg1-14/igt@kms_hdr@static-toggle-suspend.html * igt@kms_plane@pixel-format-source-clamping@pipe-b: - shard-mtlp: [PASS][229] -> [ABORT][230] ([i915#10698]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/shard-mtlp-7/igt@kms_plane@pixel-format-source-clamping@pipe-b.html [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-mtlp-2/igt@kms_plane@pixel-format-source-clamping@pipe-b.html * igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][231] ([i915#7862]) +1 other test fail [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-glk5/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1.html * igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][232] ([i915#10647]) +1 other test fail [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-glk1/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1.html * igt@kms_plane_lowres@tiling-x@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][233] ([i915#3582]) +3 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-mtlp-3/igt@kms_plane_lowres@tiling-x@pipe-a-edp-1.html * igt@kms_plane_scaling@2x-scaler-multi-pipe: - shard-dg2: NOTRUN -> [SKIP][234] ([i915#5354] / [i915#9423]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg2-3/igt@kms_plane_scaling@2x-scaler-multi-pipe.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b-dp-4: - shard-dg2: NOTRUN -> [SKIP][235] ([i915#9423]) +7 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg2-11/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b-dp-4.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][236] ([i915#5176] / [i915#9423]) +1 other test skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-rkl-5/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][237] ([i915#9423]) +5 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-rkl-1/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][238] ([i915#5235]) +7 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg1-17/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b-hdmi-a-4.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][239] ([i915#5235]) +5 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-rkl-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][240] ([i915#5235] / [i915#9423]) +19 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg2-3/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c-hdmi-a-2.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][241] ([i915#5235]) +5 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-mtlp-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b-edp-1.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][242] ([i915#3555] / [i915#5235]) +1 other test skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-mtlp-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-d-edp-1.html * igt@kms_pm_backlight@fade-with-dpms: - shard-rkl: NOTRUN -> [SKIP][243] ([i915#5354]) +1 other test skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-rkl-4/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_dc@dc6-dpms: - shard-dg1: NOTRUN -> [SKIP][244] ([i915#3361]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg1-16/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_dc@dc6-psr: - shard-dg2: NOTRUN -> [SKIP][245] ([i915#9685]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg2-10/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_lpsp@kms-lpsp: - shard-dg2: NOTRUN -> [SKIP][246] ([i915#9340]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg2-6/igt@kms_pm_lpsp@kms-lpsp.html - shard-dg1: NOTRUN -> [SKIP][247] ([i915#9340]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg1-18/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_prime@basic-crc-hybrid: - shard-rkl: NOTRUN -> [SKIP][248] ([i915#6524]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-rkl-1/igt@kms_prime@basic-crc-hybrid.html - shard-dg1: NOTRUN -> [SKIP][249] ([i915#6524]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg1-17/igt@kms_prime@basic-crc-hybrid.html * igt@kms_prime@basic-crc-vgem: - shard-dg2: NOTRUN -> [SKIP][250] ([i915#6524] / [i915#6805]) +1 other test skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg2-2/igt@kms_prime@basic-crc-vgem.html * igt@kms_psr2_sf@fbc-cursor-plane-update-sf@psr2-pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][251] ([i915#9808]) +1 other test skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-mtlp-7/igt@kms_psr2_sf@fbc-cursor-plane-update-sf@psr2-pipe-a-edp-1.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][252] ([i915#9683]) +2 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg2-11/igt@kms_psr2_su@page_flip-xrgb8888.html - shard-rkl: NOTRUN -> [SKIP][253] ([i915#9683]) +1 other test skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-rkl-1/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-pr-basic: - shard-mtlp: NOTRUN -> [SKIP][254] ([i915#9688]) +8 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-mtlp-7/igt@kms_psr@fbc-pr-basic.html * igt@kms_psr@fbc-psr-primary-blt: - shard-dg2: NOTRUN -> [SKIP][255] ([i915#1072] / [i915#9673] / [i915#9732]) +3 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg2-11/igt@kms_psr@fbc-psr-primary-blt.html * igt@kms_psr@pr-cursor-plane-move: - shard-tglu: NOTRUN -> [SKIP][256] ([i915#9732]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-tglu-6/igt@kms_psr@pr-cursor-plane-move.html * igt@kms_psr@psr-cursor-plane-onoff: - shard-dg1: NOTRUN -> [SKIP][257] ([i915#1072] / [i915#9732]) +21 other tests skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg1-18/igt@kms_psr@psr-cursor-plane-onoff.html * igt@kms_psr@psr-primary-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][258] ([i915#1072] / [i915#9732]) +22 other tests skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg2-8/igt@kms_psr@psr-primary-mmap-cpu.html * igt@kms_psr@psr-sprite-plane-move: - shard-rkl: NOTRUN -> [SKIP][259] ([i915#1072] / [i915#9732]) +24 other tests skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-rkl-3/igt@kms_psr@psr-sprite-plane-move.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-dg1: NOTRUN -> [SKIP][260] ([i915#9685]) +2 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg1-18/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@bad-pixel-format: - shard-snb: NOTRUN -> [SKIP][261] +98 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-snb1/igt@kms_rotation_crc@bad-pixel-format.html * igt@kms_rotation_crc@bad-tiling: - shard-mtlp: NOTRUN -> [SKIP][262] ([i915#4235]) +1 other test skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-mtlp-5/igt@kms_rotation_crc@bad-tiling.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-dg1: NOTRUN -> [SKIP][263] ([i915#5289]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg1-15/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-rkl: NOTRUN -> [SKIP][264] ([i915#5289]) +1 other test skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-rkl-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_rotation_crc@sprite-rotation-90: - shard-dg2: NOTRUN -> [SKIP][265] ([i915#4235]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg2-10/igt@kms_rotation_crc@sprite-rotation-90.html * igt@kms_setmode@basic-clone-single-crtc: - shard-rkl: NOTRUN -> [SKIP][266] ([i915#3555]) +3 other tests skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-rkl-3/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_setmode@clone-exclusive-crtc: - shard-dg1: NOTRUN -> [SKIP][267] ([i915#3555]) +9 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg1-18/igt@kms_setmode@clone-exclusive-crtc.html * igt@kms_sysfs_edid_timing: - shard-dg1: NOTRUN -> [FAIL][268] ([IGT#2] / [i915#6493]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg1-16/igt@kms_sysfs_edid_timing.html * igt@kms_tiled_display@basic-test-pattern: - shard-rkl: NOTRUN -> [SKIP][269] ([i915#8623]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-rkl-4/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1: - shard-snb: [PASS][270] -> [FAIL][271] ([i915#9196]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/shard-snb7/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-snb1/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html * igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-4: - shard-dg1: [PASS][272] -> [FAIL][273] ([i915#9196]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/shard-dg1-16/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-4.html [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg1-17/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-4.html * igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-2: - shard-rkl: [PASS][274] -> [FAIL][275] ([i915#9196]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/shard-rkl-3/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-2.html [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-rkl-1/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-2.html * igt@kms_universal_plane@cursor-fb-leak@pipe-d-dp-4: - shard-dg2: NOTRUN -> [FAIL][276] ([i915#9196]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg2-11/igt@kms_universal_plane@cursor-fb-leak@pipe-d-dp-4.html * igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1: - shard-tglu: [PASS][277] -> [FAIL][278] ([i915#9196]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/shard-tglu-6/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-tglu-5/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html * igt@kms_vrr@flip-basic: - shard-mtlp: NOTRUN -> [SKIP][279] ([i915#3555] / [i915#8808]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-mtlp-5/igt@kms_vrr@flip-basic.html * igt@kms_vrr@seamless-rr-switch-vrr: - shard-dg2: NOTRUN -> [SKIP][280] ([i915#9906]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg2-10/igt@kms_vrr@seamless-rr-switch-vrr.html - shard-rkl: NOTRUN -> [SKIP][281] ([i915#9906]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-rkl-4/igt@kms_vrr@seamless-rr-switch-vrr.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-dg1: NOTRUN -> [SKIP][282] ([i915#2437] / [i915#9412]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg1-16/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-mtlp: NOTRUN -> [SKIP][283] ([i915#2437] / [i915#9412]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-mtlp-5/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@kms_writeback@writeback-invalid-parameters: - shard-dg2: NOTRUN -> [SKIP][284] ([i915#2437]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg2-1/igt@kms_writeback@writeback-invalid-parameters.html * igt@perf@global-sseu-config: - shard-dg2: NOTRUN -> [SKIP][285] ([i915#7387]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg2-2/igt@perf@global-sseu-config.html * igt@perf@mi-rpc: - shard-dg1: NOTRUN -> [SKIP][286] ([i915#2434]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg1-14/igt@perf@mi-rpc.html * igt@perf@unprivileged-single-ctx-counters: - shard-dg1: NOTRUN -> [SKIP][287] ([i915#2433]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg1-17/igt@perf@unprivileged-single-ctx-counters.html * igt@perf_pmu@cpu-hotplug: - shard-dg2: NOTRUN -> [SKIP][288] ([i915#8850]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg2-8/igt@perf_pmu@cpu-hotplug.html - shard-rkl: NOTRUN -> [SKIP][289] ([i915#8850]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-rkl-3/igt@perf_pmu@cpu-hotplug.html * igt@perf_pmu@faulting-read@gtt: - shard-mtlp: NOTRUN -> [SKIP][290] ([i915#8440]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-mtlp-4/igt@perf_pmu@faulting-read@gtt.html * igt@perf_pmu@rc6-all-gts: - shard-dg1: NOTRUN -> [SKIP][291] ([i915#8516]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg1-15/igt@perf_pmu@rc6-all-gts.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-dg2: NOTRUN -> [SKIP][292] ([i915#8516]) +1 other test skip [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg2-5/igt@perf_pmu@rc6@other-idle-gt0.html * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: - shard-dg2: NOTRUN -> [INCOMPLETE][293] ([i915#5493]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg2-3/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html * igt@prime_vgem@basic-fence-read: - shard-dg1: NOTRUN -> [SKIP][294] ([i915#3708]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg1-16/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@coherency-gtt: - shard-dg2: NOTRUN -> [SKIP][295] ([i915#3708] / [i915#4077]) +1 other test skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg2-1/igt@prime_vgem@coherency-gtt.html - shard-rkl: NOTRUN -> [SKIP][296] ([i915#3708]) +2 other tests skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-rkl-3/igt@prime_vgem@coherency-gtt.html - shard-dg1: NOTRUN -> [SKIP][297] ([i915#3708] / [i915#4077]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg1-15/igt@prime_vgem@coherency-gtt.html * igt@prime_vgem@fence-read-hang: - shard-dg2: NOTRUN -> [SKIP][298] ([i915#3708]) +1 other test skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg2-7/igt@prime_vgem@fence-read-hang.html * igt@prime_vgem@fence-write-hang: - shard-mtlp: NOTRUN -> [SKIP][299] ([i915#3708]) +1 other test skip [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-mtlp-8/igt@prime_vgem@fence-write-hang.html * igt@runner@aborted: - shard-glk: NOTRUN -> [FAIL][300] ([i915#10291]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-glk5/igt@runner@aborted.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-dg2: NOTRUN -> [SKIP][301] ([i915#9917]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg2-1/igt@sriov_basic@enable-vfs-autoprobe-off.html - shard-rkl: NOTRUN -> [SKIP][302] ([i915#9917]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-rkl-3/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@syncobj_timeline@invalid-wait-zero-handles: - shard-mtlp: NOTRUN -> [FAIL][303] ([i915#9781]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-mtlp-2/igt@syncobj_timeline@invalid-wait-zero-handles.html * igt@syncobj_wait@invalid-wait-zero-handles: - shard-dg2: NOTRUN -> [FAIL][304] ([i915#9779]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg2-1/igt@syncobj_wait@invalid-wait-zero-handles.html * igt@v3d/v3d_submit_cl@simple-flush-cache: - shard-dg2: NOTRUN -> [SKIP][305] ([i915#2575]) +16 other tests skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg2-3/igt@v3d/v3d_submit_cl@simple-flush-cache.html * igt@v3d/v3d_submit_csd@bad-extension: - shard-mtlp: NOTRUN -> [SKIP][306] ([i915#2575]) +8 other tests skip [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-mtlp-4/igt@v3d/v3d_submit_csd@bad-extension.html * igt@v3d/v3d_submit_csd@bad-perfmon: - shard-dg1: NOTRUN -> [SKIP][307] ([i915#2575]) +13 other tests skip [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg1-16/igt@v3d/v3d_submit_csd@bad-perfmon.html * igt@vc4/vc4_mmap@mmap-bad-handle: - shard-mtlp: NOTRUN -> [SKIP][308] ([i915#7711]) +3 other tests skip [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-mtlp-3/igt@vc4/vc4_mmap@mmap-bad-handle.html * igt@vc4/vc4_perfmon@destroy-invalid-perfmon: - shard-dg1: NOTRUN -> [SKIP][309] ([i915#7711]) +8 other tests skip [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg1-17/igt@vc4/vc4_perfmon@destroy-invalid-perfmon.html * igt@vc4/vc4_purgeable_bo@mark-purgeable: - shard-rkl: NOTRUN -> [SKIP][310] ([i915#7711]) +11 other tests skip [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-rkl-5/igt@vc4/vc4_purgeable_bo@mark-purgeable.html * igt@vc4/vc4_wait_bo@bad-pad: - shard-dg2: NOTRUN -> [SKIP][311] ([i915#7711]) +8 other tests skip [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg2-8/igt@vc4/vc4_wait_bo@bad-pad.html #### Possible fixes #### * igt@drm_fdinfo@most-busy-check-all@rcs0: - shard-rkl: [FAIL][312] ([i915#7742]) -> [PASS][313] [312]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/shard-rkl-4/igt@drm_fdinfo@most-busy-check-all@rcs0.html [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-rkl-4/igt@drm_fdinfo@most-busy-check-all@rcs0.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-glk: [FAIL][314] ([i915#2842]) -> [PASS][315] [314]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/shard-glk6/igt@gem_exec_fair@basic-none-share@rcs0.html [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-glk8/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-tglu: [FAIL][316] ([i915#2842]) -> [PASS][317] [316]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/shard-tglu-5/igt@gem_exec_fair@basic-pace-share@rcs0.html [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-tglu-3/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-pace@vcs0: - shard-rkl: [FAIL][318] ([i915#2842]) -> [PASS][319] [318]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/shard-rkl-4/igt@gem_exec_fair@basic-pace@vcs0.html [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-rkl-4/igt@gem_exec_fair@basic-pace@vcs0.html * igt@gem_exec_whisper@basic-forked: - shard-dg2: [INCOMPLETE][320] ([i915#9857]) -> [PASS][321] [320]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/shard-dg2-6/igt@gem_exec_whisper@basic-forked.html [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg2-10/igt@gem_exec_whisper@basic-forked.html * igt@gem_lmem_swapping@heavy-multi@lmem0: - shard-dg1: [FAIL][322] ([i915#10378]) -> [PASS][323] [322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/shard-dg1-16/igt@gem_lmem_swapping@heavy-multi@lmem0.html [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg1-15/igt@gem_lmem_swapping@heavy-multi@lmem0.html * igt@gem_lmem_swapping@heavy-random@lmem0: - shard-dg2: [FAIL][324] ([i915#10378]) -> [PASS][325] [324]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/shard-dg2-8/igt@gem_lmem_swapping@heavy-random@lmem0.html [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg2-11/igt@gem_lmem_swapping@heavy-random@lmem0.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: [TIMEOUT][326] ([i915#5493]) -> [PASS][327] [326]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/shard-dg2-6/igt@gem_lmem_swapping@smem-oom@lmem0.html [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg2-8/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@kms_big_fb@4-tiled-8bpp-rotate-180: - shard-mtlp: [ABORT][328] -> [PASS][329] [328]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/shard-mtlp-8/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-mtlp-4/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-tglu: [FAIL][330] ([i915#3743]) -> [PASS][331] [330]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/shard-tglu-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-tglu-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-snb: [SKIP][332] -> [PASS][333] +1 other test pass [332]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/shard-snb6/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-snb7/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html * igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-vga1-hdmi-a1: - shard-snb: [FAIL][334] ([i915#2122]) -> [PASS][335] +1 other test pass [334]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/shard-snb7/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-vga1-hdmi-a1.html [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-snb2/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-vga1-hdmi-a1.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt: - shard-dg2: [FAIL][336] ([i915#6880]) -> [PASS][337] [336]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1: - shard-rkl: [FAIL][338] ([i915#8292]) -> [PASS][339] [338]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/shard-rkl-4/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-rkl-2/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html * igt@kms_pm_rpm@dpms-mode-unset-lpsp: - shard-dg2: [SKIP][340] ([i915#9519]) -> [PASS][341] [340]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/shard-dg2-11/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg2-10/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html * igt@kms_pm_rpm@modeset-lpsp: - shard-rkl: [SKIP][342] ([i915#9519]) -> [PASS][343] +1 other test pass [342]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp.html [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_setmode@basic@pipe-a-hdmi-a-4: - shard-dg1: [FAIL][344] ([i915#5465]) -> [PASS][345] +1 other test pass [344]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/shard-dg1-17/igt@kms_setmode@basic@pipe-a-hdmi-a-4.html [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg1-17/igt@kms_setmode@basic@pipe-a-hdmi-a-4.html * igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1: - shard-tglu: [FAIL][346] ([i915#9196]) -> [PASS][347] [346]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/shard-tglu-6/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-tglu-5/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html * igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-2: - shard-rkl: [FAIL][348] ([i915#9196]) -> [PASS][349] [348]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/shard-rkl-3/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-2.html [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-rkl-1/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-2.html #### Warnings #### * igt@gem_create@create-ext-cpu-access-big: - shard-dg2: [INCOMPLETE][350] ([i915#9364]) -> [ABORT][351] ([i915#9846]) [350]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/shard-dg2-4/igt@gem_create@create-ext-cpu-access-big.html [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg2-8/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_ctx_persistence@heartbeat-stop: - shard-snb: [ABORT][352] -> [SKIP][353] [352]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/shard-snb7/igt@gem_ctx_persistence@heartbeat-stop.html [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-snb5/igt@gem_ctx_persistence@heartbeat-stop.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0: - shard-tglu: [FAIL][354] ([i915#3591]) -> [WARN][355] ([i915#2681]) [354]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/shard-tglu-4/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-tglu-8/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html * igt@kms_content_protection@uevent: - shard-snb: [SKIP][356] -> [INCOMPLETE][357] ([i915#8816]) +1 other test incomplete [356]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/shard-snb7/igt@kms_content_protection@uevent.html [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-snb7/igt@kms_content_protection@uevent.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-pwrite: - shard-dg2: [SKIP][358] ([i915#10433] / [i915#3458]) -> [SKIP][359] ([i915#3458]) +2 other tests skip [358]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-pwrite.html [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-pwrite.html * igt@kms_psr@pr-cursor-render: - shard-dg2: [SKIP][360] ([i915#1072] / [i915#9673] / [i915#9732]) -> [SKIP][361] ([i915#1072] / [i915#9732]) +4 other tests skip [360]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/shard-dg2-11/igt@kms_psr@pr-cursor-render.html [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg2-10/igt@kms_psr@pr-cursor-render.html * igt@kms_psr@psr2-cursor-blt: - shard-dg2: [SKIP][362] ([i915#1072] / [i915#9732]) -> [SKIP][363] ([i915#1072] / [i915#9673] / [i915#9732]) +9 other tests skip [362]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/shard-dg2-8/igt@kms_psr@psr2-cursor-blt.html [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg2-11/igt@kms_psr@psr2-cursor-blt.html * igt@perf@non-zero-reason@0-rcs0: - shard-dg2: [FAIL][364] ([i915#3089]) -> [FAIL][365] ([i915#7484]) [364]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/shard-dg2-5/igt@perf@non-zero-reason@0-rcs0.html [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/shard-dg2-11/igt@perf@non-zero-reason@0-rcs0.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2 [i915#10055]: https://gitlab.freedesktop.org/drm/intel/issues/10055 [i915#10131]: https://gitlab.freedesktop.org/drm/intel/issues/10131 [i915#10166]: https://gitlab.freedesktop.org/drm/intel/issues/10166 [i915#10278]: https://gitlab.freedesktop.org/drm/intel/issues/10278 [i915#10291]: https://gitlab.freedesktop.org/drm/intel/issues/10291 [i915#10307]: https://gitlab.freedesktop.org/drm/intel/issues/10307 [i915#10378]: https://gitlab.freedesktop.org/drm/intel/issues/10378 [i915#10386]: https://gitlab.freedesktop.org/drm/intel/issues/10386 [i915#10433]: https://gitlab.freedesktop.org/drm/intel/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/intel/issues/10434 [i915#10461]: https://gitlab.freedesktop.org/drm/intel/issues/10461 [i915#10647]: https://gitlab.freedesktop.org/drm/intel/issues/10647 [i915#10656]: https://gitlab.freedesktop.org/drm/intel/issues/10656 [i915#10698]: https://gitlab.freedesktop.org/drm/intel/issues/10698 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2433]: https://gitlab.freedesktop.org/drm/intel/issues/2433 [i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 [i915#3089]: https://gitlab.freedesktop.org/drm/intel/issues/3089 [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3582]: https://gitlab.freedesktop.org/drm/intel/issues/3582 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#4036]: https://gitlab.freedesktop.org/drm/intel/issues/4036 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473 [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4854]: https://gitlab.freedesktop.org/drm/intel/issues/4854 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881 [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 [i915#5107]: https://gitlab.freedesktop.org/drm/intel/issues/5107 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439 [i915#5465]: https://gitlab.freedesktop.org/drm/intel/issues/5465 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5723]: https://gitlab.freedesktop.org/drm/intel/issues/5723 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6187]: https://gitlab.freedesktop.org/drm/intel/issues/6187 [i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227 [i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230 [i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334 [i915#6412]: https://gitlab.freedesktop.org/drm/intel/issues/6412 [i915#6493]: https://gitlab.freedesktop.org/drm/intel/issues/6493 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6590]: https://gitlab.freedesktop.org/drm/intel/issues/6590 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805 [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173 [i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213 [i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387 [i915#7484]: https://gitlab.freedesktop.org/drm/intel/issues/7484 [i915#7582]: https://gitlab.freedesktop.org/drm/intel/issues/7582 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7862]: https://gitlab.freedesktop.org/drm/intel/issues/7862 [i915#7984]: https://gitlab.freedesktop.org/drm/intel/issues/7984 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 [i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381 [i915#8399]: https://gitlab.freedesktop.org/drm/intel/issues/8399 [i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428 [i915#8440]: https://gitlab.freedesktop.org/drm/intel/issues/8440 [i915#8516]: https://gitlab.freedesktop.org/drm/intel/issues/8516 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8588]: https://gitlab.freedesktop.org/drm/intel/issues/8588 [i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709 [i915#8808]: https://gitlab.freedesktop.org/drm/intel/issues/8808 [i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810 [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814 [i915#8816]: https://gitlab.freedesktop.org/drm/intel/issues/8816 [i915#8850]: https://gitlab.freedesktop.org/drm/intel/issues/8850 [i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925 [i915#9010]: https://gitlab.freedesktop.org/drm/intel/issues/9010 [i915#9159]: https://gitlab.freedesktop.org/drm/intel/issues/9159 [i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196 [i915#9227]: https://gitlab.freedesktop.org/drm/intel/issues/9227 [i915#9318]: https://gitlab.freedesktop.org/drm/intel/issues/9318 [i915#9323]: https://gitlab.freedesktop.org/drm/intel/issues/9323 [i915#9340]: https://gitlab.freedesktop.org/drm/intel/issues/9340 [i915#9364]: https://gitlab.freedesktop.org/drm/intel/issues/9364 [i915#9408]: https://gitlab.freedesktop.org/drm/intel/issues/9408 [i915#9412]: https://gitlab.freedesktop.org/drm/intel/issues/9412 [i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423 [i915#9424]: https://gitlab.freedesktop.org/drm/intel/issues/9424 [i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519 [i915#9606]: https://gitlab.freedesktop.org/drm/intel/issues/9606 [i915#9618]: https://gitlab.freedesktop.org/drm/intel/issues/9618 [i915#9673]: https://gitlab.freedesktop.org/drm/intel/issues/9673 [i915#9683]: https://gitlab.freedesktop.org/drm/intel/issues/9683 [i915#9685]: https://gitlab.freedesktop.org/drm/intel/issues/9685 [i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688 [i915#9723]: https://gitlab.freedesktop.org/drm/intel/issues/9723 [i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732 [i915#9779]: https://gitlab.freedesktop.org/drm/intel/issues/9779 [i915#9781]: https://gitlab.freedesktop.org/drm/intel/issues/9781 [i915#9808]: https://gitlab.freedesktop.org/drm/intel/issues/9808 [i915#9809]: https://gitlab.freedesktop.org/drm/intel/issues/9809 [i915#9820]: https://gitlab.freedesktop.org/drm/intel/issues/9820 [i915#9846]: https://gitlab.freedesktop.org/drm/intel/issues/9846 [i915#9849]: https://gitlab.freedesktop.org/drm/intel/issues/9849 [i915#9857]: https://gitlab.freedesktop.org/drm/intel/issues/9857 [i915#9906]: https://gitlab.freedesktop.org/drm/intel/issues/9906 [i915#9917]: https://gitlab.freedesktop.org/drm/intel/issues/9917 [i915#9934]: https://gitlab.freedesktop.org/drm/intel/issues/9934 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7803 -> IGTPW_10993 CI-20190529: 20190529 CI_DRM_14552: 057ec21a54cddd595a7725fa8731eb4c5bd5abff @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10993: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/index.html IGT_7803: 9669a17ae56f1dcd22ba4c5cb39b3cd334a46862 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10993/index.html [-- Attachment #2: Type: text/html, Size: 117770 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH i-g-t 1/3] tests/intel/xe_wedged: Introduce a new test for Xe device wedged state 2024-04-09 22:19 [PATCH i-g-t 1/3] tests/intel/xe_wedged: Introduce a new test for Xe device wedged state Rodrigo Vivi ` (5 preceding siblings ...) 2024-04-10 20:12 ` ✗ Fi.CI.IGT: failure for series starting with [i-g-t,1/3] " Patchwork @ 2024-04-18 14:28 ` Ghimiray, Himal Prasad 6 siblings, 0 replies; 10+ messages in thread From: Ghimiray, Himal Prasad @ 2024-04-18 14:28 UTC (permalink / raw) To: Rodrigo Vivi, igt-dev; +Cc: intel-xe, Lucas De Marchi On 10-04-2024 03:49, Rodrigo Vivi wrote: > 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> > 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); > + } > +} Patch LGTM. Reviewed-by: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com> > 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', ^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2024-04-18 14:36 UTC | newest] Thread overview: 10+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-04-09 22:19 [PATCH i-g-t 1/3] tests/intel/xe_wedged: Introduce a new test for Xe device wedged state Rodrigo Vivi 2024-04-09 22:19 ` [PATCH i-g-t 2/3] tests/intel/xe_wedged: Also add a simple exec to confirm GPU health Rodrigo Vivi 2024-04-18 14:35 ` Ghimiray, Himal Prasad 2024-04-09 22:19 ` [PATCH i-g-t 3/3] tests/intel/xe_wedged: Introduce test for wedged_mode=2 Rodrigo Vivi 2024-04-18 3:55 ` Ghimiray, Himal Prasad 2024-04-09 23:22 ` ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/3] tests/intel/xe_wedged: Introduce a new test for Xe device wedged state Patchwork 2024-04-09 23:22 ` ✓ CI.xeBAT: " Patchwork 2024-04-10 4:17 ` [PATCH i-g-t 1/3] " Ghimiray, Himal Prasad 2024-04-10 20:12 ` ✗ Fi.CI.IGT: failure for series starting with [i-g-t,1/3] " Patchwork 2024-04-18 14:28 ` [PATCH i-g-t 1/3] " Ghimiray, Himal Prasad
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox