* [PATCH v2 0/4] lib/xe: query engine class capabilities from debugfs info
@ 2026-04-03 7:13 Xin Wang
2026-04-03 7:13 ` [PATCH v2 1/4] lib/xe: cache engine class masks " Xin Wang
` (7 more replies)
0 siblings, 8 replies; 14+ messages in thread
From: Xin Wang @ 2026-04-03 7:13 UTC (permalink / raw)
To: igt-dev; +Cc: Xin Wang
The xe kernel driver recently started exposing engine class capability
bitmasks in the debugfs "info" node:
multi_lrc_engine_classes vcs vecs
gt0 multi_queue_engine_classes bcs ccs
These entries were introduced by the following KMD series:
https://patchwork.freedesktop.org/series/163802/
- drm/xe: improve readability of debugfs engine info output
- drm/xe: expose multi-lrc engine classes in debugfs info
This series wires up IGT to consume these debugfs entries:
Patch 1 adds two bitmask fields to struct xe_device (multi_lrc_mask and
multi_queue_engine_class_mask) and populates them in xe_device_get() by
reading the debugfs "info" file line-by-line. UINT16_MAX is used as a
sentinel meaning "not available" so that older kernels that do not expose
these entries continue to work via the existing hardcoded fallbacks.
Patch 2 implements xe_engine_class_supports_multi_lrc(fd, engine_class).
When the kernel-reported bitmask is available it is used directly; otherwise
the function falls back to returning true only for VIDEO_DECODE and
VIDEO_ENHANCE, matching the previous hardcoded behaviour.
Patch 3 refactors xe_engine_class_supports_multi_queue() in the same way,
adding an fd parameter so it can consult the kernel-reported bitmask. All
callers (direct calls in xe_exec_threads.c and macro users in
xe_exec_multi_queue.c) are updated accordingly. Note that
xe_for_each_multi_queue_engine_class() gains a mandatory fd parameter as
part of this change.
Patch 4 guards the balancer and multi-LRC codepaths in xe_exec_balancer,
xe_exec_reset, xe_exec_threads and xe_drm_fdinfo with
xe_engine_class_supports_multi_lrc() so that tests are skipped rather than
failing on engine classes whose hardware does not support multi-LRC
submission. It also ensures the parallel-queue rejection check in
xe_exec_multi_queue __test_sanity() is only exercised for engine classes
that support multi-LRC.
v2:
- Merged previous xe_exec_multi_queue expected-error fix into patch 4 two
patches share the same logical motivation.
- xe_exec_multi_queue: use `if (n > 1 && xe_engine_class_supports_multi_lrc())`
instead of a ternary to select the error code (Niranjana)
Xin Wang (4):
lib/xe: cache engine class masks from debugfs info
lib/xe: add xe_engine_class_supports_multi_lrc()
lib/xe: use debugfs info to implement
xe_engine_class_supports_multi_queue()
tests/intel: skip or adjust tests for non-multi-LRC engine classes
lib/xe/xe_query.c | 156 +++++++++++++++++++++++++++---
lib/xe/xe_query.h | 21 +++-
tests/intel/xe_drm_fdinfo.c | 2 +-
tests/intel/xe_exec_balancer.c | 6 +-
tests/intel/xe_exec_multi_queue.c | 6 +-
tests/intel/xe_exec_reset.c | 2 +-
tests/intel/xe_exec_threads.c | 5 +-
7 files changed, 168 insertions(+), 30 deletions(-)
--
2.43.0
^ permalink raw reply [flat|nested] 14+ messages in thread* [PATCH v2 1/4] lib/xe: cache engine class masks from debugfs info 2026-04-03 7:13 [PATCH v2 0/4] lib/xe: query engine class capabilities from debugfs info Xin Wang @ 2026-04-03 7:13 ` Xin Wang 2026-04-06 22:25 ` [v2,1/4] " Daniel Charles 2026-04-03 7:13 ` [PATCH v2 2/4] lib/xe: add xe_engine_class_supports_multi_lrc() Xin Wang ` (6 subsequent siblings) 7 siblings, 1 reply; 14+ messages in thread From: Xin Wang @ 2026-04-03 7:13 UTC (permalink / raw) To: igt-dev; +Cc: Xin Wang Read the multi_lrc_engine_classes and multi_queue_engine_classes lines from the xe debugfs info node and cache them in struct xe_device as bitmasks indexed by DRM_XE_ENGINE_CLASS_* values. The new fields are set to UINT16_MAX when the kernel does not yet expose the information (i.e. when the key is not present in the info node), so callers can distinguish "not available" from "empty set". Signed-off-by: Xin Wang <x.wang@intel.com> --- lib/xe/xe_query.c | 86 +++++++++++++++++++++++++++++++++++++++++++++++ lib/xe/xe_query.h | 12 +++++++ 2 files changed, 98 insertions(+) diff --git a/lib/xe/xe_query.c b/lib/xe/xe_query.c index 00331c628..441e95794 100644 --- a/lib/xe/xe_query.c +++ b/lib/xe/xe_query.c @@ -6,6 +6,7 @@ * Matthew Brost <matthew.brost@intel.com> */ +#include <fcntl.h> #include <stdlib.h> #include <pthread.h> @@ -19,6 +20,7 @@ #endif #include "drmtest.h" +#include "igt_debugfs.h" #include "ioctl_wrappers.h" #include "igt_map.h" #include "intel_pat.h" @@ -134,6 +136,85 @@ static uint32_t __mem_default_alignment(struct drm_xe_query_mem_regions *mem_reg return alignment; } +/* + * parse_engine_class_mask - parse a space-separated list of engine class names + * into a bitmask indexed by DRM_XE_ENGINE_CLASS_* values. + * + * @names: the engine class names string, e.g. " vcs vecs" or "bcs ccs" + * + * The kernel debugfs "info" output for multi_lrc_engine_classes and + * multi_queue_engine_classes uses the same short names as + * xe_engine_class_short_string(): "rcs", "bcs", "vcs", "vecs", "ccs". + * + * Returns the bitmask, or 0 if no known class names were found. + */ +static uint16_t parse_engine_class_mask(const char *names) +{ + static const struct { + const char *name; + uint32_t engine_class; + } class_map[] = { + { "rcs", DRM_XE_ENGINE_CLASS_RENDER }, + { "bcs", DRM_XE_ENGINE_CLASS_COPY }, + { "vcs", DRM_XE_ENGINE_CLASS_VIDEO_DECODE }, + { "vecs", DRM_XE_ENGINE_CLASS_VIDEO_ENHANCE }, + { "ccs", DRM_XE_ENGINE_CLASS_COMPUTE }, + }; + uint16_t mask = 0; + int i; + + for (i = 0; i < ARRAY_SIZE(class_map); i++) { + if (strstr(names, class_map[i].name)) + mask |= BIT(class_map[i].engine_class); + } + + return mask; +} + +/* + * Read the debugfs "info" file and OR together the engine class bitmasks from + * every line that contains @key. Returns UINT16_MAX if @key is not found + * (kernel too old to expose this information). + * + * multi_lrc_engine_classes is printed once at device level; multi_queue_engine_classes + * is printed once per GT, so the OR handles the multi-GT case transparently. + */ +static uint16_t xe_device_query_engine_class_mask(int fd, const char *key) +{ + char *line = NULL; + size_t line_len = 0; + uint16_t mask = UINT16_MAX; + size_t key_len = strlen(key); + int dbgfs_fd; + FILE *dbgfs_file; + + dbgfs_fd = igt_debugfs_open(fd, "info", O_RDONLY); + if (dbgfs_fd < 0) + return mask; + + dbgfs_file = fdopen(dbgfs_fd, "r"); + if (!dbgfs_file) { + close(dbgfs_fd); + return mask; + } + + while (getline(&line, &line_len, dbgfs_file) != -1) { + const char *p = strstr(line, key); + + if (!p) + continue; + + if (mask == UINT16_MAX) + mask = 0; + mask |= parse_engine_class_mask(p + key_len); + } + + free(line); + fclose(dbgfs_file); + + return mask; +} + /** * xe_engine_class_supports_multi_queue: * @engine_class: engine class @@ -330,6 +411,11 @@ struct xe_device *xe_device_get(int fd) } pthread_mutex_unlock(&cache.cache_mutex); + xe_dev->multi_lrc_mask = + xe_device_query_engine_class_mask(fd, "multi_lrc_engine_classes"); + xe_dev->multi_queue_engine_class_mask = + xe_device_query_engine_class_mask(fd, "multi_queue_engine_classes"); + return xe_dev; } diff --git a/lib/xe/xe_query.h b/lib/xe/xe_query.h index 05e2ad84f..f33562bda 100644 --- a/lib/xe/xe_query.h +++ b/lib/xe/xe_query.h @@ -79,6 +79,18 @@ struct xe_device { /** @pat_cache: cached PAT index configuration, NULL if not yet populated */ struct intel_pat_cache *pat_cache; + + /** + * @multi_lrc_mask: bitmask of engine classes supporting multi-LRC. + * UINT16_MAX if not available (older kernel). + */ + uint16_t multi_lrc_mask; + + /** + * @multi_queue_engine_class_mask: bitmask of engine classes supporting + * multi-queue. UINT16_MAX if not available (older kernel). + */ + uint16_t multi_queue_engine_class_mask; }; #define xe_for_each_engine(__fd, __hwe) \ -- 2.43.0 ^ permalink raw reply related [flat|nested] 14+ messages in thread
* Re: [v2,1/4] lib/xe: cache engine class masks from debugfs info 2026-04-03 7:13 ` [PATCH v2 1/4] lib/xe: cache engine class masks " Xin Wang @ 2026-04-06 22:25 ` Daniel Charles 0 siblings, 0 replies; 14+ messages in thread From: Daniel Charles @ 2026-04-06 22:25 UTC (permalink / raw) To: Xin Wang, igt-dev On 4/3/2026 12:13 AM, Xin Wang wrote: > Read the multi_lrc_engine_classes and multi_queue_engine_classes lines > from the xe debugfs info node and cache them in struct xe_device as > bitmasks indexed by DRM_XE_ENGINE_CLASS_* values. > > The new fields are set to UINT16_MAX when the kernel does not yet expose > the information (i.e. when the key is not present in the info node), so > callers can distinguish "not available" from "empty set". > > Signed-off-by: Xin Wang <x.wang@intel.com> > --- > lib/xe/xe_query.c | 86 +++++++++++++++++++++++++++++++++++++++++++++++ > lib/xe/xe_query.h | 12 +++++++ > 2 files changed, 98 insertions(+) > > diff --git a/lib/xe/xe_query.c b/lib/xe/xe_query.c > index 00331c628..441e95794 100644 > --- a/lib/xe/xe_query.c > +++ b/lib/xe/xe_query.c > @@ -6,6 +6,7 @@ > * Matthew Brost <matthew.brost@intel.com> > */ > > +#include <fcntl.h> > #include <stdlib.h> > #include <pthread.h> > > @@ -19,6 +20,7 @@ > #endif > > #include "drmtest.h" > +#include "igt_debugfs.h" > #include "ioctl_wrappers.h" > #include "igt_map.h" > #include "intel_pat.h" > @@ -134,6 +136,85 @@ static uint32_t __mem_default_alignment(struct drm_xe_query_mem_regions *mem_reg > return alignment; > } > > +/* > + * parse_engine_class_mask - parse a space-separated list of engine class names > + * into a bitmask indexed by DRM_XE_ENGINE_CLASS_* values. > + * > + * @names: the engine class names string, e.g. " vcs vecs" or "bcs ccs" > + * > + * The kernel debugfs "info" output for multi_lrc_engine_classes and > + * multi_queue_engine_classes uses the same short names as > + * xe_engine_class_short_string(): "rcs", "bcs", "vcs", "vecs", "ccs". > + * > + * Returns the bitmask, or 0 if no known class names were found. > + */ > +static uint16_t parse_engine_class_mask(const char *names) > +{ > + static const struct { > + const char *name; > + uint32_t engine_class; > + } class_map[] = { > + { "rcs", DRM_XE_ENGINE_CLASS_RENDER }, > + { "bcs", DRM_XE_ENGINE_CLASS_COPY }, > + { "vcs", DRM_XE_ENGINE_CLASS_VIDEO_DECODE }, > + { "vecs", DRM_XE_ENGINE_CLASS_VIDEO_ENHANCE }, > + { "ccs", DRM_XE_ENGINE_CLASS_COMPUTE }, > + }; > + uint16_t mask = 0; > + int i; > + > + for (i = 0; i < ARRAY_SIZE(class_map); i++) { > + if (strstr(names, class_map[i].name)) > + mask |= BIT(class_map[i].engine_class); > + } > + > + return mask; > +} > + > +/* > + * Read the debugfs "info" file and OR together the engine class bitmasks from > + * every line that contains @key. Returns UINT16_MAX if @key is not found > + * (kernel too old to expose this information). > + * > + * multi_lrc_engine_classes is printed once at device level; multi_queue_engine_classes > + * is printed once per GT, so the OR handles the multi-GT case transparently. > + */ > +static uint16_t xe_device_query_engine_class_mask(int fd, const char *key) > +{ > + char *line = NULL; > + size_t line_len = 0; > + uint16_t mask = UINT16_MAX; > + size_t key_len = strlen(key); > + int dbgfs_fd; > + FILE *dbgfs_file; > + > + dbgfs_fd = igt_debugfs_open(fd, "info", O_RDONLY); > + if (dbgfs_fd < 0) > + return mask; > + > + dbgfs_file = fdopen(dbgfs_fd, "r"); > + if (!dbgfs_file) { > + close(dbgfs_fd); > + return mask; > + } > + > + while (getline(&line, &line_len, dbgfs_file) != -1) { > + const char *p = strstr(line, key); > + > + if (!p) > + continue; > + > + if (mask == UINT16_MAX) > + mask = 0; > + mask |= parse_engine_class_mask(p + key_len); > + } > + > + free(line); > + fclose(dbgfs_file); > + > + return mask; > +} > + > /** > * xe_engine_class_supports_multi_queue: > * @engine_class: engine class > @@ -330,6 +411,11 @@ struct xe_device *xe_device_get(int fd) > } > pthread_mutex_unlock(&cache.cache_mutex); > > + xe_dev->multi_lrc_mask = > + xe_device_query_engine_class_mask(fd, "multi_lrc_engine_classes"); > + xe_dev->multi_queue_engine_class_mask = > + xe_device_query_engine_class_mask(fd, "multi_queue_engine_classes"); > + > return xe_dev; > } > > diff --git a/lib/xe/xe_query.h b/lib/xe/xe_query.h > index 05e2ad84f..f33562bda 100644 > --- a/lib/xe/xe_query.h > +++ b/lib/xe/xe_query.h > @@ -79,6 +79,18 @@ struct xe_device { > > /** @pat_cache: cached PAT index configuration, NULL if not yet populated */ > struct intel_pat_cache *pat_cache; > + > + /** > + * @multi_lrc_mask: bitmask of engine classes supporting multi-LRC. > + * UINT16_MAX if not available (older kernel). > + */ > + uint16_t multi_lrc_mask; > + > + /** > + * @multi_queue_engine_class_mask: bitmask of engine classes supporting > + * multi-queue. UINT16_MAX if not available (older kernel). > + */ > + uint16_t multi_queue_engine_class_mask; > }; > > #define xe_for_each_engine(__fd, __hwe) \ > > From patchwork Fri Apr 3 07:13:20 2026 > Content-Type: text/plain; charset="utf-8" > MIME-Version: 1.0 > Content-Transfer-Encoding: 7bit > Subject: [v2,2/4] lib/xe: add xe_engine_class_supports_multi_lrc() > From: Xin Wang <x.wang@intel.com> > X-Patchwork-Id: 716341 > Message-Id: <20260403071322.366766-3-x.wang@intel.com> > To: igt-dev@lists.freedesktop.org > Cc: Xin Wang <x.wang@intel.com> > Date: Fri, 3 Apr 2026 00:13:20 -0700 > > Add xe_engine_class_supports_multi_lrc() to query whether an engine > class supports multi-LRC submission. When the kernel exposes the > information via the debugfs info node it is used directly; otherwise > fall back to a hardcoded default to keep compatibility with older KMD. > > Signed-off-by: Xin Wang <x.wang@intel.com> > --- > lib/xe/xe_query.c | 30 ++++++++++++++++++++++++++++++ > lib/xe/xe_query.h | 1 + > 2 files changed, 31 insertions(+) > > diff --git a/lib/xe/xe_query.c b/lib/xe/xe_query.c > index 441e95794..e13d5e143 100644 > --- a/lib/xe/xe_query.c > +++ b/lib/xe/xe_query.c > @@ -308,6 +308,36 @@ static struct xe_device *find_in_cache(int fd) > return xe_dev; > } > > +/** > + * xe_engine_class_supports_multi_lrc: > + * @fd: xe device fd > + * @engine_class: engine class > + * > + * Returns true if multi LRC supported by engine class or false. > + * Uses the kernel-reported bitmask from debugfs when available, otherwise > + * falls back to the hardcoded per-class default. > + */ > +bool xe_engine_class_supports_multi_lrc(int fd, uint32_t engine_class) > +{ > + struct xe_device *xe_dev = find_in_cache(fd); > + > + if (xe_dev && xe_dev->multi_lrc_mask != UINT16_MAX) > + return !!(xe_dev->multi_lrc_mask & BIT(engine_class)); > + > + switch (engine_class) { > + case DRM_XE_ENGINE_CLASS_COPY: > + case DRM_XE_ENGINE_CLASS_COMPUTE: > + case DRM_XE_ENGINE_CLASS_RENDER: > + return false; > + case DRM_XE_ENGINE_CLASS_VIDEO_DECODE: > + case DRM_XE_ENGINE_CLASS_VIDEO_ENHANCE: > + return true; > + default: > + igt_warn("Engine class 0x%x unknown\n", engine_class); > + return false; > + } > +} > + > static void xe_device_free(struct xe_device *xe_dev) > { > free(xe_dev->config); > diff --git a/lib/xe/xe_query.h b/lib/xe/xe_query.h > index f33562bda..5c26a3e88 100644 > --- a/lib/xe/xe_query.h > +++ b/lib/xe/xe_query.h > @@ -162,6 +162,7 @@ uint32_t xe_va_bits(int fd); > uint16_t xe_dev_id(int fd); > int xe_supports_faults(int fd); > bool xe_engine_class_supports_multi_queue(uint32_t engine_class); > +bool xe_engine_class_supports_multi_lrc(int fd, uint32_t engine_class); > const char *xe_engine_class_string(uint32_t engine_class); > const char *xe_engine_class_short_string(uint32_t engine_class); > bool xe_has_engine_class(int fd, uint16_t engine_class); > > From patchwork Fri Apr 3 07:13:21 2026 > Content-Type: text/plain; charset="utf-8" > MIME-Version: 1.0 > Content-Transfer-Encoding: 7bit > Subject: [v2,3/4] lib/xe: use debugfs info to implement > xe_engine_class_supports_multi_queue() > From: Xin Wang <x.wang@intel.com> > X-Patchwork-Id: 716343 > Message-Id: <20260403071322.366766-4-x.wang@intel.com> > To: igt-dev@lists.freedesktop.org > Cc: Xin Wang <x.wang@intel.com> > Date: Fri, 3 Apr 2026 00:13:21 -0700 > > Update xe_engine_class_supports_multi_queue() to take a device fd and > use the kernel-reported multi_queue_engine_classes bitmask from debugfs > when available, with a fallback to the hardcoded default for older KMD. > > Propagate the new fd argument through the xe_for_each_multi_queue_engine > and xe_for_each_multi_queue_engine_class macros and all their call sites. > > Signed-off-by: Xin Wang <x.wang@intel.com> > --- > lib/xe/xe_query.c | 52 ++++++++++++++++++------------- > lib/xe/xe_query.h | 8 ++--- > tests/intel/xe_exec_multi_queue.c | 4 +-- > tests/intel/xe_exec_threads.c | 4 +-- > 4 files changed, 38 insertions(+), 30 deletions(-) > > diff --git a/lib/xe/xe_query.c b/lib/xe/xe_query.c > index e13d5e143..3286a3b37 100644 > --- a/lib/xe/xe_query.c > +++ b/lib/xe/xe_query.c > @@ -215,28 +215,6 @@ static uint16_t xe_device_query_engine_class_mask(int fd, const char *key) > return mask; > } > > -/** > - * xe_engine_class_supports_multi_queue: > - * @engine_class: engine class > - * > - * Returns true if multi queue supported by engine class or false. > - */ > -bool xe_engine_class_supports_multi_queue(uint32_t engine_class) > -{ > - switch (engine_class) { > - case DRM_XE_ENGINE_CLASS_COPY: > - case DRM_XE_ENGINE_CLASS_COMPUTE: > - return true; > - case DRM_XE_ENGINE_CLASS_RENDER: > - case DRM_XE_ENGINE_CLASS_VIDEO_DECODE: > - case DRM_XE_ENGINE_CLASS_VIDEO_ENHANCE: > - return false; > - default: > - igt_warn("Engine class 0x%x unknown\n", engine_class); > - return false; > - } > -} > - > /** > * xe_engine_class_string: > * @engine_class: engine class > @@ -338,6 +316,36 @@ bool xe_engine_class_supports_multi_lrc(int fd, uint32_t engine_class) > } > } > > +/** > + * xe_engine_class_supports_multi_queue: > + * @fd: xe device fd > + * @engine_class: engine class > + * > + * Returns true if multi queue supported by engine class or false. > + * Uses the kernel-reported bitmask from debugfs when available, otherwise > + * falls back to the hardcoded per-class default. > + */ > +bool xe_engine_class_supports_multi_queue(int fd, uint32_t engine_class) > +{ > + struct xe_device *xe_dev = find_in_cache(fd); > + > + if (xe_dev && xe_dev->multi_queue_engine_class_mask != UINT16_MAX) > + return !!(xe_dev->multi_queue_engine_class_mask & BIT(engine_class)); > + > + switch (engine_class) { > + case DRM_XE_ENGINE_CLASS_COPY: > + case DRM_XE_ENGINE_CLASS_COMPUTE: > + return true; > + case DRM_XE_ENGINE_CLASS_RENDER: > + case DRM_XE_ENGINE_CLASS_VIDEO_DECODE: > + case DRM_XE_ENGINE_CLASS_VIDEO_ENHANCE: > + return false; > + default: > + igt_warn("Engine class 0x%x unknown\n", engine_class); > + return false; > + } > +} > + > static void xe_device_free(struct xe_device *xe_dev) > { > free(xe_dev->config); > diff --git a/lib/xe/xe_query.h b/lib/xe/xe_query.h > index 5c26a3e88..8815c6c66 100644 > --- a/lib/xe/xe_query.h > +++ b/lib/xe/xe_query.h > @@ -113,10 +113,10 @@ struct xe_device { > > #define xe_for_each_multi_queue_engine(__fd, __hwe) \ > xe_for_each_engine(__fd, __hwe) \ > - for_if(xe_engine_class_supports_multi_queue((__hwe)->engine_class)) > -#define xe_for_each_multi_queue_engine_class(__class) \ > + for_if(xe_engine_class_supports_multi_queue(__fd, (__hwe)->engine_class)) > +#define xe_for_each_multi_queue_engine_class(__fd, __class) \ > xe_for_each_engine_class(__class) \ > - for_if(xe_engine_class_supports_multi_queue(__class)) > + for_if(xe_engine_class_supports_multi_queue(__fd, __class)) > > #define XE_IS_CLASS_SYSMEM(__region) ((__region)->mem_class == DRM_XE_MEM_REGION_CLASS_SYSMEM) > #define XE_IS_CLASS_VRAM(__region) ((__region)->mem_class == DRM_XE_MEM_REGION_CLASS_VRAM) > @@ -161,7 +161,7 @@ uint32_t xe_get_default_alignment(int fd); > uint32_t xe_va_bits(int fd); > uint16_t xe_dev_id(int fd); > int xe_supports_faults(int fd); > -bool xe_engine_class_supports_multi_queue(uint32_t engine_class); > +bool xe_engine_class_supports_multi_queue(int fd, uint32_t engine_class); > bool xe_engine_class_supports_multi_lrc(int fd, uint32_t engine_class); > const char *xe_engine_class_string(uint32_t engine_class); > const char *xe_engine_class_short_string(uint32_t engine_class); > diff --git a/tests/intel/xe_exec_multi_queue.c b/tests/intel/xe_exec_multi_queue.c > index f987f8d6a..b5ded0633 100644 > --- a/tests/intel/xe_exec_multi_queue.c > +++ b/tests/intel/xe_exec_multi_queue.c > @@ -1052,7 +1052,7 @@ int igt_main() > > igt_subtest_f("sanity") > xe_for_each_gt(fd, gt) > - xe_for_each_multi_queue_engine_class(class) > + xe_for_each_multi_queue_engine_class(fd, class) > test_sanity(fd, gt, class); > > igt_subtest_f("exec-sanity") > @@ -1061,7 +1061,7 @@ int igt_main() > > igt_subtest_f("virtual") > xe_for_each_gt(fd, gt) > - xe_for_each_multi_queue_engine_class(class) > + xe_for_each_multi_queue_engine_class(fd, class) > test_exec_virtual(fd, gt, class); > > igt_subtest_f("priority") > diff --git a/tests/intel/xe_exec_threads.c b/tests/intel/xe_exec_threads.c > index f082a0eda..ab9565beb 100644 > --- a/tests/intel/xe_exec_threads.c > +++ b/tests/intel/xe_exec_threads.c > @@ -1141,7 +1141,7 @@ static void threads(int fd, int flags) > int gt; > > xe_for_each_engine(fd, hwe) { > - if ((flags & MULTI_QUEUE) && !xe_engine_class_supports_multi_queue(hwe->engine_class)) > + if ((flags & MULTI_QUEUE) && !xe_engine_class_supports_multi_queue(fd, hwe->engine_class)) > continue; > ++n_engines; > } > @@ -1170,7 +1170,7 @@ static void threads(int fd, int flags) > } > > xe_for_each_engine(fd, hwe) { > - if ((flags & MULTI_QUEUE) && !xe_engine_class_supports_multi_queue(hwe->engine_class)) > + if ((flags & MULTI_QUEUE) && !xe_engine_class_supports_multi_queue(fd, hwe->engine_class)) > continue; > threads_data[i].mutex = &mutex; > threads_data[i].cond = &cond; > > From patchwork Fri Apr 3 07:13:22 2026 > Content-Type: text/plain; charset="utf-8" > MIME-Version: 1.0 > Content-Transfer-Encoding: 7bit > Subject: [v2,4/4] tests/intel: skip or adjust tests for non-multi-LRC engine > classes > From: Xin Wang <x.wang@intel.com> > X-Patchwork-Id: 716344 > Message-Id: <20260403071322.366766-5-x.wang@intel.com> > To: igt-dev@lists.freedesktop.org > Cc: Xin Wang <x.wang@intel.com>, > Niranjana Vishwanathapura <niranjana.vishwanathapura@intel.com>, > Matthew Brost <matthew.brost@intel.com> > Date: Fri, 3 Apr 2026 00:13:22 -0700 > > Use xe_engine_class_supports_multi_lrc() to guard multi-LRC test paths: > > - xe_exec_balancer: skip tests requiring multi-LRC if the engine class > does not support it > - xe_exec_reset: same guard for the balancer subtest > - xe_drm_fdinfo: skip utilization_multi() for non-multi-LRC classes > - xe_exec_threads: assert multi-LRC support before test_balancer() > - xe_exec_multi_queue: only validate parallel-queue rejection (-EINVAL) > for engine classes that support multi-LRC; non-multi-LRC classes do > not accept the MULTI_GROUP flag at all so the check is irrelevant > > Cc: Niranjana Vishwanathapura <niranjana.vishwanathapura@intel.com> > Cc: Matthew Brost <matthew.brost@intel.com> > Signed-off-by: Xin Wang <x.wang@intel.com> > --- > tests/intel/xe_drm_fdinfo.c | 2 +- > tests/intel/xe_exec_balancer.c | 6 +++--- > tests/intel/xe_exec_multi_queue.c | 2 +- > tests/intel/xe_exec_reset.c | 2 +- > tests/intel/xe_exec_threads.c | 1 + > 5 files changed, 7 insertions(+), 6 deletions(-) > > diff --git a/tests/intel/xe_drm_fdinfo.c b/tests/intel/xe_drm_fdinfo.c > index 411ca6ec4..3c113ed5d 100644 > --- a/tests/intel/xe_drm_fdinfo.c > +++ b/tests/intel/xe_drm_fdinfo.c > @@ -673,7 +673,7 @@ utilization_multi(int fd, int gt, int class, unsigned int flags) > igt_assert(virtual ^ parallel); > > num_placements = xe_gt_fill_engines_by_class(fd, gt, class, eci); > - if (num_placements < 2) > + if (num_placements < 2 || !xe_engine_class_supports_multi_lrc(fd, class)) > return; > > igt_debug("Target class: %s\n", engine_map[class]); > diff --git a/tests/intel/xe_exec_balancer.c b/tests/intel/xe_exec_balancer.c > index 9cd641b4e..3c6ec45f1 100644 > --- a/tests/intel/xe_exec_balancer.c > +++ b/tests/intel/xe_exec_balancer.c > @@ -57,7 +57,7 @@ static bool test_all_active(int fd, int gt, int class) > int i, num_placements; > > num_placements = xe_gt_fill_engines_by_class(fd, gt, class, eci); > - if (num_placements < 2) > + if (num_placements < 2 || !xe_engine_class_supports_multi_lrc(fd, class)) > return false; > > vm = xe_vm_create(fd, 0, 0); > @@ -187,7 +187,7 @@ test_exec(int fd, int gt, int class, int n_exec_queues, int n_execs, > igt_assert_lte(n_exec_queues, MAX_N_EXEC_QUEUES); > > num_placements = xe_gt_fill_engines_by_class(fd, gt, class, eci); > - if (num_placements < 2) > + if (num_placements < 2 || !xe_engine_class_supports_multi_lrc(fd, class)) > return false; > > vm = xe_vm_create(fd, 0, 0); > @@ -402,7 +402,7 @@ test_cm(int fd, int gt, int class, int n_exec_queues, int n_execs, > igt_assert_lte(n_exec_queues, MAX_N_EXEC_QUEUES); > > num_placements = xe_gt_fill_engines_by_class(fd, gt, class, eci); > - if (num_placements < 2) > + if (num_placements < 2 || !xe_engine_class_supports_multi_lrc(fd, class)) > return false; > > vm = xe_vm_create(fd, DRM_XE_VM_CREATE_FLAG_LR_MODE, 0); > diff --git a/tests/intel/xe_exec_multi_queue.c b/tests/intel/xe_exec_multi_queue.c > index b5ded0633..ca96099d3 100644 > --- a/tests/intel/xe_exec_multi_queue.c > +++ b/tests/intel/xe_exec_multi_queue.c > @@ -112,7 +112,7 @@ __test_sanity(int fd, int gt, int class, bool preempt_mode) > > /* Multi-Queue can't be a parallel queue */ > multi_queue.value = DRM_XE_MULTI_GROUP_CREATE; > - if (n > 1) > + if (n > 1 && xe_engine_class_supports_multi_lrc(fd, class)) > igt_assert_eq(__xe_exec_queue_create(fd, vm, 2, 1, eci, ext, &val), -EINVAL); > > /* Specifying multiple MULTI_GROUP property is invalid */ > diff --git a/tests/intel/xe_exec_reset.c b/tests/intel/xe_exec_reset.c > index 7aaee31dd..95191139d 100644 > --- a/tests/intel/xe_exec_reset.c > +++ b/tests/intel/xe_exec_reset.c > @@ -184,7 +184,7 @@ test_balancer(int fd, int gt, int class, int n_exec_queues, int n_execs, > fd = drm_open_driver(DRIVER_XE); > > num_placements = xe_gt_fill_engines_by_class(fd, gt, class, eci); > - if (num_placements < 2) > + if (num_placements < 2 || !xe_engine_class_supports_multi_lrc(fd, class)) > return; > > vm = xe_vm_create(fd, 0, 0); > diff --git a/tests/intel/xe_exec_threads.c b/tests/intel/xe_exec_threads.c > index ab9565beb..7b8100c5b 100644 > --- a/tests/intel/xe_exec_threads.c > +++ b/tests/intel/xe_exec_threads.c > @@ -85,6 +85,7 @@ test_balancer(int fd, int gt, uint32_t vm, uint64_t addr, uint64_t userptr, > > num_placements = xe_gt_fill_engines_by_class(fd, gt, class, eci); > igt_assert_lt(1, num_placements); > + igt_assert(xe_engine_class_supports_multi_lrc(fd, class)); The series looks good to me Reviewed-by: Daniel Charles <daniel.charles@intel.com> > > bo_size = sizeof(*data) * n_execs; > bo_size = xe_bb_size(fd, bo_size); ^ permalink raw reply [flat|nested] 14+ messages in thread
* [PATCH v2 2/4] lib/xe: add xe_engine_class_supports_multi_lrc() 2026-04-03 7:13 [PATCH v2 0/4] lib/xe: query engine class capabilities from debugfs info Xin Wang 2026-04-03 7:13 ` [PATCH v2 1/4] lib/xe: cache engine class masks " Xin Wang @ 2026-04-03 7:13 ` Xin Wang 2026-04-06 22:32 ` [v2,2/4] " Daniel Charles 2026-04-03 7:13 ` [PATCH v2 3/4] lib/xe: use debugfs info to implement xe_engine_class_supports_multi_queue() Xin Wang ` (5 subsequent siblings) 7 siblings, 1 reply; 14+ messages in thread From: Xin Wang @ 2026-04-03 7:13 UTC (permalink / raw) To: igt-dev; +Cc: Xin Wang Add xe_engine_class_supports_multi_lrc() to query whether an engine class supports multi-LRC submission. When the kernel exposes the information via the debugfs info node it is used directly; otherwise fall back to a hardcoded default to keep compatibility with older KMD. Signed-off-by: Xin Wang <x.wang@intel.com> --- lib/xe/xe_query.c | 30 ++++++++++++++++++++++++++++++ lib/xe/xe_query.h | 1 + 2 files changed, 31 insertions(+) diff --git a/lib/xe/xe_query.c b/lib/xe/xe_query.c index 441e95794..e13d5e143 100644 --- a/lib/xe/xe_query.c +++ b/lib/xe/xe_query.c @@ -308,6 +308,36 @@ static struct xe_device *find_in_cache(int fd) return xe_dev; } +/** + * xe_engine_class_supports_multi_lrc: + * @fd: xe device fd + * @engine_class: engine class + * + * Returns true if multi LRC supported by engine class or false. + * Uses the kernel-reported bitmask from debugfs when available, otherwise + * falls back to the hardcoded per-class default. + */ +bool xe_engine_class_supports_multi_lrc(int fd, uint32_t engine_class) +{ + struct xe_device *xe_dev = find_in_cache(fd); + + if (xe_dev && xe_dev->multi_lrc_mask != UINT16_MAX) + return !!(xe_dev->multi_lrc_mask & BIT(engine_class)); + + switch (engine_class) { + case DRM_XE_ENGINE_CLASS_COPY: + case DRM_XE_ENGINE_CLASS_COMPUTE: + case DRM_XE_ENGINE_CLASS_RENDER: + return false; + case DRM_XE_ENGINE_CLASS_VIDEO_DECODE: + case DRM_XE_ENGINE_CLASS_VIDEO_ENHANCE: + return true; + default: + igt_warn("Engine class 0x%x unknown\n", engine_class); + return false; + } +} + static void xe_device_free(struct xe_device *xe_dev) { free(xe_dev->config); diff --git a/lib/xe/xe_query.h b/lib/xe/xe_query.h index f33562bda..5c26a3e88 100644 --- a/lib/xe/xe_query.h +++ b/lib/xe/xe_query.h @@ -162,6 +162,7 @@ uint32_t xe_va_bits(int fd); uint16_t xe_dev_id(int fd); int xe_supports_faults(int fd); bool xe_engine_class_supports_multi_queue(uint32_t engine_class); +bool xe_engine_class_supports_multi_lrc(int fd, uint32_t engine_class); const char *xe_engine_class_string(uint32_t engine_class); const char *xe_engine_class_short_string(uint32_t engine_class); bool xe_has_engine_class(int fd, uint16_t engine_class); -- 2.43.0 ^ permalink raw reply related [flat|nested] 14+ messages in thread
* Re: [v2,2/4] lib/xe: add xe_engine_class_supports_multi_lrc() 2026-04-03 7:13 ` [PATCH v2 2/4] lib/xe: add xe_engine_class_supports_multi_lrc() Xin Wang @ 2026-04-06 22:32 ` Daniel Charles 0 siblings, 0 replies; 14+ messages in thread From: Daniel Charles @ 2026-04-06 22:32 UTC (permalink / raw) To: Xin Wang, igt-dev On 4/3/2026 12:13 AM, Xin Wang wrote: > Add xe_engine_class_supports_multi_lrc() to query whether an engine > class supports multi-LRC submission. When the kernel exposes the > information via the debugfs info node it is used directly; otherwise > fall back to a hardcoded default to keep compatibility with older KMD. > > Signed-off-by: Xin Wang <x.wang@intel.com> > --- > lib/xe/xe_query.c | 30 ++++++++++++++++++++++++++++++ > lib/xe/xe_query.h | 1 + > 2 files changed, 31 insertions(+) > > diff --git a/lib/xe/xe_query.c b/lib/xe/xe_query.c > index 441e95794..e13d5e143 100644 > --- a/lib/xe/xe_query.c > +++ b/lib/xe/xe_query.c > @@ -308,6 +308,36 @@ static struct xe_device *find_in_cache(int fd) > return xe_dev; > } > > +/** > + * xe_engine_class_supports_multi_lrc: > + * @fd: xe device fd > + * @engine_class: engine class > + * > + * Returns true if multi LRC supported by engine class or false. > + * Uses the kernel-reported bitmask from debugfs when available, otherwise > + * falls back to the hardcoded per-class default. > + */ > +bool xe_engine_class_supports_multi_lrc(int fd, uint32_t engine_class) > +{ > + struct xe_device *xe_dev = find_in_cache(fd); > + > + if (xe_dev && xe_dev->multi_lrc_mask != UINT16_MAX) > + return !!(xe_dev->multi_lrc_mask & BIT(engine_class)); > + > + switch (engine_class) { > + case DRM_XE_ENGINE_CLASS_COPY: > + case DRM_XE_ENGINE_CLASS_COMPUTE: > + case DRM_XE_ENGINE_CLASS_RENDER: > + return false; > + case DRM_XE_ENGINE_CLASS_VIDEO_DECODE: > + case DRM_XE_ENGINE_CLASS_VIDEO_ENHANCE: > + return true; > + default: > + igt_warn("Engine class 0x%x unknown\n", engine_class); > + return false; > + } > +} > + > static void xe_device_free(struct xe_device *xe_dev) > { > free(xe_dev->config); > diff --git a/lib/xe/xe_query.h b/lib/xe/xe_query.h > index f33562bda..5c26a3e88 100644 > --- a/lib/xe/xe_query.h > +++ b/lib/xe/xe_query.h > @@ -162,6 +162,7 @@ uint32_t xe_va_bits(int fd); > uint16_t xe_dev_id(int fd); > int xe_supports_faults(int fd); > bool xe_engine_class_supports_multi_queue(uint32_t engine_class); > +bool xe_engine_class_supports_multi_lrc(int fd, uint32_t engine_class); > const char *xe_engine_class_string(uint32_t engine_class); > const char *xe_engine_class_short_string(uint32_t engine_class); > bool xe_has_engine_class(int fd, uint16_t engine_class); Reviewed-by:Daniel Charles <daniel.charles@intel.com> ^ permalink raw reply [flat|nested] 14+ messages in thread
* [PATCH v2 3/4] lib/xe: use debugfs info to implement xe_engine_class_supports_multi_queue() 2026-04-03 7:13 [PATCH v2 0/4] lib/xe: query engine class capabilities from debugfs info Xin Wang 2026-04-03 7:13 ` [PATCH v2 1/4] lib/xe: cache engine class masks " Xin Wang 2026-04-03 7:13 ` [PATCH v2 2/4] lib/xe: add xe_engine_class_supports_multi_lrc() Xin Wang @ 2026-04-03 7:13 ` Xin Wang 2026-04-06 22:34 ` [v2,3/4] " Daniel Charles 2026-04-03 7:13 ` [PATCH v2 4/4] tests/intel: skip or adjust tests for non-multi-LRC engine classes Xin Wang ` (4 subsequent siblings) 7 siblings, 1 reply; 14+ messages in thread From: Xin Wang @ 2026-04-03 7:13 UTC (permalink / raw) To: igt-dev; +Cc: Xin Wang Update xe_engine_class_supports_multi_queue() to take a device fd and use the kernel-reported multi_queue_engine_classes bitmask from debugfs when available, with a fallback to the hardcoded default for older KMD. Propagate the new fd argument through the xe_for_each_multi_queue_engine and xe_for_each_multi_queue_engine_class macros and all their call sites. Signed-off-by: Xin Wang <x.wang@intel.com> --- lib/xe/xe_query.c | 52 ++++++++++++++++++------------- lib/xe/xe_query.h | 8 ++--- tests/intel/xe_exec_multi_queue.c | 4 +-- tests/intel/xe_exec_threads.c | 4 +-- 4 files changed, 38 insertions(+), 30 deletions(-) diff --git a/lib/xe/xe_query.c b/lib/xe/xe_query.c index e13d5e143..3286a3b37 100644 --- a/lib/xe/xe_query.c +++ b/lib/xe/xe_query.c @@ -215,28 +215,6 @@ static uint16_t xe_device_query_engine_class_mask(int fd, const char *key) return mask; } -/** - * xe_engine_class_supports_multi_queue: - * @engine_class: engine class - * - * Returns true if multi queue supported by engine class or false. - */ -bool xe_engine_class_supports_multi_queue(uint32_t engine_class) -{ - switch (engine_class) { - case DRM_XE_ENGINE_CLASS_COPY: - case DRM_XE_ENGINE_CLASS_COMPUTE: - return true; - case DRM_XE_ENGINE_CLASS_RENDER: - case DRM_XE_ENGINE_CLASS_VIDEO_DECODE: - case DRM_XE_ENGINE_CLASS_VIDEO_ENHANCE: - return false; - default: - igt_warn("Engine class 0x%x unknown\n", engine_class); - return false; - } -} - /** * xe_engine_class_string: * @engine_class: engine class @@ -338,6 +316,36 @@ bool xe_engine_class_supports_multi_lrc(int fd, uint32_t engine_class) } } +/** + * xe_engine_class_supports_multi_queue: + * @fd: xe device fd + * @engine_class: engine class + * + * Returns true if multi queue supported by engine class or false. + * Uses the kernel-reported bitmask from debugfs when available, otherwise + * falls back to the hardcoded per-class default. + */ +bool xe_engine_class_supports_multi_queue(int fd, uint32_t engine_class) +{ + struct xe_device *xe_dev = find_in_cache(fd); + + if (xe_dev && xe_dev->multi_queue_engine_class_mask != UINT16_MAX) + return !!(xe_dev->multi_queue_engine_class_mask & BIT(engine_class)); + + switch (engine_class) { + case DRM_XE_ENGINE_CLASS_COPY: + case DRM_XE_ENGINE_CLASS_COMPUTE: + return true; + case DRM_XE_ENGINE_CLASS_RENDER: + case DRM_XE_ENGINE_CLASS_VIDEO_DECODE: + case DRM_XE_ENGINE_CLASS_VIDEO_ENHANCE: + return false; + default: + igt_warn("Engine class 0x%x unknown\n", engine_class); + return false; + } +} + static void xe_device_free(struct xe_device *xe_dev) { free(xe_dev->config); diff --git a/lib/xe/xe_query.h b/lib/xe/xe_query.h index 5c26a3e88..8815c6c66 100644 --- a/lib/xe/xe_query.h +++ b/lib/xe/xe_query.h @@ -113,10 +113,10 @@ struct xe_device { #define xe_for_each_multi_queue_engine(__fd, __hwe) \ xe_for_each_engine(__fd, __hwe) \ - for_if(xe_engine_class_supports_multi_queue((__hwe)->engine_class)) -#define xe_for_each_multi_queue_engine_class(__class) \ + for_if(xe_engine_class_supports_multi_queue(__fd, (__hwe)->engine_class)) +#define xe_for_each_multi_queue_engine_class(__fd, __class) \ xe_for_each_engine_class(__class) \ - for_if(xe_engine_class_supports_multi_queue(__class)) + for_if(xe_engine_class_supports_multi_queue(__fd, __class)) #define XE_IS_CLASS_SYSMEM(__region) ((__region)->mem_class == DRM_XE_MEM_REGION_CLASS_SYSMEM) #define XE_IS_CLASS_VRAM(__region) ((__region)->mem_class == DRM_XE_MEM_REGION_CLASS_VRAM) @@ -161,7 +161,7 @@ uint32_t xe_get_default_alignment(int fd); uint32_t xe_va_bits(int fd); uint16_t xe_dev_id(int fd); int xe_supports_faults(int fd); -bool xe_engine_class_supports_multi_queue(uint32_t engine_class); +bool xe_engine_class_supports_multi_queue(int fd, uint32_t engine_class); bool xe_engine_class_supports_multi_lrc(int fd, uint32_t engine_class); const char *xe_engine_class_string(uint32_t engine_class); const char *xe_engine_class_short_string(uint32_t engine_class); diff --git a/tests/intel/xe_exec_multi_queue.c b/tests/intel/xe_exec_multi_queue.c index f987f8d6a..b5ded0633 100644 --- a/tests/intel/xe_exec_multi_queue.c +++ b/tests/intel/xe_exec_multi_queue.c @@ -1052,7 +1052,7 @@ int igt_main() igt_subtest_f("sanity") xe_for_each_gt(fd, gt) - xe_for_each_multi_queue_engine_class(class) + xe_for_each_multi_queue_engine_class(fd, class) test_sanity(fd, gt, class); igt_subtest_f("exec-sanity") @@ -1061,7 +1061,7 @@ int igt_main() igt_subtest_f("virtual") xe_for_each_gt(fd, gt) - xe_for_each_multi_queue_engine_class(class) + xe_for_each_multi_queue_engine_class(fd, class) test_exec_virtual(fd, gt, class); igt_subtest_f("priority") diff --git a/tests/intel/xe_exec_threads.c b/tests/intel/xe_exec_threads.c index f082a0eda..ab9565beb 100644 --- a/tests/intel/xe_exec_threads.c +++ b/tests/intel/xe_exec_threads.c @@ -1141,7 +1141,7 @@ static void threads(int fd, int flags) int gt; xe_for_each_engine(fd, hwe) { - if ((flags & MULTI_QUEUE) && !xe_engine_class_supports_multi_queue(hwe->engine_class)) + if ((flags & MULTI_QUEUE) && !xe_engine_class_supports_multi_queue(fd, hwe->engine_class)) continue; ++n_engines; } @@ -1170,7 +1170,7 @@ static void threads(int fd, int flags) } xe_for_each_engine(fd, hwe) { - if ((flags & MULTI_QUEUE) && !xe_engine_class_supports_multi_queue(hwe->engine_class)) + if ((flags & MULTI_QUEUE) && !xe_engine_class_supports_multi_queue(fd, hwe->engine_class)) continue; threads_data[i].mutex = &mutex; threads_data[i].cond = &cond; -- 2.43.0 ^ permalink raw reply related [flat|nested] 14+ messages in thread
* Re: [v2,3/4] lib/xe: use debugfs info to implement xe_engine_class_supports_multi_queue() 2026-04-03 7:13 ` [PATCH v2 3/4] lib/xe: use debugfs info to implement xe_engine_class_supports_multi_queue() Xin Wang @ 2026-04-06 22:34 ` Daniel Charles 0 siblings, 0 replies; 14+ messages in thread From: Daniel Charles @ 2026-04-06 22:34 UTC (permalink / raw) To: Xin Wang, igt-dev On 4/3/2026 12:13 AM, Xin Wang wrote: > Update xe_engine_class_supports_multi_queue() to take a device fd and > use the kernel-reported multi_queue_engine_classes bitmask from debugfs > when available, with a fallback to the hardcoded default for older KMD. > > Propagate the new fd argument through the xe_for_each_multi_queue_engine > and xe_for_each_multi_queue_engine_class macros and all their call sites. > > Signed-off-by: Xin Wang <x.wang@intel.com> > --- > lib/xe/xe_query.c | 52 ++++++++++++++++++------------- > lib/xe/xe_query.h | 8 ++--- > tests/intel/xe_exec_multi_queue.c | 4 +-- > tests/intel/xe_exec_threads.c | 4 +-- > 4 files changed, 38 insertions(+), 30 deletions(-) > > diff --git a/lib/xe/xe_query.c b/lib/xe/xe_query.c > index e13d5e143..3286a3b37 100644 > --- a/lib/xe/xe_query.c > +++ b/lib/xe/xe_query.c > @@ -215,28 +215,6 @@ static uint16_t xe_device_query_engine_class_mask(int fd, const char *key) > return mask; > } > > -/** > - * xe_engine_class_supports_multi_queue: > - * @engine_class: engine class > - * > - * Returns true if multi queue supported by engine class or false. > - */ > -bool xe_engine_class_supports_multi_queue(uint32_t engine_class) > -{ > - switch (engine_class) { > - case DRM_XE_ENGINE_CLASS_COPY: > - case DRM_XE_ENGINE_CLASS_COMPUTE: > - return true; > - case DRM_XE_ENGINE_CLASS_RENDER: > - case DRM_XE_ENGINE_CLASS_VIDEO_DECODE: > - case DRM_XE_ENGINE_CLASS_VIDEO_ENHANCE: > - return false; > - default: > - igt_warn("Engine class 0x%x unknown\n", engine_class); > - return false; > - } > -} > - > /** > * xe_engine_class_string: > * @engine_class: engine class > @@ -338,6 +316,36 @@ bool xe_engine_class_supports_multi_lrc(int fd, uint32_t engine_class) > } > } > > +/** > + * xe_engine_class_supports_multi_queue: > + * @fd: xe device fd > + * @engine_class: engine class > + * > + * Returns true if multi queue supported by engine class or false. > + * Uses the kernel-reported bitmask from debugfs when available, otherwise > + * falls back to the hardcoded per-class default. > + */ > +bool xe_engine_class_supports_multi_queue(int fd, uint32_t engine_class) > +{ > + struct xe_device *xe_dev = find_in_cache(fd); > + > + if (xe_dev && xe_dev->multi_queue_engine_class_mask != UINT16_MAX) > + return !!(xe_dev->multi_queue_engine_class_mask & BIT(engine_class)); > + > + switch (engine_class) { > + case DRM_XE_ENGINE_CLASS_COPY: > + case DRM_XE_ENGINE_CLASS_COMPUTE: > + return true; > + case DRM_XE_ENGINE_CLASS_RENDER: > + case DRM_XE_ENGINE_CLASS_VIDEO_DECODE: > + case DRM_XE_ENGINE_CLASS_VIDEO_ENHANCE: > + return false; > + default: > + igt_warn("Engine class 0x%x unknown\n", engine_class); > + return false; > + } > +} > + > static void xe_device_free(struct xe_device *xe_dev) > { > free(xe_dev->config); > diff --git a/lib/xe/xe_query.h b/lib/xe/xe_query.h > index 5c26a3e88..8815c6c66 100644 > --- a/lib/xe/xe_query.h > +++ b/lib/xe/xe_query.h > @@ -113,10 +113,10 @@ struct xe_device { > > #define xe_for_each_multi_queue_engine(__fd, __hwe) \ > xe_for_each_engine(__fd, __hwe) \ > - for_if(xe_engine_class_supports_multi_queue((__hwe)->engine_class)) > -#define xe_for_each_multi_queue_engine_class(__class) \ > + for_if(xe_engine_class_supports_multi_queue(__fd, (__hwe)->engine_class)) > +#define xe_for_each_multi_queue_engine_class(__fd, __class) \ > xe_for_each_engine_class(__class) \ > - for_if(xe_engine_class_supports_multi_queue(__class)) > + for_if(xe_engine_class_supports_multi_queue(__fd, __class)) > > #define XE_IS_CLASS_SYSMEM(__region) ((__region)->mem_class == DRM_XE_MEM_REGION_CLASS_SYSMEM) > #define XE_IS_CLASS_VRAM(__region) ((__region)->mem_class == DRM_XE_MEM_REGION_CLASS_VRAM) > @@ -161,7 +161,7 @@ uint32_t xe_get_default_alignment(int fd); > uint32_t xe_va_bits(int fd); > uint16_t xe_dev_id(int fd); > int xe_supports_faults(int fd); > -bool xe_engine_class_supports_multi_queue(uint32_t engine_class); > +bool xe_engine_class_supports_multi_queue(int fd, uint32_t engine_class); > bool xe_engine_class_supports_multi_lrc(int fd, uint32_t engine_class); > const char *xe_engine_class_string(uint32_t engine_class); > const char *xe_engine_class_short_string(uint32_t engine_class); > diff --git a/tests/intel/xe_exec_multi_queue.c b/tests/intel/xe_exec_multi_queue.c > index f987f8d6a..b5ded0633 100644 > --- a/tests/intel/xe_exec_multi_queue.c > +++ b/tests/intel/xe_exec_multi_queue.c > @@ -1052,7 +1052,7 @@ int igt_main() > > igt_subtest_f("sanity") > xe_for_each_gt(fd, gt) > - xe_for_each_multi_queue_engine_class(class) > + xe_for_each_multi_queue_engine_class(fd, class) > test_sanity(fd, gt, class); > > igt_subtest_f("exec-sanity") > @@ -1061,7 +1061,7 @@ int igt_main() > > igt_subtest_f("virtual") > xe_for_each_gt(fd, gt) > - xe_for_each_multi_queue_engine_class(class) > + xe_for_each_multi_queue_engine_class(fd, class) > test_exec_virtual(fd, gt, class); > > igt_subtest_f("priority") > diff --git a/tests/intel/xe_exec_threads.c b/tests/intel/xe_exec_threads.c > index f082a0eda..ab9565beb 100644 > --- a/tests/intel/xe_exec_threads.c > +++ b/tests/intel/xe_exec_threads.c > @@ -1141,7 +1141,7 @@ static void threads(int fd, int flags) > int gt; > > xe_for_each_engine(fd, hwe) { > - if ((flags & MULTI_QUEUE) && !xe_engine_class_supports_multi_queue(hwe->engine_class)) > + if ((flags & MULTI_QUEUE) && !xe_engine_class_supports_multi_queue(fd, hwe->engine_class)) > continue; > ++n_engines; > } > @@ -1170,7 +1170,7 @@ static void threads(int fd, int flags) > } > > xe_for_each_engine(fd, hwe) { > - if ((flags & MULTI_QUEUE) && !xe_engine_class_supports_multi_queue(hwe->engine_class)) > + if ((flags & MULTI_QUEUE) && !xe_engine_class_supports_multi_queue(fd, hwe->engine_class)) > continue; > threads_data[i].mutex = &mutex; > threads_data[i].cond = &cond; Reviewed-by:Daniel Charles <daniel.charles@intel.com> ^ permalink raw reply [flat|nested] 14+ messages in thread
* [PATCH v2 4/4] tests/intel: skip or adjust tests for non-multi-LRC engine classes 2026-04-03 7:13 [PATCH v2 0/4] lib/xe: query engine class capabilities from debugfs info Xin Wang ` (2 preceding siblings ...) 2026-04-03 7:13 ` [PATCH v2 3/4] lib/xe: use debugfs info to implement xe_engine_class_supports_multi_queue() Xin Wang @ 2026-04-03 7:13 ` Xin Wang 2026-04-06 22:35 ` [v2,4/4] " Daniel Charles 2026-04-03 8:03 ` ✓ i915.CI.BAT: success for lib/xe: query engine class capabilities from debugfs info (rev2) Patchwork ` (3 subsequent siblings) 7 siblings, 1 reply; 14+ messages in thread From: Xin Wang @ 2026-04-03 7:13 UTC (permalink / raw) To: igt-dev; +Cc: Xin Wang, Niranjana Vishwanathapura, Matthew Brost Use xe_engine_class_supports_multi_lrc() to guard multi-LRC test paths: - xe_exec_balancer: skip tests requiring multi-LRC if the engine class does not support it - xe_exec_reset: same guard for the balancer subtest - xe_drm_fdinfo: skip utilization_multi() for non-multi-LRC classes - xe_exec_threads: assert multi-LRC support before test_balancer() - xe_exec_multi_queue: only validate parallel-queue rejection (-EINVAL) for engine classes that support multi-LRC; non-multi-LRC classes do not accept the MULTI_GROUP flag at all so the check is irrelevant Cc: Niranjana Vishwanathapura <niranjana.vishwanathapura@intel.com> Cc: Matthew Brost <matthew.brost@intel.com> Signed-off-by: Xin Wang <x.wang@intel.com> --- tests/intel/xe_drm_fdinfo.c | 2 +- tests/intel/xe_exec_balancer.c | 6 +++--- tests/intel/xe_exec_multi_queue.c | 2 +- tests/intel/xe_exec_reset.c | 2 +- tests/intel/xe_exec_threads.c | 1 + 5 files changed, 7 insertions(+), 6 deletions(-) diff --git a/tests/intel/xe_drm_fdinfo.c b/tests/intel/xe_drm_fdinfo.c index 411ca6ec4..3c113ed5d 100644 --- a/tests/intel/xe_drm_fdinfo.c +++ b/tests/intel/xe_drm_fdinfo.c @@ -673,7 +673,7 @@ utilization_multi(int fd, int gt, int class, unsigned int flags) igt_assert(virtual ^ parallel); num_placements = xe_gt_fill_engines_by_class(fd, gt, class, eci); - if (num_placements < 2) + if (num_placements < 2 || !xe_engine_class_supports_multi_lrc(fd, class)) return; igt_debug("Target class: %s\n", engine_map[class]); diff --git a/tests/intel/xe_exec_balancer.c b/tests/intel/xe_exec_balancer.c index 9cd641b4e..3c6ec45f1 100644 --- a/tests/intel/xe_exec_balancer.c +++ b/tests/intel/xe_exec_balancer.c @@ -57,7 +57,7 @@ static bool test_all_active(int fd, int gt, int class) int i, num_placements; num_placements = xe_gt_fill_engines_by_class(fd, gt, class, eci); - if (num_placements < 2) + if (num_placements < 2 || !xe_engine_class_supports_multi_lrc(fd, class)) return false; vm = xe_vm_create(fd, 0, 0); @@ -187,7 +187,7 @@ test_exec(int fd, int gt, int class, int n_exec_queues, int n_execs, igt_assert_lte(n_exec_queues, MAX_N_EXEC_QUEUES); num_placements = xe_gt_fill_engines_by_class(fd, gt, class, eci); - if (num_placements < 2) + if (num_placements < 2 || !xe_engine_class_supports_multi_lrc(fd, class)) return false; vm = xe_vm_create(fd, 0, 0); @@ -402,7 +402,7 @@ test_cm(int fd, int gt, int class, int n_exec_queues, int n_execs, igt_assert_lte(n_exec_queues, MAX_N_EXEC_QUEUES); num_placements = xe_gt_fill_engines_by_class(fd, gt, class, eci); - if (num_placements < 2) + if (num_placements < 2 || !xe_engine_class_supports_multi_lrc(fd, class)) return false; vm = xe_vm_create(fd, DRM_XE_VM_CREATE_FLAG_LR_MODE, 0); diff --git a/tests/intel/xe_exec_multi_queue.c b/tests/intel/xe_exec_multi_queue.c index b5ded0633..ca96099d3 100644 --- a/tests/intel/xe_exec_multi_queue.c +++ b/tests/intel/xe_exec_multi_queue.c @@ -112,7 +112,7 @@ __test_sanity(int fd, int gt, int class, bool preempt_mode) /* Multi-Queue can't be a parallel queue */ multi_queue.value = DRM_XE_MULTI_GROUP_CREATE; - if (n > 1) + if (n > 1 && xe_engine_class_supports_multi_lrc(fd, class)) igt_assert_eq(__xe_exec_queue_create(fd, vm, 2, 1, eci, ext, &val), -EINVAL); /* Specifying multiple MULTI_GROUP property is invalid */ diff --git a/tests/intel/xe_exec_reset.c b/tests/intel/xe_exec_reset.c index 7aaee31dd..95191139d 100644 --- a/tests/intel/xe_exec_reset.c +++ b/tests/intel/xe_exec_reset.c @@ -184,7 +184,7 @@ test_balancer(int fd, int gt, int class, int n_exec_queues, int n_execs, fd = drm_open_driver(DRIVER_XE); num_placements = xe_gt_fill_engines_by_class(fd, gt, class, eci); - if (num_placements < 2) + if (num_placements < 2 || !xe_engine_class_supports_multi_lrc(fd, class)) return; vm = xe_vm_create(fd, 0, 0); diff --git a/tests/intel/xe_exec_threads.c b/tests/intel/xe_exec_threads.c index ab9565beb..7b8100c5b 100644 --- a/tests/intel/xe_exec_threads.c +++ b/tests/intel/xe_exec_threads.c @@ -85,6 +85,7 @@ test_balancer(int fd, int gt, uint32_t vm, uint64_t addr, uint64_t userptr, num_placements = xe_gt_fill_engines_by_class(fd, gt, class, eci); igt_assert_lt(1, num_placements); + igt_assert(xe_engine_class_supports_multi_lrc(fd, class)); bo_size = sizeof(*data) * n_execs; bo_size = xe_bb_size(fd, bo_size); -- 2.43.0 ^ permalink raw reply related [flat|nested] 14+ messages in thread
* Re: [v2,4/4] tests/intel: skip or adjust tests for non-multi-LRC engine classes 2026-04-03 7:13 ` [PATCH v2 4/4] tests/intel: skip or adjust tests for non-multi-LRC engine classes Xin Wang @ 2026-04-06 22:35 ` Daniel Charles 0 siblings, 0 replies; 14+ messages in thread From: Daniel Charles @ 2026-04-06 22:35 UTC (permalink / raw) To: Xin Wang, igt-dev; +Cc: Niranjana Vishwanathapura, Matthew Brost On 4/3/2026 12:13 AM, Xin Wang wrote: > Use xe_engine_class_supports_multi_lrc() to guard multi-LRC test paths: > > - xe_exec_balancer: skip tests requiring multi-LRC if the engine class > does not support it > - xe_exec_reset: same guard for the balancer subtest > - xe_drm_fdinfo: skip utilization_multi() for non-multi-LRC classes > - xe_exec_threads: assert multi-LRC support before test_balancer() > - xe_exec_multi_queue: only validate parallel-queue rejection (-EINVAL) > for engine classes that support multi-LRC; non-multi-LRC classes do > not accept the MULTI_GROUP flag at all so the check is irrelevant > > Cc: Niranjana Vishwanathapura <niranjana.vishwanathapura@intel.com> > Cc: Matthew Brost <matthew.brost@intel.com> > Signed-off-by: Xin Wang <x.wang@intel.com> > --- > tests/intel/xe_drm_fdinfo.c | 2 +- > tests/intel/xe_exec_balancer.c | 6 +++--- > tests/intel/xe_exec_multi_queue.c | 2 +- > tests/intel/xe_exec_reset.c | 2 +- > tests/intel/xe_exec_threads.c | 1 + > 5 files changed, 7 insertions(+), 6 deletions(-) > > diff --git a/tests/intel/xe_drm_fdinfo.c b/tests/intel/xe_drm_fdinfo.c > index 411ca6ec4..3c113ed5d 100644 > --- a/tests/intel/xe_drm_fdinfo.c > +++ b/tests/intel/xe_drm_fdinfo.c > @@ -673,7 +673,7 @@ utilization_multi(int fd, int gt, int class, unsigned int flags) > igt_assert(virtual ^ parallel); > > num_placements = xe_gt_fill_engines_by_class(fd, gt, class, eci); > - if (num_placements < 2) > + if (num_placements < 2 || !xe_engine_class_supports_multi_lrc(fd, class)) > return; > > igt_debug("Target class: %s\n", engine_map[class]); > diff --git a/tests/intel/xe_exec_balancer.c b/tests/intel/xe_exec_balancer.c > index 9cd641b4e..3c6ec45f1 100644 > --- a/tests/intel/xe_exec_balancer.c > +++ b/tests/intel/xe_exec_balancer.c > @@ -57,7 +57,7 @@ static bool test_all_active(int fd, int gt, int class) > int i, num_placements; > > num_placements = xe_gt_fill_engines_by_class(fd, gt, class, eci); > - if (num_placements < 2) > + if (num_placements < 2 || !xe_engine_class_supports_multi_lrc(fd, class)) > return false; > > vm = xe_vm_create(fd, 0, 0); > @@ -187,7 +187,7 @@ test_exec(int fd, int gt, int class, int n_exec_queues, int n_execs, > igt_assert_lte(n_exec_queues, MAX_N_EXEC_QUEUES); > > num_placements = xe_gt_fill_engines_by_class(fd, gt, class, eci); > - if (num_placements < 2) > + if (num_placements < 2 || !xe_engine_class_supports_multi_lrc(fd, class)) > return false; > > vm = xe_vm_create(fd, 0, 0); > @@ -402,7 +402,7 @@ test_cm(int fd, int gt, int class, int n_exec_queues, int n_execs, > igt_assert_lte(n_exec_queues, MAX_N_EXEC_QUEUES); > > num_placements = xe_gt_fill_engines_by_class(fd, gt, class, eci); > - if (num_placements < 2) > + if (num_placements < 2 || !xe_engine_class_supports_multi_lrc(fd, class)) > return false; > > vm = xe_vm_create(fd, DRM_XE_VM_CREATE_FLAG_LR_MODE, 0); > diff --git a/tests/intel/xe_exec_multi_queue.c b/tests/intel/xe_exec_multi_queue.c > index b5ded0633..ca96099d3 100644 > --- a/tests/intel/xe_exec_multi_queue.c > +++ b/tests/intel/xe_exec_multi_queue.c > @@ -112,7 +112,7 @@ __test_sanity(int fd, int gt, int class, bool preempt_mode) > > /* Multi-Queue can't be a parallel queue */ > multi_queue.value = DRM_XE_MULTI_GROUP_CREATE; > - if (n > 1) > + if (n > 1 && xe_engine_class_supports_multi_lrc(fd, class)) > igt_assert_eq(__xe_exec_queue_create(fd, vm, 2, 1, eci, ext, &val), -EINVAL); > > /* Specifying multiple MULTI_GROUP property is invalid */ > diff --git a/tests/intel/xe_exec_reset.c b/tests/intel/xe_exec_reset.c > index 7aaee31dd..95191139d 100644 > --- a/tests/intel/xe_exec_reset.c > +++ b/tests/intel/xe_exec_reset.c > @@ -184,7 +184,7 @@ test_balancer(int fd, int gt, int class, int n_exec_queues, int n_execs, > fd = drm_open_driver(DRIVER_XE); > > num_placements = xe_gt_fill_engines_by_class(fd, gt, class, eci); > - if (num_placements < 2) > + if (num_placements < 2 || !xe_engine_class_supports_multi_lrc(fd, class)) > return; > > vm = xe_vm_create(fd, 0, 0); > diff --git a/tests/intel/xe_exec_threads.c b/tests/intel/xe_exec_threads.c > index ab9565beb..7b8100c5b 100644 > --- a/tests/intel/xe_exec_threads.c > +++ b/tests/intel/xe_exec_threads.c > @@ -85,6 +85,7 @@ test_balancer(int fd, int gt, uint32_t vm, uint64_t addr, uint64_t userptr, > > num_placements = xe_gt_fill_engines_by_class(fd, gt, class, eci); > igt_assert_lt(1, num_placements); > + igt_assert(xe_engine_class_supports_multi_lrc(fd, class)); > > bo_size = sizeof(*data) * n_execs; > bo_size = xe_bb_size(fd, bo_size); Reviewed-by:Daniel Charles <daniel.charles@intel.com> ^ permalink raw reply [flat|nested] 14+ messages in thread
* ✓ i915.CI.BAT: success for lib/xe: query engine class capabilities from debugfs info (rev2) 2026-04-03 7:13 [PATCH v2 0/4] lib/xe: query engine class capabilities from debugfs info Xin Wang ` (3 preceding siblings ...) 2026-04-03 7:13 ` [PATCH v2 4/4] tests/intel: skip or adjust tests for non-multi-LRC engine classes Xin Wang @ 2026-04-03 8:03 ` Patchwork 2026-04-03 8:06 ` ✓ Xe.CI.BAT: " Patchwork ` (2 subsequent siblings) 7 siblings, 0 replies; 14+ messages in thread From: Patchwork @ 2026-04-03 8:03 UTC (permalink / raw) To: Xin Wang; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2714 bytes --] == Series Details == Series: lib/xe: query engine class capabilities from debugfs info (rev2) URL : https://patchwork.freedesktop.org/series/164327/ State : success == Summary == CI Bug Log - changes from IGT_8846 -> IGTPW_14925 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/index.html Participating hosts (41 -> 39) ------------------------------ Missing (2): bat-dg2-13 fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_14925 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live: - bat-mtlp-8: [PASS][1] -> [DMESG-FAIL][2] ([i915#12061]) +1 other test dmesg-fail [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8846/bat-mtlp-8/igt@i915_selftest@live.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/bat-mtlp-8/igt@i915_selftest@live.html * igt@i915_selftest@live@workarounds: - bat-arls-6: [PASS][3] -> [DMESG-FAIL][4] ([i915#12061]) +1 other test dmesg-fail [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8846/bat-arls-6/igt@i915_selftest@live@workarounds.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/bat-arls-6/igt@i915_selftest@live@workarounds.html #### Possible fixes #### * igt@i915_selftest@live@workarounds: - bat-arls-5: [DMESG-FAIL][5] ([i915#12061]) -> [PASS][6] +1 other test pass [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8846/bat-arls-5/igt@i915_selftest@live@workarounds.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/bat-arls-5/igt@i915_selftest@live@workarounds.html - bat-mtlp-9: [DMESG-FAIL][7] ([i915#12061]) -> [PASS][8] +1 other test pass [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8846/bat-mtlp-9/igt@i915_selftest@live@workarounds.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/bat-mtlp-9/igt@i915_selftest@live@workarounds.html [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8846 -> IGTPW_14925 * Linux: CI_DRM_18272 -> CI_DRM_18273 CI-20190529: 20190529 CI_DRM_18272: dba2251b00d3faac3be7fc15431ffb9c4d60232b @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_18273: 76f07a8a9c761686987cba92056f78c1d3cd1c62 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_14925: dd22dc1b6b6beb5d821fa8b9aa3f9bdad194d94d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8846: 8846 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/index.html [-- Attachment #2: Type: text/html, Size: 3614 bytes --] ^ permalink raw reply [flat|nested] 14+ messages in thread
* ✓ Xe.CI.BAT: success for lib/xe: query engine class capabilities from debugfs info (rev2) 2026-04-03 7:13 [PATCH v2 0/4] lib/xe: query engine class capabilities from debugfs info Xin Wang ` (4 preceding siblings ...) 2026-04-03 8:03 ` ✓ i915.CI.BAT: success for lib/xe: query engine class capabilities from debugfs info (rev2) Patchwork @ 2026-04-03 8:06 ` Patchwork 2026-04-03 13:37 ` ✓ Xe.CI.FULL: " Patchwork 2026-04-03 23:35 ` ✗ i915.CI.Full: failure " Patchwork 7 siblings, 0 replies; 14+ messages in thread From: Patchwork @ 2026-04-03 8:06 UTC (permalink / raw) To: Xin Wang; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2916 bytes --] == Series Details == Series: lib/xe: query engine class capabilities from debugfs info (rev2) URL : https://patchwork.freedesktop.org/series/164327/ State : success == Summary == CI Bug Log - changes from XEIGT_8846_BAT -> XEIGTPW_14925_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (14 -> 12) ------------------------------ Missing (2): bat-bmg-1 bat-ptl-1 Known issues ------------ Here are the changes found in XEIGTPW_14925_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@core_hotunplug@unbind-rebind: - bat-bmg-2: [PASS][1] -> [ABORT][2] ([Intel XE#7249] / [Intel XE#7578]) [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8846/bat-bmg-2/igt@core_hotunplug@unbind-rebind.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14925/bat-bmg-2/igt@core_hotunplug@unbind-rebind.html * igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1: - bat-adlp-7: [PASS][3] -> [DMESG-WARN][4] ([Intel XE#7483]) [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8846/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14925/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1.html * igt@xe_waitfence@reltime: - bat-dg2-oem2: [PASS][5] -> [FAIL][6] ([Intel XE#6520]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8846/bat-dg2-oem2/igt@xe_waitfence@reltime.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14925/bat-dg2-oem2/igt@xe_waitfence@reltime.html #### Possible fixes #### * igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1: - bat-adlp-7: [DMESG-WARN][7] ([Intel XE#7483]) -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8846/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14925/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1.html [Intel XE#6520]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6520 [Intel XE#7249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7249 [Intel XE#7483]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7483 [Intel XE#7578]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7578 Build changes ------------- * IGT: IGT_8846 -> IGTPW_14925 * Linux: xe-4843-dba2251b00d3faac3be7fc15431ffb9c4d60232b -> xe-4844-76f07a8a9c761686987cba92056f78c1d3cd1c62 IGTPW_14925: dd22dc1b6b6beb5d821fa8b9aa3f9bdad194d94d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8846: 8846 xe-4843-dba2251b00d3faac3be7fc15431ffb9c4d60232b: dba2251b00d3faac3be7fc15431ffb9c4d60232b xe-4844-76f07a8a9c761686987cba92056f78c1d3cd1c62: 76f07a8a9c761686987cba92056f78c1d3cd1c62 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14925/index.html [-- Attachment #2: Type: text/html, Size: 3642 bytes --] ^ permalink raw reply [flat|nested] 14+ messages in thread
* ✓ Xe.CI.FULL: success for lib/xe: query engine class capabilities from debugfs info (rev2) 2026-04-03 7:13 [PATCH v2 0/4] lib/xe: query engine class capabilities from debugfs info Xin Wang ` (5 preceding siblings ...) 2026-04-03 8:06 ` ✓ Xe.CI.BAT: " Patchwork @ 2026-04-03 13:37 ` Patchwork 2026-04-03 23:35 ` ✗ i915.CI.Full: failure " Patchwork 7 siblings, 0 replies; 14+ messages in thread From: Patchwork @ 2026-04-03 13:37 UTC (permalink / raw) To: Xin Wang; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 21125 bytes --] == Series Details == Series: lib/xe: query engine class capabilities from debugfs info (rev2) URL : https://patchwork.freedesktop.org/series/164327/ State : success == Summary == CI Bug Log - changes from XEIGT_8846_FULL -> XEIGTPW_14925_FULL ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (2 -> 2) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_14925_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][1] ([Intel XE#2887]) [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14925/shard-bmg-1/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-c-dp-2: - shard-bmg: NOTRUN -> [SKIP][2] ([Intel XE#2652]) +8 other tests skip [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14925/shard-bmg-9/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-c-dp-2.html * igt@kms_chamelium_hpd@hdmi-hpd-after-suspend: - shard-bmg: NOTRUN -> [SKIP][3] ([Intel XE#2252]) [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14925/shard-bmg-2/igt@kms_chamelium_hpd@hdmi-hpd-after-suspend.html * igt@kms_content_protection@atomic-hdcp14: - shard-bmg: NOTRUN -> [FAIL][4] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +1 other test fail [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14925/shard-bmg-9/igt@kms_content_protection@atomic-hdcp14.html * igt@kms_cursor_crc@cursor-sliding-256x256: - shard-bmg: [PASS][5] -> [FAIL][6] ([Intel XE#6747]) +2 other tests fail [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8846/shard-bmg-6/igt@kms_cursor_crc@cursor-sliding-256x256.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14925/shard-bmg-2/igt@kms_cursor_crc@cursor-sliding-256x256.html * igt@kms_cursor_legacy@flip-vs-cursor-legacy: - shard-bmg: [PASS][7] -> [FAIL][8] ([Intel XE#7571]) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8846/shard-bmg-9/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14925/shard-bmg-1/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-shrfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#2311]) +3 other tests skip [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14925/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#2313]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14925/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-abgr161616f-draw-blt: - shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#7061] / [Intel XE#7356]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14925/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcpsr-abgr161616f-draw-blt.html * igt@kms_plane@pixel-format-yf-tiled-modifier: - shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#7283]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14925/shard-bmg-8/igt@kms_plane@pixel-format-yf-tiled-modifier.html * igt@kms_pm_dc@dc6-dpms: - shard-lnl: [PASS][13] -> [FAIL][14] ([Intel XE#7340]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8846/shard-lnl-1/igt@kms_pm_dc@dc6-dpms.html [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14925/shard-lnl-8/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_dc@deep-pkgc: - shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2505] / [Intel XE#7447]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14925/shard-bmg-5/igt@kms_pm_dc@deep-pkgc.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area: - shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#1489]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14925/shard-bmg-1/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html * igt@kms_psr@pr-no-drrs: - shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#2234] / [Intel XE#2850]) +1 other test skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14925/shard-bmg-5/igt@kms_psr@pr-no-drrs.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#2330] / [Intel XE#5813]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14925/shard-bmg-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html * igt@kms_vrr@flipline: - shard-lnl: [PASS][19] -> [FAIL][20] ([Intel XE#4227] / [Intel XE#7397]) +1 other test fail [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8846/shard-lnl-3/igt@kms_vrr@flipline.html [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14925/shard-lnl-1/igt@kms_vrr@flipline.html * igt@xe_eudebug_online@single-step: - shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#7636]) +1 other test skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14925/shard-bmg-1/igt@xe_eudebug_online@single-step.html * igt@xe_exec_multi_queue@few-execs-preempt-mode-priority-smem: - shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#6874]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14925/shard-bmg-9/igt@xe_exec_multi_queue@few-execs-preempt-mode-priority-smem.html * igt@xe_exec_system_allocator@many-execqueues-mmap-huge-nomemset: - shard-bmg: [PASS][23] -> [SKIP][24] ([Intel XE#6703]) +56 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8846/shard-bmg-10/igt@xe_exec_system_allocator@many-execqueues-mmap-huge-nomemset.html [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14925/shard-bmg-2/igt@xe_exec_system_allocator@many-execqueues-mmap-huge-nomemset.html * igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma: - shard-lnl: [PASS][25] -> [FAIL][26] ([Intel XE#5625]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8846/shard-lnl-5/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma.html [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14925/shard-lnl-2/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma.html * igt@xe_exec_system_allocator@threads-shared-vm-many-large-mmap-remap-dontunmap: - shard-bmg: [PASS][27] -> [DMESG-FAIL][28] ([Intel XE#5545] / [Intel XE#6652]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8846/shard-bmg-4/igt@xe_exec_system_allocator@threads-shared-vm-many-large-mmap-remap-dontunmap.html [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14925/shard-bmg-2/igt@xe_exec_system_allocator@threads-shared-vm-many-large-mmap-remap-dontunmap.html * igt@xe_exec_system_allocator@twice-large-mmap: - shard-bmg: [PASS][29] -> [SKIP][30] ([Intel XE#6557] / [Intel XE#6703]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8846/shard-bmg-1/igt@xe_exec_system_allocator@twice-large-mmap.html [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14925/shard-bmg-2/igt@xe_exec_system_allocator@twice-large-mmap.html * igt@xe_exec_threads@threads-multi-queue-mixed-fd-rebind: - shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#7138]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14925/shard-bmg-9/igt@xe_exec_threads@threads-multi-queue-mixed-fd-rebind.html * igt@xe_fault_injection@inject-fault-probe-function-xe_pcode_probe_early: - shard-bmg: [PASS][32] -> [ABORT][33] ([Intel XE#7578]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8846/shard-bmg-10/igt@xe_fault_injection@inject-fault-probe-function-xe_pcode_probe_early.html [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14925/shard-bmg-10/igt@xe_fault_injection@inject-fault-probe-function-xe_pcode_probe_early.html * igt@xe_multigpu_svm@mgpu-atomic-op-prefetch: - shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#6964]) [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14925/shard-bmg-2/igt@xe_multigpu_svm@mgpu-atomic-op-prefetch.html * igt@xe_pxp@pxp-termination-key-update-post-rpm: - shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#4733] / [Intel XE#7417]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14925/shard-bmg-8/igt@xe_pxp@pxp-termination-key-update-post-rpm.html #### Possible fixes #### * igt@kms_cursor_legacy@flip-vs-cursor-atomic: - shard-bmg: [FAIL][36] ([Intel XE#7571]) -> [PASS][37] [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8846/shard-bmg-9/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14925/shard-bmg-7/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html * igt@kms_flip@flip-vs-suspend@a-hdmi-a3: - shard-bmg: [INCOMPLETE][38] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][39] +1 other test pass [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8846/shard-bmg-6/igt@kms_flip@flip-vs-suspend@a-hdmi-a3.html [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14925/shard-bmg-8/igt@kms_flip@flip-vs-suspend@a-hdmi-a3.html * igt@kms_pm_dc@dc5-dpms: - shard-lnl: [FAIL][40] ([Intel XE#7340] / [Intel XE#7504]) -> [PASS][41] [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8846/shard-lnl-3/igt@kms_pm_dc@dc5-dpms.html [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14925/shard-lnl-8/igt@kms_pm_dc@dc5-dpms.html * igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1: - shard-lnl: [FAIL][42] ([Intel XE#2142]) -> [PASS][43] +1 other test pass [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8846/shard-lnl-8/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14925/shard-lnl-5/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html * igt@xe_pm_residency@idle-residency@gt0: - shard-bmg: [FAIL][44] ([Intel XE#7293]) -> [PASS][45] +1 other test pass [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8846/shard-bmg-9/igt@xe_pm_residency@idle-residency@gt0.html [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14925/shard-bmg-1/igt@xe_pm_residency@idle-residency@gt0.html #### Warnings #### * igt@kms_big_fb@x-tiled-8bpp-rotate-270: - shard-bmg: [SKIP][46] ([Intel XE#2327]) -> [SKIP][47] ([Intel XE#6703]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8846/shard-bmg-6/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14925/shard-bmg-2/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-bmg: [SKIP][48] ([Intel XE#1124]) -> [SKIP][49] ([Intel XE#6703]) +1 other test skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8846/shard-bmg-6/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14925/shard-bmg-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_bw@linear-tiling-4-displays-2160x1440p: - shard-bmg: [SKIP][50] ([Intel XE#367] / [Intel XE#7354]) -> [SKIP][51] ([Intel XE#6703]) [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8846/shard-bmg-8/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14925/shard-bmg-2/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc: - shard-bmg: [SKIP][52] ([Intel XE#2887]) -> [SKIP][53] ([Intel XE#6703]) [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8846/shard-bmg-7/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc.html [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14925/shard-bmg-2/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc.html * igt@kms_dsc@dsc-basic: - shard-bmg: [SKIP][54] ([Intel XE#2244]) -> [SKIP][55] ([Intel XE#6703]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8846/shard-bmg-3/igt@kms_dsc@dsc-basic.html [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14925/shard-bmg-2/igt@kms_dsc@dsc-basic.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt: - shard-bmg: [SKIP][56] ([Intel XE#4141]) -> [SKIP][57] ([Intel XE#6703]) +2 other tests skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8846/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt.html [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14925/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-render: - shard-bmg: [SKIP][58] ([Intel XE#2311]) -> [SKIP][59] ([Intel XE#6703]) +2 other tests skip [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8846/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-render.html [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14925/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt: - shard-bmg: [SKIP][60] ([Intel XE#2313]) -> [SKIP][61] ([Intel XE#6703]) +4 other tests skip [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8846/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt.html [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14925/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_psr@psr2-sprite-render: - shard-bmg: [SKIP][62] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][63] ([Intel XE#6703]) +1 other test skip [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8846/shard-bmg-3/igt@kms_psr@psr2-sprite-render.html [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14925/shard-bmg-2/igt@kms_psr@psr2-sprite-render.html * igt@kms_setmode@invalid-clone-exclusive-crtc: - shard-bmg: [SKIP][64] ([Intel XE#1435]) -> [SKIP][65] ([Intel XE#6703]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8846/shard-bmg-4/igt@kms_setmode@invalid-clone-exclusive-crtc.html [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14925/shard-bmg-2/igt@kms_setmode@invalid-clone-exclusive-crtc.html * igt@xe_eudebug@basic-vm-bind-extended: - shard-bmg: [SKIP][66] ([Intel XE#7636]) -> [SKIP][67] ([Intel XE#6703]) +1 other test skip [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8846/shard-bmg-1/igt@xe_eudebug@basic-vm-bind-extended.html [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14925/shard-bmg-2/igt@xe_eudebug@basic-vm-bind-extended.html * igt@xe_exec_basic@multigpu-no-exec-basic: - shard-bmg: [SKIP][68] ([Intel XE#2322] / [Intel XE#7372]) -> [SKIP][69] ([Intel XE#6703]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8846/shard-bmg-2/igt@xe_exec_basic@multigpu-no-exec-basic.html [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14925/shard-bmg-2/igt@xe_exec_basic@multigpu-no-exec-basic.html * igt@xe_exec_multi_queue@max-queues-preempt-mode-fault-dyn-priority: - shard-bmg: [SKIP][70] ([Intel XE#6874]) -> [SKIP][71] ([Intel XE#6703]) +1 other test skip [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8846/shard-bmg-8/igt@xe_exec_multi_queue@max-queues-preempt-mode-fault-dyn-priority.html [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14925/shard-bmg-2/igt@xe_exec_multi_queue@max-queues-preempt-mode-fault-dyn-priority.html * igt@xe_exec_threads@threads-multi-queue-cm-rebind: - shard-bmg: [SKIP][72] ([Intel XE#7138]) -> [SKIP][73] ([Intel XE#6703]) [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8846/shard-bmg-4/igt@xe_exec_threads@threads-multi-queue-cm-rebind.html [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14925/shard-bmg-2/igt@xe_exec_threads@threads-multi-queue-cm-rebind.html * igt@xe_pm@d3cold-mmap-system: - shard-bmg: [SKIP][74] ([Intel XE#2284] / [Intel XE#7370]) -> [SKIP][75] ([Intel XE#6703]) [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8846/shard-bmg-2/igt@xe_pm@d3cold-mmap-system.html [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14925/shard-bmg-2/igt@xe_pm@d3cold-mmap-system.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#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049 [Intel XE#2142]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2142 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [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#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330 [Intel XE#2505]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2505 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141 [Intel XE#4227]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4227 [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733 [Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545 [Intel XE#5625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5625 [Intel XE#5813]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5813 [Intel XE#6557]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6557 [Intel XE#6652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6652 [Intel XE#6703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703 [Intel XE#6747]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6747 [Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874 [Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964 [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061 [Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138 [Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283 [Intel XE#7293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7293 [Intel XE#7340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7340 [Intel XE#7354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7354 [Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356 [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#7397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7397 [Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417 [Intel XE#7447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7447 [Intel XE#7504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7504 [Intel XE#7571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7571 [Intel XE#7578]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7578 [Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636 Build changes ------------- * IGT: IGT_8846 -> IGTPW_14925 * Linux: xe-4843-dba2251b00d3faac3be7fc15431ffb9c4d60232b -> xe-4844-76f07a8a9c761686987cba92056f78c1d3cd1c62 IGTPW_14925: dd22dc1b6b6beb5d821fa8b9aa3f9bdad194d94d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8846: 8846 xe-4843-dba2251b00d3faac3be7fc15431ffb9c4d60232b: dba2251b00d3faac3be7fc15431ffb9c4d60232b xe-4844-76f07a8a9c761686987cba92056f78c1d3cd1c62: 76f07a8a9c761686987cba92056f78c1d3cd1c62 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14925/index.html [-- Attachment #2: Type: text/html, Size: 24458 bytes --] ^ permalink raw reply [flat|nested] 14+ messages in thread
* ✗ i915.CI.Full: failure for lib/xe: query engine class capabilities from debugfs info (rev2) 2026-04-03 7:13 [PATCH v2 0/4] lib/xe: query engine class capabilities from debugfs info Xin Wang ` (6 preceding siblings ...) 2026-04-03 13:37 ` ✓ Xe.CI.FULL: " Patchwork @ 2026-04-03 23:35 ` Patchwork 2026-04-08 2:15 ` Wang, X 7 siblings, 1 reply; 14+ messages in thread From: Patchwork @ 2026-04-03 23:35 UTC (permalink / raw) To: Xin Wang; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 126685 bytes --] == Series Details == Series: lib/xe: query engine class capabilities from debugfs info (rev2) URL : https://patchwork.freedesktop.org/series/164327/ State : failure == Summary == CI Bug Log - changes from CI_DRM_18273_full -> IGTPW_14925_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_14925_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_14925_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_14925/index.html Participating hosts (10 -> 10) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_14925_full: ### IGT changes ### #### Possible regressions #### * igt@gem_exec_fence@basic-await@ccs0: - shard-mtlp: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-mtlp-8/igt@gem_exec_fence@basic-await@ccs0.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-mtlp-3/igt@gem_exec_fence@basic-await@ccs0.html * igt@kms_force_connector_basic@force-connector-state: - shard-dg1: [PASS][3] -> [ABORT][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-dg1-19/igt@kms_force_connector_basic@force-connector-state.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-14/igt@kms_force_connector_basic@force-connector-state.html New tests --------- New tests have been introduced between CI_DRM_18273_full and IGTPW_14925_full: ### New IGT tests (5) ### * igt@perf_pmu@fbc-2p-primscrn-cur-indfb-draw-render: - Statuses : - Exec time: [None] s * igt@perf_pmu@invalid-default-ctx: - Statuses : - Exec time: [None] s * igt@perf_pmu@sol-reset-invalid: - Statuses : - Exec time: [None] s * igt@perf_pmu@system-suspend-modeset: - Statuses : - Exec time: [None] s * igt@perf_pmu@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - Statuses : - Exec time: [None] s Known issues ------------ Here are the changes found in IGTPW_14925_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@core_hotunplug@unbind-rebind: - shard-mtlp: [PASS][5] -> [DMESG-WARN][6] ([i915#15498]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-mtlp-6/igt@core_hotunplug@unbind-rebind.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-mtlp-6/igt@core_hotunplug@unbind-rebind.html * igt@drm_buddy@drm_buddy: - shard-tglu: NOTRUN -> [SKIP][7] ([i915#15678]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-8/igt@drm_buddy@drm_buddy.html * igt@gem_ccs@block-copy-compressed: - shard-rkl: NOTRUN -> [SKIP][8] ([i915#3555] / [i915#9323]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-7/igt@gem_ccs@block-copy-compressed.html * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0: - shard-dg2: [PASS][9] -> [INCOMPLETE][10] ([i915#13356]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-dg2-10/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-10/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html * igt@gem_close_race@multigpu-basic-process: - shard-tglu: NOTRUN -> [SKIP][11] ([i915#7697]) +1 other test skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-6/igt@gem_close_race@multigpu-basic-process.html - shard-rkl: NOTRUN -> [SKIP][12] ([i915#7697]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-2/igt@gem_close_race@multigpu-basic-process.html * igt@gem_ctx_sseu@invalid-args: - shard-tglu: NOTRUN -> [SKIP][13] ([i915#280]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-5/igt@gem_ctx_sseu@invalid-args.html * igt@gem_ctx_sseu@mmap-args: - shard-dg2: NOTRUN -> [SKIP][14] ([i915#280]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-4/igt@gem_ctx_sseu@mmap-args.html - shard-rkl: NOTRUN -> [SKIP][15] ([i915#280]) +1 other test skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-8/igt@gem_ctx_sseu@mmap-args.html - shard-dg1: NOTRUN -> [SKIP][16] ([i915#280]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-13/igt@gem_ctx_sseu@mmap-args.html * igt@gem_exec_balancer@parallel-balancer: - shard-tglu-1: NOTRUN -> [SKIP][17] ([i915#4525]) +1 other test skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-1/igt@gem_exec_balancer@parallel-balancer.html * igt@gem_exec_balancer@parallel-contexts: - shard-rkl: NOTRUN -> [SKIP][18] ([i915#4525]) +2 other tests skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-2/igt@gem_exec_balancer@parallel-contexts.html * igt@gem_exec_balancer@parallel-keep-in-fence: - shard-tglu: NOTRUN -> [SKIP][19] ([i915#4525]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-9/igt@gem_exec_balancer@parallel-keep-in-fence.html * igt@gem_exec_big@single: - shard-rkl: [PASS][20] -> [DMESG-FAIL][21] ([i915#15478]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-5/igt@gem_exec_big@single.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-5/igt@gem_exec_big@single.html - shard-tglu: [PASS][22] -> [DMESG-FAIL][23] ([i915#15478]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-tglu-8/igt@gem_exec_big@single.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-3/igt@gem_exec_big@single.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-glk: NOTRUN -> [SKIP][24] ([i915#6334]) +1 other test skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-glk9/igt@gem_exec_capture@capture-invisible@smem0.html - shard-tglu: NOTRUN -> [SKIP][25] ([i915#6334]) +1 other test skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-7/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_fence@basic-await: - shard-mtlp: [PASS][26] -> [FAIL][27] ([i915#15263]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-mtlp-8/igt@gem_exec_fence@basic-await.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-mtlp-3/igt@gem_exec_fence@basic-await.html * igt@gem_exec_flush@basic-uc-set-default: - shard-dg2: NOTRUN -> [SKIP][28] ([i915#3539]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-1/igt@gem_exec_flush@basic-uc-set-default.html - shard-dg1: NOTRUN -> [SKIP][29] ([i915#3539]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-13/igt@gem_exec_flush@basic-uc-set-default.html * igt@gem_exec_flush@basic-wb-ro-before-default: - shard-dg2: NOTRUN -> [SKIP][30] ([i915#3539] / [i915#4852]) +1 other test skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-8/igt@gem_exec_flush@basic-wb-ro-before-default.html * igt@gem_exec_flush@basic-wb-set-default: - shard-dg1: NOTRUN -> [SKIP][31] ([i915#3539] / [i915#4852]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-17/igt@gem_exec_flush@basic-wb-set-default.html * igt@gem_exec_reloc@basic-cpu-read-active: - shard-dg2: NOTRUN -> [SKIP][32] ([i915#3281]) +3 other tests skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-7/igt@gem_exec_reloc@basic-cpu-read-active.html * igt@gem_exec_reloc@basic-cpu-wc-noreloc: - shard-mtlp: NOTRUN -> [SKIP][33] ([i915#3281]) +1 other test skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-mtlp-3/igt@gem_exec_reloc@basic-cpu-wc-noreloc.html * igt@gem_exec_reloc@basic-write-read: - shard-rkl: NOTRUN -> [SKIP][34] ([i915#3281]) +10 other tests skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-7/igt@gem_exec_reloc@basic-write-read.html * igt@gem_exec_reloc@basic-write-read-noreloc: - shard-dg1: NOTRUN -> [SKIP][35] ([i915#3281]) +3 other tests skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-13/igt@gem_exec_reloc@basic-write-read-noreloc.html * igt@gem_exec_schedule@semaphore-power: - shard-rkl: NOTRUN -> [SKIP][36] ([i915#7276]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-2/igt@gem_exec_schedule@semaphore-power.html - shard-dg1: NOTRUN -> [SKIP][37] ([i915#4812]) +1 other test skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-18/igt@gem_exec_schedule@semaphore-power.html - shard-mtlp: NOTRUN -> [SKIP][38] ([i915#4537] / [i915#4812]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-mtlp-6/igt@gem_exec_schedule@semaphore-power.html - shard-dg2: NOTRUN -> [SKIP][39] ([i915#4537] / [i915#4812]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-10/igt@gem_exec_schedule@semaphore-power.html * igt@gem_exec_suspend@basic-s3: - shard-rkl: NOTRUN -> [ABORT][40] ([i915#15131]) +1 other test abort [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-1/igt@gem_exec_suspend@basic-s3.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-tglu: NOTRUN -> [SKIP][41] ([i915#4613] / [i915#7582]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-8/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs: - shard-glk: NOTRUN -> [SKIP][42] ([i915#4613]) +3 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-glk1/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html - shard-tglu: NOTRUN -> [SKIP][43] ([i915#4613]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-2/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html * igt@gem_lmem_swapping@heavy-verify-random: - shard-rkl: NOTRUN -> [SKIP][44] ([i915#4613]) +1 other test skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-5/igt@gem_lmem_swapping@heavy-verify-random.html - shard-tglu-1: NOTRUN -> [SKIP][45] ([i915#4613]) +1 other test skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-1/igt@gem_lmem_swapping@heavy-verify-random.html * igt@gem_lmem_swapping@heavy-verify-random-ccs: - shard-dg1: NOTRUN -> [SKIP][46] ([i915#12193]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-15/igt@gem_lmem_swapping@heavy-verify-random-ccs.html * igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][47] ([i915#4565]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-15/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html * igt@gem_lmem_swapping@parallel-random-engines: - shard-rkl: NOTRUN -> [SKIP][48] ([i915#14544] / [i915#4613]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@gem_lmem_swapping@parallel-random-engines.html * igt@gem_mmap_gtt@cpuset-medium-copy-odd: - shard-mtlp: NOTRUN -> [SKIP][49] ([i915#4077]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-mtlp-8/igt@gem_mmap_gtt@cpuset-medium-copy-odd.html * igt@gem_mmap_wc@copy: - shard-dg2: NOTRUN -> [SKIP][50] ([i915#4083]) +2 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-5/igt@gem_mmap_wc@copy.html - shard-dg1: NOTRUN -> [SKIP][51] ([i915#4083]) +4 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-16/igt@gem_mmap_wc@copy.html - shard-mtlp: NOTRUN -> [SKIP][52] ([i915#4083]) +1 other test skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-mtlp-6/igt@gem_mmap_wc@copy.html * igt@gem_pread@self: - shard-dg2: NOTRUN -> [SKIP][53] ([i915#3282]) +1 other test skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-5/igt@gem_pread@self.html - shard-dg1: NOTRUN -> [SKIP][54] ([i915#3282]) +1 other test skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-13/igt@gem_pread@self.html * igt@gem_pread@snoop: - shard-rkl: NOTRUN -> [SKIP][55] ([i915#14544] / [i915#3282]) +3 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@gem_pread@snoop.html * igt@gem_pxp@verify-pxp-stale-buf-optout-execution: - shard-dg2: NOTRUN -> [SKIP][56] ([i915#4270]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-8/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html * igt@gem_readwrite@beyond-eob: - shard-rkl: NOTRUN -> [SKIP][57] ([i915#3282]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-3/igt@gem_readwrite@beyond-eob.html * igt@gem_render_copy@x-tiled-to-vebox-yf-tiled: - shard-dg2: NOTRUN -> [SKIP][58] ([i915#5190] / [i915#8428]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-6/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-tiled: - shard-dg1: NOTRUN -> [SKIP][59] ([i915#4079]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-18/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-rkl: NOTRUN -> [SKIP][60] ([i915#8411]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-3/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_set_tiling_vs_blt@untiled-to-tiled: - shard-dg2: NOTRUN -> [SKIP][61] ([i915#4079]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-7/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html * igt@gem_tiled_partial_pwrite_pread@reads: - shard-dg2: NOTRUN -> [SKIP][62] ([i915#4077]) +3 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-5/igt@gem_tiled_partial_pwrite_pread@reads.html - shard-dg1: NOTRUN -> [SKIP][63] ([i915#4077]) +3 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-16/igt@gem_tiled_partial_pwrite_pread@reads.html * igt@gem_userptr_blits@coherency-sync: - shard-tglu-1: NOTRUN -> [SKIP][64] ([i915#3297]) +1 other test skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-1/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-dg2: NOTRUN -> [SKIP][65] ([i915#3297]) +2 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-4/igt@gem_userptr_blits@create-destroy-unsync.html - shard-rkl: NOTRUN -> [SKIP][66] ([i915#3297]) +3 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-7/igt@gem_userptr_blits@create-destroy-unsync.html - shard-dg1: NOTRUN -> [SKIP][67] ([i915#3297]) +2 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-14/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@relocations: - shard-dg2: NOTRUN -> [SKIP][68] ([i915#3281] / [i915#3297]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-10/igt@gem_userptr_blits@relocations.html - shard-rkl: NOTRUN -> [SKIP][69] ([i915#3281] / [i915#3297]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-2/igt@gem_userptr_blits@relocations.html - shard-dg1: NOTRUN -> [SKIP][70] ([i915#3281] / [i915#3297]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-18/igt@gem_userptr_blits@relocations.html * igt@gem_userptr_blits@unsync-overlap: - shard-tglu: NOTRUN -> [SKIP][71] ([i915#3297]) +1 other test skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-9/igt@gem_userptr_blits@unsync-overlap.html * igt@gem_workarounds@suspend-resume: - shard-glk11: NOTRUN -> [INCOMPLETE][72] ([i915#13356] / [i915#14586]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-glk11/igt@gem_workarounds@suspend-resume.html * igt@gem_workarounds@suspend-resume-context: - shard-rkl: [PASS][73] -> [INCOMPLETE][74] ([i915#13356]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-7/igt@gem_workarounds@suspend-resume-context.html [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@gem_workarounds@suspend-resume-context.html * igt@gem_workarounds@suspend-resume-fd: - shard-glk: NOTRUN -> [INCOMPLETE][75] ([i915#13356] / [i915#14586]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-glk5/igt@gem_workarounds@suspend-resume-fd.html * igt@gen7_exec_parse@basic-offset: - shard-dg2: NOTRUN -> [SKIP][76] +6 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-7/igt@gen7_exec_parse@basic-offset.html - shard-mtlp: NOTRUN -> [SKIP][77] +1 other test skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-mtlp-2/igt@gen7_exec_parse@basic-offset.html * igt@gen9_exec_parse@bb-start-cmd: - shard-tglu-1: NOTRUN -> [SKIP][78] ([i915#2527] / [i915#2856]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-1/igt@gen9_exec_parse@bb-start-cmd.html * igt@gen9_exec_parse@bb-start-param: - shard-rkl: NOTRUN -> [SKIP][79] ([i915#14544] / [i915#2527]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@gen9_exec_parse@bb-start-param.html * igt@gen9_exec_parse@valid-registers: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#2856]) +1 other test skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-8/igt@gen9_exec_parse@valid-registers.html - shard-rkl: NOTRUN -> [SKIP][81] ([i915#2527]) +6 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-3/igt@gen9_exec_parse@valid-registers.html - shard-dg1: NOTRUN -> [SKIP][82] ([i915#2527]) +1 other test skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-12/igt@gen9_exec_parse@valid-registers.html - shard-tglu: NOTRUN -> [SKIP][83] ([i915#2527] / [i915#2856]) +3 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-10/igt@gen9_exec_parse@valid-registers.html - shard-mtlp: NOTRUN -> [SKIP][84] ([i915#2856]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-mtlp-8/igt@gen9_exec_parse@valid-registers.html * igt@i915_drm_fdinfo@busy-hang@vcs0: - shard-dg2: NOTRUN -> [SKIP][85] ([i915#14073]) +7 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-3/igt@i915_drm_fdinfo@busy-hang@vcs0.html - shard-dg1: NOTRUN -> [SKIP][86] ([i915#14073]) +5 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-17/igt@i915_drm_fdinfo@busy-hang@vcs0.html * igt@i915_drm_fdinfo@virtual-busy-hang-all: - shard-dg2: NOTRUN -> [SKIP][87] ([i915#14118]) +1 other test skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-3/igt@i915_drm_fdinfo@virtual-busy-hang-all.html * igt@i915_module_load@fault-injection: - shard-dg1: NOTRUN -> [ABORT][88] ([i915#11815] / [i915#15481]) +1 other test abort [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-16/igt@i915_module_load@fault-injection.html * igt@i915_module_load@fault-injection@i915_driver_mmio_probe: - shard-dg1: NOTRUN -> [INCOMPLETE][89] ([i915#15481]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-16/igt@i915_module_load@fault-injection@i915_driver_mmio_probe.html * igt@i915_module_load@reload-no-display: - shard-dg1: NOTRUN -> [DMESG-WARN][90] ([i915#13029] / [i915#14545]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-15/igt@i915_module_load@reload-no-display.html * igt@i915_pm_freq_mult@media-freq@gt0: - shard-rkl: NOTRUN -> [SKIP][91] ([i915#6590]) +1 other test skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-3/igt@i915_pm_freq_mult@media-freq@gt0.html * igt@i915_pm_rc6_residency@rc6-idle: - shard-rkl: NOTRUN -> [SKIP][92] ([i915#14498]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-7/igt@i915_pm_rc6_residency@rc6-idle.html * igt@i915_pm_rpm@system-suspend-execbuf: - shard-dg1: [PASS][93] -> [DMESG-WARN][94] ([i915#4423]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-dg1-19/igt@i915_pm_rpm@system-suspend-execbuf.html [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-15/igt@i915_pm_rpm@system-suspend-execbuf.html * igt@i915_pm_rps@basic-api: - shard-dg1: NOTRUN -> [SKIP][95] ([i915#11681] / [i915#6621]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-18/igt@i915_pm_rps@basic-api.html - shard-dg2: NOTRUN -> [SKIP][96] ([i915#11681] / [i915#6621]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-10/igt@i915_pm_rps@basic-api.html * igt@i915_query@hwconfig_table: - shard-rkl: NOTRUN -> [SKIP][97] ([i915#6245]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-5/igt@i915_query@hwconfig_table.html * igt@i915_selftest@live: - shard-dg1: [PASS][98] -> [DMESG-FAIL][99] ([i915#15560]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-dg1-13/igt@i915_selftest@live.html [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-14/igt@i915_selftest@live.html * igt@i915_selftest@live@gem_contexts: - shard-dg1: [PASS][100] -> [DMESG-FAIL][101] ([i915#15433]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-dg1-13/igt@i915_selftest@live@gem_contexts.html [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-14/igt@i915_selftest@live@gem_contexts.html * igt@i915_suspend@forcewake: - shard-glk: NOTRUN -> [INCOMPLETE][102] ([i915#4817]) +1 other test incomplete [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-glk5/igt@i915_suspend@forcewake.html * igt@intel_hwmon@hwmon-read: - shard-tglu: NOTRUN -> [SKIP][103] ([i915#7707]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-4/igt@intel_hwmon@hwmon-read.html * igt@kms_big_fb@4-tiled-16bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][104] ([i915#4538] / [i915#5286]) +2 other tests skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-12/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html * igt@kms_big_fb@4-tiled-64bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][105] ([i915#5286]) +3 other tests skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-7/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-tglu: NOTRUN -> [SKIP][106] ([i915#5286]) +3 other tests skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-tglu-1: NOTRUN -> [SKIP][107] ([i915#5286]) +3 other tests skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip: - shard-dg2: NOTRUN -> [SKIP][108] ([i915#3828]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-1/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@x-tiled-8bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][109] ([i915#14544] / [i915#3638]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-8bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][110] ([i915#3638]) +3 other tests skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-2/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-8bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][111] ([i915#4538] / [i915#5190]) +4 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-4/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][112] ([i915#4538]) +1 other test skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-19/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][113] ([i915#14544]) +3 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-dg2: NOTRUN -> [SKIP][114] ([i915#5190]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-7/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-rkl: NOTRUN -> [SKIP][115] +16 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-7/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][116] ([i915#6095]) +202 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-16/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-1: - shard-glk11: NOTRUN -> [SKIP][117] +56 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-glk11/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-1.html * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-dg2: NOTRUN -> [SKIP][118] ([i915#12313]) +1 other test skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-1/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][119] ([i915#14098] / [i915#6095]) +40 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-5/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-1.html * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][120] ([i915#6095]) +9 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-mtlp-2/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs@pipe-a-edp-1.html * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][121] ([i915#6095]) +45 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-5/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-3.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs: - shard-tglu-1: NOTRUN -> [SKIP][122] ([i915#6095]) +19 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][123] ([i915#15582]) +1 other test incomplete [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-glk9/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-rkl: NOTRUN -> [SKIP][124] ([i915#12313]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html - shard-dg1: NOTRUN -> [SKIP][125] ([i915#12313]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-15/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][126] ([i915#6095]) +54 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][127] ([i915#14544] / [i915#6095]) +11 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][128] ([i915#14098] / [i915#14544] / [i915#6095]) +5 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][129] ([i915#6095]) +61 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-5/igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][130] ([i915#10307] / [i915#6095]) +84 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-4/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][131] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-4/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1.html * igt@kms_cdclk@mode-transition: - shard-rkl: NOTRUN -> [SKIP][132] ([i915#3742]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-8/igt@kms_cdclk@mode-transition.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-tglu: NOTRUN -> [SKIP][133] ([i915#3742]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-10/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_chamelium_audio@hdmi-audio-edid: - shard-dg1: NOTRUN -> [SKIP][134] ([i915#11151] / [i915#7828]) +4 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-13/igt@kms_chamelium_audio@hdmi-audio-edid.html * igt@kms_chamelium_hpd@dp-hpd-storm: - shard-dg2: NOTRUN -> [SKIP][135] ([i915#11151] / [i915#7828]) +3 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-7/igt@kms_chamelium_hpd@dp-hpd-storm.html - shard-rkl: NOTRUN -> [SKIP][136] ([i915#11151] / [i915#7828]) +9 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-5/igt@kms_chamelium_hpd@dp-hpd-storm.html - shard-tglu: NOTRUN -> [SKIP][137] ([i915#11151] / [i915#7828]) +3 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-4/igt@kms_chamelium_hpd@dp-hpd-storm.html - shard-mtlp: NOTRUN -> [SKIP][138] ([i915#11151] / [i915#7828]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-mtlp-8/igt@kms_chamelium_hpd@dp-hpd-storm.html * igt@kms_chamelium_hpd@vga-hpd-fast: - shard-tglu-1: NOTRUN -> [SKIP][139] ([i915#11151] / [i915#7828]) +1 other test skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-1/igt@kms_chamelium_hpd@vga-hpd-fast.html * igt@kms_color@deep-color: - shard-tglu-1: NOTRUN -> [SKIP][140] ([i915#3555] / [i915#9979]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-1/igt@kms_color@deep-color.html * igt@kms_content_protection@atomic-dpms: - shard-tglu-1: NOTRUN -> [SKIP][141] ([i915#15865]) +1 other test skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-1/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@content-type-change: - shard-rkl: NOTRUN -> [SKIP][142] ([i915#15865]) +2 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-4/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-dg1: NOTRUN -> [SKIP][143] ([i915#15330] / [i915#3299]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-14/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-lic-type-0-hdcp14: - shard-dg2: NOTRUN -> [SKIP][144] ([i915#15330]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-1/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html * igt@kms_content_protection@dp-mst-type-0: - shard-tglu: NOTRUN -> [SKIP][145] ([i915#15330] / [i915#3116] / [i915#3299]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-7/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@dp-mst-type-0-suspend-resume: - shard-rkl: NOTRUN -> [SKIP][146] ([i915#15330]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-5/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html * igt@kms_content_protection@legacy-hdcp14: - shard-rkl: NOTRUN -> [SKIP][147] ([i915#14544] / [i915#15865]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@kms_content_protection@legacy-hdcp14.html * igt@kms_content_protection@lic-type-0@pipe-a-dp-3: - shard-dg2: NOTRUN -> [FAIL][148] ([i915#7173]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-10/igt@kms_content_protection@lic-type-0@pipe-a-dp-3.html * igt@kms_content_protection@mei-interface: - shard-tglu: NOTRUN -> [SKIP][149] ([i915#15865]) +2 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-8/igt@kms_content_protection@mei-interface.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-rkl: NOTRUN -> [SKIP][150] ([i915#13049]) +1 other test skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-8/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-32x32: - shard-rkl: NOTRUN -> [SKIP][151] ([i915#3555]) +3 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-5/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html * igt@kms_cursor_crc@cursor-rapid-movement-512x512: - shard-snb: NOTRUN -> [SKIP][152] +27 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-snb5/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html - shard-tglu: NOTRUN -> [SKIP][153] ([i915#13049]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-6/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html - shard-mtlp: NOTRUN -> [SKIP][154] ([i915#13049]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-mtlp-5/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html - shard-dg2: NOTRUN -> [SKIP][155] ([i915#13049]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-1/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html - shard-dg1: NOTRUN -> [SKIP][156] ([i915#13049]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-19/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-rkl: NOTRUN -> [SKIP][157] ([i915#14544] / [i915#4103]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-tglu: NOTRUN -> [SKIP][158] ([i915#4103]) +2 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-rkl: NOTRUN -> [SKIP][159] ([i915#14544] / [i915#9067]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-rkl: NOTRUN -> [SKIP][160] ([i915#4103]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][161] ([i915#3804]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html * igt@kms_dp_aux_dev@basic: - shard-tglu-1: NOTRUN -> [SKIP][162] ([i915#1257]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-1/igt@kms_dp_aux_dev@basic.html * igt@kms_dp_link_training@non-uhbr-mst: - shard-rkl: NOTRUN -> [SKIP][163] ([i915#13749]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-2/igt@kms_dp_link_training@non-uhbr-mst.html * igt@kms_dp_link_training@non-uhbr-sst: - shard-dg2: NOTRUN -> [SKIP][164] ([i915#13749]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-8/igt@kms_dp_link_training@non-uhbr-sst.html * igt@kms_dp_link_training@uhbr-mst: - shard-rkl: NOTRUN -> [SKIP][165] ([i915#13748]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-3/igt@kms_dp_link_training@uhbr-mst.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-dg2: NOTRUN -> [SKIP][166] ([i915#13707]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-4/igt@kms_dp_linktrain_fallback@dp-fallback.html - shard-rkl: NOTRUN -> [SKIP][167] ([i915#13707]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-7/igt@kms_dp_linktrain_fallback@dp-fallback.html - shard-dg1: NOTRUN -> [SKIP][168] ([i915#13707]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-14/igt@kms_dp_linktrain_fallback@dp-fallback.html - shard-tglu: NOTRUN -> [SKIP][169] ([i915#13707]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-4/igt@kms_dp_linktrain_fallback@dp-fallback.html - shard-mtlp: NOTRUN -> [SKIP][170] ([i915#13707]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-mtlp-8/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-tglu-1: NOTRUN -> [SKIP][171] ([i915#3840] / [i915#9053]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-1/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-rkl: [PASS][172] -> [INCOMPLETE][173] ([i915#9878]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-8/igt@kms_fbcon_fbt@fbc-suspend.html [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-3/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_fbcon_fbt@psr: - shard-tglu-1: NOTRUN -> [SKIP][174] ([i915#3469]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-1/igt@kms_fbcon_fbt@psr.html * igt@kms_fbcon_fbt@psr-suspend: - shard-rkl: NOTRUN -> [SKIP][175] ([i915#3955]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-8/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@chamelium: - shard-rkl: NOTRUN -> [SKIP][176] ([i915#4854]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-2/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-2x: - shard-rkl: NOTRUN -> [SKIP][177] ([i915#1839]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-5/igt@kms_feature_discovery@display-2x.html - shard-tglu: NOTRUN -> [SKIP][178] ([i915#1839]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-3/igt@kms_feature_discovery@display-2x.html * igt@kms_feature_discovery@dp-mst: - shard-rkl: NOTRUN -> [SKIP][179] ([i915#14544] / [i915#9337]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@kms_feature_discovery@dp-mst.html * igt@kms_feature_discovery@psr1: - shard-tglu: NOTRUN -> [SKIP][180] ([i915#658]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-8/igt@kms_feature_discovery@psr1.html * igt@kms_flip@2x-flip-vs-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][181] ([i915#8381]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-5/igt@kms_flip@2x-flip-vs-fences-interruptible.html - shard-dg1: NOTRUN -> [SKIP][182] ([i915#8381]) +1 other test skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-16/igt@kms_flip@2x-flip-vs-fences-interruptible.html - shard-mtlp: NOTRUN -> [SKIP][183] ([i915#8381]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-mtlp-6/igt@kms_flip@2x-flip-vs-fences-interruptible.html * igt@kms_flip@2x-flip-vs-modeset-vs-hang: - shard-tglu-1: NOTRUN -> [SKIP][184] ([i915#3637] / [i915#9934]) +1 other test skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-1/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible: - shard-rkl: NOTRUN -> [SKIP][185] ([i915#9934]) +9 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-2/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html - shard-dg1: NOTRUN -> [SKIP][186] ([i915#9934]) +2 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-18/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html * igt@kms_flip@2x-nonexisting-fb: - shard-tglu: NOTRUN -> [SKIP][187] ([i915#3637] / [i915#9934]) +5 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-6/igt@kms_flip@2x-nonexisting-fb.html * igt@kms_flip@2x-nonexisting-fb-interruptible: - shard-rkl: NOTRUN -> [SKIP][188] ([i915#14544] / [i915#9934]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@kms_flip@2x-nonexisting-fb-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-glk: NOTRUN -> [INCOMPLETE][189] ([i915#12314] / [i915#12745] / [i915#4839]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-glk8/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1: - shard-glk: NOTRUN -> [INCOMPLETE][190] ([i915#12314] / [i915#12745]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-glk8/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-dg2: NOTRUN -> [SKIP][191] ([i915#15643]) +2 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-8/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html - shard-dg1: NOTRUN -> [SKIP][192] ([i915#15643]) +1 other test skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-19/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-rkl: NOTRUN -> [SKIP][193] ([i915#15643]) +3 other tests skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-7/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling: - shard-tglu: NOTRUN -> [SKIP][194] ([i915#15643]) +3 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-8/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][195] ([i915#15643]) +1 other test skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][196] ([i915#14544] / [i915#1825]) +8 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt: - shard-dg2: NOTRUN -> [SKIP][197] ([i915#5354]) +11 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html - shard-mtlp: NOTRUN -> [SKIP][198] ([i915#1825]) +2 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][199] ([i915#10056]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-glk8/igt@kms_frontbuffer_tracking@fbc-suspend.html * igt@kms_frontbuffer_tracking@fbc-tiling-4: - shard-rkl: NOTRUN -> [SKIP][200] ([i915#5439]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-tiling-4.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt: - shard-rkl: NOTRUN -> [SKIP][201] ([i915#15102]) +3 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][202] ([i915#15104]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html - shard-dg2: NOTRUN -> [SKIP][203] ([i915#15104]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html - shard-dg1: NOTRUN -> [SKIP][204] ([i915#15104]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][205] ([i915#15102]) +1 other test skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-render.html - shard-dg1: NOTRUN -> [SKIP][206] ([i915#15102]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw: - shard-rkl: NOTRUN -> [SKIP][207] ([i915#15102] / [i915#3023]) +19 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-blt: - shard-tglu: NOTRUN -> [SKIP][208] ([i915#15102]) +12 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render: - shard-glk10: NOTRUN -> [SKIP][209] +162 other tests skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-glk10/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move: - shard-tglu-1: NOTRUN -> [SKIP][210] ([i915#15102]) +12 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][211] ([i915#15102] / [i915#3458]) +8 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-rte: - shard-dg1: NOTRUN -> [SKIP][212] ([i915#15102] / [i915#3458]) +8 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][213] ([i915#8708]) +10 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html - shard-dg1: NOTRUN -> [SKIP][214] ([i915#8708]) +3 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-pwrite: - shard-tglu-1: NOTRUN -> [SKIP][215] +21 other tests skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: - shard-dg1: NOTRUN -> [SKIP][216] +18 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][217] ([i915#14544] / [i915#15102] / [i915#3023]) +3 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-tglu: NOTRUN -> [SKIP][218] ([i915#9766]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-10/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt: - shard-rkl: NOTRUN -> [SKIP][219] ([i915#1825]) +31 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-tglu: NOTRUN -> [SKIP][220] +38 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_hdr@invalid-hdr: - shard-dg1: NOTRUN -> [SKIP][221] ([i915#3555] / [i915#8228]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-18/igt@kms_hdr@invalid-hdr.html * igt@kms_hdr@static-toggle-dpms: - shard-tglu: NOTRUN -> [SKIP][222] ([i915#3555] / [i915#8228]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-6/igt@kms_hdr@static-toggle-dpms.html * igt@kms_joiner@basic-max-non-joiner: - shard-rkl: NOTRUN -> [SKIP][223] ([i915#13688]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-4/igt@kms_joiner@basic-max-non-joiner.html - shard-tglu-1: NOTRUN -> [SKIP][224] ([i915#13688]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-1/igt@kms_joiner@basic-max-non-joiner.html * igt@kms_joiner@basic-ultra-joiner: - shard-dg1: NOTRUN -> [SKIP][225] ([i915#15458]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-13/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-dg2: NOTRUN -> [SKIP][226] ([i915#15459]) +1 other test skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-1/igt@kms_joiner@invalid-modeset-force-big-joiner.html - shard-rkl: NOTRUN -> [SKIP][227] ([i915#15459]) +1 other test skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-2/igt@kms_joiner@invalid-modeset-force-big-joiner.html - shard-dg1: NOTRUN -> [SKIP][228] ([i915#15459]) +1 other test skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-15/igt@kms_joiner@invalid-modeset-force-big-joiner.html - shard-tglu: NOTRUN -> [SKIP][229] ([i915#15459]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-2/igt@kms_joiner@invalid-modeset-force-big-joiner.html - shard-mtlp: NOTRUN -> [SKIP][230] ([i915#15459]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-mtlp-7/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier: - shard-dg1: NOTRUN -> [SKIP][231] ([i915#15709]) +1 other test skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-13/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier.html * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping: - shard-tglu-1: NOTRUN -> [SKIP][232] ([i915#15709]) +1 other test skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping.html * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping: - shard-dg2: NOTRUN -> [SKIP][233] ([i915#15709]) +1 other test skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-6/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping: - shard-rkl: NOTRUN -> [SKIP][234] ([i915#14544] / [i915#15709]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier: - shard-rkl: NOTRUN -> [SKIP][235] ([i915#15709]) +3 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-2/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier.html * igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping: - shard-tglu: NOTRUN -> [SKIP][236] ([i915#15709]) +2 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-3/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-y-tiled-modifier@pipe-b-plane-7: - shard-tglu-1: NOTRUN -> [SKIP][237] ([i915#15608]) +1 other test skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-1/igt@kms_plane@pixel-format-y-tiled-modifier@pipe-b-plane-7.html * igt@kms_plane_multiple@2x-tiling-yf: - shard-tglu: NOTRUN -> [SKIP][238] ([i915#13958]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-6/igt@kms_plane_multiple@2x-tiling-yf.html - shard-rkl: NOTRUN -> [SKIP][239] ([i915#13958]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-2/igt@kms_plane_multiple@2x-tiling-yf.html * igt@kms_plane_multiple@tiling-yf: - shard-rkl: NOTRUN -> [SKIP][240] ([i915#14259]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-1/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b: - shard-rkl: NOTRUN -> [SKIP][241] ([i915#15329]) +3 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-2/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-tglu: NOTRUN -> [SKIP][242] ([i915#12343]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-4/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_backlight@fade: - shard-rkl: NOTRUN -> [SKIP][243] ([i915#5354]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-4/igt@kms_pm_backlight@fade.html - shard-tglu-1: NOTRUN -> [SKIP][244] ([i915#9812]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-1/igt@kms_pm_backlight@fade.html - shard-dg1: NOTRUN -> [SKIP][245] ([i915#5354]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-14/igt@kms_pm_backlight@fade.html * igt@kms_pm_backlight@fade-with-suspend: - shard-rkl: NOTRUN -> [SKIP][246] ([i915#14544] / [i915#5354]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-tglu: NOTRUN -> [SKIP][247] ([i915#9685]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-9/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc5-retention-flops: - shard-tglu-1: NOTRUN -> [SKIP][248] ([i915#3828]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-1/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_lpsp@kms-lpsp: - shard-dg2: NOTRUN -> [SKIP][249] ([i915#9340]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-6/igt@kms_pm_lpsp@kms-lpsp.html - shard-rkl: NOTRUN -> [SKIP][250] ([i915#3828]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-8/igt@kms_pm_lpsp@kms-lpsp.html - shard-dg1: NOTRUN -> [SKIP][251] ([i915#3828]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-15/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_rpm@modeset-lpsp: - shard-rkl: NOTRUN -> [SKIP][252] ([i915#14544] / [i915#15073]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-rkl: NOTRUN -> [SKIP][253] ([i915#15073]) +1 other test skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp.html - shard-tglu-1: NOTRUN -> [SKIP][254] ([i915#15073]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-1/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-tglu: NOTRUN -> [SKIP][255] ([i915#15073]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-10/igt@kms_pm_rpm@modeset-non-lpsp-stress.html - shard-mtlp: NOTRUN -> [SKIP][256] ([i915#15073]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-mtlp-8/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-dg2: [PASS][257] -> [SKIP][258] ([i915#15073]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-dg2-1/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_prime@basic-crc-hybrid: - shard-dg2: NOTRUN -> [SKIP][259] ([i915#6524] / [i915#6805]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-1/igt@kms_prime@basic-crc-hybrid.html * igt@kms_prime@basic-modeset-hybrid: - shard-tglu-1: NOTRUN -> [SKIP][260] ([i915#6524]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-1/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf: - shard-dg1: NOTRUN -> [SKIP][261] ([i915#11520]) +3 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-15/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][262] ([i915#11520]) +11 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-glk4/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area: - shard-dg2: NOTRUN -> [SKIP][263] ([i915#11520]) +4 other tests skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-5/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html * igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][264] ([i915#11520]) +9 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-1/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area: - shard-tglu-1: NOTRUN -> [SKIP][265] ([i915#11520]) +4 other tests skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-1/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf: - shard-mtlp: NOTRUN -> [SKIP][266] ([i915#12316]) +1 other test skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-mtlp-2/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf: - shard-glk10: NOTRUN -> [SKIP][267] ([i915#11520]) +1 other test skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-glk10/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html - shard-rkl: NOTRUN -> [SKIP][268] ([i915#11520] / [i915#14544]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html - shard-snb: NOTRUN -> [SKIP][269] ([i915#11520]) +1 other test skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-snb4/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf: - shard-tglu: NOTRUN -> [SKIP][270] ([i915#11520]) +9 other tests skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-3/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf: - shard-glk11: NOTRUN -> [SKIP][271] ([i915#11520]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-glk11/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_su@page_flip-nv12: - shard-rkl: NOTRUN -> [SKIP][272] ([i915#9683]) +1 other test skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-7/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr2_su@page_flip-p010: - shard-dg2: NOTRUN -> [SKIP][273] ([i915#9683]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-7/igt@kms_psr2_su@page_flip-p010.html - shard-tglu-1: NOTRUN -> [SKIP][274] ([i915#9683]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-1/igt@kms_psr2_su@page_flip-p010.html - shard-dg1: NOTRUN -> [SKIP][275] ([i915#9683]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-12/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-tglu: NOTRUN -> [SKIP][276] ([i915#9683]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-8/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-pr-sprite-render: - shard-tglu-1: NOTRUN -> [SKIP][277] ([i915#9732]) +8 other tests skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-1/igt@kms_psr@fbc-pr-sprite-render.html * igt@kms_psr@fbc-psr-dpms@edp-1: - shard-mtlp: NOTRUN -> [SKIP][278] ([i915#9688]) +2 other tests skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-mtlp-2/igt@kms_psr@fbc-psr-dpms@edp-1.html * igt@kms_psr@fbc-psr2-cursor-mmap-gtt: - shard-glk: NOTRUN -> [SKIP][279] +388 other tests skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-glk3/igt@kms_psr@fbc-psr2-cursor-mmap-gtt.html * igt@kms_psr@fbc-psr2-sprite-render: - shard-rkl: NOTRUN -> [SKIP][280] ([i915#1072] / [i915#9732]) +25 other tests skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-2/igt@kms_psr@fbc-psr2-sprite-render.html * igt@kms_psr@pr-primary-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][281] ([i915#1072] / [i915#9732]) +7 other tests skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-6/igt@kms_psr@pr-primary-mmap-gtt.html * igt@kms_psr@pr-sprite-plane-onoff: - shard-dg1: NOTRUN -> [SKIP][282] ([i915#1072] / [i915#9732]) +8 other tests skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-15/igt@kms_psr@pr-sprite-plane-onoff.html * igt@kms_psr@psr-cursor-blt: - shard-rkl: NOTRUN -> [SKIP][283] ([i915#1072] / [i915#14544] / [i915#9732]) +1 other test skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@kms_psr@psr-cursor-blt.html * igt@kms_psr@psr-cursor-plane-onoff: - shard-tglu: NOTRUN -> [SKIP][284] ([i915#9732]) +17 other tests skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-9/igt@kms_psr@psr-cursor-plane-onoff.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-rkl: NOTRUN -> [SKIP][285] ([i915#9685]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-5/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html - shard-tglu-1: NOTRUN -> [SKIP][286] ([i915#9685]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-1/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@multiplane-rotation-cropping-bottom: - shard-glk: NOTRUN -> [INCOMPLETE][287] ([i915#15500]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-glk3/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html * igt@kms_rotation_crc@multiplane-rotation-cropping-top: - shard-glk: NOTRUN -> [INCOMPLETE][288] ([i915#15492]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-glk8/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-dg1: NOTRUN -> [SKIP][289] ([i915#5289]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-16/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-rotation-270: - shard-dg2: NOTRUN -> [SKIP][290] ([i915#12755] / [i915#15867]) +2 other tests skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-6/igt@kms_rotation_crc@primary-rotation-270.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-rkl: NOTRUN -> [SKIP][291] ([i915#5289]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-tglu: NOTRUN -> [SKIP][292] ([i915#5289]) +1 other test skip [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-mtlp: NOTRUN -> [SKIP][293] ([i915#12755] / [i915#15867]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-mtlp-5/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt@kms_scaling_modes@scaling-mode-none: - shard-dg2: NOTRUN -> [SKIP][294] ([i915#3555]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-5/igt@kms_scaling_modes@scaling-mode-none.html - shard-rkl: NOTRUN -> [SKIP][295] ([i915#14544] / [i915#3555]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@kms_scaling_modes@scaling-mode-none.html - shard-dg1: NOTRUN -> [SKIP][296] ([i915#3555]) +2 other tests skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-17/igt@kms_scaling_modes@scaling-mode-none.html * igt@kms_tiled_display@basic-test-pattern: - shard-glk: NOTRUN -> [FAIL][297] ([i915#10959]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-glk6/igt@kms_tiled_display@basic-test-pattern.html - shard-rkl: NOTRUN -> [SKIP][298] ([i915#8623]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-5/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_vblank@ts-continuation-suspend: - shard-glk10: NOTRUN -> [INCOMPLETE][299] ([i915#12276]) +1 other test incomplete [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-glk10/igt@kms_vblank@ts-continuation-suspend.html * igt@kms_vrr@flip-basic-fastset: - shard-rkl: NOTRUN -> [SKIP][300] ([i915#9906]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-8/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@flip-dpms: - shard-rkl: NOTRUN -> [SKIP][301] ([i915#15243] / [i915#3555]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-3/igt@kms_vrr@flip-dpms.html * igt@kms_vrr@lobf: - shard-tglu: NOTRUN -> [SKIP][302] ([i915#11920]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-8/igt@kms_vrr@lobf.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-rkl: NOTRUN -> [SKIP][303] ([i915#14544] / [i915#9906]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@kms_vrr@seamless-rr-switch-drrs.html - shard-tglu: NOTRUN -> [SKIP][304] ([i915#9906]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-10/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@perf_pmu@busy-accuracy-2: - shard-dg1: [PASS][305] -> [ABORT][306] ([i915#13562]) +1 other test abort [305]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-dg1-14/igt@perf_pmu@busy-accuracy-2.html [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-18/igt@perf_pmu@busy-accuracy-2.html * igt@perf_pmu@busy-accuracy-2@bcs0: - shard-dg1: [PASS][307] -> [DMESG-WARN][308] ([i915#13562]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-dg1-14/igt@perf_pmu@busy-accuracy-2@bcs0.html [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-18/igt@perf_pmu@busy-accuracy-2@bcs0.html * igt@perf_pmu@module-unload: - shard-glk: NOTRUN -> [ABORT][309] ([i915#15778]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-glk3/igt@perf_pmu@module-unload.html * igt@prime_vgem@basic-fence-read: - shard-rkl: NOTRUN -> [SKIP][310] ([i915#3291] / [i915#3708]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-2/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@basic-gtt: - shard-dg2: NOTRUN -> [SKIP][311] ([i915#3708] / [i915#4077]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-1/igt@prime_vgem@basic-gtt.html * igt@prime_vgem@fence-read-hang: - shard-rkl: NOTRUN -> [SKIP][312] ([i915#3708]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-2/igt@prime_vgem@fence-read-hang.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-rkl: NOTRUN -> [SKIP][313] ([i915#9917]) +1 other test skip [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-7/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-6: - shard-tglu: NOTRUN -> [FAIL][314] ([i915#12910]) +9 other tests fail [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-9/igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-6.html * igt@sriov_basic@enable-vfs-autoprobe-on: - shard-dg1: NOTRUN -> [SKIP][315] ([i915#9917]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-19/igt@sriov_basic@enable-vfs-autoprobe-on.html #### Possible fixes #### * igt@gem_mmap_offset@clear-via-pagefault: - shard-mtlp: [DMESG-WARN][316] ([i915#15478]) -> [PASS][317] +1 other test pass [316]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-mtlp-4/igt@gem_mmap_offset@clear-via-pagefault.html [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-mtlp-6/igt@gem_mmap_offset@clear-via-pagefault.html * igt@i915_module_load@reload-no-display: - shard-tglu: [DMESG-WARN][318] ([i915#13029] / [i915#14545]) -> [PASS][319] [318]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-tglu-10/igt@i915_module_load@reload-no-display.html [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-2/igt@i915_module_load@reload-no-display.html * igt@i915_pm_rc6_residency@rc6-fence: - shard-tglu: [WARN][320] ([i915#13790] / [i915#2681]) -> [PASS][321] +1 other test pass [320]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-tglu-10/igt@i915_pm_rc6_residency@rc6-fence.html [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-6/igt@i915_pm_rc6_residency@rc6-fence.html * igt@i915_suspend@basic-s3-without-i915: - shard-rkl: [ABORT][322] ([i915#15131]) -> [PASS][323] [322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-1/igt@i915_suspend@basic-s3-without-i915.html [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-7/igt@i915_suspend@basic-s3-without-i915.html * igt@i915_suspend@fence-restore-untiled: - shard-rkl: [INCOMPLETE][324] ([i915#4817]) -> [PASS][325] [324]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-6/igt@i915_suspend@fence-restore-untiled.html [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-2/igt@i915_suspend@fence-restore-untiled.html - shard-glk: [INCOMPLETE][326] ([i915#4817]) -> [PASS][327] [326]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-glk8/igt@i915_suspend@fence-restore-untiled.html [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-glk6/igt@i915_suspend@fence-restore-untiled.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing: - shard-tglu: [FAIL][328] ([i915#15662]) -> [PASS][329] +1 other test pass [328]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-tglu-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-mtlp: [FAIL][330] ([i915#15733] / [i915#5138]) -> [PASS][331] [330]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-mtlp-6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-mtlp-3/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs: - shard-dg1: [DMESG-WARN][332] ([i915#4423]) -> [PASS][333] +1 other test pass [332]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-dg1-17/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs.html [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-12/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs: - shard-tglu: [ABORT][334] ([i915#15652]) -> [PASS][335] +1 other test pass [334]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-tglu-10/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-4/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html * igt@kms_flip@dpms-vs-vblank-race@b-hdmi-a1: - shard-tglu: [FAIL][336] ([i915#10826]) -> [PASS][337] +1 other test pass [336]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-tglu-6/igt@kms_flip@dpms-vs-vblank-race@b-hdmi-a1.html [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-6/igt@kms_flip@dpms-vs-vblank-race@b-hdmi-a1.html * igt@kms_hdr@invalid-metadata-sizes: - shard-rkl: [SKIP][338] ([i915#3555] / [i915#8228]) -> [PASS][339] +1 other test pass [338]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-7/igt@kms_hdr@invalid-metadata-sizes.html [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_plane_scaling@intel-max-src-size: - shard-rkl: [SKIP][340] ([i915#6953]) -> [PASS][341] [340]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-7/igt@kms_plane_scaling@intel-max-src-size.html [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-dg2: [SKIP][342] ([i915#15073]) -> [PASS][343] +1 other test pass [342]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-dg2-8/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-dg1: [SKIP][344] ([i915#15073]) -> [PASS][345] +1 other test pass [344]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-dg1-15/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-13/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html #### Warnings #### * igt@api_intel_bb@blit-reloc-purge-cache: - shard-rkl: [SKIP][346] ([i915#8411]) -> [SKIP][347] ([i915#14544] / [i915#8411]) +1 other test skip [346]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-4/igt@api_intel_bb@blit-reloc-purge-cache.html [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@api_intel_bb@crc32: - shard-rkl: [SKIP][348] ([i915#6230]) -> [SKIP][349] ([i915#14544] / [i915#6230]) [348]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-5/igt@api_intel_bb@crc32.html [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@api_intel_bb@crc32.html * igt@device_reset@unbind-cold-reset-rebind: - shard-rkl: [SKIP][350] ([i915#11078]) -> [SKIP][351] ([i915#11078] / [i915#14544]) [350]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-4/igt@device_reset@unbind-cold-reset-rebind.html [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@device_reset@unbind-cold-reset-rebind.html * igt@drm_buddy@drm_buddy: - shard-rkl: [SKIP][352] ([i915#14544] / [i915#15678]) -> [SKIP][353] ([i915#15678]) [352]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-6/igt@drm_buddy@drm_buddy.html [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-4/igt@drm_buddy@drm_buddy.html * igt@gem_ccs@block-multicopy-inplace: - shard-rkl: [SKIP][354] ([i915#3555] / [i915#9323]) -> [SKIP][355] ([i915#14544] / [i915#3555] / [i915#9323]) [354]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-4/igt@gem_ccs@block-multicopy-inplace.html [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@gem_ccs@block-multicopy-inplace.html * igt@gem_exec_params@secure-non-master: - shard-rkl: [SKIP][356] ([i915#14544]) -> [SKIP][357] +4 other tests skip [356]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-6/igt@gem_exec_params@secure-non-master.html [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-8/igt@gem_exec_params@secure-non-master.html * igt@gem_exec_reloc@basic-gtt-wc-noreloc: - shard-rkl: [SKIP][358] ([i915#3281]) -> [SKIP][359] ([i915#14544] / [i915#3281]) +4 other tests skip [358]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-5/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html * igt@gem_exec_reloc@basic-range-active: - shard-rkl: [SKIP][360] ([i915#14544] / [i915#3281]) -> [SKIP][361] ([i915#3281]) [360]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-6/igt@gem_exec_reloc@basic-range-active.html [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-8/igt@gem_exec_reloc@basic-range-active.html * igt@gem_lmem_swapping@heavy-verify-random-ccs: - shard-rkl: [SKIP][362] ([i915#14544] / [i915#4613]) -> [SKIP][363] ([i915#4613]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-6/igt@gem_lmem_swapping@heavy-verify-random-ccs.html [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-4/igt@gem_lmem_swapping@heavy-verify-random-ccs.html * igt@gem_lmem_swapping@massive-random: - shard-rkl: [SKIP][364] ([i915#4613]) -> [SKIP][365] ([i915#14544] / [i915#4613]) [364]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-5/igt@gem_lmem_swapping@massive-random.html [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@gem_lmem_swapping@massive-random.html * igt@gem_partial_pwrite_pread@writes-after-reads: - shard-rkl: [SKIP][366] ([i915#14544] / [i915#3282]) -> [SKIP][367] ([i915#3282]) +1 other test skip [366]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads.html [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-8/igt@gem_partial_pwrite_pread@writes-after-reads.html * igt@gem_partial_pwrite_pread@writes-after-reads-display: - shard-rkl: [SKIP][368] ([i915#3282]) -> [SKIP][369] ([i915#14544] / [i915#3282]) +1 other test skip [368]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-3/igt@gem_partial_pwrite_pread@writes-after-reads-display.html [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads-display.html * igt@gem_set_tiling_vs_blt@tiled-to-tiled: - shard-rkl: [SKIP][370] ([i915#14544] / [i915#8411]) -> [SKIP][371] ([i915#8411]) [370]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-6/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-5/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html * igt@gem_userptr_blits@coherency-unsync: - shard-rkl: [SKIP][372] ([i915#14544] / [i915#3297]) -> [SKIP][373] ([i915#3297]) [372]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-6/igt@gem_userptr_blits@coherency-unsync.html [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-2/igt@gem_userptr_blits@coherency-unsync.html * igt@gem_userptr_blits@readonly-pwrite-unsync: - shard-rkl: [SKIP][374] ([i915#3297]) -> [SKIP][375] ([i915#14544] / [i915#3297]) [374]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-7/igt@gem_userptr_blits@readonly-pwrite-unsync.html [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@gem_userptr_blits@readonly-pwrite-unsync.html * igt@gen9_exec_parse@allowed-all: - shard-rkl: [SKIP][376] ([i915#14544] / [i915#2527]) -> [SKIP][377] ([i915#2527]) [376]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-6/igt@gen9_exec_parse@allowed-all.html [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-2/igt@gen9_exec_parse@allowed-all.html * igt@gen9_exec_parse@bb-secure: - shard-rkl: [SKIP][378] ([i915#2527]) -> [SKIP][379] ([i915#14544] / [i915#2527]) [378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-5/igt@gen9_exec_parse@bb-secure.html [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@gen9_exec_parse@bb-secure.html * igt@i915_module_load@fault-injection@__uc_init: - shard-rkl: [SKIP][380] ([i915#14544] / [i915#15479]) -> [SKIP][381] ([i915#15479]) +4 other tests skip [380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-6/igt@i915_module_load@fault-injection@__uc_init.html [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-2/igt@i915_module_load@fault-injection@__uc_init.html * igt@i915_module_load@resize-bar: - shard-rkl: [SKIP][382] ([i915#6412]) -> [SKIP][383] ([i915#14544] / [i915#6412]) [382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-8/igt@i915_module_load@resize-bar.html [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@i915_module_load@resize-bar.html * igt@i915_pm_sseu@full-enable: - shard-rkl: [SKIP][384] ([i915#4387]) -> [SKIP][385] ([i915#14544] / [i915#4387]) [384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-4/igt@i915_pm_sseu@full-enable.html [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@i915_pm_sseu@full-enable.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-rkl: [SKIP][386] ([i915#9531]) -> [SKIP][387] ([i915#14544] / [i915#9531]) [386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-5/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-rkl: [SKIP][388] ([i915#1769] / [i915#3555]) -> [SKIP][389] ([i915#14544] / [i915#1769] / [i915#3555]) [388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-16bpp-rotate-0: - shard-rkl: [SKIP][390] ([i915#14544] / [i915#5286]) -> [SKIP][391] ([i915#5286]) +2 other tests skip [390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-6/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-7/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html * igt@kms_big_fb@4-tiled-8bpp-rotate-90: - shard-rkl: [SKIP][392] ([i915#5286]) -> [SKIP][393] ([i915#14544] / [i915#5286]) +1 other test skip [392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-8/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html * igt@kms_big_fb@linear-64bpp-rotate-90: - shard-rkl: [SKIP][394] ([i915#14544] / [i915#3638]) -> [SKIP][395] ([i915#3638]) +1 other test skip [394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-6/igt@kms_big_fb@linear-64bpp-rotate-90.html [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-2/igt@kms_big_fb@linear-64bpp-rotate-90.html * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip: - shard-rkl: [SKIP][396] ([i915#3828]) -> [SKIP][397] ([i915#14544] / [i915#3828]) [396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-7/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc: - shard-rkl: [SKIP][398] ([i915#14098] / [i915#6095]) -> [SKIP][399] ([i915#14098] / [i915#14544] / [i915#6095]) +7 other tests skip [398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-2/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs: - shard-rkl: [SKIP][400] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][401] ([i915#14098] / [i915#6095]) +6 other tests skip [400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs.html [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: [SKIP][402] ([i915#14544] / [i915#6095]) -> [SKIP][403] ([i915#6095]) +5 other tests skip [402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-2: - shard-rkl: [SKIP][404] ([i915#6095]) -> [SKIP][405] ([i915#14544] / [i915#6095]) +1 other test skip [404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-7/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-2.html [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-rkl: [SKIP][406] ([i915#12313]) -> [SKIP][407] ([i915#12313] / [i915#14544]) [406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-7/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k: - shard-rkl: [SKIP][408] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][409] ([i915#11151] / [i915#7828]) +1 other test skip [408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-6/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-5/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html * igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode: - shard-rkl: [SKIP][410] ([i915#11151] / [i915#7828]) -> [SKIP][411] ([i915#11151] / [i915#14544] / [i915#7828]) +2 other tests skip [410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-3/igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode.html [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-rkl: [SKIP][412] ([i915#14544] / [i915#15330] / [i915#3116]) -> [SKIP][413] ([i915#15330] / [i915#3116]) [412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-6/igt@kms_content_protection@dp-mst-lic-type-0.html [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-7/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-rkl: [SKIP][414] ([i915#15330] / [i915#3116]) -> [SKIP][415] ([i915#14544] / [i915#15330] / [i915#3116]) +1 other test skip [414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-7/igt@kms_content_protection@dp-mst-lic-type-1.html [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@lic-type-0: - shard-dg2: [SKIP][416] ([i915#15865]) -> [FAIL][417] ([i915#7173]) [416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-dg2-4/igt@kms_content_protection@lic-type-0.html [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-10/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@mei-interface: - shard-dg1: [SKIP][418] ([i915#15865]) -> [SKIP][419] ([i915#9433]) [418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-dg1-15/igt@kms_content_protection@mei-interface.html [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-13/igt@kms_content_protection@mei-interface.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-rkl: [SKIP][420] ([i915#3555]) -> [SKIP][421] ([i915#14544] / [i915#3555]) +3 other tests skip [420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-32x32.html [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-dg2: [SKIP][422] ([i915#13049] / [i915#3359]) -> [SKIP][423] ([i915#13049]) [422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-dg2-10/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-3/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-dg1: [SKIP][424] ([i915#3555] / [i915#4423]) -> [SKIP][425] ([i915#3555]) [424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-dg1-19/igt@kms_cursor_crc@cursor-sliding-32x10.html [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-19/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-rkl: [SKIP][426] -> [SKIP][427] ([i915#14544]) +10 other tests skip [426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-2/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-rkl: [SKIP][428] ([i915#4103]) -> [SKIP][429] ([i915#14544] / [i915#4103]) [428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-rkl: [SKIP][430] ([i915#9723]) -> [SKIP][431] ([i915#14544] / [i915#9723]) [430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-2/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_dsc@dsc-basic: - shard-rkl: [SKIP][432] ([i915#14544] / [i915#3555] / [i915#3840]) -> [SKIP][433] ([i915#3555] / [i915#3840]) [432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-6/igt@kms_dsc@dsc-basic.html [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-5/igt@kms_dsc@dsc-basic.html * igt@kms_flip@2x-flip-vs-dpms: - shard-rkl: [SKIP][434] ([i915#9934]) -> [SKIP][435] ([i915#14544] / [i915#9934]) +5 other tests skip [434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-3/igt@kms_flip@2x-flip-vs-dpms.html [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip@2x-plain-flip-fb-recreate: - shard-rkl: [SKIP][436] ([i915#14544] / [i915#9934]) -> [SKIP][437] ([i915#9934]) +1 other test skip [436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-6/igt@kms_flip@2x-plain-flip-fb-recreate.html [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-7/igt@kms_flip@2x-plain-flip-fb-recreate.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling: - shard-rkl: [SKIP][438] ([i915#15643]) -> [SKIP][439] ([i915#14544] / [i915#15643]) [438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html [439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling: - shard-rkl: [SKIP][440] ([i915#14544] / [i915#15643]) -> [SKIP][441] ([i915#15643]) [440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html [441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-8/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-dg1: [SKIP][442] -> [SKIP][443] ([i915#4423]) +1 other test skip [442]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-dg1-16/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html [443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-12/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt: - shard-rkl: [SKIP][444] ([i915#1825]) -> [SKIP][445] ([i915#14544] / [i915#1825]) +15 other tests skip [444]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html [445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff: - shard-rkl: [SKIP][446] ([i915#14544] / [i915#1825]) -> [SKIP][447] ([i915#1825]) +10 other tests skip [446]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html [447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-cpu: - shard-rkl: [SKIP][448] ([i915#15102] / [i915#3023]) -> [SKIP][449] ([i915#14544] / [i915#15102] / [i915#3023]) +5 other tests skip [448]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-cpu.html [449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-rkl: [SKIP][450] ([i915#9766]) -> [SKIP][451] ([i915#14544] / [i915#9766]) [450]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-2/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html [451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt: - shard-rkl: [SKIP][452] ([i915#15102]) -> [SKIP][453] ([i915#14544] / [i915#15102]) +3 other tests skip [452]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt.html [453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-wc: - shard-rkl: [SKIP][454] ([i915#14544] / [i915#15102]) -> [SKIP][455] ([i915#15102]) [454]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-wc.html [455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu: - shard-rkl: [SKIP][456] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][457] ([i915#15102] / [i915#3023]) +4 other tests skip [456]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html [457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move: - shard-dg2: [SKIP][458] ([i915#15102] / [i915#3458]) -> [SKIP][459] ([i915#10433] / [i915#15102] / [i915#3458]) +3 other tests skip [458]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html [459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary: - shard-dg2: [SKIP][460] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][461] ([i915#15102] / [i915#3458]) +2 other tests skip [460]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html [461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt@kms_hdr@invalid-hdr: - shard-rkl: [SKIP][462] ([i915#14544] / [i915#3555] / [i915#8228]) -> [SKIP][463] ([i915#3555] / [i915#8228]) [462]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-6/igt@kms_hdr@invalid-hdr.html [463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-2/igt@kms_hdr@invalid-hdr.html * igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier: - shard-rkl: [SKIP][464] ([i915#15709]) -> [SKIP][465] ([i915#14544] / [i915#15709]) [464]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-5/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier.html [465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier.html * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier: - shard-rkl: [SKIP][466] ([i915#14544] / [i915#15709]) -> [SKIP][467] ([i915#15709]) +1 other test skip [466]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier.html [467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-4/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier.html * igt@kms_plane_multiple@tiling-4: - shard-rkl: [SKIP][468] ([i915#14259]) -> [SKIP][469] ([i915#14259] / [i915#14544]) [468]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-5/igt@kms_plane_multiple@tiling-4.html [469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@kms_plane_multiple@tiling-4.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-rkl: [SKIP][470] ([i915#14544] / [i915#9685]) -> [SKIP][471] ([i915#9685]) [470]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-6/igt@kms_pm_dc@dc3co-vpb-simulation.html [471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-2/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_rpm@package-g7: - shard-rkl: [SKIP][472] ([i915#15403]) -> [SKIP][473] ([i915#14544] / [i915#15403]) [472]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-7/igt@kms_pm_rpm@package-g7.html [473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@kms_pm_rpm@package-g7.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf: - shard-rkl: [SKIP][474] ([i915#11520] / [i915#14544]) -> [SKIP][475] ([i915#11520]) +2 other tests skip [474]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html [475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-7/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf: - shard-rkl: [SKIP][476] ([i915#11520]) -> [SKIP][477] ([i915#11520] / [i915#14544]) +3 other tests skip [476]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-4/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html [477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-rkl: [SKIP][478] ([i915#14544] / [i915#9683]) -> [SKIP][479] ([i915#9683]) [478]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-6/igt@kms_psr2_su@page_flip-xrgb8888.html [479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-4/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@psr-sprite-plane-move: - shard-rkl: [SKIP][480] ([i915#1072] / [i915#9732]) -> [SKIP][481] ([i915#1072] / [i915#14544] / [i915#9732]) +7 other tests skip [480]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-2/igt@kms_psr@psr-sprite-plane-move.html [481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@kms_psr@psr-sprite-plane-move.html * igt@kms_psr@psr2-cursor-plane-move: - shard-rkl: [SKIP][482] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][483] ([i915#1072] / [i915#9732]) +4 other tests skip [482]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-6/igt@kms_psr@psr2-cursor-plane-move.html [483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-4/igt@kms_psr@psr2-cursor-plane-move.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270: - shard-dg2: [SKIP][484] ([i915#15867] / [i915#5190]) -> [SKIP][485] ([i915#12755] / [i915#15867] / [i915#5190]) [484]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-dg2-10/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html [485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html * igt@kms_setmode@invalid-clone-single-crtc: - shard-rkl: [SKIP][486] ([i915#14544] / [i915#3555]) -> [SKIP][487] ([i915#3555]) [486]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-6/igt@kms_setmode@invalid-clone-single-crtc.html [487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-2/igt@kms_setmode@invalid-clone-single-crtc.html * igt@kms_vrr@flipline: - shard-rkl: [SKIP][488] ([i915#15243] / [i915#3555]) -> [SKIP][489] ([i915#14544] / [i915#15243] / [i915#3555]) [488]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-7/igt@kms_vrr@flipline.html [489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@kms_vrr@flipline.html * igt@kms_vrr@lobf: - shard-rkl: [SKIP][490] ([i915#11920] / [i915#14544]) -> [SKIP][491] ([i915#11920]) [490]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-6/igt@kms_vrr@lobf.html [491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-8/igt@kms_vrr@lobf.html * igt@perf@gen8-unprivileged-single-ctx-counters: - shard-rkl: [SKIP][492] ([i915#14544] / [i915#2436]) -> [SKIP][493] ([i915#2436]) [492]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-6/igt@perf@gen8-unprivileged-single-ctx-counters.html [493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-5/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@perf@per-context-mode-unprivileged: - shard-rkl: [SKIP][494] ([i915#2435]) -> [SKIP][495] ([i915#14544] / [i915#2435]) [494]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-2/igt@perf@per-context-mode-unprivileged.html [495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@perf@per-context-mode-unprivileged.html * igt@perf@unprivileged-single-ctx-counters: - shard-rkl: [SKIP][496] ([i915#2433]) -> [SKIP][497] ([i915#14544] / [i915#2433]) [496]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-5/igt@perf@unprivileged-single-ctx-counters.html [497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@perf@unprivileged-single-ctx-counters.html * igt@perf_pmu@module-unload: - shard-dg2: [ABORT][498] ([i915#15778]) -> [ABORT][499] ([i915#13029] / [i915#15778]) [498]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-dg2-6/igt@perf_pmu@module-unload.html [499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-6/igt@perf_pmu@module-unload.html - shard-dg1: [ABORT][500] ([i915#13029] / [i915#15778]) -> [ABORT][501] ([i915#15778]) [500]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-dg1-19/igt@perf_pmu@module-unload.html [501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-15/igt@perf_pmu@module-unload.html * igt@sriov_basic@enable-vfs-autoprobe-on: - shard-rkl: [SKIP][502] ([i915#14544] / [i915#9917]) -> [SKIP][503] ([i915#9917]) [502]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-6/igt@sriov_basic@enable-vfs-autoprobe-on.html [503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-3/igt@sriov_basic@enable-vfs-autoprobe-on.html [i915#10056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10056 [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#10826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10826 [i915#10959]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10959 [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078 [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#11815]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11815 [i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920 [i915#12193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12193 [i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276 [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313 [i915#12314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12314 [i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316 [i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343 [i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257 [i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745 [i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755 [i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910 [i915#13029]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029 [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049 [i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356 [i915#13562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13562 [i915#13688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688 [i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707 [i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748 [i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749 [i915#13790]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13790 [i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958 [i915#14073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073 [i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098 [i915#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118 [i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259 [i915#14498]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14498 [i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544 [i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545 [i915#14586]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14586 [i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073 [i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102 [i915#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104 [i915#15131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15131 [i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243 [i915#15263]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15263 [i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329 [i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330 [i915#15403]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15403 [i915#15433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15433 [i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458 [i915#15459]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459 [i915#15478]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15478 [i915#15479]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15479 [i915#15481]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15481 [i915#15492]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15492 [i915#15498]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15498 [i915#15500]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15500 [i915#15560]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15560 [i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582 [i915#15608]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608 [i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643 [i915#15652]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15652 [i915#15662]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15662 [i915#15678]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15678 [i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709 [i915#15733]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15733 [i915#15778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778 [i915#15865]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865 [i915#15867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15867 [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839 [i915#2433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433 [i915#2435]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2435 [i915#2436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#2681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2681 [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280 [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023 [i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299 [i915#3359]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469 [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742 [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#3955]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387 [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423 [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525 [i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538 [i915#4565]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812 [i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817 [i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839 [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852 [i915#4854]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854 [i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230 [i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245 [i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334 [i915#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412 [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658 [i915#6590]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590 [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621 [i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805 [i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953 [i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173 [i915#7276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7276 [i915#7582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582 [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697 [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381 [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411 [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428 [i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053 [i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337 [i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340 [i915#9433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9433 [i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531 [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683 [i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685 [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688 [i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766 [i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812 [i915#9878]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9878 [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906 [i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917 [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934 [i915#9979]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9979 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8846 -> IGTPW_14925 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_18273: 76f07a8a9c761686987cba92056f78c1d3cd1c62 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_14925: dd22dc1b6b6beb5d821fa8b9aa3f9bdad194d94d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8846: 8846 piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/index.html [-- Attachment #2: Type: text/html, Size: 171203 bytes --] ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: ✗ i915.CI.Full: failure for lib/xe: query engine class capabilities from debugfs info (rev2) 2026-04-03 23:35 ` ✗ i915.CI.Full: failure " Patchwork @ 2026-04-08 2:15 ` Wang, X 0 siblings, 0 replies; 14+ messages in thread From: Wang, X @ 2026-04-08 2:15 UTC (permalink / raw) To: igt-dev On 4/3/2026 16:35, Patchwork wrote: > Project List - Patchwork *Patch Details* > *Series:* lib/xe: query engine class capabilities from debugfs info > (rev2) > *URL:* https://patchwork.freedesktop.org/series/164327/ > *State:* failure > *Details:* > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/index.html > > > CI Bug Log - changes from CI_DRM_18273_full -> IGTPW_14925_full > > > Summary > > *FAILURE* > > Serious unknown changes coming with IGTPW_14925_full absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_14925_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_14925/index.html > > > Participating hosts (10 -> 10) > > No changes in participating hosts > > > Possible new issues > > Here are the unknown changes that may have been introduced in > IGTPW_14925_full: > > > IGT changes > > > Possible regressions > > * > > igt@gem_exec_fence@basic-await@ccs0: > > o shard-mtlp: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-mtlp-8/igt@gem_exec_fence@basic-await@ccs0.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-mtlp-3/igt@gem_exec_fence@basic-await@ccs0.html> > * > > igt@kms_force_connector_basic@force-connector-state: > > o shard-dg1: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-dg1-19/igt@kms_force_connector_basic@force-connector-state.html> > -> ABORT > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-14/igt@kms_force_connector_basic@force-connector-state.html> > My change is in the Xe specific test. This isn't related. Thanks Xin > > New tests > > New tests have been introduced between CI_DRM_18273_full and > IGTPW_14925_full: > > > New IGT tests (5) > > * > > igt@perf_pmu@fbc-2p-primscrn-cur-indfb-draw-render: > > o Statuses : > o Exec time: [None] s > * > > igt@perf_pmu@invalid-default-ctx: > > o Statuses : > o Exec time: [None] s > * > > igt@perf_pmu@sol-reset-invalid: > > o Statuses : > o Exec time: [None] s > * > > igt@perf_pmu@system-suspend-modeset: > > o Statuses : > o Exec time: [None] s > * > > igt@perf_pmu@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: > > o Statuses : > o Exec time: [None] s > > > Known issues > > Here are the changes found in IGTPW_14925_full that come from known > issues: > > > IGT changes > > > Issues hit > > * > > igt@core_hotunplug@unbind-rebind: > > o shard-mtlp: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-mtlp-6/igt@core_hotunplug@unbind-rebind.html> > -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-mtlp-6/igt@core_hotunplug@unbind-rebind.html> > (i915#15498 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15498>) > * > > igt@drm_buddy@drm_buddy: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-8/igt@drm_buddy@drm_buddy.html> > (i915#15678 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15678>) > * > > igt@gem_ccs@block-copy-compressed: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-7/igt@gem_ccs@block-copy-compressed.html> > (i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> > / i915#9323 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323>) > * > > igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0: > > o shard-dg2: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-dg2-10/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html> > -> INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-10/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html> > (i915#13356 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356>) > * > > igt@gem_close_race@multigpu-basic-process: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-6/igt@gem_close_race@multigpu-basic-process.html> > (i915#7697 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697>) > +1 other test skip > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-2/igt@gem_close_race@multigpu-basic-process.html> > (i915#7697 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697>) > * > > igt@gem_ctx_sseu@invalid-args: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-5/igt@gem_ctx_sseu@invalid-args.html> > (i915#280 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280>) > * > > igt@gem_ctx_sseu@mmap-args: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-4/igt@gem_ctx_sseu@mmap-args.html> > (i915#280 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280>) > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-8/igt@gem_ctx_sseu@mmap-args.html> > (i915#280 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280>) > +1 other test skip > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-13/igt@gem_ctx_sseu@mmap-args.html> > (i915#280 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280>) > * > > igt@gem_exec_balancer@parallel-balancer: > > o shard-tglu-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-1/igt@gem_exec_balancer@parallel-balancer.html> > (i915#4525 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525>) > +1 other test skip > * > > igt@gem_exec_balancer@parallel-contexts: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-2/igt@gem_exec_balancer@parallel-contexts.html> > (i915#4525 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525>) > +2 other tests skip > * > > igt@gem_exec_balancer@parallel-keep-in-fence: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-9/igt@gem_exec_balancer@parallel-keep-in-fence.html> > (i915#4525 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525>) > * > > igt@gem_exec_big@single: > > o shard-rkl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-5/igt@gem_exec_big@single.html> > -> DMESG-FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-5/igt@gem_exec_big@single.html> > (i915#15478 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15478>) > o shard-tglu: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-tglu-8/igt@gem_exec_big@single.html> > -> DMESG-FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-3/igt@gem_exec_big@single.html> > (i915#15478 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15478>) > * > > igt@gem_exec_capture@capture-invisible@smem0: > > o shard-glk: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-glk9/igt@gem_exec_capture@capture-invisible@smem0.html> > (i915#6334 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334>) > +1 other test skip > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-7/igt@gem_exec_capture@capture-invisible@smem0.html> > (i915#6334 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334>) > +1 other test skip > * > > igt@gem_exec_fence@basic-await: > > o shard-mtlp: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-mtlp-8/igt@gem_exec_fence@basic-await.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-mtlp-3/igt@gem_exec_fence@basic-await.html> > (i915#15263 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15263>) > * > > igt@gem_exec_flush@basic-uc-set-default: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-1/igt@gem_exec_flush@basic-uc-set-default.html> > (i915#3539 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539>) > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-13/igt@gem_exec_flush@basic-uc-set-default.html> > (i915#3539 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539>) > * > > igt@gem_exec_flush@basic-wb-ro-before-default: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-8/igt@gem_exec_flush@basic-wb-ro-before-default.html> > (i915#3539 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539> > / i915#4852 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852>) > +1 other test skip > * > > igt@gem_exec_flush@basic-wb-set-default: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-17/igt@gem_exec_flush@basic-wb-set-default.html> > (i915#3539 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539> > / i915#4852 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852>) > * > > igt@gem_exec_reloc@basic-cpu-read-active: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-7/igt@gem_exec_reloc@basic-cpu-read-active.html> > (i915#3281 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) > +3 other tests skip > * > > igt@gem_exec_reloc@basic-cpu-wc-noreloc: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-mtlp-3/igt@gem_exec_reloc@basic-cpu-wc-noreloc.html> > (i915#3281 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) > +1 other test skip > * > > igt@gem_exec_reloc@basic-write-read: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-7/igt@gem_exec_reloc@basic-write-read.html> > (i915#3281 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) > +10 other tests skip > * > > igt@gem_exec_reloc@basic-write-read-noreloc: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-13/igt@gem_exec_reloc@basic-write-read-noreloc.html> > (i915#3281 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) > +3 other tests skip > * > > igt@gem_exec_schedule@semaphore-power: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-2/igt@gem_exec_schedule@semaphore-power.html> > (i915#7276 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7276>) > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-18/igt@gem_exec_schedule@semaphore-power.html> > (i915#4812 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812>) > +1 other test skip > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-mtlp-6/igt@gem_exec_schedule@semaphore-power.html> > (i915#4537 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537> > / i915#4812 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812>) > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-10/igt@gem_exec_schedule@semaphore-power.html> > (i915#4537 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537> > / i915#4812 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812>) > * > > igt@gem_exec_suspend@basic-s3: > > o shard-rkl: NOTRUN -> ABORT > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-1/igt@gem_exec_suspend@basic-s3.html> > (i915#15131 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15131>) > +1 other test abort > * > > igt@gem_lmem_evict@dontneed-evict-race: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-8/igt@gem_lmem_evict@dontneed-evict-race.html> > (i915#4613 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613> > / i915#7582 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582>) > * > > igt@gem_lmem_swapping@heavy-verify-multi-ccs: > > o shard-glk: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-glk1/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html> > (i915#4613 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) > +3 other tests skip > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-2/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html> > (i915#4613 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) > * > > igt@gem_lmem_swapping@heavy-verify-random: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-5/igt@gem_lmem_swapping@heavy-verify-random.html> > (i915#4613 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) > +1 other test skip > o shard-tglu-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-1/igt@gem_lmem_swapping@heavy-verify-random.html> > (i915#4613 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) > +1 other test skip > * > > igt@gem_lmem_swapping@heavy-verify-random-ccs: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-15/igt@gem_lmem_swapping@heavy-verify-random-ccs.html> > (i915#12193 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12193>) > * > > igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-15/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html> > (i915#4565 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565>) > * > > igt@gem_lmem_swapping@parallel-random-engines: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@gem_lmem_swapping@parallel-random-engines.html> > (i915#14544 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> > / i915#4613 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) > * > > igt@gem_mmap_gtt@cpuset-medium-copy-odd: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-mtlp-8/igt@gem_mmap_gtt@cpuset-medium-copy-odd.html> > (i915#4077 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077>) > * > > igt@gem_mmap_wc@copy: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-5/igt@gem_mmap_wc@copy.html> > (i915#4083 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083>) > +2 other tests skip > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-16/igt@gem_mmap_wc@copy.html> > (i915#4083 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083>) > +4 other tests skip > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-mtlp-6/igt@gem_mmap_wc@copy.html> > (i915#4083 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083>) > +1 other test skip > * > > igt@gem_pread@self: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-5/igt@gem_pread@self.html> > (i915#3282 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>) > +1 other test skip > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-13/igt@gem_pread@self.html> > (i915#3282 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>) > +1 other test skip > * > > igt@gem_pread@snoop: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@gem_pread@snoop.html> > (i915#14544 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> > / i915#3282 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>) > +3 other tests skip > * > > igt@gem_pxp@verify-pxp-stale-buf-optout-execution: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-8/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html> > (i915#4270 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270>) > * > > igt@gem_readwrite@beyond-eob: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-3/igt@gem_readwrite@beyond-eob.html> > (i915#3282 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>) > * > > igt@gem_render_copy@x-tiled-to-vebox-yf-tiled: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-6/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html> > (i915#5190 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190> > / i915#8428 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428>) > * > > igt@gem_set_tiling_vs_blt@tiled-to-tiled: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-18/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html> > (i915#4079 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079>) > * > > igt@gem_set_tiling_vs_blt@tiled-to-untiled: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-3/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html> > (i915#8411 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411>) > * > > igt@gem_set_tiling_vs_blt@untiled-to-tiled: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-7/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html> > (i915#4079 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079>) > * > > igt@gem_tiled_partial_pwrite_pread@reads: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-5/igt@gem_tiled_partial_pwrite_pread@reads.html> > (i915#4077 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077>) > +3 other tests skip > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-16/igt@gem_tiled_partial_pwrite_pread@reads.html> > (i915#4077 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077>) > +3 other tests skip > * > > igt@gem_userptr_blits@coherency-sync: > > o shard-tglu-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-1/igt@gem_userptr_blits@coherency-sync.html> > (i915#3297 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>) > +1 other test skip > * > > igt@gem_userptr_blits@create-destroy-unsync: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-4/igt@gem_userptr_blits@create-destroy-unsync.html> > (i915#3297 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>) > +2 other tests skip > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-7/igt@gem_userptr_blits@create-destroy-unsync.html> > (i915#3297 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>) > +3 other tests skip > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-14/igt@gem_userptr_blits@create-destroy-unsync.html> > (i915#3297 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>) > +2 other tests skip > * > > igt@gem_userptr_blits@relocations: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-10/igt@gem_userptr_blits@relocations.html> > (i915#3281 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281> > / i915#3297 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>) > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-2/igt@gem_userptr_blits@relocations.html> > (i915#3281 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281> > / i915#3297 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>) > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-18/igt@gem_userptr_blits@relocations.html> > (i915#3281 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281> > / i915#3297 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>) > * > > igt@gem_userptr_blits@unsync-overlap: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-9/igt@gem_userptr_blits@unsync-overlap.html> > (i915#3297 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>) > +1 other test skip > * > > igt@gem_workarounds@suspend-resume: > > o shard-glk11: NOTRUN -> INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-glk11/igt@gem_workarounds@suspend-resume.html> > (i915#13356 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356> > / i915#14586 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14586>) > * > > igt@gem_workarounds@suspend-resume-context: > > o shard-rkl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-7/igt@gem_workarounds@suspend-resume-context.html> > -> INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@gem_workarounds@suspend-resume-context.html> > (i915#13356 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356>) > * > > igt@gem_workarounds@suspend-resume-fd: > > o shard-glk: NOTRUN -> INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-glk5/igt@gem_workarounds@suspend-resume-fd.html> > (i915#13356 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356> > / i915#14586 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14586>) > * > > igt@gen7_exec_parse@basic-offset: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-7/igt@gen7_exec_parse@basic-offset.html> > +6 other tests skip > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-mtlp-2/igt@gen7_exec_parse@basic-offset.html> > +1 other test skip > * > > igt@gen9_exec_parse@bb-start-cmd: > > o shard-tglu-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-1/igt@gen9_exec_parse@bb-start-cmd.html> > (i915#2527 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527> > / i915#2856 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856>) > * > > igt@gen9_exec_parse@bb-start-param: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@gen9_exec_parse@bb-start-param.html> > (i915#14544 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> > / i915#2527 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527>) > * > > igt@gen9_exec_parse@valid-registers: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-8/igt@gen9_exec_parse@valid-registers.html> > (i915#2856 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856>) > +1 other test skip > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-3/igt@gen9_exec_parse@valid-registers.html> > (i915#2527 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527>) > +6 other tests skip > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-12/igt@gen9_exec_parse@valid-registers.html> > (i915#2527 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527>) > +1 other test skip > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-10/igt@gen9_exec_parse@valid-registers.html> > (i915#2527 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527> > / i915#2856 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856>) > +3 other tests skip > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-mtlp-8/igt@gen9_exec_parse@valid-registers.html> > (i915#2856 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856>) > * > > igt@i915_drm_fdinfo@busy-hang@vcs0: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-3/igt@i915_drm_fdinfo@busy-hang@vcs0.html> > (i915#14073 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073>) > +7 other tests skip > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-17/igt@i915_drm_fdinfo@busy-hang@vcs0.html> > (i915#14073 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073>) > +5 other tests skip > * > > igt@i915_drm_fdinfo@virtual-busy-hang-all: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-3/igt@i915_drm_fdinfo@virtual-busy-hang-all.html> > (i915#14118 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118>) > +1 other test skip > * > > igt@i915_module_load@fault-injection: > > o shard-dg1: NOTRUN -> ABORT > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-16/igt@i915_module_load@fault-injection.html> > (i915#11815 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11815> > / i915#15481 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15481>) > +1 other test abort > * > > igt@i915_module_load@fault-injection@i915_driver_mmio_probe: > > o shard-dg1: NOTRUN -> INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-16/igt@i915_module_load@fault-injection@i915_driver_mmio_probe.html> > (i915#15481 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15481>) > * > > igt@i915_module_load@reload-no-display: > > o shard-dg1: NOTRUN -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-15/igt@i915_module_load@reload-no-display.html> > (i915#13029 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029> > / i915#14545 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545>) > * > > igt@i915_pm_freq_mult@media-freq@gt0: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-3/igt@i915_pm_freq_mult@media-freq@gt0.html> > (i915#6590 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590>) > +1 other test skip > * > > igt@i915_pm_rc6_residency@rc6-idle: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-7/igt@i915_pm_rc6_residency@rc6-idle.html> > (i915#14498 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14498>) > * > > igt@i915_pm_rpm@system-suspend-execbuf: > > o shard-dg1: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-dg1-19/igt@i915_pm_rpm@system-suspend-execbuf.html> > -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-15/igt@i915_pm_rpm@system-suspend-execbuf.html> > (i915#4423 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423>) > * > > igt@i915_pm_rps@basic-api: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-18/igt@i915_pm_rps@basic-api.html> > (i915#11681 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681> > / i915#6621 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621>) > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-10/igt@i915_pm_rps@basic-api.html> > (i915#11681 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681> > / i915#6621 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621>) > * > > igt@i915_query@hwconfig_table: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-5/igt@i915_query@hwconfig_table.html> > (i915#6245 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245>) > * > > igt@i915_selftest@live: > > o shard-dg1: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-dg1-13/igt@i915_selftest@live.html> > -> DMESG-FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-14/igt@i915_selftest@live.html> > (i915#15560 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15560>) > * > > igt@i915_selftest@live@gem_contexts: > > o shard-dg1: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-dg1-13/igt@i915_selftest@live@gem_contexts.html> > -> DMESG-FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-14/igt@i915_selftest@live@gem_contexts.html> > (i915#15433 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15433>) > * > > igt@i915_suspend@forcewake: > > o shard-glk: NOTRUN -> INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-glk5/igt@i915_suspend@forcewake.html> > (i915#4817 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817>) > +1 other test incomplete > * > > igt@intel_hwmon@hwmon-read: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-4/igt@intel_hwmon@hwmon-read.html> > (i915#7707 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707>) > * > > igt@kms_big_fb@4-tiled-16bpp-rotate-0: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-12/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html> > (i915#4538 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538> > / i915#5286 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>) > +2 other tests skip > * > > igt@kms_big_fb@4-tiled-64bpp-rotate-0: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-7/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html> > (i915#5286 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>) > +3 other tests skip > * > > igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html> > (i915#5286 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>) > +3 other tests skip > * > > igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip: > > o shard-tglu-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html> > (i915#5286 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>) > +3 other tests skip > * > > igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-1/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html> > (i915#3828 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828>) > * > > igt@kms_big_fb@x-tiled-8bpp-rotate-270: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html> > (i915#14544 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> > / i915#3638 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638>) > * > > igt@kms_big_fb@y-tiled-8bpp-rotate-270: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-2/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html> > (i915#3638 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638>) > +3 other tests skip > * > > igt@kms_big_fb@y-tiled-8bpp-rotate-90: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-4/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html> > (i915#4538 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538> > / i915#5190 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>) > +4 other tests skip > * > > igt@kms_big_fb@yf-tiled-32bpp-rotate-180: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-19/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html> > (i915#4538 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538>) > +1 other test skip > * > > igt@kms_big_fb@yf-tiled-32bpp-rotate-90: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html> > (i915#14544 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) > +3 other tests skip > * > > igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-7/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html> > (i915#5190 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>) > * > > igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-7/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html> > +16 other tests skip > * > > igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-16/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html> > (i915#6095 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) > +202 other tests skip > * > > igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-1: > > o shard-glk11: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-glk11/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-1.html> > +56 other tests skip > * > > igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-1/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html> > (i915#12313 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313>) > +1 other test skip > * > > igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-1: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-5/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-1.html> > (i915#14098 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098> > / i915#6095 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) > +40 other tests skip > * > > igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs@pipe-a-edp-1: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-mtlp-2/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs@pipe-a-edp-1.html> > (i915#6095 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) > +9 other tests skip > * > > igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-3: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-5/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-3.html> > (i915#6095 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) > +45 other tests skip > * > > igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs: > > o shard-tglu-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html> > (i915#6095 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) > +19 other tests skip > * > > igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1: > > o shard-glk: NOTRUN -> INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-glk9/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html> > (i915#15582 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582>) > +1 other test incomplete > * > > igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html> > (i915#12313 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313>) > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-15/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html> > (i915#12313 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313>) > * > > igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1.html> > (i915#6095 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) > +54 other tests skip > * > > igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-2: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-2.html> > (i915#14544 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> > / i915#6095 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) > +11 other tests skip > * > > igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-2: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-2.html> > (i915#14098 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098> > / i915#14544 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> > / i915#6095 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) > +5 other tests skip > * > > igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-b-hdmi-a-1: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-5/igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-b-hdmi-a-1.html> > (i915#6095 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) > +61 other tests skip > * > > igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-1: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-4/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-1.html> > (i915#10307 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307> > / i915#6095 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) > +84 other tests skip > * > > igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-4/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1.html> > (i915#10307 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307> > / i915#10434 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434> > / i915#6095 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) > +2 other tests skip > * > > igt@kms_cdclk@mode-transition: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-8/igt@kms_cdclk@mode-transition.html> > (i915#3742 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742>) > * > > igt@kms_cdclk@mode-transition-all-outputs: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-10/igt@kms_cdclk@mode-transition-all-outputs.html> > (i915#3742 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742>) > * > > igt@kms_chamelium_audio@hdmi-audio-edid: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-13/igt@kms_chamelium_audio@hdmi-audio-edid.html> > (i915#11151 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> > / i915#7828 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) > +4 other tests skip > * > > igt@kms_chamelium_hpd@dp-hpd-storm: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-7/igt@kms_chamelium_hpd@dp-hpd-storm.html> > (i915#11151 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> > / i915#7828 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) > +3 other tests skip > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-5/igt@kms_chamelium_hpd@dp-hpd-storm.html> > (i915#11151 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> > / i915#7828 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) > +9 other tests skip > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-4/igt@kms_chamelium_hpd@dp-hpd-storm.html> > (i915#11151 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> > / i915#7828 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) > +3 other tests skip > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-mtlp-8/igt@kms_chamelium_hpd@dp-hpd-storm.html> > (i915#11151 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> > / i915#7828 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) > * > > igt@kms_chamelium_hpd@vga-hpd-fast: > > o shard-tglu-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-1/igt@kms_chamelium_hpd@vga-hpd-fast.html> > (i915#11151 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> > / i915#7828 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) > +1 other test skip > * > > igt@kms_color@deep-color: > > o shard-tglu-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-1/igt@kms_color@deep-color.html> > (i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> > / i915#9979 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9979>) > * > > igt@kms_content_protection@atomic-dpms: > > o shard-tglu-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-1/igt@kms_content_protection@atomic-dpms.html> > (i915#15865 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865>) > +1 other test skip > * > > igt@kms_content_protection@content-type-change: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-4/igt@kms_content_protection@content-type-change.html> > (i915#15865 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865>) > +2 other tests skip > * > > igt@kms_content_protection@dp-mst-lic-type-0: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-14/igt@kms_content_protection@dp-mst-lic-type-0.html> > (i915#15330 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330> > / i915#3299 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299>) > * > > igt@kms_content_protection@dp-mst-lic-type-0-hdcp14: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-1/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html> > (i915#15330 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330>) > * > > igt@kms_content_protection@dp-mst-type-0: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-7/igt@kms_content_protection@dp-mst-type-0.html> > (i915#15330 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330> > / i915#3116 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116> > / i915#3299 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299>) > * > > igt@kms_content_protection@dp-mst-type-0-suspend-resume: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-5/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html> > (i915#15330 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330>) > * > > igt@kms_content_protection@legacy-hdcp14: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@kms_content_protection@legacy-hdcp14.html> > (i915#14544 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> > / i915#15865 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865>) > * > > igt@kms_content_protection@lic-type-0@pipe-a-dp-3: > > o shard-dg2: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-10/igt@kms_content_protection@lic-type-0@pipe-a-dp-3.html> > (i915#7173 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173>) > * > > igt@kms_content_protection@mei-interface: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-8/igt@kms_content_protection@mei-interface.html> > (i915#15865 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865>) > +2 other tests skip > * > > igt@kms_cursor_crc@cursor-offscreen-512x512: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-8/igt@kms_cursor_crc@cursor-offscreen-512x512.html> > (i915#13049 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049>) > +1 other test skip > * > > igt@kms_cursor_crc@cursor-rapid-movement-32x32: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-5/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html> > (i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) > +3 other tests skip > * > > igt@kms_cursor_crc@cursor-rapid-movement-512x512: > > o shard-snb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-snb5/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html> > +27 other tests skip > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-6/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html> > (i915#13049 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049>) > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-mtlp-5/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html> > (i915#13049 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049>) > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-1/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html> > (i915#13049 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049>) > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-19/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html> > (i915#13049 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049>) > * > > igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html> > (i915#14544 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> > / i915#4103 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103>) > * > > igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html> > (i915#4103 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103>) > +2 other tests skip > * > > igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html> > (i915#14544 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> > / i915#9067 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067>) > * > > igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html> > (i915#4103 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103>) > * > > igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html> > (i915#3804 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804>) > * > > igt@kms_dp_aux_dev@basic: > > o shard-tglu-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-1/igt@kms_dp_aux_dev@basic.html> > (i915#1257 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257>) > * > > igt@kms_dp_link_training@non-uhbr-mst: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-2/igt@kms_dp_link_training@non-uhbr-mst.html> > (i915#13749 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749>) > * > > igt@kms_dp_link_training@non-uhbr-sst: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-8/igt@kms_dp_link_training@non-uhbr-sst.html> > (i915#13749 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749>) > * > > igt@kms_dp_link_training@uhbr-mst: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-3/igt@kms_dp_link_training@uhbr-mst.html> > (i915#13748 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748>) > * > > igt@kms_dp_linktrain_fallback@dp-fallback: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-4/igt@kms_dp_linktrain_fallback@dp-fallback.html> > (i915#13707 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707>) > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-7/igt@kms_dp_linktrain_fallback@dp-fallback.html> > (i915#13707 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707>) > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-14/igt@kms_dp_linktrain_fallback@dp-fallback.html> > (i915#13707 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707>) > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-4/igt@kms_dp_linktrain_fallback@dp-fallback.html> > (i915#13707 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707>) > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-mtlp-8/igt@kms_dp_linktrain_fallback@dp-fallback.html> > (i915#13707 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707>) > * > > igt@kms_dsc@dsc-with-output-formats-with-bpc: > > o shard-tglu-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-1/igt@kms_dsc@dsc-with-output-formats-with-bpc.html> > (i915#3840 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840> > / i915#9053 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053>) > * > > igt@kms_fbcon_fbt@fbc-suspend: > > o shard-rkl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-8/igt@kms_fbcon_fbt@fbc-suspend.html> > -> INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-3/igt@kms_fbcon_fbt@fbc-suspend.html> > (i915#9878 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9878>) > * > > igt@kms_fbcon_fbt@psr: > > o shard-tglu-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-1/igt@kms_fbcon_fbt@psr.html> > (i915#3469 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469>) > * > > igt@kms_fbcon_fbt@psr-suspend: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-8/igt@kms_fbcon_fbt@psr-suspend.html> > (i915#3955 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955>) > * > > igt@kms_feature_discovery@chamelium: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-2/igt@kms_feature_discovery@chamelium.html> > (i915#4854 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854>) > * > > igt@kms_feature_discovery@display-2x: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-5/igt@kms_feature_discovery@display-2x.html> > (i915#1839 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839>) > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-3/igt@kms_feature_discovery@display-2x.html> > (i915#1839 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839>) > * > > igt@kms_feature_discovery@dp-mst: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@kms_feature_discovery@dp-mst.html> > (i915#14544 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> > / i915#9337 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337>) > * > > igt@kms_feature_discovery@psr1: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-8/igt@kms_feature_discovery@psr1.html> > (i915#658 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658>) > * > > igt@kms_flip@2x-flip-vs-fences-interruptible: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-5/igt@kms_flip@2x-flip-vs-fences-interruptible.html> > (i915#8381 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381>) > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-16/igt@kms_flip@2x-flip-vs-fences-interruptible.html> > (i915#8381 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381>) > +1 other test skip > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-mtlp-6/igt@kms_flip@2x-flip-vs-fences-interruptible.html> > (i915#8381 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381>) > * > > igt@kms_flip@2x-flip-vs-modeset-vs-hang: > > o shard-tglu-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-1/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html> > (i915#3637 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637> > / i915#9934 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) > +1 other test skip > * > > igt@kms_flip@2x-flip-vs-wf_vblank-interruptible: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-2/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html> > (i915#9934 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) > +9 other tests skip > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-18/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html> > (i915#9934 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) > +2 other tests skip > * > > igt@kms_flip@2x-nonexisting-fb: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-6/igt@kms_flip@2x-nonexisting-fb.html> > (i915#3637 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637> > / i915#9934 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) > +5 other tests skip > * > > igt@kms_flip@2x-nonexisting-fb-interruptible: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@kms_flip@2x-nonexisting-fb-interruptible.html> > (i915#14544 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> > / i915#9934 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) > * > > igt@kms_flip@flip-vs-suspend-interruptible: > > o shard-glk: NOTRUN -> INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-glk8/igt@kms_flip@flip-vs-suspend-interruptible.html> > (i915#12314 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12314> > / i915#12745 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745> > / i915#4839 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839>) > * > > igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1: > > o shard-glk: NOTRUN -> INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-glk8/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html> > (i915#12314 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12314> > / i915#12745 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745>) > * > > igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-8/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html> > (i915#15643 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643>) > +2 other tests skip > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-19/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html> > (i915#15643 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643>) > +1 other test skip > * > > igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-7/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html> > (i915#15643 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643>) > +3 other tests skip > * > > igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-8/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html> > (i915#15643 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643>) > +3 other tests skip > * > > igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling: > > o shard-tglu-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html> > (i915#15643 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643>) > +1 other test skip > * > > igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html> > (i915#14544 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> > / i915#1825 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825>) > +8 other tests skip > * > > igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html> > (i915#5354 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) > +11 other tests skip > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html> > (i915#1825 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825>) > +2 other tests skip > * > > igt@kms_frontbuffer_tracking@fbc-suspend: > > o shard-glk: NOTRUN -> INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-glk8/igt@kms_frontbuffer_tracking@fbc-suspend.html> > (i915#10056 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10056>) > * > > igt@kms_frontbuffer_tracking@fbc-tiling-4: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-tiling-4.html> > (i915#5439 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439>) > * > > igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt.html> > (i915#15102 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102>) > +3 other tests skip > * > > igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-gtt: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html> > (i915#15104 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104>) > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html> > (i915#15104 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104>) > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html> > (i915#15104 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104>) > * > > igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-render: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-render.html> > (i915#15102 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102>) > +1 other test skip > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-render.html> > (i915#15102 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102>) > * > > igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html> > (i915#15102 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102> > / i915#3023 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023>) > +19 other tests skip > * > > igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-blt: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-blt.html> > (i915#15102 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102>) > +12 other tests skip > * > > igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render: > > o shard-glk10: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-glk10/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html> > +162 other tests skip > * > > igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move: > > o shard-tglu-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move.html> > (i915#15102 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102>) > +12 other tests skip > * > > igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render.html> > (i915#15102 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102> > / i915#3458 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>) > +8 other tests skip > * > > igt@kms_frontbuffer_tracking@fbcpsr-1p-rte: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html> > (i915#15102 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102> > / i915#3458 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>) > +8 other tests skip > * > > igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html> > (i915#8708 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708>) > +10 other tests skip > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html> > (i915#8708 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708>) > +3 other tests skip > * > > igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-pwrite: > > o shard-tglu-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-pwrite.html> > +21 other tests skip > * > > igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html> > +18 other tests skip > * > > igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html> > (i915#14544 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> > / i915#15102 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102> > / i915#3023 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023>) > +3 other tests skip > * > > igt@kms_frontbuffer_tracking@pipe-fbc-rte: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-10/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html> > (i915#9766 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766>) > * > > igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html> > (i915#1825 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825>) > +31 other tests skip > * > > igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html> > +38 other tests skip > * > > igt@kms_hdr@invalid-hdr: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-18/igt@kms_hdr@invalid-hdr.html> > (i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> > / i915#8228 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>) > * > > igt@kms_hdr@static-toggle-dpms: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-6/igt@kms_hdr@static-toggle-dpms.html> > (i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> > / i915#8228 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>) > * > > igt@kms_joiner@basic-max-non-joiner: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-4/igt@kms_joiner@basic-max-non-joiner.html> > (i915#13688 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688>) > o shard-tglu-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-1/igt@kms_joiner@basic-max-non-joiner.html> > (i915#13688 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688>) > * > > igt@kms_joiner@basic-ultra-joiner: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-13/igt@kms_joiner@basic-ultra-joiner.html> > (i915#15458 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458>) > * > > igt@kms_joiner@invalid-modeset-force-big-joiner: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-1/igt@kms_joiner@invalid-modeset-force-big-joiner.html> > (i915#15459 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459>) > +1 other test skip > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-2/igt@kms_joiner@invalid-modeset-force-big-joiner.html> > (i915#15459 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459>) > +1 other test skip > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-15/igt@kms_joiner@invalid-modeset-force-big-joiner.html> > (i915#15459 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459>) > +1 other test skip > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-2/igt@kms_joiner@invalid-modeset-force-big-joiner.html> > (i915#15459 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459>) > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-mtlp-7/igt@kms_joiner@invalid-modeset-force-big-joiner.html> > (i915#15459 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459>) > * > > igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-13/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier.html> > (i915#15709 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709>) > +1 other test skip > * > > igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping: > > o shard-tglu-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping.html> > (i915#15709 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709>) > +1 other test skip > * > > igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-6/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping.html> > (i915#15709 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709>) > +1 other test skip > * > > igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html> > (i915#14544 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> > / i915#15709 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709>) > * > > igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-2/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier.html> > (i915#15709 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709>) > +3 other tests skip > * > > igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-3/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping.html> > (i915#15709 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709>) > +2 other tests skip > * > > igt@kms_plane@pixel-format-y-tiled-modifier@pipe-b-plane-7: > > o shard-tglu-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-1/igt@kms_plane@pixel-format-y-tiled-modifier@pipe-b-plane-7.html> > (i915#15608 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608>) > +1 other test skip > * > > igt@kms_plane_multiple@2x-tiling-yf: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-6/igt@kms_plane_multiple@2x-tiling-yf.html> > (i915#13958 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958>) > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-2/igt@kms_plane_multiple@2x-tiling-yf.html> > (i915#13958 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958>) > * > > igt@kms_plane_multiple@tiling-yf: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-1/igt@kms_plane_multiple@tiling-yf.html> > (i915#14259 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259>) > * > > igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-2/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b.html> > (i915#15329 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329>) > +3 other tests skip > * > > igt@kms_pm_backlight@brightness-with-dpms: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-4/igt@kms_pm_backlight@brightness-with-dpms.html> > (i915#12343 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343>) > * > > igt@kms_pm_backlight@fade: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-4/igt@kms_pm_backlight@fade.html> > (i915#5354 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) > o shard-tglu-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-1/igt@kms_pm_backlight@fade.html> > (i915#9812 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812>) > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-14/igt@kms_pm_backlight@fade.html> > (i915#5354 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) > * > > igt@kms_pm_backlight@fade-with-suspend: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@kms_pm_backlight@fade-with-suspend.html> > (i915#14544 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> > / i915#5354 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) > * > > igt@kms_pm_dc@dc3co-vpb-simulation: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-9/igt@kms_pm_dc@dc3co-vpb-simulation.html> > (i915#9685 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685>) > * > > igt@kms_pm_dc@dc5-retention-flops: > > o shard-tglu-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-1/igt@kms_pm_dc@dc5-retention-flops.html> > (i915#3828 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828>) > * > > igt@kms_pm_lpsp@kms-lpsp: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-6/igt@kms_pm_lpsp@kms-lpsp.html> > (i915#9340 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340>) > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-8/igt@kms_pm_lpsp@kms-lpsp.html> > (i915#3828 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828>) > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-15/igt@kms_pm_lpsp@kms-lpsp.html> > (i915#3828 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828>) > * > > igt@kms_pm_rpm@modeset-lpsp: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp.html> > (i915#14544 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> > / i915#15073 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073>) > * > > igt@kms_pm_rpm@modeset-non-lpsp: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp.html> > (i915#15073 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073>) > +1 other test skip > o shard-tglu-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-1/igt@kms_pm_rpm@modeset-non-lpsp.html> > (i915#15073 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073>) > * > > igt@kms_pm_rpm@modeset-non-lpsp-stress: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-10/igt@kms_pm_rpm@modeset-non-lpsp-stress.html> > (i915#15073 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073>) > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-mtlp-8/igt@kms_pm_rpm@modeset-non-lpsp-stress.html> > (i915#15073 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073>) > * > > igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: > > o shard-dg2: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-dg2-1/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html> > (i915#15073 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073>) > * > > igt@kms_prime@basic-crc-hybrid: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-1/igt@kms_prime@basic-crc-hybrid.html> > (i915#6524 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524> > / i915#6805 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805>) > * > > igt@kms_prime@basic-modeset-hybrid: > > o shard-tglu-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-1/igt@kms_prime@basic-modeset-hybrid.html> > (i915#6524 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524>) > * > > igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-15/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html> > (i915#11520 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) > +3 other tests skip > * > > igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area: > > o shard-glk: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-glk4/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html> > (i915#11520 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) > +11 other tests skip > * > > igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-5/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html> > (i915#11520 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) > +4 other tests skip > * > > igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-1/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html> > (i915#11520 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) > +9 other tests skip > * > > igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area: > > o shard-tglu-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-1/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html> > (i915#11520 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) > +4 other tests skip > * > > igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-mtlp-2/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf.html> > (i915#12316 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316>) > +1 other test skip > * > > igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf: > > o shard-glk10: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-glk10/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html> > (i915#11520 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) > +1 other test skip > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html> > (i915#11520 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520> > / i915#14544 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) > o shard-snb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-snb4/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html> > (i915#11520 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) > +1 other test skip > * > > igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-3/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html> > (i915#11520 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) > +9 other tests skip > * > > igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf: > > o shard-glk11: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-glk11/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf.html> > (i915#11520 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) > * > > igt@kms_psr2_su@page_flip-nv12: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-7/igt@kms_psr2_su@page_flip-nv12.html> > (i915#9683 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683>) > +1 other test skip > * > > igt@kms_psr2_su@page_flip-p010: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-7/igt@kms_psr2_su@page_flip-p010.html> > (i915#9683 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683>) > o shard-tglu-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-1/igt@kms_psr2_su@page_flip-p010.html> > (i915#9683 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683>) > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-12/igt@kms_psr2_su@page_flip-p010.html> > (i915#9683 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683>) > * > > igt@kms_psr2_su@page_flip-xrgb8888: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-8/igt@kms_psr2_su@page_flip-xrgb8888.html> > (i915#9683 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683>) > * > > igt@kms_psr@fbc-pr-sprite-render: > > o shard-tglu-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-1/igt@kms_psr@fbc-pr-sprite-render.html> > (i915#9732 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) > +8 other tests skip > * > > igt@kms_psr@fbc-psr-dpms@edp-1: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-mtlp-2/igt@kms_psr@fbc-psr-dpms@edp-1.html> > (i915#9688 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688>) > +2 other tests skip > * > > igt@kms_psr@fbc-psr2-cursor-mmap-gtt: > > o shard-glk: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-glk3/igt@kms_psr@fbc-psr2-cursor-mmap-gtt.html> > +388 other tests skip > * > > igt@kms_psr@fbc-psr2-sprite-render: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-2/igt@kms_psr@fbc-psr2-sprite-render.html> > (i915#1072 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> > / i915#9732 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) > +25 other tests skip > * > > igt@kms_psr@pr-primary-mmap-gtt: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-6/igt@kms_psr@pr-primary-mmap-gtt.html> > (i915#1072 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> > / i915#9732 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) > +7 other tests skip > * > > igt@kms_psr@pr-sprite-plane-onoff: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-15/igt@kms_psr@pr-sprite-plane-onoff.html> > (i915#1072 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> > / i915#9732 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) > +8 other tests skip > * > > igt@kms_psr@psr-cursor-blt: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@kms_psr@psr-cursor-blt.html> > (i915#1072 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> > / i915#14544 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> > / i915#9732 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) > +1 other test skip > * > > igt@kms_psr@psr-cursor-plane-onoff: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-9/igt@kms_psr@psr-cursor-plane-onoff.html> > (i915#9732 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) > +17 other tests skip > * > > igt@kms_psr_stress_test@flip-primary-invalidate-overlay: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-5/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html> > (i915#9685 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685>) > o shard-tglu-1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-1/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html> > (i915#9685 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685>) > * > > igt@kms_rotation_crc@multiplane-rotation-cropping-bottom: > > o shard-glk: NOTRUN -> INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-glk3/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html> > (i915#15500 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15500>) > * > > igt@kms_rotation_crc@multiplane-rotation-cropping-top: > > o shard-glk: NOTRUN -> INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-glk8/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html> > (i915#15492 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15492>) > * > > igt@kms_rotation_crc@primary-4-tiled-reflect-x-180: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-16/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html> > (i915#5289 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289>) > * > > igt@kms_rotation_crc@primary-rotation-270: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-6/igt@kms_rotation_crc@primary-rotation-270.html> > (i915#12755 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755> > / i915#15867 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15867>) > +2 other tests skip > * > > igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html> > (i915#5289 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289>) > * > > igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html> > (i915#5289 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289>) > +1 other test skip > * > > igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: > > o shard-mtlp: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-mtlp-5/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html> > (i915#12755 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755> > / i915#15867 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15867>) > * > > igt@kms_scaling_modes@scaling-mode-none: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-5/igt@kms_scaling_modes@scaling-mode-none.html> > (i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@kms_scaling_modes@scaling-mode-none.html> > (i915#14544 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> > / i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-17/igt@kms_scaling_modes@scaling-mode-none.html> > (i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) > +2 other tests skip > * > > igt@kms_tiled_display@basic-test-pattern: > > o shard-glk: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-glk6/igt@kms_tiled_display@basic-test-pattern.html> > (i915#10959 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10959>) > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-5/igt@kms_tiled_display@basic-test-pattern.html> > (i915#8623 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623>) > * > > igt@kms_vblank@ts-continuation-suspend: > > o shard-glk10: NOTRUN -> INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-glk10/igt@kms_vblank@ts-continuation-suspend.html> > (i915#12276 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276>) > +1 other test incomplete > * > > igt@kms_vrr@flip-basic-fastset: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-8/igt@kms_vrr@flip-basic-fastset.html> > (i915#9906 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) > * > > igt@kms_vrr@flip-dpms: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-3/igt@kms_vrr@flip-dpms.html> > (i915#15243 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243> > / i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) > * > > igt@kms_vrr@lobf: > > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-8/igt@kms_vrr@lobf.html> > (i915#11920 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920>) > * > > igt@kms_vrr@seamless-rr-switch-drrs: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@kms_vrr@seamless-rr-switch-drrs.html> > (i915#14544 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> > / i915#9906 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) > o shard-tglu: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-10/igt@kms_vrr@seamless-rr-switch-drrs.html> > (i915#9906 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) > * > > igt@perf_pmu@busy-accuracy-2: > > o shard-dg1: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-dg1-14/igt@perf_pmu@busy-accuracy-2.html> > -> ABORT > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-18/igt@perf_pmu@busy-accuracy-2.html> > (i915#13562 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13562>) > +1 other test abort > * > > igt@perf_pmu@busy-accuracy-2@bcs0: > > o shard-dg1: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-dg1-14/igt@perf_pmu@busy-accuracy-2@bcs0.html> > -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-18/igt@perf_pmu@busy-accuracy-2@bcs0.html> > (i915#13562 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13562>) > * > > igt@perf_pmu@module-unload: > > o shard-glk: NOTRUN -> ABORT > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-glk3/igt@perf_pmu@module-unload.html> > (i915#15778 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778>) > * > > igt@prime_vgem@basic-fence-read: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-2/igt@prime_vgem@basic-fence-read.html> > (i915#3291 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291> > / i915#3708 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708>) > * > > igt@prime_vgem@basic-gtt: > > o shard-dg2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-1/igt@prime_vgem@basic-gtt.html> > (i915#3708 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708> > / i915#4077 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077>) > * > > igt@prime_vgem@fence-read-hang: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-2/igt@prime_vgem@fence-read-hang.html> > (i915#3708 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708>) > * > > igt@sriov_basic@enable-vfs-autoprobe-off: > > o shard-rkl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-7/igt@sriov_basic@enable-vfs-autoprobe-off.html> > (i915#9917 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917>) > +1 other test skip > * > > igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-6: > > o shard-tglu: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-9/igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-6.html> > (i915#12910 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910>) > +9 other tests fail > * > > igt@sriov_basic@enable-vfs-autoprobe-on: > > o shard-dg1: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-19/igt@sriov_basic@enable-vfs-autoprobe-on.html> > (i915#9917 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917>) > > > Possible fixes > > * > > igt@gem_mmap_offset@clear-via-pagefault: > > o shard-mtlp: DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-mtlp-4/igt@gem_mmap_offset@clear-via-pagefault.html> > (i915#15478 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15478>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-mtlp-6/igt@gem_mmap_offset@clear-via-pagefault.html> > +1 other test pass > * > > igt@i915_module_load@reload-no-display: > > o shard-tglu: DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-tglu-10/igt@i915_module_load@reload-no-display.html> > (i915#13029 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029> > / i915#14545 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-2/igt@i915_module_load@reload-no-display.html> > * > > igt@i915_pm_rc6_residency@rc6-fence: > > o shard-tglu: WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-tglu-10/igt@i915_pm_rc6_residency@rc6-fence.html> > (i915#13790 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13790> > / i915#2681 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2681>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-6/igt@i915_pm_rc6_residency@rc6-fence.html> > +1 other test pass > * > > igt@i915_suspend@basic-s3-without-i915: > > o shard-rkl: ABORT > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-1/igt@i915_suspend@basic-s3-without-i915.html> > (i915#15131 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15131>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-7/igt@i915_suspend@basic-s3-without-i915.html> > * > > igt@i915_suspend@fence-restore-untiled: > > o shard-rkl: INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-6/igt@i915_suspend@fence-restore-untiled.html> > (i915#4817 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-2/igt@i915_suspend@fence-restore-untiled.html> > o shard-glk: INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-glk8/igt@i915_suspend@fence-restore-untiled.html> > (i915#4817 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-glk6/igt@i915_suspend@fence-restore-untiled.html> > * > > igt@kms_atomic_transition@plane-all-modeset-transition-fencing: > > o shard-tglu: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-tglu-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html> > (i915#15662 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15662>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html> > +1 other test pass > * > > igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip: > > o shard-mtlp: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-mtlp-6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html> > (i915#15733 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15733> > / i915#5138 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-mtlp-3/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html> > * > > igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs: > > o shard-dg1: DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-dg1-17/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs.html> > (i915#4423 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-12/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs.html> > +1 other test pass > * > > igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs: > > o shard-tglu: ABORT > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-tglu-10/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html> > (i915#15652 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15652>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-4/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html> > +1 other test pass > * > > igt@kms_flip@dpms-vs-vblank-race@b-hdmi-a1: > > o shard-tglu: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-tglu-6/igt@kms_flip@dpms-vs-vblank-race@b-hdmi-a1.html> > (i915#10826 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10826>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-tglu-6/igt@kms_flip@dpms-vs-vblank-race@b-hdmi-a1.html> > +1 other test pass > * > > igt@kms_hdr@invalid-metadata-sizes: > > o shard-rkl: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-7/igt@kms_hdr@invalid-metadata-sizes.html> > (i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> > / i915#8228 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@kms_hdr@invalid-metadata-sizes.html> > +1 other test pass > * > > igt@kms_plane_scaling@intel-max-src-size: > > o shard-rkl: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-7/igt@kms_plane_scaling@intel-max-src-size.html> > (i915#6953 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@kms_plane_scaling@intel-max-src-size.html> > * > > igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: > > o shard-dg2: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-dg2-8/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html> > (i915#15073 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html> > +1 other test pass > * > > igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: > > o shard-dg1: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-dg1-15/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html> > (i915#15073 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073>) > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-13/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html> > +1 other test pass > > > Warnings > > * > > igt@api_intel_bb@blit-reloc-purge-cache: > > o shard-rkl: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-4/igt@api_intel_bb@blit-reloc-purge-cache.html> > (i915#8411 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@api_intel_bb@blit-reloc-purge-cache.html> > (i915#14544 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> > / i915#8411 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411>) > +1 other test skip > * > > igt@api_intel_bb@crc32: > > o shard-rkl: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-5/igt@api_intel_bb@crc32.html> > (i915#6230 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@api_intel_bb@crc32.html> > (i915#14544 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> > / i915#6230 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230>) > * > > igt@device_reset@unbind-cold-reset-rebind: > > o shard-rkl: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-4/igt@device_reset@unbind-cold-reset-rebind.html> > (i915#11078 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@device_reset@unbind-cold-reset-rebind.html> > (i915#11078 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078> > / i915#14544 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) > * > > igt@drm_buddy@drm_buddy: > > o shard-rkl: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-6/igt@drm_buddy@drm_buddy.html> > (i915#14544 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> > / i915#15678 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15678>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-4/igt@drm_buddy@drm_buddy.html> > (i915#15678 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15678>) > * > > igt@gem_ccs@block-multicopy-inplace: > > o shard-rkl: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-4/igt@gem_ccs@block-multicopy-inplace.html> > (i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> > / i915#9323 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@gem_ccs@block-multicopy-inplace.html> > (i915#14544 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> > / i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> > / i915#9323 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323>) > * > > igt@gem_exec_params@secure-non-master: > > o shard-rkl: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-6/igt@gem_exec_params@secure-non-master.html> > (i915#14544 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-8/igt@gem_exec_params@secure-non-master.html> > +4 other tests skip > * > > igt@gem_exec_reloc@basic-gtt-wc-noreloc: > > o shard-rkl: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-5/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html> > (i915#3281 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html> > (i915#14544 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> > / i915#3281 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) > +4 other tests skip > * > > igt@gem_exec_reloc@basic-range-active: > > o shard-rkl: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-6/igt@gem_exec_reloc@basic-range-active.html> > (i915#14544 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> > / i915#3281 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-8/igt@gem_exec_reloc@basic-range-active.html> > (i915#3281 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) > * > > igt@gem_lmem_swapping@heavy-verify-random-ccs: > > o shard-rkl: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-6/igt@gem_lmem_swapping@heavy-verify-random-ccs.html> > (i915#14544 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> > / i915#4613 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-4/igt@gem_lmem_swapping@heavy-verify-random-ccs.html> > (i915#4613 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) > * > > igt@gem_lmem_swapping@massive-random: > > o shard-rkl: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-5/igt@gem_lmem_swapping@massive-random.html> > (i915#4613 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@gem_lmem_swapping@massive-random.html> > (i915#14544 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> > / i915#4613 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) > * > > igt@gem_partial_pwrite_pread@writes-after-reads: > > o shard-rkl: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads.html> > (i915#14544 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> > / i915#3282 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-8/igt@gem_partial_pwrite_pread@writes-after-reads.html> > (i915#3282 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>) > +1 other test skip > * > > igt@gem_partial_pwrite_pread@writes-after-reads-display: > > o shard-rkl: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-3/igt@gem_partial_pwrite_pread@writes-after-reads-display.html> > (i915#3282 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads-display.html> > (i915#14544 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> > / i915#3282 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>) > +1 other test skip > * > > igt@gem_set_tiling_vs_blt@tiled-to-tiled: > > o shard-rkl: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-6/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html> > (i915#14544 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> > / i915#8411 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-5/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html> > (i915#8411 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411>) > * > > igt@gem_userptr_blits@coherency-unsync: > > o shard-rkl: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-6/igt@gem_userptr_blits@coherency-unsync.html> > (i915#14544 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> > / i915#3297 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-2/igt@gem_userptr_blits@coherency-unsync.html> > (i915#3297 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>) > * > > igt@gem_userptr_blits@readonly-pwrite-unsync: > > o shard-rkl: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-7/igt@gem_userptr_blits@readonly-pwrite-unsync.html> > (i915#3297 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@gem_userptr_blits@readonly-pwrite-unsync.html> > (i915#14544 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> > / i915#3297 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>) > * > > igt@gen9_exec_parse@allowed-all: > > o shard-rkl: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-6/igt@gen9_exec_parse@allowed-all.html> > (i915#14544 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> > / i915#2527 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-2/igt@gen9_exec_parse@allowed-all.html> > (i915#2527 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527>) > * > > igt@gen9_exec_parse@bb-secure: > > o shard-rkl: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-5/igt@gen9_exec_parse@bb-secure.html> > (i915#2527 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@gen9_exec_parse@bb-secure.html> > (i915#14544 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> > / i915#2527 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527>) > * > > igt@i915_module_load@fault-injection@__uc_init: > > o shard-rkl: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-6/igt@i915_module_load@fault-injection@__uc_init.html> > (i915#14544 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> > / i915#15479 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15479>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-2/igt@i915_module_load@fault-injection@__uc_init.html> > (i915#15479 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15479>) > +4 other tests skip > * > > igt@i915_module_load@resize-bar: > > o shard-rkl: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-8/igt@i915_module_load@resize-bar.html> > (i915#6412 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@i915_module_load@resize-bar.html> > (i915#14544 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> > / i915#6412 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412>) > * > > igt@i915_pm_sseu@full-enable: > > o shard-rkl: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-4/igt@i915_pm_sseu@full-enable.html> > (i915#4387 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@i915_pm_sseu@full-enable.html> > (i915#14544 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> > / i915#4387 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387>) > * > > igt@kms_atomic@plane-primary-overlay-mutable-zpos: > > o shard-rkl: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-5/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html> > (i915#9531 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html> > (i915#14544 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> > / i915#9531 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531>) > * > > igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: > > o shard-rkl: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html> > (i915#1769 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769> > / i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html> > (i915#14544 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> > / i915#1769 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769> > / i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) > * > > igt@kms_big_fb@4-tiled-16bpp-rotate-0: > > o shard-rkl: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-6/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html> > (i915#14544 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> > / i915#5286 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-7/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html> > (i915#5286 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>) > +2 other tests skip > * > > igt@kms_big_fb@4-tiled-8bpp-rotate-90: > > o shard-rkl: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-8/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html> > (i915#5286 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html> > (i915#14544 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> > / i915#5286 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>) > +1 other test skip > * > > igt@kms_big_fb@linear-64bpp-rotate-90: > > o shard-rkl: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-6/igt@kms_big_fb@linear-64bpp-rotate-90.html> > (i915#14544 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> > / i915#3638 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-2/igt@kms_big_fb@linear-64bpp-rotate-90.html> > (i915#3638 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638>) > +1 other test skip > * > > igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip: > > o shard-rkl: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-7/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html> > (i915#3828 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html> > (i915#14544 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> > / i915#3828 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828>) > * > > igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc: > > o shard-rkl: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-2/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html> > (i915#14098 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098> > / i915#6095 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html> > (i915#14098 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098> > / i915#14544 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> > / i915#6095 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) > +7 other tests skip > * > > igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs: > > o shard-rkl: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs.html> > (i915#14098 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098> > / i915#14544 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> > / i915#6095 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs.html> > (i915#14098 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098> > / i915#6095 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) > +6 other tests skip > * > > igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: > > o shard-rkl: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html> > (i915#14544 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> > / i915#6095 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html> > (i915#6095 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) > +5 other tests skip > * > > igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-2: > > o shard-rkl: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-7/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-2.html> > (i915#6095 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-2.html> > (i915#14544 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> > / i915#6095 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) > +1 other test skip > * > > igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs: > > o shard-rkl: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-7/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html> > (i915#12313 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html> > (i915#12313 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313> > / i915#14544 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) > * > > igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k: > > o shard-rkl: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-6/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html> > (i915#11151 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> > / i915#14544 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> > / i915#7828 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-5/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html> > (i915#11151 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> > / i915#7828 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) > +1 other test skip > * > > igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode: > > o shard-rkl: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-3/igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode.html> > (i915#11151 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> > / i915#7828 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode.html> > (i915#11151 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151> > / i915#14544 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> > / i915#7828 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) > +2 other tests skip > * > > igt@kms_content_protection@dp-mst-lic-type-0: > > o shard-rkl: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-6/igt@kms_content_protection@dp-mst-lic-type-0.html> > (i915#14544 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> > / i915#15330 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330> > / i915#3116 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-7/igt@kms_content_protection@dp-mst-lic-type-0.html> > (i915#15330 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330> > / i915#3116 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116>) > * > > igt@kms_content_protection@dp-mst-lic-type-1: > > o shard-rkl: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-7/igt@kms_content_protection@dp-mst-lic-type-1.html> > (i915#15330 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330> > / i915#3116 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@kms_content_protection@dp-mst-lic-type-1.html> > (i915#14544 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> > / i915#15330 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330> > / i915#3116 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116>) > +1 other test skip > * > > igt@kms_content_protection@lic-type-0: > > o shard-dg2: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-dg2-4/igt@kms_content_protection@lic-type-0.html> > (i915#15865 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865>) > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-10/igt@kms_content_protection@lic-type-0.html> > (i915#7173 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173>) > * > > igt@kms_content_protection@mei-interface: > > o shard-dg1: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-dg1-15/igt@kms_content_protection@mei-interface.html> > (i915#15865 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-13/igt@kms_content_protection@mei-interface.html> > (i915#9433 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9433>) > * > > igt@kms_cursor_crc@cursor-onscreen-32x32: > > o shard-rkl: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-32x32.html> > (i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-32x32.html> > (i915#14544 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> > / i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) > +3 other tests skip > * > > igt@kms_cursor_crc@cursor-rapid-movement-512x170: > > o shard-dg2: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-dg2-10/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html> > (i915#13049 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049> > / i915#3359 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3359>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-3/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html> > (i915#13049 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049>) > * > > igt@kms_cursor_crc@cursor-sliding-32x10: > > o shard-dg1: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-dg1-19/igt@kms_cursor_crc@cursor-sliding-32x10.html> > (i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> > / i915#4423 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-19/igt@kms_cursor_crc@cursor-sliding-32x10.html> > (i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) > * > > igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy: > > o shard-rkl: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-2/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html> > (i915#14544 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) > +10 other tests skip > * > > igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: > > o shard-rkl: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html> > (i915#4103 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html> > (i915#14544 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> > / i915#4103 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103>) > * > > igt@kms_dirtyfb@psr-dirtyfb-ioctl: > > o shard-rkl: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-2/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html> > (i915#9723 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html> > (i915#14544 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> > / i915#9723 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723>) > * > > igt@kms_dsc@dsc-basic: > > o shard-rkl: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-6/igt@kms_dsc@dsc-basic.html> > (i915#14544 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> > / i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> > / i915#3840 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-5/igt@kms_dsc@dsc-basic.html> > (i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> > / i915#3840 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840>) > * > > igt@kms_flip@2x-flip-vs-dpms: > > o shard-rkl: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-3/igt@kms_flip@2x-flip-vs-dpms.html> > (i915#9934 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@kms_flip@2x-flip-vs-dpms.html> > (i915#14544 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> > / i915#9934 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) > +5 other tests skip > * > > igt@kms_flip@2x-plain-flip-fb-recreate: > > o shard-rkl: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-6/igt@kms_flip@2x-plain-flip-fb-recreate.html> > (i915#14544 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> > / i915#9934 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-7/igt@kms_flip@2x-plain-flip-fb-recreate.html> > (i915#9934 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) > +1 other test skip > * > > igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling: > > o shard-rkl: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html> > (i915#15643 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html> > (i915#14544 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> > / i915#15643 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643>) > * > > igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling: > > o shard-rkl: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html> > (i915#14544 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> > / i915#15643 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-8/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html> > (i915#15643 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643>) > * > > igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu: > > o shard-dg1: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-dg1-16/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-12/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html> > (i915#4423 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423>) > +1 other test skip > * > > igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt: > > o shard-rkl: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html> > (i915#1825 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html> > (i915#14544 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> > / i915#1825 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825>) > +15 other tests skip > * > > igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff: > > o shard-rkl: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html> > (i915#14544 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> > / i915#1825 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html> > (i915#1825 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825>) > +10 other tests skip > * > > igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-cpu: > > o shard-rkl: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-cpu.html> > (i915#15102 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102> > / i915#3023 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-cpu.html> > (i915#14544 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> > / i915#15102 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102> > / i915#3023 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023>) > +5 other tests skip > * > > igt@kms_frontbuffer_tracking@pipe-fbc-rte: > > o shard-rkl: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-2/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html> > (i915#9766 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html> > (i915#14544 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> > / i915#9766 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766>) > * > > igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt: > > o shard-rkl: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt.html> > (i915#15102 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt.html> > (i915#14544 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> > / i915#15102 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102>) > +3 other tests skip > * > > igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-wc: > > o shard-rkl: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-wc.html> > (i915#14544 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> > / i915#15102 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-wc.html> > (i915#15102 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102>) > * > > igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu: > > o shard-rkl: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html> > (i915#14544 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> > / i915#15102 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102> > / i915#3023 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html> > (i915#15102 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102> > / i915#3023 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023>) > +4 other tests skip > * > > igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move: > > o shard-dg2: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html> > (i915#15102 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102> > / i915#3458 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html> > (i915#10433 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433> > / i915#15102 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102> > / i915#3458 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>) > +3 other tests skip > * > > igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary: > > o shard-dg2: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html> > (i915#10433 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433> > / i915#15102 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102> > / i915#3458 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html> > (i915#15102 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102> > / i915#3458 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>) > +2 other tests skip > * > > igt@kms_hdr@invalid-hdr: > > o shard-rkl: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-6/igt@kms_hdr@invalid-hdr.html> > (i915#14544 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> > / i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> > / i915#8228 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-2/igt@kms_hdr@invalid-hdr.html> > (i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> > / i915#8228 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>) > * > > igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier: > > o shard-rkl: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-5/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier.html> > (i915#15709 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier.html> > (i915#14544 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> > / i915#15709 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709>) > * > > igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier: > > o shard-rkl: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier.html> > (i915#14544 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> > / i915#15709 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-4/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier.html> > (i915#15709 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709>) > +1 other test skip > * > > igt@kms_plane_multiple@tiling-4: > > o shard-rkl: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-5/igt@kms_plane_multiple@tiling-4.html> > (i915#14259 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@kms_plane_multiple@tiling-4.html> > (i915#14259 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259> > / i915#14544 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) > * > > igt@kms_pm_dc@dc3co-vpb-simulation: > > o shard-rkl: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-6/igt@kms_pm_dc@dc3co-vpb-simulation.html> > (i915#14544 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> > / i915#9685 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-2/igt@kms_pm_dc@dc3co-vpb-simulation.html> > (i915#9685 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685>) > * > > igt@kms_pm_rpm@package-g7: > > o shard-rkl: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-7/igt@kms_pm_rpm@package-g7.html> > (i915#15403 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15403>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@kms_pm_rpm@package-g7.html> > (i915#14544 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> > / i915#15403 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15403>) > * > > igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf: > > o shard-rkl: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html> > (i915#11520 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520> > / i915#14544 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-7/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html> > (i915#11520 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) > +2 other tests skip > * > > igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf: > > o shard-rkl: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-4/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html> > (i915#11520 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html> > (i915#11520 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520> > / i915#14544 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) > +3 other tests skip > * > > igt@kms_psr2_su@page_flip-xrgb8888: > > o shard-rkl: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-6/igt@kms_psr2_su@page_flip-xrgb8888.html> > (i915#14544 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> > / i915#9683 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-4/igt@kms_psr2_su@page_flip-xrgb8888.html> > (i915#9683 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683>) > * > > igt@kms_psr@psr-sprite-plane-move: > > o shard-rkl: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-2/igt@kms_psr@psr-sprite-plane-move.html> > (i915#1072 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> > / i915#9732 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@kms_psr@psr-sprite-plane-move.html> > (i915#1072 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> > / i915#14544 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> > / i915#9732 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) > +7 other tests skip > * > > igt@kms_psr@psr2-cursor-plane-move: > > o shard-rkl: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-6/igt@kms_psr@psr2-cursor-plane-move.html> > (i915#1072 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> > / i915#14544 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> > / i915#9732 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-4/igt@kms_psr@psr2-cursor-plane-move.html> > (i915#1072 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> > / i915#9732 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) > +4 other tests skip > * > > igt@kms_rotation_crc@primary-y-tiled-reflect-x-270: > > o shard-dg2: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-dg2-10/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html> > (i915#15867 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15867> > / i915#5190 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html> > (i915#12755 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755> > / i915#15867 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15867> > / i915#5190 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>) > * > > igt@kms_setmode@invalid-clone-single-crtc: > > o shard-rkl: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-6/igt@kms_setmode@invalid-clone-single-crtc.html> > (i915#14544 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> > / i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-2/igt@kms_setmode@invalid-clone-single-crtc.html> > (i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) > * > > igt@kms_vrr@flipline: > > o shard-rkl: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-7/igt@kms_vrr@flipline.html> > (i915#15243 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243> > / i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@kms_vrr@flipline.html> > (i915#14544 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> > / i915#15243 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243> > / i915#3555 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) > * > > igt@kms_vrr@lobf: > > o shard-rkl: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-6/igt@kms_vrr@lobf.html> > (i915#11920 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920> > / i915#14544 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-8/igt@kms_vrr@lobf.html> > (i915#11920 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920>) > * > > igt@perf@gen8-unprivileged-single-ctx-counters: > > o shard-rkl: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-6/igt@perf@gen8-unprivileged-single-ctx-counters.html> > (i915#14544 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> > / i915#2436 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-5/igt@perf@gen8-unprivileged-single-ctx-counters.html> > (i915#2436 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436>) > * > > igt@perf@per-context-mode-unprivileged: > > o shard-rkl: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-2/igt@perf@per-context-mode-unprivileged.html> > (i915#2435 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2435>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@perf@per-context-mode-unprivileged.html> > (i915#14544 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> > / i915#2435 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2435>) > * > > igt@perf@unprivileged-single-ctx-counters: > > o shard-rkl: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-5/igt@perf@unprivileged-single-ctx-counters.html> > (i915#2433 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-6/igt@perf@unprivileged-single-ctx-counters.html> > (i915#14544 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> > / i915#2433 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433>) > * > > igt@perf_pmu@module-unload: > > o shard-dg2: ABORT > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-dg2-6/igt@perf_pmu@module-unload.html> > (i915#15778 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778>) > -> ABORT > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg2-6/igt@perf_pmu@module-unload.html> > (i915#13029 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029> > / i915#15778 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778>) > o shard-dg1: ABORT > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-dg1-19/igt@perf_pmu@module-unload.html> > (i915#13029 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029> > / i915#15778 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778>) > -> ABORT > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-dg1-15/igt@perf_pmu@module-unload.html> > (i915#15778 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778>) > * > > igt@sriov_basic@enable-vfs-autoprobe-on: > > o shard-rkl: SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18273/shard-rkl-6/igt@sriov_basic@enable-vfs-autoprobe-on.html> > (i915#14544 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544> > / i915#9917 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14925/shard-rkl-3/igt@sriov_basic@enable-vfs-autoprobe-on.html> > (i915#9917 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917>) > > > Build changes > > * CI: CI-20190529 -> None > * IGT: IGT_8846 -> IGTPW_14925 > * Piglit: piglit_4509 -> None > > CI-20190529: 20190529 > CI_DRM_18273: 76f07a8a9c761686987cba92056f78c1d3cd1c62 @ > git://anongit.freedesktop.org/gfx-ci/linux > IGTPW_14925: dd22dc1b6b6beb5d821fa8b9aa3f9bdad194d94d @ > https://gitlab.freedesktop.org/drm/igt-gpu-tools.git > IGT_8846: 8846 > piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ > git://anongit.freedesktop.org/piglit > ^ permalink raw reply [flat|nested] 14+ messages in thread
end of thread, other threads:[~2026-04-08 2:15 UTC | newest] Thread overview: 14+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2026-04-03 7:13 [PATCH v2 0/4] lib/xe: query engine class capabilities from debugfs info Xin Wang 2026-04-03 7:13 ` [PATCH v2 1/4] lib/xe: cache engine class masks " Xin Wang 2026-04-06 22:25 ` [v2,1/4] " Daniel Charles 2026-04-03 7:13 ` [PATCH v2 2/4] lib/xe: add xe_engine_class_supports_multi_lrc() Xin Wang 2026-04-06 22:32 ` [v2,2/4] " Daniel Charles 2026-04-03 7:13 ` [PATCH v2 3/4] lib/xe: use debugfs info to implement xe_engine_class_supports_multi_queue() Xin Wang 2026-04-06 22:34 ` [v2,3/4] " Daniel Charles 2026-04-03 7:13 ` [PATCH v2 4/4] tests/intel: skip or adjust tests for non-multi-LRC engine classes Xin Wang 2026-04-06 22:35 ` [v2,4/4] " Daniel Charles 2026-04-03 8:03 ` ✓ i915.CI.BAT: success for lib/xe: query engine class capabilities from debugfs info (rev2) Patchwork 2026-04-03 8:06 ` ✓ Xe.CI.BAT: " Patchwork 2026-04-03 13:37 ` ✓ Xe.CI.FULL: " Patchwork 2026-04-03 23:35 ` ✗ i915.CI.Full: failure " Patchwork 2026-04-08 2:15 ` Wang, X
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox