* [PATCH v1 0/2] tests/device_reset: Add Xe healthcheck to post-reset validation
@ 2026-08-11 14:14 Lukasz Laguna
2026-08-11 14:14 ` [PATCH v1 1/2] lib/xe/xe_device: Add helper for device healthcheck Lukasz Laguna
` (4 more replies)
0 siblings, 5 replies; 8+ messages in thread
From: Lukasz Laguna @ 2026-08-11 14:14 UTC (permalink / raw)
To: igt-dev; +Cc: marcin.bernatowicz, raag.jadav, lukasz.laguna
Extend the healthcheck for Xe devices to validate basic command
submission after reset.
Lukasz Laguna (2):
lib/xe/xe_device: Add helper for device healthcheck
tests/device_reset: Add Xe healthcheck to post-reset validation
lib/meson.build | 1 +
lib/xe/xe_device.c | 73 ++++++++++++++++++++++++++++++++++++++++++++
lib/xe/xe_device.h | 11 +++++++
tests/device_reset.c | 13 ++++++--
4 files changed, 95 insertions(+), 3 deletions(-)
create mode 100644 lib/xe/xe_device.c
create mode 100644 lib/xe/xe_device.h
--
2.43.0
^ permalink raw reply [flat|nested] 8+ messages in thread* [PATCH v1 1/2] lib/xe/xe_device: Add helper for device healthcheck 2026-08-11 14:14 [PATCH v1 0/2] tests/device_reset: Add Xe healthcheck to post-reset validation Lukasz Laguna @ 2026-08-11 14:14 ` Lukasz Laguna 2026-08-18 15:04 ` Bernatowicz, Marcin 2026-08-11 14:14 ` [PATCH v1 2/2] tests/device_reset: Add Xe healthcheck to post-reset validation Lukasz Laguna ` (3 subsequent siblings) 4 siblings, 1 reply; 8+ messages in thread From: Lukasz Laguna @ 2026-08-11 14:14 UTC (permalink / raw) To: igt-dev; +Cc: marcin.bernatowicz, raag.jadav, lukasz.laguna Add helper for a basic Xe device health check. It performs a minimal bind, exec, wait and unbind sequence on a BO to verify that the command submission path works. Co-developed-by: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com> Signed-off-by: Lukasz Laguna <lukasz.laguna@intel.com> --- lib/meson.build | 1 + lib/xe/xe_device.c | 73 ++++++++++++++++++++++++++++++++++++++++++++++ lib/xe/xe_device.h | 11 +++++++ 3 files changed, 85 insertions(+) create mode 100644 lib/xe/xe_device.c create mode 100644 lib/xe/xe_device.h diff --git a/lib/meson.build b/lib/meson.build index 3001b473e..7408da963 100644 --- a/lib/meson.build +++ b/lib/meson.build @@ -126,6 +126,7 @@ lib_sources = [ 'igt_msm.c', 'igt_dsc.c', 'igt_hook.c', + 'xe/xe_device.c', 'xe/xe_ggtt.c', 'xe/xe_gt.c', 'xe/xe_ioctl.c', diff --git a/lib/xe/xe_device.c b/lib/xe/xe_device.c new file mode 100644 index 000000000..74d85b097 --- /dev/null +++ b/lib/xe/xe_device.c @@ -0,0 +1,73 @@ +// SPDX-License-Identifier: MIT +/* + * Copyright(c) 2026 Intel Corporation. All rights reserved. + */ + +#include "igt.h" +#include "igt_syncobj.h" +#include "xe/xe_device.h" +#include "xe/xe_ioctl.h" +#include "xe/xe_query.h" + +/** + * xe_healthcheck: + * @fd: Xe DRM file descriptor + * + * Basic check for the Xe execution path. + * It binds a BO into VM address space, executes a minimal batch, + * waits for completion, and then unbinds the BO. + */ +void xe_healthcheck(int fd) +{ + struct drm_xe_engine_class_instance *hwe = NULL; + struct drm_xe_sync sync = { + .type = DRM_XE_SYNC_TYPE_SYNCOBJ, + .flags = DRM_XE_SYNC_FLAG_SIGNAL, + }; + struct drm_xe_exec exec = { + .num_batch_buffer = 1, + .num_syncs = 1, + .syncs = to_user_pointer(&sync), + }; + uint64_t addr = 0x1a0000; + uint32_t vm; + uint32_t exec_queue; + uint32_t bo; + uint32_t *batch; + size_t bo_size; + + xe_for_each_engine(fd, hwe) + break; + + igt_assert(hwe); + + vm = xe_vm_create(fd, 0, 0); + bo_size = xe_bb_size(fd, sizeof(*batch)); + bo = xe_bo_create(fd, vm, bo_size, + vram_if_possible(fd, hwe->gt_id), + DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM); + batch = xe_bo_map(fd, bo, bo_size); + exec_queue = xe_exec_queue_create(fd, vm, hwe, 0); + sync.handle = syncobj_create(fd, 0); + + xe_vm_bind_async(fd, vm, 0, bo, 0, addr, bo_size, &sync, 1); + igt_assert(syncobj_wait(fd, &sync.handle, 1, INT64_MAX, 0, NULL)); + + batch[0] = MI_BATCH_BUFFER_END; + + syncobj_reset(fd, &sync.handle, 1); + exec.exec_queue_id = exec_queue; + exec.address = addr; + xe_exec(fd, &exec); + igt_assert(syncobj_wait(fd, &sync.handle, 1, INT64_MAX, 0, NULL)); + + syncobj_reset(fd, &sync.handle, 1); + xe_vm_unbind_async(fd, vm, 0, 0, addr, bo_size, &sync, 1); + igt_assert(syncobj_wait(fd, &sync.handle, 1, INT64_MAX, 0, NULL)); + + syncobj_destroy(fd, sync.handle); + xe_exec_queue_destroy(fd, exec_queue); + munmap(batch, bo_size); + gem_close(fd, bo); + xe_vm_destroy(fd, vm); +} diff --git a/lib/xe/xe_device.h b/lib/xe/xe_device.h new file mode 100644 index 000000000..f1b6f887b --- /dev/null +++ b/lib/xe/xe_device.h @@ -0,0 +1,11 @@ +/* SPDX-License-Identifier: MIT */ +/* + * Copyright(c) 2026 Intel Corporation. All rights reserved. + */ + +#ifndef __XE_DEVICE_H__ +#define __XE_DEVICE_H__ + +void xe_healthcheck(int fd); + +#endif /* __XE_DEVICE_H__ */ -- 2.43.0 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH v1 1/2] lib/xe/xe_device: Add helper for device healthcheck 2026-08-11 14:14 ` [PATCH v1 1/2] lib/xe/xe_device: Add helper for device healthcheck Lukasz Laguna @ 2026-08-18 15:04 ` Bernatowicz, Marcin 0 siblings, 0 replies; 8+ messages in thread From: Bernatowicz, Marcin @ 2026-08-18 15:04 UTC (permalink / raw) To: Lukasz Laguna, igt-dev; +Cc: marcin.bernatowicz, raag.jadav On 8/11/2026 4:14 PM, Lukasz Laguna wrote: > Add helper for a basic Xe device health check. It performs a minimal > bind, exec, wait and unbind sequence on a BO to verify that the command > submission path works. > > Co-developed-by: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com> > Signed-off-by: Lukasz Laguna <lukasz.laguna@intel.com> > --- > lib/meson.build | 1 + > lib/xe/xe_device.c | 73 ++++++++++++++++++++++++++++++++++++++++++++++ > lib/xe/xe_device.h | 11 +++++++ > 3 files changed, 85 insertions(+) > create mode 100644 lib/xe/xe_device.c > create mode 100644 lib/xe/xe_device.h > > diff --git a/lib/meson.build b/lib/meson.build > index 3001b473e..7408da963 100644 > --- a/lib/meson.build > +++ b/lib/meson.build > @@ -126,6 +126,7 @@ lib_sources = [ > 'igt_msm.c', > 'igt_dsc.c', > 'igt_hook.c', > + 'xe/xe_device.c', > 'xe/xe_ggtt.c', > 'xe/xe_gt.c', > 'xe/xe_ioctl.c', > diff --git a/lib/xe/xe_device.c b/lib/xe/xe_device.c > new file mode 100644 > index 000000000..74d85b097 > --- /dev/null > +++ b/lib/xe/xe_device.c > @@ -0,0 +1,73 @@ > +// SPDX-License-Identifier: MIT > +/* > + * Copyright(c) 2026 Intel Corporation. All rights reserved. > + */ > + > +#include "igt.h" > +#include "igt_syncobj.h" > +#include "xe/xe_device.h" > +#include "xe/xe_ioctl.h" > +#include "xe/xe_query.h" > + > +/** > + * xe_healthcheck: > + * @fd: Xe DRM file descriptor > + * > + * Basic check for the Xe execution path. > + * It binds a BO into VM address space, executes a minimal batch, > + * waits for completion, and then unbinds the BO. > + */ > +void xe_healthcheck(int fd) > +{ > + struct drm_xe_engine_class_instance *hwe = NULL; > + struct drm_xe_sync sync = { > + .type = DRM_XE_SYNC_TYPE_SYNCOBJ, > + .flags = DRM_XE_SYNC_FLAG_SIGNAL, > + }; > + struct drm_xe_exec exec = { > + .num_batch_buffer = 1, > + .num_syncs = 1, > + .syncs = to_user_pointer(&sync), > + }; > + uint64_t addr = 0x1a0000; > + uint32_t vm; > + uint32_t exec_queue; > + uint32_t bo; > + uint32_t *batch; > + size_t bo_size; > + > + xe_for_each_engine(fd, hwe) > + break; > + > + igt_assert(hwe); > + > + vm = xe_vm_create(fd, 0, 0); > + bo_size = xe_bb_size(fd, sizeof(*batch)); > + bo = xe_bo_create(fd, vm, bo_size, > + vram_if_possible(fd, hwe->gt_id), > + DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM); > + batch = xe_bo_map(fd, bo, bo_size); > + exec_queue = xe_exec_queue_create(fd, vm, hwe, 0); > + sync.handle = syncobj_create(fd, 0); > + > + xe_vm_bind_async(fd, vm, 0, bo, 0, addr, bo_size, &sync, 1); > + igt_assert(syncobj_wait(fd, &sync.handle, 1, INT64_MAX, 0, NULL)); > + > + batch[0] = MI_BATCH_BUFFER_END; > + > + syncobj_reset(fd, &sync.handle, 1); > + exec.exec_queue_id = exec_queue; > + exec.address = addr; > + xe_exec(fd, &exec); > + igt_assert(syncobj_wait(fd, &sync.handle, 1, INT64_MAX, 0, NULL)); > + > + syncobj_reset(fd, &sync.handle, 1); > + xe_vm_unbind_async(fd, vm, 0, 0, addr, bo_size, &sync, 1); > + igt_assert(syncobj_wait(fd, &sync.handle, 1, INT64_MAX, 0, NULL)); > + > + syncobj_destroy(fd, sync.handle); > + xe_exec_queue_destroy(fd, exec_queue); > + munmap(batch, bo_size); > + gem_close(fd, bo); > + xe_vm_destroy(fd, vm); > +} > diff --git a/lib/xe/xe_device.h b/lib/xe/xe_device.h > new file mode 100644 > index 000000000..f1b6f887b > --- /dev/null > +++ b/lib/xe/xe_device.h > @@ -0,0 +1,11 @@ > +/* SPDX-License-Identifier: MIT */ > +/* > + * Copyright(c) 2026 Intel Corporation. All rights reserved. > + */ > + > +#ifndef __XE_DEVICE_H__ > +#define __XE_DEVICE_H__ > + > +void xe_healthcheck(int fd); > + LGTM. One nit: maybe rename it to xe_device_exec_healthcheck() Reviewed-by: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com> > +#endif /* __XE_DEVICE_H__ */ ^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH v1 2/2] tests/device_reset: Add Xe healthcheck to post-reset validation 2026-08-11 14:14 [PATCH v1 0/2] tests/device_reset: Add Xe healthcheck to post-reset validation Lukasz Laguna 2026-08-11 14:14 ` [PATCH v1 1/2] lib/xe/xe_device: Add helper for device healthcheck Lukasz Laguna @ 2026-08-11 14:14 ` Lukasz Laguna 2026-08-18 15:05 ` Bernatowicz, Marcin 2026-08-11 15:53 ` ✓ Xe.CI.BAT: success for " Patchwork ` (2 subsequent siblings) 4 siblings, 1 reply; 8+ messages in thread From: Lukasz Laguna @ 2026-08-11 14:14 UTC (permalink / raw) To: igt-dev; +Cc: marcin.bernatowicz, raag.jadav, lukasz.laguna Extend the healthcheck for Xe devices to validate basic command submission after reset. Signed-off-by: Lukasz Laguna <lukasz.laguna@intel.com> --- tests/device_reset.c | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/tests/device_reset.c b/tests/device_reset.c index b281f4ece..70ca511e0 100644 --- a/tests/device_reset.c +++ b/tests/device_reset.c @@ -14,6 +14,8 @@ #include "igt_pci.h" #include "igt_sysfs.h" #include "igt_kmod.h" +#include "xe/xe_device.h" + /** * TEST: device reset * Description: Examine behavior of a driver on device sysfs reset @@ -392,6 +394,8 @@ static bool is_i915_wedged(int i915) */ static void healthcheck(struct device_fds *dev) { + int fd; + if (dev->fds.dev == -1) { /* give the kernel a breath for re-creating device nodes in devtmpfs */ sleep(1); @@ -400,10 +404,13 @@ static void healthcheck(struct device_fds *dev) igt_debug("reopen the device\n"); dev->fds.dev = __drm_open_driver(DRIVER_ANY); } - igt_assert_fd(dev->fds.dev); + fd = dev->fds.dev; + igt_assert_fd(fd); - if (is_i915_device(dev->fds.dev)) - igt_assert(!is_i915_wedged(dev->fds.dev)); + if (is_i915_device(fd)) + igt_assert(!is_i915_wedged(fd)); + else if (is_xe_device(fd)) + xe_healthcheck(fd); } /** -- 2.43.0 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH v1 2/2] tests/device_reset: Add Xe healthcheck to post-reset validation 2026-08-11 14:14 ` [PATCH v1 2/2] tests/device_reset: Add Xe healthcheck to post-reset validation Lukasz Laguna @ 2026-08-18 15:05 ` Bernatowicz, Marcin 0 siblings, 0 replies; 8+ messages in thread From: Bernatowicz, Marcin @ 2026-08-18 15:05 UTC (permalink / raw) To: Lukasz Laguna, igt-dev; +Cc: marcin.bernatowicz, raag.jadav On 8/11/2026 4:14 PM, Lukasz Laguna wrote: > Extend the healthcheck for Xe devices to validate basic command > submission after reset. > > Signed-off-by: Lukasz Laguna <lukasz.laguna@intel.com> > --- > tests/device_reset.c | 13 ++++++++++--- > 1 file changed, 10 insertions(+), 3 deletions(-) > > diff --git a/tests/device_reset.c b/tests/device_reset.c > index b281f4ece..70ca511e0 100644 > --- a/tests/device_reset.c > +++ b/tests/device_reset.c > @@ -14,6 +14,8 @@ > #include "igt_pci.h" > #include "igt_sysfs.h" > #include "igt_kmod.h" > +#include "xe/xe_device.h" > + > /** > * TEST: device reset > * Description: Examine behavior of a driver on device sysfs reset > @@ -392,6 +394,8 @@ static bool is_i915_wedged(int i915) > */ > static void healthcheck(struct device_fds *dev) > { > + int fd; > + > if (dev->fds.dev == -1) { > /* give the kernel a breath for re-creating device nodes in devtmpfs */ > sleep(1); > @@ -400,10 +404,13 @@ static void healthcheck(struct device_fds *dev) > igt_debug("reopen the device\n"); > dev->fds.dev = __drm_open_driver(DRIVER_ANY); > } > - igt_assert_fd(dev->fds.dev); > + fd = dev->fds.dev; > + igt_assert_fd(fd); > > - if (is_i915_device(dev->fds.dev)) > - igt_assert(!is_i915_wedged(dev->fds.dev)); > + if (is_i915_device(fd)) > + igt_assert(!is_i915_wedged(fd)); > + else if (is_xe_device(fd)) > + xe_healthcheck(fd); > } > LGTM, Reviewed-by: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com> > /** ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✓ Xe.CI.BAT: success for tests/device_reset: Add Xe healthcheck to post-reset validation 2026-08-11 14:14 [PATCH v1 0/2] tests/device_reset: Add Xe healthcheck to post-reset validation Lukasz Laguna 2026-08-11 14:14 ` [PATCH v1 1/2] lib/xe/xe_device: Add helper for device healthcheck Lukasz Laguna 2026-08-11 14:14 ` [PATCH v1 2/2] tests/device_reset: Add Xe healthcheck to post-reset validation Lukasz Laguna @ 2026-08-11 15:53 ` Patchwork 2026-08-11 16:08 ` ✗ i915.CI.BAT: failure " Patchwork 2026-08-11 18:00 ` ✓ Xe.CI.FULL: success " Patchwork 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2026-08-11 15:53 UTC (permalink / raw) To: Lukasz Laguna; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 998 bytes --] == Series Details == Series: tests/device_reset: Add Xe healthcheck to post-reset validation URL : https://patchwork.freedesktop.org/series/172005/ State : success == Summary == CI Bug Log - changes from XEIGT_9051_BAT -> XEIGTPW_15657_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (13 -> 13) ------------------------------ No changes in participating hosts Changes ------- No changes found Build changes ------------- * IGT: IGT_9051 -> IGTPW_15657 * Linux: xe-5575-dc462ab791b686c48545c160ecc81be64f77a846 -> xe-5576-6ed371d40ec5cba972c0bdcf7e61fcadc7b5e7b0 IGTPW_15657: 15657 IGT_9051: 9051 xe-5575-dc462ab791b686c48545c160ecc81be64f77a846: dc462ab791b686c48545c160ecc81be64f77a846 xe-5576-6ed371d40ec5cba972c0bdcf7e61fcadc7b5e7b0: 6ed371d40ec5cba972c0bdcf7e61fcadc7b5e7b0 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/index.html [-- Attachment #2: Type: text/html, Size: 1557 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✗ i915.CI.BAT: failure for tests/device_reset: Add Xe healthcheck to post-reset validation 2026-08-11 14:14 [PATCH v1 0/2] tests/device_reset: Add Xe healthcheck to post-reset validation Lukasz Laguna ` (2 preceding siblings ...) 2026-08-11 15:53 ` ✓ Xe.CI.BAT: success for " Patchwork @ 2026-08-11 16:08 ` Patchwork 2026-08-11 18:00 ` ✓ Xe.CI.FULL: success " Patchwork 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2026-08-11 16:08 UTC (permalink / raw) To: Lukasz Laguna; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2861 bytes --] == Series Details == Series: tests/device_reset: Add Xe healthcheck to post-reset validation URL : https://patchwork.freedesktop.org/series/172005/ State : failure == Summary == CI Bug Log - changes from IGT_9051 -> IGTPW_15657 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_15657 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_15657, 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_15657/index.html Participating hosts (37 -> 36) ------------------------------ Additional (1): fi-glk-j4005 Missing (2): bat-dg2-13 fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_15657: ### IGT changes ### #### Possible regressions #### * igt@i915_selftest@live: - bat-arlh-3: [PASS][1] -> [INCOMPLETE][2] +1 other test incomplete [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9051/bat-arlh-3/igt@i915_selftest@live.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15657/bat-arlh-3/igt@i915_selftest@live.html Known issues ------------ Here are the changes found in IGTPW_15657 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_huc_copy@huc-copy: - fi-glk-j4005: NOTRUN -> [SKIP][3] ([i915#2190]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15657/fi-glk-j4005/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@basic: - fi-glk-j4005: NOTRUN -> [SKIP][4] ([i915#4613]) +3 other tests skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15657/fi-glk-j4005/igt@gem_lmem_swapping@basic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - fi-glk-j4005: NOTRUN -> [SKIP][5] +11 other tests skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15657/fi-glk-j4005/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_9051 -> IGTPW_15657 * Linux: CI_DRM_18977 -> CI_DRM_18978 CI-20190529: 20190529 CI_DRM_18977: dc462ab791b686c48545c160ecc81be64f77a846 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_18978: 6ed371d40ec5cba972c0bdcf7e61fcadc7b5e7b0 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_15657: 15657 IGT_9051: 9051 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15657/index.html [-- Attachment #2: Type: text/html, Size: 3576 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✓ Xe.CI.FULL: success for tests/device_reset: Add Xe healthcheck to post-reset validation 2026-08-11 14:14 [PATCH v1 0/2] tests/device_reset: Add Xe healthcheck to post-reset validation Lukasz Laguna ` (3 preceding siblings ...) 2026-08-11 16:08 ` ✗ i915.CI.BAT: failure " Patchwork @ 2026-08-11 18:00 ` Patchwork 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2026-08-11 18:00 UTC (permalink / raw) To: Lukasz Laguna; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 36432 bytes --] == Series Details == Series: tests/device_reset: Add Xe healthcheck to post-reset validation URL : https://patchwork.freedesktop.org/series/172005/ State : success == Summary == CI Bug Log - changes from XEIGT_9051_FULL -> XEIGTPW_15657_FULL ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (2 -> 2) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_15657_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_async_flips@alternate-sync-async-flip: - shard-bmg: [PASS][1] -> [FAIL][2] ([Intel XE#3718] / [Intel XE#6078]) [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9051/shard-bmg-5/igt@kms_async_flips@alternate-sync-async-flip.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-bmg-6/igt@kms_async_flips@alternate-sync-async-flip.html * igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-3: - shard-bmg: [PASS][3] -> [FAIL][4] ([Intel XE#6078]) +1 other test fail [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9051/shard-bmg-5/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-3.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-bmg-6/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-3.html * igt@kms_big_fb@4-tiled-64bpp-rotate-90: - shard-lnl: NOTRUN -> [SKIP][5] ([Intel XE#1407]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-lnl-2/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html * igt@kms_big_fb@x-tiled-8bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#2327]) [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-bmg-8/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html * igt@kms_big_fb@y-tiled-16bpp-rotate-0: - shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#1124]) +6 other tests skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-bmg-1/igt@kms_big_fb@y-tiled-16bpp-rotate-0.html * igt@kms_big_fb@y-tiled-8bpp-rotate-180: - shard-lnl: NOTRUN -> [SKIP][8] ([Intel XE#1124]) +1 other test skip [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-lnl-5/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-lnl: NOTRUN -> [SKIP][9] ([Intel XE#1477] / [Intel XE#7361]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-lnl-3/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_bw@connected-linear-tiling-3-displays-target-2560x1440p: - shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#7679]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-bmg-9/igt@kms_bw@connected-linear-tiling-3-displays-target-2560x1440p.html * igt@kms_bw@linear-tiling-3-displays-target-3840x2160p: - shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#367]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-bmg-7/igt@kms_bw@linear-tiling-3-displays-target-3840x2160p.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs: - shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#2887]) +5 other tests skip [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-bmg-6/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][13] ([Intel XE#2887]) +1 other test skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-lnl-3/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs: - shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#3432]) +1 other test skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs: - shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#3432]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-lnl-3/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html * igt@kms_chamelium_audio@hdmi-audio: - shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#2252]) +2 other tests skip [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-bmg-3/igt@kms_chamelium_audio@hdmi-audio.html * igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4-lut1d: - shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#7358]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-bmg-5/igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4-lut1d.html * igt@kms_chamelium_hpd@dp-hpd-storm-disable: - shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#373]) +1 other test skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-lnl-2/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html * igt@kms_content_protection@dp-mst-type-0-suspend-resume: - shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#6974]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-lnl-2/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html * igt@kms_content_protection@legacy: - shard-bmg: NOTRUN -> [FAIL][20] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +1 other test fail [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-bmg-10/igt@kms_content_protection@legacy.html * igt@kms_content_protection@type1: - shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#7642]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-bmg-4/igt@kms_content_protection@type1.html * igt@kms_cursor_crc@cursor-offscreen-32x32: - shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#2320]) +4 other tests skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-bmg-8/igt@kms_cursor_crc@cursor-offscreen-32x32.html * igt@kms_cursor_crc@cursor-sliding-128x42: - shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#1424]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-lnl-6/igt@kms_cursor_crc@cursor-sliding-128x42.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#2321] / [Intel XE#7355]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-bmg-2/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#309] / [Intel XE#7343]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-lnl-4/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html * igt@kms_cursor_legacy@flip-vs-cursor-legacy: - shard-bmg: [PASS][26] -> [FAIL][27] ([Intel XE#7571]) [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9051/shard-bmg-10/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-bmg-9/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html * igt@kms_display_modes@extended-mode-basic: - shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#4302]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-lnl-6/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dsc@dsc-basic: - shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#8265]) +1 other test skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-bmg-10/igt@kms_dsc@dsc-basic.html * igt@kms_flip@2x-flip-vs-panning-vs-hang: - shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#1421]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-lnl-3/igt@kms_flip@2x-flip-vs-panning-vs-hang.html * igt@kms_flip@flip-vs-expired-vblank@b-edp1: - shard-lnl: [PASS][31] -> [FAIL][32] ([Intel XE#301]) +1 other test fail [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9051/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling: - shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#7178] / [Intel XE#7351]) +1 other test skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-blt: - shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#6312] / [Intel XE#651]) +1 other test skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-lnl-7/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-render: - shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#7061] / [Intel XE#7356]) +5 other tests skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-render.html * igt@kms_frontbuffer_tracking@drrshdr-1p-primscrn-pri-indfb-draw-blt: - shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#6312]) +2 other tests skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-lnl-4/igt@kms_frontbuffer_tracking@drrshdr-1p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#4141]) +8 other tests skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#1469] / [Intel XE#7399]) [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-lnl-3/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-pgflip-blt: - shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#656] / [Intel XE#7905]) +4 other tests skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-primscrn-shrfb-plflip-blt: - shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2311]) +30 other tests skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbchdr-1p-offscreen-pri-shrfb-draw-blt: - shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#7865]) +4 other tests skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-lnl-5/igt@kms_frontbuffer_tracking@fbchdr-1p-offscreen-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#2313]) +23 other tests skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-indfb-pgflip-blt: - shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#7905]) +4 other tests skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@hdr-argb161616f-draw-blt: - shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#7061]) +7 other tests skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-bmg-6/igt@kms_frontbuffer_tracking@hdr-argb161616f-draw-blt.html * igt@kms_hdmi_inject@inject-audio: - shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#1470] / [Intel XE#2853]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-lnl-8/igt@kms_hdmi_inject@inject-audio.html * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier: - shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#7283]) +1 other test skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-lnl-8/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier.html * igt@kms_plane@pixel-format-yf-tiled-ccs-modifier: - shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#7283]) +2 other tests skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-bmg-10/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b: - shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#2763] / [Intel XE#6886]) +4 other tests skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-bmg-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b.html * igt@kms_pm_backlight@fade: - shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#7376] / [Intel XE#7760] / [Intel XE#870]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-bmg-7/igt@kms_pm_backlight@fade.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#8395] / [Intel XE#8396]) +1 other test skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-bmg-6/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc3co-vpb-simulation@psr2-xrgb8888: - shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#8396]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-bmg-6/igt@kms_pm_dc@dc3co-vpb-simulation@psr2-xrgb8888.html * igt@kms_pm_dc@dc6-psr: - shard-lnl: [PASS][52] -> [FAIL][53] ([Intel XE#8399]) [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9051/shard-lnl-8/igt@kms_pm_dc@dc6-psr.html [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-lnl-6/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_rpm@dpms-mode-unset-lpsp: - shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#1439] / [Intel XE#7402] / [Intel XE#836]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-bmg-9/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html * igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area: - shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#2893] / [Intel XE#7304]) +1 other test skip [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-lnl-6/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf: - shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#1489]) +6 other tests skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-bmg-4/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr@fbc-pr-basic: - shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#1406]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-lnl-4/igt@kms_psr@fbc-pr-basic.html * igt@kms_psr@pr-sprite-render: - shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#2234] / [Intel XE#2850]) +5 other tests skip [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-bmg-2/igt@kms_psr@pr-sprite-render.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#3904] / [Intel XE#7342]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-bmg-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_sharpness_filter@invalid-plane-with-filter: - shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#6503]) +1 other test skip [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-bmg-6/igt@kms_sharpness_filter@invalid-plane-with-filter.html * igt@xe_evict@evict-mixed-many-threads-small: - shard-bmg: NOTRUN -> [INCOMPLETE][61] ([Intel XE#6321] / [Intel XE#8355]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-bmg-5/igt@xe_evict@evict-mixed-many-threads-small.html * igt@xe_evict@evict-small-multi-queue-cm: - shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#6540] / [Intel XE#688]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-lnl-4/igt@xe_evict@evict-small-multi-queue-cm.html * igt@xe_evict@evict-small-multi-queue-priority-cm: - shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#8370]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-bmg-1/igt@xe_evict@evict-small-multi-queue-priority-cm.html * igt@xe_exec_balancer@twice-cm-parallel-basic: - shard-lnl: NOTRUN -> [SKIP][64] ([Intel XE#7482]) +2 other tests skip [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-lnl-8/igt@xe_exec_balancer@twice-cm-parallel-basic.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race: - shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#2322] / [Intel XE#7372]) +2 other tests skip [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-bmg-4/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race.html * igt@xe_exec_basic@multigpu-once-userptr-invalidate: - shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#1392]) +2 other tests skip [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-lnl-5/igt@xe_exec_basic@multigpu-once-userptr-invalidate.html * igt@xe_exec_fault_mode@many-execqueues-multi-queue-imm: - shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#8374]) +8 other tests skip [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-bmg-9/igt@xe_exec_fault_mode@many-execqueues-multi-queue-imm.html * igt@xe_exec_fault_mode@once-multi-queue-rebind: - shard-lnl: NOTRUN -> [SKIP][68] ([Intel XE#8374]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-lnl-5/igt@xe_exec_fault_mode@once-multi-queue-rebind.html * igt@xe_exec_multi_queue@one-queue-preempt-mode-dyn-priority: - shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#8364]) +2 other tests skip [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-lnl-4/igt@xe_exec_multi_queue@one-queue-preempt-mode-dyn-priority.html * igt@xe_exec_multi_queue@two-queues-priority-smem: - shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#8364]) +15 other tests skip [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-bmg-7/igt@xe_exec_multi_queue@two-queues-priority-smem.html * igt@xe_exec_reset@cm-multi-queue-close-execqueues: - shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#8369]) [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-bmg-10/igt@xe_exec_reset@cm-multi-queue-close-execqueues.html * igt@xe_exec_reset@multi-queue-close-fd: - shard-lnl: NOTRUN -> [SKIP][72] ([Intel XE#8369]) [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-lnl-2/igt@xe_exec_reset@multi-queue-close-fd.html * igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-wt-single-vma: - shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#6196]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-lnl-7/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-wt-single-vma.html * igt@xe_exec_threads@threads-multi-queue-cm-shared-vm-basic: - shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#8378]) [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-lnl-6/igt@xe_exec_threads@threads-multi-queue-cm-shared-vm-basic.html * igt@xe_exec_threads@threads-multi-queue-hang-fd-userptr-invalidate-race: - shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#8378]) +4 other tests skip [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-bmg-8/igt@xe_exec_threads@threads-multi-queue-hang-fd-userptr-invalidate-race.html * igt@xe_fault_injection@exec-queue-create-fail-xe_pxp_exec_queue_add: - shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#6281] / [Intel XE#7426]) [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-bmg-5/igt@xe_fault_injection@exec-queue-create-fail-xe_pxp_exec_queue_add.html * igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc: - shard-bmg: [PASS][77] -> [ABORT][78] ([Intel XE#8007]) [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9051/shard-bmg-1/igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc.html [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-bmg-4/igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc.html * igt@xe_multigpu_svm@mgpu-latency-prefetch: - shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#6964]) [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-lnl-6/igt@xe_multigpu_svm@mgpu-latency-prefetch.html * igt@xe_multigpu_svm@mgpu-migration-prefetch: - shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#6964]) +1 other test skip [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-bmg-7/igt@xe_multigpu_svm@mgpu-migration-prefetch.html * igt@xe_page_reclaim@prl-invalidate-full: - shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#7793]) +1 other test skip [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-bmg-10/igt@xe_page_reclaim@prl-invalidate-full.html * igt@xe_pat@pat-sw-hw-compare: - shard-bmg: NOTRUN -> [FAIL][82] ([Intel XE#7695]) [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-bmg-6/igt@xe_pat@pat-sw-hw-compare.html * igt@xe_peer2peer@write: - shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#2427] / [Intel XE#6953] / [Intel XE#7326] / [Intel XE#7353]) [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-bmg-1/igt@xe_peer2peer@write.html * igt@xe_pm@d3hot-i2c: - shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#5742] / [Intel XE#7328] / [Intel XE#7400]) [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-lnl-8/igt@xe_pm@d3hot-i2c.html * igt@xe_pm@s3-d3cold-basic-exec: - shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#2284] / [Intel XE#366] / [Intel XE#7370]) [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-lnl-5/igt@xe_pm@s3-d3cold-basic-exec.html * igt@xe_pmu@fn-engine-activity-load: - shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#4650] / [Intel XE#7347]) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-lnl-7/igt@xe_pmu@fn-engine-activity-load.html * igt@xe_prefetch_fault@prefetch-fault: - shard-lnl: NOTRUN -> [SKIP][87] ([Intel XE#7599]) [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-lnl-1/igt@xe_prefetch_fault@prefetch-fault.html * igt@xe_prefetch_fault@prefetch-fault-svm: - shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#7599]) [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-bmg-6/igt@xe_prefetch_fault@prefetch-fault-svm.html * igt@xe_pxp@pxp-stale-queue-post-termination-irq: - shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#4733] / [Intel XE#7417]) +2 other tests skip [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-bmg-5/igt@xe_pxp@pxp-stale-queue-post-termination-irq.html * igt@xe_query@multigpu-query-hwconfig: - shard-bmg: NOTRUN -> [SKIP][90] ([Intel XE#944]) [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-bmg-8/igt@xe_query@multigpu-query-hwconfig.html * igt@xe_query@multigpu-query-uc-fw-version-huc: - shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#944]) [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-lnl-5/igt@xe_query@multigpu-query-uc-fw-version-huc.html * igt@xe_sriov_admin@bulk-sched-priority-vfs-disabled: - shard-lnl: NOTRUN -> [SKIP][92] ([Intel XE#7174]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-lnl-8/igt@xe_sriov_admin@bulk-sched-priority-vfs-disabled.html * igt@xe_sriov_flr@flr-vfs-parallel: - shard-bmg: [PASS][93] -> [FAIL][94] ([Intel XE#6569]) [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9051/shard-bmg-4/igt@xe_sriov_flr@flr-vfs-parallel.html [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-bmg-4/igt@xe_sriov_flr@flr-vfs-parallel.html * igt@xe_survivability@i2c-functionality: - shard-lnl: NOTRUN -> [SKIP][95] ([Intel XE#8415]) [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-lnl-2/igt@xe_survivability@i2c-functionality.html * igt@xe_vm@overcommit-fault-vram-lr: - shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#7892]) [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-lnl-3/igt@xe_vm@overcommit-fault-vram-lr.html #### Possible fixes #### * igt@core_hotunplug@hotrebind: - shard-bmg: [ABORT][97] ([Intel XE#8007]) -> [PASS][98] [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9051/shard-bmg-2/igt@core_hotunplug@hotrebind.html [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-bmg-5/igt@core_hotunplug@hotrebind.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-bmg: [INCOMPLETE][99] ([Intel XE#7084] / [Intel XE#8150]) -> [PASS][100] +1 other test pass [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9051/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_flip@2x-plain-flip-ts-check-interruptible: - shard-bmg: [FAIL][101] ([Intel XE#5408] / [Intel XE#6266]) -> [PASS][102] +1 other test pass [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9051/shard-bmg-3/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-bmg-9/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html * igt@kms_setmode@basic@pipe-b-edp-1: - shard-lnl: [FAIL][103] ([Intel XE#8618]) -> [PASS][104] +2 other tests pass [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9051/shard-lnl-6/igt@kms_setmode@basic@pipe-b-edp-1.html [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-lnl-8/igt@kms_setmode@basic@pipe-b-edp-1.html * igt@xe_sriov_flr@flr-twice: - shard-bmg: [FAIL][105] ([Intel XE#6569]) -> [PASS][106] [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9051/shard-bmg-3/igt@xe_sriov_flr@flr-twice.html [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-bmg-6/igt@xe_sriov_flr@flr-twice.html #### Warnings #### * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-bmg: [SKIP][107] ([Intel XE#2426] / [Intel XE#5848]) -> [SKIP][108] ([Intel XE#2509] / [Intel XE#7437]) [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9051/shard-bmg-9/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/shard-bmg-5/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469 [Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470 [Intel XE#1477]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1477 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427 [Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#2853]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2853 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#3718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3718 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141 [Intel XE#4302]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302 [Intel XE#4650]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4650 [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733 [Intel XE#5408]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5408 [Intel XE#5742]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5742 [Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848 [Intel XE#6078]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6078 [Intel XE#6196]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6196 [Intel XE#6266]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6266 [Intel XE#6281]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6281 [Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312 [Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321 [Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#6540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6540 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886 [Intel XE#6953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6953 [Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964 [Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974 [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061 [Intel XE#7084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7084 [Intel XE#7174]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7174 [Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178 [Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283 [Intel XE#7304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7304 [Intel XE#7326]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7326 [Intel XE#7328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7328 [Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342 [Intel XE#7343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7343 [Intel XE#7347]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7347 [Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351 [Intel XE#7353]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7353 [Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355 [Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356 [Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358 [Intel XE#7361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7361 [Intel XE#7370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370 [Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372 [Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374 [Intel XE#7376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7376 [Intel XE#7399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7399 [Intel XE#7400]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7400 [Intel XE#7402]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7402 [Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417 [Intel XE#7426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7426 [Intel XE#7437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7437 [Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482 [Intel XE#7571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7571 [Intel XE#7599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7599 [Intel XE#7642]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7642 [Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679 [Intel XE#7695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7695 [Intel XE#7760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7760 [Intel XE#7793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7793 [Intel XE#7865]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7865 [Intel XE#7892]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7892 [Intel XE#7905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7905 [Intel XE#8007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8007 [Intel XE#8150]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8150 [Intel XE#8265]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8265 [Intel XE#8355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8355 [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [Intel XE#8364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8364 [Intel XE#8369]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8369 [Intel XE#8370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8370 [Intel XE#8374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8374 [Intel XE#8378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8378 [Intel XE#8395]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8395 [Intel XE#8396]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8396 [Intel XE#8399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8399 [Intel XE#8415]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8415 [Intel XE#8618]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8618 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 Build changes ------------- * IGT: IGT_9051 -> IGTPW_15657 * Linux: xe-5575-dc462ab791b686c48545c160ecc81be64f77a846 -> xe-5576-6ed371d40ec5cba972c0bdcf7e61fcadc7b5e7b0 IGTPW_15657: 15657 IGT_9051: 9051 xe-5575-dc462ab791b686c48545c160ecc81be64f77a846: dc462ab791b686c48545c160ecc81be64f77a846 xe-5576-6ed371d40ec5cba972c0bdcf7e61fcadc7b5e7b0: 6ed371d40ec5cba972c0bdcf7e61fcadc7b5e7b0 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15657/index.html [-- Attachment #2: Type: text/html, Size: 40177 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2026-08-18 15:06 UTC | newest] Thread overview: 8+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2026-08-11 14:14 [PATCH v1 0/2] tests/device_reset: Add Xe healthcheck to post-reset validation Lukasz Laguna 2026-08-11 14:14 ` [PATCH v1 1/2] lib/xe/xe_device: Add helper for device healthcheck Lukasz Laguna 2026-08-18 15:04 ` Bernatowicz, Marcin 2026-08-11 14:14 ` [PATCH v1 2/2] tests/device_reset: Add Xe healthcheck to post-reset validation Lukasz Laguna 2026-08-18 15:05 ` Bernatowicz, Marcin 2026-08-11 15:53 ` ✓ Xe.CI.BAT: success for " Patchwork 2026-08-11 16:08 ` ✗ i915.CI.BAT: failure " Patchwork 2026-08-11 18:00 ` ✓ Xe.CI.FULL: success " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox