* [PATCH] tools/xe-perf-recorder: expose some OA stream open properties
@ 2026-07-28 6:36 Shekhar Chauhan
2026-07-28 6:40 ` Shekhar Chauhan
` (5 more replies)
0 siblings, 6 replies; 10+ messages in thread
From: Shekhar Chauhan @ 2026-07-28 6:36 UTC (permalink / raw)
To: igt-dev; +Cc: ashutosh.dixit, shekhar.chauhan
xe-perf-recorder only passes 5 of the OA stream open properties to
DRM_XE_OBSERVATION_OP_STREAM_OPEN, leaving the rest without an open
source consumer. Add few of the remaining ones.
Signed-off-by: Shekhar Chauhan <shekhar.chauhan@intel.com>
---
tools/xe-perf/xe_perf_recorder.c | 105 ++++++++++++++++++++++++++++---
1 file changed, 98 insertions(+), 7 deletions(-)
diff --git a/tools/xe-perf/xe_perf_recorder.c b/tools/xe-perf/xe_perf_recorder.c
index c69050b43..06d1016a0 100644
--- a/tools/xe-perf/xe_perf_recorder.c
+++ b/tools/xe-perf/xe_perf_recorder.c
@@ -26,6 +26,7 @@
#include <unistd.h>
#include "igt_core.h"
+#include "igt_sizes.h"
#include "intel_batchbuffer.h"
#include "intel_chipset.h"
#include "ioctl_wrappers.h"
@@ -364,6 +365,16 @@ struct recording_context {
struct drm_xe_oa_unit *oa_unit;
struct drm_xe_engine_class_instance *hwe;
+ /* Optional OA stream open properties */
+ bool oa_disabled;
+ bool no_preempt;
+ bool exec_queue_id_set;
+ uint32_t exec_queue_id;
+ bool oa_engine_instance_set;
+ uint32_t oa_engine_instance;
+ uint64_t oa_buffer_size;
+ uint64_t wait_num_reports;
+
uint32_t vm;
uint32_t exec_queue;
struct intel_bb *ibb;
@@ -477,7 +488,7 @@ perf_open(struct recording_context *ctx)
{
int stream_fd;
- uint64_t properties[] = {
+ uint64_t properties[32] = {
DRM_XE_OA_PROPERTY_OA_UNIT_ID, ctx->oa_unit->oa_unit_id,
/* Include OA reports in samples */
@@ -488,10 +499,39 @@ perf_open(struct recording_context *ctx)
DRM_XE_OA_PROPERTY_OA_FORMAT, __ff(ctx->metric_set->perf_oa_format),
DRM_XE_OA_PROPERTY_OA_PERIOD_EXPONENT, ctx->oa_exponent,
};
- struct intel_xe_oa_open_prop param = {
- .num_properties = ARRAY_SIZE(properties) / 2,
- .properties_ptr = to_user_pointer(properties),
- };
+ struct intel_xe_oa_open_prop param = { 0 };
+ uint32_t n = 10; /* 5 mandatory properties (10 u64 slots) set above */
+
+ /* Optional properties, only passed when given on the command line */
+ if (ctx->oa_disabled) {
+ properties[n++] = DRM_XE_OA_PROPERTY_OA_DISABLED;
+ properties[n++] = 1;
+ }
+ if (ctx->exec_queue_id_set) {
+ properties[n++] = DRM_XE_OA_PROPERTY_EXEC_QUEUE_ID;
+ properties[n++] = ctx->exec_queue_id;
+ }
+ if (ctx->oa_engine_instance_set) {
+ properties[n++] = DRM_XE_OA_PROPERTY_OA_ENGINE_INSTANCE;
+ properties[n++] = ctx->oa_engine_instance;
+ }
+ if (ctx->no_preempt) {
+ properties[n++] = DRM_XE_OA_PROPERTY_NO_PREEMPT;
+ properties[n++] = 1;
+ }
+ if (ctx->oa_buffer_size) {
+ properties[n++] = DRM_XE_OA_PROPERTY_OA_BUFFER_SIZE;
+ properties[n++] = ctx->oa_buffer_size;
+ }
+ if (ctx->wait_num_reports) {
+ properties[n++] = DRM_XE_OA_PROPERTY_WAIT_NUM_REPORTS;
+ properties[n++] = ctx->wait_num_reports;
+ }
+
+ igt_assert(n <= ARRAY_SIZE(properties));
+
+ param.num_properties = n / 2;
+ param.properties_ptr = to_user_pointer(properties);
stream_fd = intel_xe_perf_ioctl(ctx->drm_fd, DRM_XE_OBSERVATION_OP_STREAM_OPEN, ¶m);
if (stream_fd < 0) {
@@ -924,7 +964,14 @@ usage(const char *name)
" --output, -o <path> Output file (default = xe_perf.record)\n"
" --cpu-clock, -k <path> Cpu clock to use for correlations\n"
" Values: boot, mono, mono_raw (default = mono)\n"
- " --oa-unit-id -u <value> OA unit id for the capture.\n",
+ " --oa-unit-id -u <value> OA unit id for the capture.\n"
+ " --oa-disabled -D Open the OA stream in the disabled state\n"
+ " (the stream is enabled right after open)\n"
+ " --exec-queue-id -q <value> Exec queue id for context scoped capture\n"
+ " --oa-engine-instance -e <value> Engine instance for context scoped capture\n"
+ " --no-preempt -n Disable preemption (requires --exec-queue-id)\n"
+ " --oa-buffer-size -b <value> OA buffer size in bytes (pow2, 128K - 128M)\n"
+ " --wait-num-reports -w <value> Min reports before poll()/read() unblocks\n",
name);
}
@@ -1038,6 +1085,12 @@ main(int argc, char *argv[])
{"command-fifo", required_argument, 0, 'f'},
{"cpu-clock", required_argument, 0, 'k'},
{"oa-unit-id", required_argument, 0, 'u'},
+ {"oa-disabled", no_argument, 0, 'D'},
+ {"exec-queue-id", required_argument, 0, 'q'},
+ {"oa-engine-instance", required_argument, 0, 'e'},
+ {"no-preempt", no_argument, 0, 'n'},
+ {"oa-buffer-size", required_argument, 0, 'b'},
+ {"wait-num-reports", required_argument, 0, 'w'},
{0, 0, 0, 0}
};
const struct {
@@ -1068,7 +1121,7 @@ main(int argc, char *argv[])
.oa_unit_id = 0,
};
- while ((opt = getopt_long(argc, argv, "hc:d:p:m:Co:s:f:k:P:u:", long_options, NULL)) != -1) {
+ while ((opt = getopt_long(argc, argv, "hc:d:p:m:Co:s:f:k:P:u:Dq:e:nb:w:", long_options, NULL)) != -1) {
switch (opt) {
case 'h':
usage(argv[0]);
@@ -1119,6 +1172,26 @@ main(int argc, char *argv[])
case 'u':
ctx.oa_unit_id = atoi(optarg);
break;
+ case 'D':
+ ctx.oa_disabled = true;
+ break;
+ case 'q':
+ ctx.exec_queue_id = strtoul(optarg, NULL, 0);
+ ctx.exec_queue_id_set = true;
+ break;
+ case 'e':
+ ctx.oa_engine_instance = strtoul(optarg, NULL, 0);
+ ctx.oa_engine_instance_set = true;
+ break;
+ case 'n':
+ ctx.no_preempt = true;
+ break;
+ case 'b':
+ ctx.oa_buffer_size = strtoull(optarg, NULL, 0);
+ break;
+ case 'w':
+ ctx.wait_num_reports = strtoull(optarg, NULL, 0);
+ break;
default:
fprintf(stderr, "Internal error: "
"unexpected getopt value: %d\n", opt);
@@ -1127,6 +1200,17 @@ main(int argc, char *argv[])
}
}
+ if (ctx.no_preempt && !ctx.exec_queue_id_set) {
+ fprintf(stderr, "--no-preempt requires --exec-queue-id\n");
+ return EXIT_FAILURE;
+ }
+ if (ctx.oa_buffer_size &&
+ ((ctx.oa_buffer_size & (ctx.oa_buffer_size - 1)) ||
+ ctx.oa_buffer_size < SZ_128K || ctx.oa_buffer_size > SZ_128M)) {
+ fprintf(stderr, "--oa-buffer-size must be a power of 2 in [128K, 128M]\n");
+ return EXIT_FAILURE;
+ }
+
if (dev_node_id == -2) {
print_intel_devices();
return EXIT_SUCCESS;
@@ -1291,6 +1375,13 @@ main(int argc, char *argv[])
goto fail;
}
+ if (ctx.oa_disabled &&
+ perf_ioctl(ctx.perf_fd, DRM_XE_OBSERVATION_IOCTL_ENABLE, 0) < 0) {
+ fprintf(stderr, "Unable to enable xe oa stream: %s\n",
+ strerror(errno));
+ goto fail;
+ }
+
init_mmio_trigger_ctx(&ctx);
emit_oa_trigger(&ctx, 0xc0ffee01);
--
2.53.0
^ permalink raw reply related [flat|nested] 10+ messages in thread* Re: [PATCH] tools/xe-perf-recorder: expose some OA stream open properties 2026-07-28 6:36 [PATCH] tools/xe-perf-recorder: expose some OA stream open properties Shekhar Chauhan @ 2026-07-28 6:40 ` Shekhar Chauhan 2026-07-30 2:46 ` Dixit, Ashutosh 2026-07-28 7:56 ` ✓ Xe.CI.BAT: success for " Patchwork ` (4 subsequent siblings) 5 siblings, 1 reply; 10+ messages in thread From: Shekhar Chauhan @ 2026-07-28 6:40 UTC (permalink / raw) To: igt-dev; +Cc: ashutosh.dixit Couple of things to note: On 7/28/2026 12:06, Shekhar Chauhan wrote: > xe-perf-recorder only passes 5 of the OA stream open properties to > DRM_XE_OBSERVATION_OP_STREAM_OPEN, leaving the rest without an open > source consumer. Add few of the remaining ones. 1. I missed out on adding "PATCH i-g-t" prefix, I did send it with a subject-prefix="PATCH i-g-t" hoping it'll append that, but turns out, it didn't, so I think I should explicitly do that while doing a git format-patch. I remember being told to add it in the gitconfig, but, I didn't wanna do it for all the patches that I send, so I didn't add there. > > Signed-off-by: Shekhar Chauhan <shekhar.chauhan@intel.com> > --- > tools/xe-perf/xe_perf_recorder.c | 105 ++++++++++++++++++++++++++++--- > 1 file changed, 98 insertions(+), 7 deletions(-) > > diff --git a/tools/xe-perf/xe_perf_recorder.c b/tools/xe-perf/xe_perf_recorder.c > index c69050b43..06d1016a0 100644 > --- a/tools/xe-perf/xe_perf_recorder.c > +++ b/tools/xe-perf/xe_perf_recorder.c > @@ -26,6 +26,7 @@ > #include <unistd.h> > > #include "igt_core.h" > +#include "igt_sizes.h" > #include "intel_batchbuffer.h" > #include "intel_chipset.h" > #include "ioctl_wrappers.h" > @@ -364,6 +365,16 @@ struct recording_context { > struct drm_xe_oa_unit *oa_unit; > struct drm_xe_engine_class_instance *hwe; > > + /* Optional OA stream open properties */ > + bool oa_disabled; > + bool no_preempt; > + bool exec_queue_id_set; > + uint32_t exec_queue_id; > + bool oa_engine_instance_set; > + uint32_t oa_engine_instance; > + uint64_t oa_buffer_size; > + uint64_t wait_num_reports; > + > uint32_t vm; > uint32_t exec_queue; > struct intel_bb *ibb; > @@ -477,7 +488,7 @@ perf_open(struct recording_context *ctx) > { > int stream_fd; > > - uint64_t properties[] = { > + uint64_t properties[32] = { > DRM_XE_OA_PROPERTY_OA_UNIT_ID, ctx->oa_unit->oa_unit_id, > > /* Include OA reports in samples */ > @@ -488,10 +499,39 @@ perf_open(struct recording_context *ctx) > DRM_XE_OA_PROPERTY_OA_FORMAT, __ff(ctx->metric_set->perf_oa_format), > DRM_XE_OA_PROPERTY_OA_PERIOD_EXPONENT, ctx->oa_exponent, > }; > - struct intel_xe_oa_open_prop param = { > - .num_properties = ARRAY_SIZE(properties) / 2, > - .properties_ptr = to_user_pointer(properties), > - }; > + struct intel_xe_oa_open_prop param = { 0 }; > + uint32_t n = 10; /* 5 mandatory properties (10 u64 slots) set above */ > + > + /* Optional properties, only passed when given on the command line */ > + if (ctx->oa_disabled) { > + properties[n++] = DRM_XE_OA_PROPERTY_OA_DISABLED; > + properties[n++] = 1; > + } > + if (ctx->exec_queue_id_set) { > + properties[n++] = DRM_XE_OA_PROPERTY_EXEC_QUEUE_ID; > + properties[n++] = ctx->exec_queue_id; > + } > + if (ctx->oa_engine_instance_set) { > + properties[n++] = DRM_XE_OA_PROPERTY_OA_ENGINE_INSTANCE; > + properties[n++] = ctx->oa_engine_instance; > + } > + if (ctx->no_preempt) { > + properties[n++] = DRM_XE_OA_PROPERTY_NO_PREEMPT; > + properties[n++] = 1; > + } > + if (ctx->oa_buffer_size) { > + properties[n++] = DRM_XE_OA_PROPERTY_OA_BUFFER_SIZE; > + properties[n++] = ctx->oa_buffer_size; > + } > + if (ctx->wait_num_reports) { > + properties[n++] = DRM_XE_OA_PROPERTY_WAIT_NUM_REPORTS; > + properties[n++] = ctx->wait_num_reports; > + } > + > + igt_assert(n <= ARRAY_SIZE(properties)); > + > + param.num_properties = n / 2; > + param.properties_ptr = to_user_pointer(properties); > > stream_fd = intel_xe_perf_ioctl(ctx->drm_fd, DRM_XE_OBSERVATION_OP_STREAM_OPEN, ¶m); > if (stream_fd < 0) { > @@ -924,7 +964,14 @@ usage(const char *name) > " --output, -o <path> Output file (default = xe_perf.record)\n" > " --cpu-clock, -k <path> Cpu clock to use for correlations\n" > " Values: boot, mono, mono_raw (default = mono)\n" > - " --oa-unit-id -u <value> OA unit id for the capture.\n", > + " --oa-unit-id -u <value> OA unit id for the capture.\n" > + " --oa-disabled -D Open the OA stream in the disabled state\n" > + " (the stream is enabled right after open)\n" > + " --exec-queue-id -q <value> Exec queue id for context scoped capture\n" > + " --oa-engine-instance -e <value> Engine instance for context scoped capture\n" > + " --no-preempt -n Disable preemption (requires --exec-queue-id)\n" > + " --oa-buffer-size -b <value> OA buffer size in bytes (pow2, 128K - 128M)\n" > + " --wait-num-reports -w <value> Min reports before poll()/read() unblocks\n", > name); > } > > @@ -1038,6 +1085,12 @@ main(int argc, char *argv[]) > {"command-fifo", required_argument, 0, 'f'}, > {"cpu-clock", required_argument, 0, 'k'}, > {"oa-unit-id", required_argument, 0, 'u'}, > + {"oa-disabled", no_argument, 0, 'D'}, > + {"exec-queue-id", required_argument, 0, 'q'}, > + {"oa-engine-instance", required_argument, 0, 'e'}, > + {"no-preempt", no_argument, 0, 'n'}, > + {"oa-buffer-size", required_argument, 0, 'b'}, > + {"wait-num-reports", required_argument, 0, 'w'}, > {0, 0, 0, 0} > }; > const struct { > @@ -1068,7 +1121,7 @@ main(int argc, char *argv[]) > .oa_unit_id = 0, > }; > > - while ((opt = getopt_long(argc, argv, "hc:d:p:m:Co:s:f:k:P:u:", long_options, NULL)) != -1) { > + while ((opt = getopt_long(argc, argv, "hc:d:p:m:Co:s:f:k:P:u:Dq:e:nb:w:", long_options, NULL)) != -1) { > switch (opt) { > case 'h': > usage(argv[0]); > @@ -1119,6 +1172,26 @@ main(int argc, char *argv[]) > case 'u': > ctx.oa_unit_id = atoi(optarg); > break; > + case 'D': > + ctx.oa_disabled = true; > + break; > + case 'q': > + ctx.exec_queue_id = strtoul(optarg, NULL, 0); > + ctx.exec_queue_id_set = true; > + break; > + case 'e': > + ctx.oa_engine_instance = strtoul(optarg, NULL, 0); > + ctx.oa_engine_instance_set = true; > + break; > + case 'n': > + ctx.no_preempt = true; > + break; > + case 'b': > + ctx.oa_buffer_size = strtoull(optarg, NULL, 0); > + break; > + case 'w': > + ctx.wait_num_reports = strtoull(optarg, NULL, 0); > + break; > default: > fprintf(stderr, "Internal error: " > "unexpected getopt value: %d\n", opt); > @@ -1127,6 +1200,17 @@ main(int argc, char *argv[]) > } > } > > + if (ctx.no_preempt && !ctx.exec_queue_id_set) { > + fprintf(stderr, "--no-preempt requires --exec-queue-id\n"); > + return EXIT_FAILURE; > + } > + if (ctx.oa_buffer_size && > + ((ctx.oa_buffer_size & (ctx.oa_buffer_size - 1)) || > + ctx.oa_buffer_size < SZ_128K || ctx.oa_buffer_size > SZ_128M)) { > + fprintf(stderr, "--oa-buffer-size must be a power of 2 in [128K, 128M]\n"); > + return EXIT_FAILURE; > + } > + > if (dev_node_id == -2) { > print_intel_devices(); > return EXIT_SUCCESS; > @@ -1291,6 +1375,13 @@ main(int argc, char *argv[]) > goto fail; > } > > + if (ctx.oa_disabled && > + perf_ioctl(ctx.perf_fd, DRM_XE_OBSERVATION_IOCTL_ENABLE, 0) < 0) { > + fprintf(stderr, "Unable to enable xe oa stream: %s\n", > + strerror(errno)); > + goto fail; > + } > + The above 3 ctx.no_preempt, ctx.oa_buffer_size and ctx.oa_disabled blocks were suggested by AI to improve error handling. -shekhar > init_mmio_trigger_ctx(&ctx); > emit_oa_trigger(&ctx, 0xc0ffee01); > -- Shekhar Chauhan Linux Graphics Software Engineer Intel Corporation ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH] tools/xe-perf-recorder: expose some OA stream open properties 2026-07-28 6:40 ` Shekhar Chauhan @ 2026-07-30 2:46 ` Dixit, Ashutosh 0 siblings, 0 replies; 10+ messages in thread From: Dixit, Ashutosh @ 2026-07-30 2:46 UTC (permalink / raw) To: Shekhar Chauhan; +Cc: igt-dev On Mon, 27 Jul 2026 23:40:50 -0700, Shekhar Chauhan wrote: > > Couple of things to note: > > On 7/28/2026 12:06, Shekhar Chauhan wrote: > > xe-perf-recorder only passes 5 of the OA stream open properties to > > DRM_XE_OBSERVATION_OP_STREAM_OPEN, leaving the rest without an open > > source consumer. Add few of the remaining ones. > 1. I missed out on adding "PATCH i-g-t" prefix, I did send it with a > subject-prefix="PATCH i-g-t" hoping it'll append that, but turns out, it > didn't, so I think I should explicitly do that while doing a git > format-patch. I remember being told to add it in the gitconfig, but, I > didn't wanna do it for all the patches that I send, so I didn't add there. No, this is is what I said: This can be configured in your .git/config: [format] subjectprefix = PATCH i-g-t So this .git/config in your IGT repo, not your global ~/.gitconfig. ^ permalink raw reply [flat|nested] 10+ messages in thread
* ✓ Xe.CI.BAT: success for tools/xe-perf-recorder: expose some OA stream open properties 2026-07-28 6:36 [PATCH] tools/xe-perf-recorder: expose some OA stream open properties Shekhar Chauhan 2026-07-28 6:40 ` Shekhar Chauhan @ 2026-07-28 7:56 ` Patchwork 2026-07-28 8:02 ` ✓ i915.CI.BAT: " Patchwork ` (3 subsequent siblings) 5 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2026-07-28 7:56 UTC (permalink / raw) To: Shekhar Chauhan; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 4932 bytes --] == Series Details == Series: tools/xe-perf-recorder: expose some OA stream open properties URL : https://patchwork.freedesktop.org/series/171150/ State : success == Summary == CI Bug Log - changes from XEIGT_9027_BAT -> XEIGTPW_15599_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (12 -> 13) ------------------------------ Additional (1): bat-bmg-2 Known issues ------------ Here are the changes found in XEIGTPW_15599_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@fbdev@write: - bat-bmg-2: NOTRUN -> [SKIP][1] ([Intel XE#2134]) +4 other tests skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/bat-bmg-2/igt@fbdev@write.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - bat-bmg-2: NOTRUN -> [SKIP][2] ([Intel XE#2233]) [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/bat-bmg-2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_cursor_legacy@basic-flip-after-cursor-legacy: - bat-bmg-2: NOTRUN -> [SKIP][3] ([Intel XE#2489] / [Intel XE#3419]) +13 other tests skip [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/bat-bmg-2/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html * igt@kms_flip@basic-flip-vs-modeset: - bat-bmg-2: NOTRUN -> [SKIP][4] ([Intel XE#2482]) +3 other tests skip [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/bat-bmg-2/igt@kms_flip@basic-flip-vs-modeset.html * igt@kms_frontbuffer_tracking@basic: - bat-bmg-2: NOTRUN -> [SKIP][5] ([Intel XE#2434] / [Intel XE#2548] / [Intel XE#6314]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/bat-bmg-2/igt@kms_frontbuffer_tracking@basic.html * igt@kms_psr@psr-sprite-plane-onoff: - bat-bmg-2: NOTRUN -> [SKIP][6] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/bat-bmg-2/igt@kms_psr@psr-sprite-plane-onoff.html * igt@xe_exec_multi_queue@priority: - bat-bmg-2: NOTRUN -> [SKIP][7] ([Intel XE#8364]) +13 other tests skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/bat-bmg-2/igt@xe_exec_multi_queue@priority.html * igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit: - bat-bmg-2: NOTRUN -> [SKIP][8] ([Intel XE#2229]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/bat-bmg-2/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html * igt@xe_pat@pat-index-xehpc: - bat-bmg-2: NOTRUN -> [SKIP][9] ([Intel XE#1420] / [Intel XE#7590]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/bat-bmg-2/igt@xe_pat@pat-index-xehpc.html * igt@xe_pat@pat-index-xelp: - bat-bmg-2: NOTRUN -> [SKIP][10] ([Intel XE#2245] / [Intel XE#7590]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/bat-bmg-2/igt@xe_pat@pat-index-xelp.html * igt@xe_pat@pat-index-xelpg: - bat-bmg-2: NOTRUN -> [SKIP][11] ([Intel XE#2236] / [Intel XE#7590]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/bat-bmg-2/igt@xe_pat@pat-index-xelpg.html [Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420 [Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134 [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236 [Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245 [Intel XE#2434]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2434 [Intel XE#2482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2482 [Intel XE#2489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2489 [Intel XE#2548]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2548 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#3419]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3419 [Intel XE#6314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6314 [Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590 [Intel XE#8364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8364 Build changes ------------- * IGT: IGT_9027 -> IGTPW_15599 * Linux: xe-5484-3cbfb56ee0481aaabc9369045a4b120a20dfccc4 -> xe-5491-28e3f47d47a61b5e28e7566944479e9c9715d41d IGTPW_15599: 15599 IGT_9027: 9027 xe-5484-3cbfb56ee0481aaabc9369045a4b120a20dfccc4: 3cbfb56ee0481aaabc9369045a4b120a20dfccc4 xe-5491-28e3f47d47a61b5e28e7566944479e9c9715d41d: 28e3f47d47a61b5e28e7566944479e9c9715d41d == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/index.html [-- Attachment #2: Type: text/html, Size: 5855 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* ✓ i915.CI.BAT: success for tools/xe-perf-recorder: expose some OA stream open properties 2026-07-28 6:36 [PATCH] tools/xe-perf-recorder: expose some OA stream open properties Shekhar Chauhan 2026-07-28 6:40 ` Shekhar Chauhan 2026-07-28 7:56 ` ✓ Xe.CI.BAT: success for " Patchwork @ 2026-07-28 8:02 ` Patchwork 2026-07-28 10:39 ` ✗ i915.CI.Full: failure " Patchwork ` (2 subsequent siblings) 5 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2026-07-28 8:02 UTC (permalink / raw) To: Shekhar Chauhan; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1076 bytes --] == Series Details == Series: tools/xe-perf-recorder: expose some OA stream open properties URL : https://patchwork.freedesktop.org/series/171150/ State : success == Summary == CI Bug Log - changes from IGT_9027 -> IGTPW_15599 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/index.html Participating hosts (41 -> 38) ------------------------------ Missing (3): bat-dg2-13 fi-snb-2520m bat-adls-6 Changes ------- No changes found Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_9027 -> IGTPW_15599 * Linux: CI_DRM_18902 -> CI_DRM_18909 CI-20190529: 20190529 CI_DRM_18902: 3cbfb56ee0481aaabc9369045a4b120a20dfccc4 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_18909: 28e3f47d47a61b5e28e7566944479e9c9715d41d @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_15599: 15599 IGT_9027: 9027 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/index.html [-- Attachment #2: Type: text/html, Size: 1656 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* ✗ i915.CI.Full: failure for tools/xe-perf-recorder: expose some OA stream open properties 2026-07-28 6:36 [PATCH] tools/xe-perf-recorder: expose some OA stream open properties Shekhar Chauhan ` (2 preceding siblings ...) 2026-07-28 8:02 ` ✓ i915.CI.BAT: " Patchwork @ 2026-07-28 10:39 ` Patchwork 2026-07-28 11:08 ` ✗ Xe.CI.FULL: " Patchwork 2026-07-30 2:54 ` [PATCH] " Dixit, Ashutosh 5 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2026-07-28 10:39 UTC (permalink / raw) To: Shekhar Chauhan; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 156297 bytes --] == Series Details == Series: tools/xe-perf-recorder: expose some OA stream open properties URL : https://patchwork.freedesktop.org/series/171150/ State : failure == Summary == CI Bug Log - changes from CI_DRM_18909_full -> IGTPW_15599_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_15599_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_15599_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_15599/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_15599_full: ### IGT changes ### #### Possible regressions #### * igt@kms_big_fb@x-tiled-64bpp-rotate-180: - shard-dg2: [PASS][1] -> [SKIP][2] +72 other tests skip [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-dg2-7/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-10/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html * igt@kms_vblank@wait-idle-hang: - shard-dg2: NOTRUN -> [SKIP][3] +28 other tests skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-10/igt@kms_vblank@wait-idle-hang.html #### Warnings #### * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs: - shard-dg2: [SKIP][4] ([i915#10307] / [i915#6095]) -> [SKIP][5] +10 other tests skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-dg2-6/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-10/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs: - shard-dg2: [SKIP][6] ([i915#12313]) -> [SKIP][7] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-dg2-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-10/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc: - shard-dg2: [SKIP][8] ([i915#6095]) -> [SKIP][9] +1 other test skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-dg2-6/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-10/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html * igt@kms_content_protection@atomic-hdcp14: - shard-dg2: [SKIP][10] ([i915#15865]) -> [SKIP][11] [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-dg2-6/igt@kms_content_protection@atomic-hdcp14.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-10/igt@kms_content_protection@atomic-hdcp14.html * igt@kms_cursor_crc@cursor-offscreen-max-size: - shard-dg2: [SKIP][12] ([i915#3555]) -> [SKIP][13] +1 other test skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-dg2-5/igt@kms_cursor_crc@cursor-offscreen-max-size.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-10/igt@kms_cursor_crc@cursor-offscreen-max-size.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-dg2: [SKIP][14] ([i915#13049]) -> [SKIP][15] [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-dg2-8/igt@kms_cursor_crc@cursor-onscreen-512x512.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-10/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic: - shard-dg2: [SKIP][16] ([i915#13046] / [i915#5354]) -> [SKIP][17] +7 other tests skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-dg2-4/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-10/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-dg2: [SKIP][18] ([i915#4103]) -> [SKIP][19] [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-dg2-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-10/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_draw_crc@draw-method-mmap-wc: - shard-dg2: [SKIP][20] ([i915#8812]) -> [SKIP][21] [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-dg2-4/igt@kms_draw_crc@draw-method-mmap-wc.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-10/igt@kms_draw_crc@draw-method-mmap-wc.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg2: [SKIP][22] ([i915#16361]) -> [SKIP][23] +3 other tests skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-dg2-3/igt@kms_dsc@dsc-with-output-formats-with-bpc.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-10/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-gtt: - shard-dg2: [SKIP][24] ([i915#15104] / [i915#15990]) -> [SKIP][25] [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-gtt.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-spr-indfb-draw-mmap-wc: - shard-dg2: [SKIP][26] ([i915#15990]) -> [SKIP][27] +13 other tests skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-dg2-7/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-spr-indfb-draw-mmap-wc.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-10/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-indfb-plflip-blt: - shard-dg2: [SKIP][28] ([i915#15102]) -> [SKIP][29] +12 other tests skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-indfb-plflip-blt.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@hdr-1p-primscrn-spr-indfb-draw-pwrite: - shard-dg2: [SKIP][30] ([i915#15989]) -> [SKIP][31] +12 other tests skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-dg2-8/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-spr-indfb-draw-pwrite.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-10/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-spr-indfb-draw-mmap-cpu: - shard-dg2: [SKIP][32] ([i915#15991]) -> [SKIP][33] +37 other tests skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-dg2-8/igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-spr-indfb-draw-mmap-cpu.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-10/igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-spr-indfb-draw-mmap-cpu.html * igt@kms_hdr@bpc-switch-suspend: - shard-dg2: [SKIP][34] ([i915#16518] / [i915#3555] / [i915#8228]) -> [SKIP][35] [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-dg2-7/igt@kms_hdr@bpc-switch-suspend.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-10/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_plane_multiple@2x-tiling-y: - shard-dg2: [SKIP][36] ([i915#13958]) -> [SKIP][37] [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-dg2-4/igt@kms_plane_multiple@2x-tiling-y.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-10/igt@kms_plane_multiple@2x-tiling-y.html * igt@kms_plane_multiple@tiling-yf: - shard-dg2: [SKIP][38] ([i915#14259]) -> [SKIP][39] [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-dg2-6/igt@kms_plane_multiple@tiling-yf.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-10/igt@kms_plane_multiple@tiling-yf.html * igt@kms_rotation_crc@bad-tiling: - shard-dg2: [SKIP][40] ([i915#12755] / [i915#15867]) -> [SKIP][41] [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-dg2-8/igt@kms_rotation_crc@bad-tiling.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-10/igt@kms_rotation_crc@bad-tiling.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2: [SKIP][42] ([i915#8623]) -> [SKIP][43] [42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-dg2-6/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-10/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vrr@flip-dpms: - shard-dg2: [SKIP][44] ([i915#15243] / [i915#3555]) -> [SKIP][45] +1 other test skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-dg2-8/igt@kms_vrr@flip-dpms.html [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-10/igt@kms_vrr@flip-dpms.html * igt@kms_vrr@lobf: - shard-dg2: [SKIP][46] ([i915#11920]) -> [SKIP][47] [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-dg2-6/igt@kms_vrr@lobf.html [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-10/igt@kms_vrr@lobf.html New tests --------- New tests have been introduced between CI_DRM_18909_full and IGTPW_15599_full: ### New IGT tests (5) ### * igt@kms_cursor_legacy@bad-hsync-end: - Statuses : - Exec time: [None] s * igt@kms_cursor_legacy@basic-y-tiled-legacy: - Statuses : - Exec time: [None] s * igt@kms_cursor_legacy@load: - Statuses : - Exec time: [None] s * igt@kms_cursor_legacy@pi-userfault: - Statuses : - Exec time: [None] s * igt@kms_cursor_legacy@psrhdr-1p-primscrn-spr-indfb-draw-mmap-cpu: - Statuses : - Exec time: [None] s Known issues ------------ Here are the changes found in IGTPW_15599_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-purge-cache: - shard-dg2: NOTRUN -> [SKIP][48] ([i915#8411]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-6/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@device_reset@unbind-cold-reset-rebind: - shard-rkl: NOTRUN -> [SKIP][49] ([i915#11078]) +1 other test skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-4/igt@device_reset@unbind-cold-reset-rebind.html * igt@device_reset@unbind-reset-rebind: - shard-dg1: NOTRUN -> [ABORT][50] ([i915#11814]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg1-13/igt@device_reset@unbind-reset-rebind.html * igt@fbdev@pan: - shard-dg2: [PASS][51] -> [SKIP][52] ([i915#2582]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-dg2-8/igt@fbdev@pan.html [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-10/igt@fbdev@pan.html * igt@gem_caching@reads: - shard-mtlp: NOTRUN -> [SKIP][53] ([i915#4873]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-mtlp-5/igt@gem_caching@reads.html * igt@gem_ccs@block-multicopy-inplace: - shard-tglu-1: NOTRUN -> [SKIP][54] ([i915#3555] / [i915#9323]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-tglu-1/igt@gem_ccs@block-multicopy-inplace.html * igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0: - shard-dg2: NOTRUN -> [INCOMPLETE][55] ([i915#13356] / [i915#16348]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-1/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0.html * igt@gem_create@create-ext-cpu-access-big: - shard-tglu-1: NOTRUN -> [SKIP][56] ([i915#6335]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-tglu-1/igt@gem_create@create-ext-cpu-access-big.html - shard-mtlp: NOTRUN -> [SKIP][57] ([i915#6335]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-mtlp-8/igt@gem_create@create-ext-cpu-access-big.html - shard-dg2: NOTRUN -> [FAIL][58] ([i915#15454]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-10/igt@gem_create@create-ext-cpu-access-big.html - shard-rkl: NOTRUN -> [SKIP][59] ([i915#6335]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-3/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_ctx_isolation@preservation-s3@rcs0: - shard-glk: NOTRUN -> [INCOMPLETE][60] ([i915#13356] / [i915#16466]) +1 other test incomplete [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-glk4/igt@gem_ctx_isolation@preservation-s3@rcs0.html * igt@gem_ctx_persistence@heartbeat-stop: - shard-dg2: NOTRUN -> [SKIP][61] ([i915#8555]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-10/igt@gem_ctx_persistence@heartbeat-stop.html * igt@gem_ctx_persistence@legacy-engines-persistence: - shard-snb: NOTRUN -> [SKIP][62] ([i915#1099]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-snb5/igt@gem_ctx_persistence@legacy-engines-persistence.html * igt@gem_ctx_sseu@invalid-sseu: - shard-dg2: NOTRUN -> [SKIP][63] ([i915#280]) +1 other test skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-1/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_ctx_sseu@mmap-args: - shard-rkl: NOTRUN -> [SKIP][64] ([i915#280]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-7/igt@gem_ctx_sseu@mmap-args.html - shard-tglu-1: NOTRUN -> [SKIP][65] ([i915#280]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-tglu-1/igt@gem_ctx_sseu@mmap-args.html - shard-dg1: NOTRUN -> [SKIP][66] ([i915#280]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg1-16/igt@gem_ctx_sseu@mmap-args.html - shard-mtlp: NOTRUN -> [SKIP][67] ([i915#280]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-mtlp-2/igt@gem_ctx_sseu@mmap-args.html * igt@gem_eio@in-flight-suspend: - shard-rkl: NOTRUN -> [INCOMPLETE][68] ([i915#13390]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-6/igt@gem_eio@in-flight-suspend.html - shard-glk: NOTRUN -> [INCOMPLETE][69] ([i915#13390]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-glk6/igt@gem_eio@in-flight-suspend.html * igt@gem_exec_balancer@bonded-semaphore: - shard-dg2: NOTRUN -> [SKIP][70] ([i915#4812]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-5/igt@gem_exec_balancer@bonded-semaphore.html * igt@gem_exec_balancer@hog: - shard-mtlp: NOTRUN -> [SKIP][71] ([i915#4812]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-mtlp-5/igt@gem_exec_balancer@hog.html * igt@gem_exec_balancer@parallel-balancer: - shard-tglu: NOTRUN -> [SKIP][72] ([i915#4525]) +1 other test skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-tglu-8/igt@gem_exec_balancer@parallel-balancer.html * igt@gem_exec_flush@basic-batch-kernel-default-cmd: - shard-dg2: NOTRUN -> [SKIP][73] ([i915#3539] / [i915#4852]) +1 other test skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-4/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html - shard-mtlp: NOTRUN -> [SKIP][74] ([i915#3711]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-mtlp-5/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html * igt@gem_exec_flush@basic-wb-rw-before-default: - shard-dg1: NOTRUN -> [SKIP][75] ([i915#3539] / [i915#4852]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg1-13/igt@gem_exec_flush@basic-wb-rw-before-default.html * igt@gem_exec_reloc@basic-gtt-wc-noreloc: - shard-rkl: NOTRUN -> [SKIP][76] ([i915#3281]) +9 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-4/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html * igt@gem_exec_reloc@basic-wc-gtt-noreloc: - shard-dg1: NOTRUN -> [SKIP][77] ([i915#3281]) +3 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg1-12/igt@gem_exec_reloc@basic-wc-gtt-noreloc.html - shard-mtlp: NOTRUN -> [SKIP][78] ([i915#3281]) +2 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-mtlp-4/igt@gem_exec_reloc@basic-wc-gtt-noreloc.html * igt@gem_exec_reloc@basic-write-read-active: - shard-dg2: NOTRUN -> [SKIP][79] ([i915#3281]) +7 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-6/igt@gem_exec_reloc@basic-write-read-active.html * igt@gem_exec_schedule@reorder-wide: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#4537] / [i915#4812]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-5/igt@gem_exec_schedule@reorder-wide.html * igt@gem_fenced_exec_thrash@2-spare-fences: - shard-dg2: NOTRUN -> [SKIP][81] ([i915#4860]) +1 other test skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-7/igt@gem_fenced_exec_thrash@2-spare-fences.html * igt@gem_lmem_swapping@heavy-multi: - shard-glk: NOTRUN -> [SKIP][82] ([i915#4613]) +2 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-glk8/igt@gem_lmem_swapping@heavy-multi.html * igt@gem_lmem_swapping@heavy-random: - shard-rkl: NOTRUN -> [SKIP][83] ([i915#4613]) +2 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-8/igt@gem_lmem_swapping@heavy-random.html - shard-tglu: NOTRUN -> [SKIP][84] ([i915#4613]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-tglu-8/igt@gem_lmem_swapping@heavy-random.html - shard-mtlp: NOTRUN -> [SKIP][85] ([i915#4613]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-mtlp-3/igt@gem_lmem_swapping@heavy-random.html * igt@gem_lmem_swapping@heavy-verify-multi: - shard-tglu-1: NOTRUN -> [SKIP][86] ([i915#4613]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-tglu-1/igt@gem_lmem_swapping@heavy-verify-multi.html * igt@gem_mmap@bad-offset: - shard-dg2: NOTRUN -> [SKIP][87] ([i915#4083]) +2 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-10/igt@gem_mmap@bad-offset.html * igt@gem_mmap_gtt@cpuset-big-copy-odd: - shard-dg2: NOTRUN -> [SKIP][88] ([i915#4077]) +5 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-6/igt@gem_mmap_gtt@cpuset-big-copy-odd.html - shard-dg1: NOTRUN -> [SKIP][89] ([i915#4077]) +2 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg1-12/igt@gem_mmap_gtt@cpuset-big-copy-odd.html - shard-mtlp: NOTRUN -> [SKIP][90] ([i915#4077]) +2 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-mtlp-4/igt@gem_mmap_gtt@cpuset-big-copy-odd.html * igt@gem_mmap_wc@write: - shard-mtlp: NOTRUN -> [SKIP][91] ([i915#4083]) +1 other test skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-mtlp-1/igt@gem_mmap_wc@write.html * igt@gem_mmap_wc@write-gtt-read-wc: - shard-dg1: NOTRUN -> [SKIP][92] ([i915#4083]) +2 other tests skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg1-16/igt@gem_mmap_wc@write-gtt-read-wc.html * igt@gem_partial_pwrite_pread@writes-after-reads: - shard-rkl: NOTRUN -> [SKIP][93] ([i915#3282]) +4 other tests skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-2/igt@gem_partial_pwrite_pread@writes-after-reads.html * igt@gem_pread@exhaustion: - shard-glk: NOTRUN -> [WARN][94] ([i915#2658]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-glk2/igt@gem_pread@exhaustion.html * igt@gem_pwrite@basic-exhaustion: - shard-glk: NOTRUN -> [WARN][95] ([i915#14702] / [i915#2658]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-glk1/igt@gem_pwrite@basic-exhaustion.html - shard-dg1: NOTRUN -> [SKIP][96] ([i915#3282]) +1 other test skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg1-18/igt@gem_pwrite@basic-exhaustion.html - shard-snb: NOTRUN -> [WARN][97] ([i915#2658]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-snb5/igt@gem_pwrite@basic-exhaustion.html - shard-tglu: NOTRUN -> [WARN][98] ([i915#2658]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-tglu-10/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@verify-pxp-stale-buf-execution: - shard-dg1: NOTRUN -> [SKIP][99] ([i915#4270]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg1-15/igt@gem_pxp@verify-pxp-stale-buf-execution.html * igt@gem_pxp@verify-pxp-stale-buf-optout-execution: - shard-dg2: NOTRUN -> [SKIP][100] ([i915#4270]) +1 other test skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-7/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html * igt@gem_readwrite@beyond-eob: - shard-dg2: NOTRUN -> [SKIP][101] ([i915#3282]) +4 other tests skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-6/igt@gem_readwrite@beyond-eob.html * igt@gem_readwrite@read-bad-handle: - shard-mtlp: NOTRUN -> [SKIP][102] ([i915#3282]) +1 other test skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-mtlp-5/igt@gem_readwrite@read-bad-handle.html * igt@gem_render_copy@linear-to-vebox-y-tiled: - shard-mtlp: NOTRUN -> [SKIP][103] ([i915#8428]) +1 other test skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-mtlp-5/igt@gem_render_copy@linear-to-vebox-y-tiled.html * igt@gem_render_copy@yf-tiled-to-vebox-y-tiled: - shard-dg2: NOTRUN -> [SKIP][104] ([i915#5190] / [i915#8428]) +4 other tests skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-7/igt@gem_render_copy@yf-tiled-to-vebox-y-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-rkl: NOTRUN -> [SKIP][105] ([i915#8411]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-8/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html - shard-dg1: NOTRUN -> [SKIP][106] ([i915#4079]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg1-17/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_userptr_blits@readonly-pwrite-unsync: - shard-rkl: NOTRUN -> [SKIP][107] ([i915#3297]) +1 other test skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-3/igt@gem_userptr_blits@readonly-pwrite-unsync.html * igt@gem_userptr_blits@unsync-overlap: - shard-tglu-1: NOTRUN -> [SKIP][108] ([i915#3297]) +1 other test skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-tglu-1/igt@gem_userptr_blits@unsync-overlap.html * igt@gem_workarounds@suspend-resume: - shard-rkl: [PASS][109] -> [INCOMPLETE][110] ([i915#13356]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-rkl-7/igt@gem_workarounds@suspend-resume.html [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-6/igt@gem_workarounds@suspend-resume.html * igt@gen9_exec_parse@bb-large: - shard-tglu: NOTRUN -> [SKIP][111] ([i915#2527] / [i915#2856]) +2 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-tglu-8/igt@gen9_exec_parse@bb-large.html * igt@gen9_exec_parse@bb-start-cmd: - shard-mtlp: NOTRUN -> [SKIP][112] ([i915#2856]) +2 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-mtlp-4/igt@gen9_exec_parse@bb-start-cmd.html * igt@gen9_exec_parse@bb-start-param: - shard-dg2: NOTRUN -> [SKIP][113] ([i915#2856]) +2 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-1/igt@gen9_exec_parse@bb-start-param.html - shard-rkl: NOTRUN -> [SKIP][114] ([i915#2527]) +3 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-4/igt@gen9_exec_parse@bb-start-param.html - shard-dg1: NOTRUN -> [SKIP][115] ([i915#2527]) +1 other test skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg1-12/igt@gen9_exec_parse@bb-start-param.html * igt@gen9_exec_parse@valid-registers: - shard-tglu-1: NOTRUN -> [SKIP][116] ([i915#2527] / [i915#2856]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-tglu-1/igt@gen9_exec_parse@valid-registers.html * igt@i915_drm_fdinfo@busy-idle@bcs0: - shard-dg1: NOTRUN -> [SKIP][117] ([i915#14073]) +5 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg1-12/igt@i915_drm_fdinfo@busy-idle@bcs0.html * igt@i915_drm_fdinfo@busy-idle@rcs0: - shard-mtlp: NOTRUN -> [SKIP][118] ([i915#14073]) +6 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-mtlp-3/igt@i915_drm_fdinfo@busy-idle@rcs0.html * igt@i915_drm_fdinfo@busy-idle@vecs0: - shard-dg2: NOTRUN -> [SKIP][119] ([i915#14073]) +7 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-1/igt@i915_drm_fdinfo@busy-idle@vecs0.html * igt@i915_drm_fdinfo@virtual-busy: - shard-dg2: NOTRUN -> [SKIP][120] ([i915#14118]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-7/igt@i915_drm_fdinfo@virtual-busy.html - shard-mtlp: NOTRUN -> [SKIP][121] ([i915#14118]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-mtlp-7/igt@i915_drm_fdinfo@virtual-busy.html * igt@i915_drm_fdinfo@virtual-busy-idle-all: - shard-dg1: NOTRUN -> [SKIP][122] ([i915#14118]) +1 other test skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg1-19/igt@i915_drm_fdinfo@virtual-busy-idle-all.html * igt@i915_module_load@fault-injection@__uc_init: - shard-rkl: NOTRUN -> [SKIP][123] ([i915#15479]) +4 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-3/igt@i915_module_load@fault-injection@__uc_init.html * igt@i915_module_load@fault-injection@intel_connector_register: - shard-rkl: NOTRUN -> [ABORT][124] ([i915#15342]) +1 other test abort [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-3/igt@i915_module_load@fault-injection@intel_connector_register.html - shard-glk: NOTRUN -> [ABORT][125] ([i915#15342]) +1 other test abort [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-glk2/igt@i915_module_load@fault-injection@intel_connector_register.html * igt@i915_pm_freq_api@freq-reset: - shard-tglu-1: NOTRUN -> [SKIP][126] ([i915#8399]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-tglu-1/igt@i915_pm_freq_api@freq-reset.html * igt@i915_pm_freq_api@freq-suspend: - shard-rkl: NOTRUN -> [SKIP][127] ([i915#8399]) +1 other test skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-5/igt@i915_pm_freq_api@freq-suspend.html - shard-tglu: NOTRUN -> [SKIP][128] ([i915#8399]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-tglu-2/igt@i915_pm_freq_api@freq-suspend.html * igt@i915_pm_freq_api@freq-suspend@gt0: - shard-dg2: NOTRUN -> [INCOMPLETE][129] ([i915#13356] / [i915#13820]) +1 other test incomplete [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-5/igt@i915_pm_freq_api@freq-suspend@gt0.html * igt@i915_pm_rc6_residency@media-rc6-accuracy: - shard-rkl: NOTRUN -> [SKIP][130] ([i915#16080] / [i915#16166]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-7/igt@i915_pm_rc6_residency@media-rc6-accuracy.html * igt@i915_pm_rc6_residency@rc6-fence: - shard-tglu-1: NOTRUN -> [WARN][131] ([i915#13790] / [i915#2681]) +1 other test warn [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-tglu-1/igt@i915_pm_rc6_residency@rc6-fence.html * igt@i915_pm_rc6_residency@rc6-idle: - shard-tglu: NOTRUN -> [SKIP][132] ([i915#14498]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-tglu-9/igt@i915_pm_rc6_residency@rc6-idle.html - shard-rkl: NOTRUN -> [SKIP][133] ([i915#14498]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-1/igt@i915_pm_rc6_residency@rc6-idle.html * igt@i915_pm_sseu@full-enable: - shard-tglu: NOTRUN -> [SKIP][134] ([i915#4387]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-tglu-6/igt@i915_pm_sseu@full-enable.html * igt@i915_query@query-topology-unsupported: - shard-rkl: NOTRUN -> [SKIP][135] ([i915#16079]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-4/igt@i915_query@query-topology-unsupported.html * igt@i915_selftest@live: - shard-dg1: [PASS][136] -> [ABORT][137] ([i915#16436]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-dg1-17/igt@i915_selftest@live.html [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg1-18/igt@i915_selftest@live.html * igt@i915_selftest@live@gem_contexts: - shard-dg1: [PASS][138] -> [ABORT][139] ([i915#15433]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-dg1-17/igt@i915_selftest@live@gem_contexts.html [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg1-18/igt@i915_selftest@live@gem_contexts.html * igt@i915_suspend@fence-restore-tiled2untiled: - shard-glk10: NOTRUN -> [INCOMPLETE][140] ([i915#16182] / [i915#4817]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-glk10/igt@i915_suspend@fence-restore-tiled2untiled.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-tglu: NOTRUN -> [SKIP][141] ([i915#1769] / [i915#3555]) +1 other test skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-tglu-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-glk: NOTRUN -> [SKIP][142] ([i915#1769]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-glk2/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html - shard-rkl: NOTRUN -> [SKIP][143] ([i915#1769] / [i915#3555]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html - shard-dg1: NOTRUN -> [SKIP][144] ([i915#1769] / [i915#3555]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg1-15/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html - shard-snb: NOTRUN -> [SKIP][145] ([i915#1769]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-snb4/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-32bpp-rotate-180: - shard-tglu: NOTRUN -> [SKIP][146] ([i915#5286]) +3 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-tglu-3/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html * igt@kms_big_fb@4-tiled-64bpp-rotate-180: - shard-mtlp: [PASS][147] -> [FAIL][148] ([i915#15733] / [i915#5138]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-mtlp-1/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-mtlp-2/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-rkl: NOTRUN -> [SKIP][149] ([i915#5286]) +5 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html - shard-tglu-1: NOTRUN -> [SKIP][150] ([i915#5286]) +2 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html - shard-dg1: NOTRUN -> [SKIP][151] ([i915#4538] / [i915#5286]) +2 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg1-15/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@linear-32bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][152] ([i915#3638]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-8/igt@kms_big_fb@linear-32bpp-rotate-270.html - shard-dg1: NOTRUN -> [SKIP][153] ([i915#3638]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg1-13/igt@kms_big_fb@linear-32bpp-rotate-270.html * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip: - shard-tglu: NOTRUN -> [SKIP][154] ([i915#3828]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-tglu-10/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip: - shard-tglu-1: NOTRUN -> [SKIP][155] ([i915#3828]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-tglu-1/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@y-tiled-8bpp-rotate-180: - shard-dg2: NOTRUN -> [SKIP][156] ([i915#4538] / [i915#5190]) +8 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-7/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][157] ([i915#4538]) +1 other test skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg1-13/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][158] ([i915#5190]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-10/igt@kms_big_fb@yf-tiled-64bpp-rotate-270.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][159] ([i915#10307] / [i915#10434] / [i915#6095]) +4 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-4/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-1: - shard-glk10: NOTRUN -> [SKIP][160] +53 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-glk10/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-1.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][161] ([i915#6095]) +169 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg1-16/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][162] ([i915#6095]) +57 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-1/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2: - shard-glk: NOTRUN -> [SKIP][163] +622 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-glk9/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-tglu-1: NOTRUN -> [SKIP][164] ([i915#12313]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-tglu-1/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs: - shard-rkl: NOTRUN -> [SKIP][165] ([i915#12313]) +1 other test skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][166] ([i915#10307] / [i915#6095]) +65 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][167] ([i915#6095]) +59 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-tglu-9/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][168] ([i915#14098] / [i915#6095]) +43 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-1/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][169] ([i915#12805]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-4/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html - shard-rkl: NOTRUN -> [SKIP][170] ([i915#12805]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-2/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html - shard-tglu: NOTRUN -> [SKIP][171] ([i915#12805]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-tglu-6/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html - shard-mtlp: NOTRUN -> [SKIP][172] ([i915#12805]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-mtlp-5/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs: - shard-glk: NOTRUN -> [INCOMPLETE][173] ([i915#14694] / [i915#15582]) +1 other test incomplete [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-glk1/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][174] ([i915#6095]) +14 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-mtlp-4/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-c-edp-1.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][175] ([i915#6095]) +8 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-5/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-3.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1: - shard-glk10: NOTRUN -> [INCOMPLETE][176] ([i915#15582]) +1 other test incomplete [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-glk10/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-dg1: NOTRUN -> [SKIP][177] ([i915#12313]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg1-12/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html - shard-tglu: NOTRUN -> [SKIP][178] ([i915#12313]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-tglu-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html - shard-mtlp: NOTRUN -> [SKIP][179] ([i915#12313]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-mtlp-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html - shard-dg2: NOTRUN -> [SKIP][180] ([i915#12313]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][181] ([i915#6095]) +34 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-tglu-1/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-1.html * igt@kms_cdclk@plane-scaling: - shard-tglu-1: NOTRUN -> [SKIP][182] ([i915#3742]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-tglu-1/igt@kms_cdclk@plane-scaling.html * igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][183] ([i915#13783]) +4 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-5/igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3.html * igt@kms_chamelium_audio@hdmi-audio-after-suspend: - shard-tglu-1: NOTRUN -> [SKIP][184] ([i915#11151]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-tglu-1/igt@kms_chamelium_audio@hdmi-audio-after-suspend.html * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k: - shard-rkl: NOTRUN -> [SKIP][185] ([i915#11151] / [i915#7828]) +7 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-7/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - shard-tglu-1: NOTRUN -> [SKIP][186] ([i915#11151] / [i915#7828]) +3 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-tglu-1/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - shard-dg1: NOTRUN -> [SKIP][187] ([i915#11151] / [i915#7828]) +5 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg1-16/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html * igt@kms_chamelium_frames@hdmi-crc-fast: - shard-dg2: NOTRUN -> [SKIP][188] ([i915#11151] / [i915#7828]) +5 other tests skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-10/igt@kms_chamelium_frames@hdmi-crc-fast.html * igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats: - shard-tglu: NOTRUN -> [SKIP][189] ([i915#11151] / [i915#7828]) +5 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-tglu-4/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html * igt@kms_chamelium_hpd@hdmi-hpd: - shard-mtlp: NOTRUN -> [SKIP][190] ([i915#11151] / [i915#7828]) +3 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-mtlp-6/igt@kms_chamelium_hpd@hdmi-hpd.html * igt@kms_color@ctm-max: - shard-dg2: NOTRUN -> [SKIP][191] ([i915#12655]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-10/igt@kms_color@ctm-max.html * igt@kms_color@degamma: - shard-dg2: [PASS][192] -> [SKIP][193] ([i915#12655]) +1 other test skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-dg2-7/igt@kms_color@degamma.html [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-10/igt@kms_color@degamma.html * igt@kms_content_protection@dp-mst-type-0-hdcp14: - shard-dg2: NOTRUN -> [SKIP][194] ([i915#15330]) +1 other test skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-4/igt@kms_content_protection@dp-mst-type-0-hdcp14.html * igt@kms_content_protection@dp-mst-type-0-suspend-resume: - shard-mtlp: NOTRUN -> [SKIP][195] ([i915#15330]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-mtlp-2/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html - shard-rkl: NOTRUN -> [SKIP][196] ([i915#15330]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-7/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html - shard-tglu-1: NOTRUN -> [SKIP][197] ([i915#15330]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-tglu-1/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html - shard-dg1: NOTRUN -> [SKIP][198] ([i915#15330]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg1-16/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html * igt@kms_content_protection@legacy: - shard-rkl: NOTRUN -> [SKIP][199] ([i915#15865]) +2 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-5/igt@kms_content_protection@legacy.html * igt@kms_content_protection@lic-type-0: - shard-tglu-1: NOTRUN -> [SKIP][200] ([i915#15865]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-tglu-1/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@mei-interface: - shard-tglu: NOTRUN -> [SKIP][201] ([i915#15865]) +1 other test skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-tglu-4/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@uevent: - shard-dg2: NOTRUN -> [SKIP][202] ([i915#15865]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-1/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-offscreen-32x32: - shard-tglu-1: NOTRUN -> [SKIP][203] ([i915#3555]) +2 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-tglu-1/igt@kms_cursor_crc@cursor-offscreen-32x32.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-dg1: NOTRUN -> [SKIP][204] ([i915#13049]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg1-15/igt@kms_cursor_crc@cursor-offscreen-512x512.html - shard-tglu: NOTRUN -> [SKIP][205] ([i915#13049]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-tglu-4/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-mtlp: NOTRUN -> [SKIP][206] ([i915#13049]) +1 other test skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-mtlp-6/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-tglu-1: NOTRUN -> [SKIP][207] ([i915#13049]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1: - shard-rkl: [PASS][208] -> [FAIL][209] ([i915#13566]) +1 other test fail [208]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-rkl-2/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1.html [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-8/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1.html - shard-tglu: [PASS][210] -> [FAIL][211] ([i915#13566]) +3 other tests fail [210]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-tglu-2/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1.html [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-tglu-8/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-rkl: NOTRUN -> [SKIP][212] ([i915#13049]) +2 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-4/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-random-64x21: - shard-rkl: NOTRUN -> [FAIL][213] ([i915#13566]) +1 other test fail [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-7/igt@kms_cursor_crc@cursor-random-64x21.html - shard-tglu: NOTRUN -> [FAIL][214] ([i915#13566]) +1 other test fail [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-tglu-3/igt@kms_cursor_crc@cursor-random-64x21.html - shard-mtlp: NOTRUN -> [SKIP][215] ([i915#8814]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-mtlp-2/igt@kms_cursor_crc@cursor-random-64x21.html * igt@kms_cursor_crc@cursor-rapid-movement-32x10: - shard-dg1: NOTRUN -> [SKIP][216] ([i915#3555]) +1 other test skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg1-19/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html - shard-tglu: NOTRUN -> [SKIP][217] ([i915#3555]) +1 other test skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-tglu-9/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html - shard-mtlp: NOTRUN -> [SKIP][218] ([i915#3555] / [i915#8814]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-mtlp-7/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-rkl: NOTRUN -> [SKIP][219] ([i915#3555]) +5 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1: - shard-tglu-1: NOTRUN -> [FAIL][220] ([i915#13566]) +1 other test fail [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-tglu-1/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html * igt@kms_cursor_crc@cursor-sliding-max-size: - shard-dg2: NOTRUN -> [SKIP][221] ([i915#3555]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-7/igt@kms_cursor_crc@cursor-sliding-max-size.html * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic: - shard-mtlp: NOTRUN -> [SKIP][222] ([i915#9809]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-mtlp-3/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html - shard-dg2: NOTRUN -> [SKIP][223] ([i915#13046] / [i915#5354]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-1/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-tglu-1: NOTRUN -> [SKIP][224] ([i915#4103]) +1 other test skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-tglu-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-dg2: NOTRUN -> [SKIP][225] ([i915#4103]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions: - shard-dg1: [PASS][226] -> [ABORT][227] ([i915#13562]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-dg1-12/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg1-12/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy: - shard-rkl: NOTRUN -> [SKIP][228] +77 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-1/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-rkl: NOTRUN -> [SKIP][229] ([i915#4103]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html - shard-dg1: NOTRUN -> [SKIP][230] ([i915#4103]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg1-15/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html - shard-tglu: NOTRUN -> [SKIP][231] ([i915#4103]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-tglu-9/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html - shard-mtlp: NOTRUN -> [SKIP][232] ([i915#16119] / [i915#4213]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-mtlp-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-rkl: NOTRUN -> [SKIP][233] ([i915#9723]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-7/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-tglu-1: NOTRUN -> [SKIP][234] ([i915#9723]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-tglu-1/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_dp_linktrain_fallback@dsc-fallback: - shard-tglu: NOTRUN -> [SKIP][235] ([i915#13707]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-tglu-4/igt@kms_dp_linktrain_fallback@dsc-fallback.html * igt@kms_dsc@dsc-fractional-bpp-bigjoiner: - shard-tglu-1: NOTRUN -> [SKIP][236] ([i915#16361]) +2 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-tglu-1/igt@kms_dsc@dsc-fractional-bpp-bigjoiner.html * igt@kms_dsc@dsc-fractional-bpp-ultrajoiner: - shard-dg2: NOTRUN -> [SKIP][237] ([i915#16361]) +1 other test skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-5/igt@kms_dsc@dsc-fractional-bpp-ultrajoiner.html * igt@kms_dsc@dsc-with-bpc: - shard-rkl: NOTRUN -> [SKIP][238] ([i915#16361]) +1 other test skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-4/igt@kms_dsc@dsc-with-bpc.html - shard-dg1: NOTRUN -> [SKIP][239] ([i915#16361]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg1-12/igt@kms_dsc@dsc-with-bpc.html * igt@kms_fbcon_fbt@psr-suspend: - shard-tglu-1: NOTRUN -> [SKIP][240] ([i915#16680]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-tglu-1/igt@kms_fbcon_fbt@psr-suspend.html - shard-dg2: NOTRUN -> [SKIP][241] ([i915#16680]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-5/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@chamelium: - shard-tglu-1: NOTRUN -> [SKIP][242] ([i915#2065]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-tglu-1/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-3x: - shard-dg2: NOTRUN -> [SKIP][243] ([i915#16081]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-8/igt@kms_feature_discovery@display-3x.html * igt@kms_feature_discovery@dp-mst: - shard-dg2: NOTRUN -> [SKIP][244] ([i915#16599]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-4/igt@kms_feature_discovery@dp-mst.html - shard-rkl: NOTRUN -> [SKIP][245] ([i915#16599]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-7/igt@kms_feature_discovery@dp-mst.html - shard-tglu-1: NOTRUN -> [SKIP][246] ([i915#16599]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-tglu-1/igt@kms_feature_discovery@dp-mst.html - shard-dg1: NOTRUN -> [SKIP][247] ([i915#16599]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg1-16/igt@kms_feature_discovery@dp-mst.html - shard-mtlp: NOTRUN -> [SKIP][248] ([i915#16599]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-mtlp-2/igt@kms_feature_discovery@dp-mst.html * igt@kms_feature_discovery@dsc: - shard-tglu: NOTRUN -> [SKIP][249] ([i915#16600]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-tglu-8/igt@kms_feature_discovery@dsc.html * igt@kms_feature_discovery@hdr: - shard-rkl: NOTRUN -> [SKIP][250] ([i915#16600]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-8/igt@kms_feature_discovery@hdr.html * igt@kms_feature_discovery@psr1: - shard-tglu-1: NOTRUN -> [SKIP][251] ([i915#658]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-tglu-1/igt@kms_feature_discovery@psr1.html * igt@kms_fence_pin_leak: - shard-dg2: NOTRUN -> [SKIP][252] ([i915#4881]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-4/igt@kms_fence_pin_leak.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-mtlp: NOTRUN -> [SKIP][253] ([i915#3637] / [i915#9934]) +4 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-mtlp-3/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@2x-flip-vs-panning-vs-hang: - shard-dg2: NOTRUN -> [SKIP][254] ([i915#9934]) +4 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-7/igt@kms_flip@2x-flip-vs-panning-vs-hang.html - shard-dg1: NOTRUN -> [SKIP][255] ([i915#9934]) +3 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg1-19/igt@kms_flip@2x-flip-vs-panning-vs-hang.html - shard-tglu: NOTRUN -> [SKIP][256] ([i915#3637] / [i915#9934]) +4 other tests skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-tglu-5/igt@kms_flip@2x-flip-vs-panning-vs-hang.html * igt@kms_flip@2x-flip-vs-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][257] ([i915#12745] / [i915#4839]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-glk9/igt@kms_flip@2x-flip-vs-suspend.html * igt@kms_flip@2x-flip-vs-suspend@ac-hdmi-a1-hdmi-a2: - shard-glk: NOTRUN -> [INCOMPLETE][258] ([i915#12745]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-glk9/igt@kms_flip@2x-flip-vs-suspend@ac-hdmi-a1-hdmi-a2.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-rkl: NOTRUN -> [SKIP][259] ([i915#9934]) +5 other tests skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-7/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-tglu-1: NOTRUN -> [SKIP][260] ([i915#3637] / [i915#9934]) +8 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-tglu-1/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt@kms_flip@dpms-off-confusion-interruptible: - shard-dg2: [PASS][261] -> [SKIP][262] ([i915#5354]) +12 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-dg2-8/igt@kms_flip@dpms-off-confusion-interruptible.html [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-10/igt@kms_flip@dpms-off-confusion-interruptible.html * igt@kms_flip@flip-vs-blocking-wf-vblank: - shard-snb: [PASS][263] -> [FAIL][264] ([i915#14600]) +1 other test fail [263]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-snb5/igt@kms_flip@flip-vs-blocking-wf-vblank.html [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-snb5/igt@kms_flip@flip-vs-blocking-wf-vblank.html * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-dg2: [PASS][265] -> [FAIL][266] ([i915#13027]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-dg2-4/igt@kms_flip@flip-vs-expired-vblank-interruptible.html [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-1/igt@kms_flip@flip-vs-expired-vblank-interruptible.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a3: - shard-dg2: NOTRUN -> [FAIL][267] ([i915#13027]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-1/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a3.html * igt@kms_flip@flip-vs-fences: - shard-mtlp: NOTRUN -> [SKIP][268] ([i915#8381]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-mtlp-3/igt@kms_flip@flip-vs-fences.html - shard-dg2: NOTRUN -> [SKIP][269] ([i915#8381]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-1/igt@kms_flip@flip-vs-fences.html - shard-dg1: NOTRUN -> [SKIP][270] ([i915#8381]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg1-12/igt@kms_flip@flip-vs-fences.html * igt@kms_flip@flip-vs-suspend: - shard-rkl: [PASS][271] -> [INCOMPLETE][272] ([i915#16276] / [i915#6113]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-rkl-2/igt@kms_flip@flip-vs-suspend.html [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-3/igt@kms_flip@flip-vs-suspend.html - shard-glk: NOTRUN -> [INCOMPLETE][273] ([i915#12745] / [i915#4839] / [i915#6113]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-glk1/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip@flip-vs-suspend@a-hdmi-a1: - shard-glk: NOTRUN -> [INCOMPLETE][274] ([i915#12745] / [i915#6113]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-glk1/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html * igt@kms_flip@flip-vs-suspend@a-hdmi-a2: - shard-rkl: NOTRUN -> [INCOMPLETE][275] ([i915#16276] / [i915#6113]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-3/igt@kms_flip@flip-vs-suspend@a-hdmi-a2.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling: - shard-tglu: NOTRUN -> [SKIP][276] ([i915#15643]) +2 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling: - shard-dg2: NOTRUN -> [SKIP][277] ([i915#15643] / [i915#5190]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling: - shard-rkl: NOTRUN -> [SKIP][278] ([i915#14544] / [i915#15643]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][279] ([i915#15643]) +1 other test skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling: - shard-dg1: NOTRUN -> [SKIP][280] ([i915#15643]) +1 other test skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg1-13/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling: - shard-mtlp: NOTRUN -> [SKIP][281] ([i915#3555] / [i915#8810] / [i915#8813]) +1 other test skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: - shard-rkl: NOTRUN -> [SKIP][282] ([i915#15643]) +2 other tests skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][283] ([i915#1825]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt.html - shard-mtlp: NOTRUN -> [SKIP][284] ([i915#15990] / [i915#8708]) +3 other tests skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][285] ([i915#15991] / [i915#5354]) +12 other tests skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt: - shard-tglu: NOTRUN -> [SKIP][286] +87 other tests skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-tglu-10/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt.html - shard-mtlp: NOTRUN -> [SKIP][287] ([i915#15991] / [i915#1825]) +12 other tests skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-mtlp: NOTRUN -> [SKIP][288] ([i915#10055]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-onoff: - shard-rkl: NOTRUN -> [SKIP][289] ([i915#15989]) +13 other tests skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-3/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-onoff.html - shard-dg1: NOTRUN -> [SKIP][290] ([i915#15989]) +5 other tests skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg1-18/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-indfb-plflip-blt: - shard-tglu: NOTRUN -> [SKIP][291] ([i915#15989]) +12 other tests skip [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-tglu-10/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-draw-mmap-gtt: - shard-rkl: [PASS][292] -> [SKIP][293] ([i915#15989]) +10 other tests skip [292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-rkl-1/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-draw-mmap-gtt.html [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-5/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][294] ([i915#15989]) +10 other tests skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-7/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbchdr-rgb565-draw-mmap-gtt: - shard-glk: [PASS][295] -> [SKIP][296] +3 other tests skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-glk8/igt@kms_frontbuffer_tracking@fbchdr-rgb565-draw-mmap-gtt.html [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-glk9/igt@kms_frontbuffer_tracking@fbchdr-rgb565-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbchdr-stridechange: - shard-tglu-1: NOTRUN -> [SKIP][297] ([i915#15989]) +16 other tests skip [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-tglu-1/igt@kms_frontbuffer_tracking@fbchdr-stridechange.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-blt: - shard-tglu: NOTRUN -> [SKIP][298] ([i915#15102]) +32 other tests skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-tglu-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][299] ([i915#15990] / [i915#8708]) +7 other tests skip [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][300] ([i915#5354]) +7 other tests skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-farfromfence-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][301] ([i915#15102] / [i915#3023]) +16 other tests skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-farfromfence-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-tglu-1: NOTRUN -> [SKIP][302] ([i915#5439]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-shrfb-draw-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][303] ([i915#15102]) +14 other tests skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-blt: - shard-tglu-1: NOTRUN -> [SKIP][304] ([i915#15102]) +24 other tests skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-cur-indfb-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][305] ([i915#15990]) +4 other tests skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-cur-indfb-draw-mmap-gtt.html - shard-mtlp: NOTRUN -> [SKIP][306] ([i915#15990]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-shrfb-plflip-blt: - shard-tglu-1: NOTRUN -> [SKIP][307] +78 other tests skip [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-shrfb-plflip-blt.html - shard-dg1: NOTRUN -> [SKIP][308] +34 other tests skip [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-cur-indfb-onoff: - shard-mtlp: NOTRUN -> [SKIP][309] ([i915#15991]) +18 other tests skip [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb101010-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][310] ([i915#15102]) +17 other tests skip [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb101010-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb101010-draw-pwrite: - shard-rkl: NOTRUN -> [SKIP][311] ([i915#14544] / [i915#15102]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb101010-draw-pwrite.html * igt@kms_frontbuffer_tracking@hdr-2p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-rkl: NOTRUN -> [SKIP][312] ([i915#14544]) +4 other tests skip [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-6/igt@kms_frontbuffer_tracking@hdr-2p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@hdr-2p-primscrn-spr-indfb-fullscreen: - shard-dg2: NOTRUN -> [SKIP][313] ([i915#15991]) +15 other tests skip [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-1/igt@kms_frontbuffer_tracking@hdr-2p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][314] ([i915#15104] / [i915#15990]) +1 other test skip [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][315] ([i915#15990] / [i915#8708]) +4 other tests skip [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt: - shard-glk11: NOTRUN -> [SKIP][316] +152 other tests skip [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-glk11/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psrhdr-1p-offscreen-pri-shrfb-draw-mmap-cpu: - shard-mtlp: NOTRUN -> [SKIP][317] ([i915#15989]) +14 other tests skip [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-mtlp-4/igt@kms_frontbuffer_tracking@psrhdr-1p-offscreen-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-pri-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][318] ([i915#15990]) +7 other tests skip [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-7/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-spr-indfb-move: - shard-rkl: NOTRUN -> [SKIP][319] ([i915#15102]) +26 other tests skip [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-1/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-spr-indfb-move.html * igt@kms_hdr@bpc-switch-suspend: - shard-tglu-1: NOTRUN -> [SKIP][320] ([i915#3555] / [i915#8228]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-tglu-1/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_hdr@brightness-with-hdr: - shard-rkl: NOTRUN -> [SKIP][321] ([i915#12713] / [i915#16644]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-4/igt@kms_hdr@brightness-with-hdr.html - shard-dg1: NOTRUN -> [SKIP][322] ([i915#12713]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg1-12/igt@kms_hdr@brightness-with-hdr.html * igt@kms_hdr@invalid-metadata-sizes: - shard-rkl: NOTRUN -> [SKIP][323] ([i915#16644] / [i915#3555] / [i915#8228]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-7/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_invalid_mode@int-max-clock: - shard-dg2: [PASS][324] -> [SKIP][325] ([i915#3555]) +5 other tests skip [324]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-dg2-8/igt@kms_invalid_mode@int-max-clock.html [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-10/igt@kms_invalid_mode@int-max-clock.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-rkl: NOTRUN -> [SKIP][326] ([i915#15459]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-8/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-dg2: NOTRUN -> [SKIP][327] ([i915#15458]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-5/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html - shard-tglu-1: NOTRUN -> [SKIP][328] ([i915#15458]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-tglu-1/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@kms_panel_fitting@legacy: - shard-rkl: NOTRUN -> [SKIP][329] ([i915#6301]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-1/igt@kms_panel_fitting@legacy.html * igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes: - shard-dg2: NOTRUN -> [SKIP][330] +5 other tests skip [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-4/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html * igt@kms_pipe_crc_basic@hang-read-crc: - shard-dg2: [PASS][331] -> [SKIP][332] ([i915#11190]) +2 other tests skip [331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-dg2-3/igt@kms_pipe_crc_basic@hang-read-crc.html [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-10/igt@kms_pipe_crc_basic@hang-read-crc.html * igt@kms_pipe_stress@stress-xrgb8888-4tiled: - shard-rkl: NOTRUN -> [SKIP][333] ([i915#14712]) [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-5/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html * igt@kms_pipe_stress@stress-xrgb8888-untiled: - shard-glk11: NOTRUN -> [DMESG-WARN][334] ([i915#118]) [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-glk11/igt@kms_pipe_stress@stress-xrgb8888-untiled.html * igt@kms_pipe_stress@stress-xrgb8888-yftiled: - shard-tglu: NOTRUN -> [SKIP][335] ([i915#14712]) [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-tglu-7/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html - shard-glk: NOTRUN -> [DMESG-FAIL][336] ([i915#118] / [i915#16396]) [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-glk9/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html * igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping: - shard-tglu: NOTRUN -> [SKIP][337] ([i915#15709]) +4 other tests skip [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-tglu-5/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier@pipe-a-plane-5: - shard-dg2: NOTRUN -> [SKIP][338] ([i915#16386]) +1 other test skip [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-4/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier@pipe-a-plane-5.html * igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping: - shard-rkl: NOTRUN -> [SKIP][339] ([i915#15709]) +3 other tests skip [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-4/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html - shard-mtlp: NOTRUN -> [SKIP][340] ([i915#15709]) +2 other tests skip [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-mtlp-3/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping: - shard-dg2: [PASS][341] -> [SKIP][342] ([i915#8825]) +2 other tests skip [341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-dg2-8/igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping.html [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-10/igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping.html * igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier: - shard-dg2: NOTRUN -> [SKIP][343] ([i915#15709]) +4 other tests skip [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-5/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html - shard-tglu-1: NOTRUN -> [SKIP][344] ([i915#15709]) +2 other tests skip [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-tglu-1/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-b-plane-7: - shard-tglu: NOTRUN -> [SKIP][345] ([i915#16386]) +1 other test skip [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-tglu-7/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-b-plane-7.html * igt@kms_plane@pixel-format-y-tiled-modifier@pipe-b-plane-7: - shard-tglu-1: NOTRUN -> [SKIP][346] ([i915#16386]) +3 other tests skip [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-tglu-1/igt@kms_plane@pixel-format-y-tiled-modifier@pipe-b-plane-7.html * igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping: - shard-dg1: NOTRUN -> [SKIP][347] ([i915#15709]) +1 other test skip [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg1-12/igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping.html * igt@kms_plane@planar-pixel-format-settings@nv12-tile4-src-y: - shard-tglu-1: NOTRUN -> [SKIP][348] ([i915#16112]) [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-tglu-1/igt@kms_plane@planar-pixel-format-settings@nv12-tile4-src-y.html * igt@kms_plane_multiple@2x-tiling-x: - shard-tglu-1: NOTRUN -> [SKIP][349] ([i915#13958]) [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-tglu-1/igt@kms_plane_multiple@2x-tiling-x.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation: - shard-dg2: [PASS][350] -> [SKIP][351] ([i915#9423]) +3 other tests skip [350]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-dg2-5/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation.html [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-10/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a: - shard-dg1: NOTRUN -> [SKIP][352] ([i915#15329]) +9 other tests skip [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg1-12/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html - shard-tglu: NOTRUN -> [SKIP][353] ([i915#15329]) +4 other tests skip [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-tglu-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats: - shard-dg2: [PASS][354] -> [SKIP][355] ([i915#3555] / [i915#9423]) [354]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-dg2-1/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats.html [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-10/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-d: - shard-dg2: [PASS][356] -> [SKIP][357] ([i915#15329]) +8 other tests skip [356]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-dg2-1/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-d.html [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-10/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-d.html * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a: - shard-rkl: NOTRUN -> [SKIP][358] ([i915#15329]) +19 other tests skip [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-2/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25: - shard-mtlp: NOTRUN -> [SKIP][359] ([i915#15329] / [i915#6953]) +1 other test skip [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-mtlp-3/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-b: - shard-mtlp: NOTRUN -> [SKIP][360] ([i915#15329]) +7 other tests skip [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-mtlp-3/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-b.html * igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25: - shard-dg2: [PASS][361] -> [SKIP][362] ([i915#6953] / [i915#9423]) [361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-dg2-4/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-10/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-factor-0-25: - shard-dg2: [PASS][363] -> [SKIP][364] ([i915#3555] / [i915#6953] / [i915#9423]) [363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-dg2-6/igt@kms_plane_scaling@planes-upscale-factor-0-25.html [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-10/igt@kms_plane_scaling@planes-upscale-factor-0-25.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-tglu-1: NOTRUN -> [SKIP][365] ([i915#12343]) [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-tglu-1/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_dc@dc5-pageflip-negative: - shard-tglu: NOTRUN -> [SKIP][366] ([i915#9685]) [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-tglu-6/igt@kms_pm_dc@dc5-pageflip-negative.html * igt@kms_pm_dc@dc6-dpms: - shard-rkl: NOTRUN -> [FAIL][367] ([i915#16479]) [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-2/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_lpsp@screens-disabled: - shard-tglu: NOTRUN -> [SKIP][368] ([i915#8430]) [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-tglu-2/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@dpms-lpsp: - shard-dg2: [PASS][369] -> [SKIP][370] ([i915#15073]) +1 other test skip [369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-dg2-4/igt@kms_pm_rpm@dpms-lpsp.html [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-5/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-dg1: [PASS][371] -> [SKIP][372] ([i915#15073]) +1 other test skip [371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-dg1-13/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg1-15/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-rkl: [PASS][373] -> [SKIP][374] ([i915#15073]) [373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-rkl-4/igt@kms_pm_rpm@dpms-non-lpsp.html [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-8/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@i2c: - shard-dg2: [PASS][375] -> [SKIP][376] [375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-dg2-6/igt@kms_pm_rpm@i2c.html [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-10/igt@kms_pm_rpm@i2c.html * igt@kms_pm_rpm@modeset-lpsp: - shard-dg2: NOTRUN -> [SKIP][377] ([i915#15073]) [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-10/igt@kms_pm_rpm@modeset-lpsp.html - shard-dg1: NOTRUN -> [SKIP][378] ([i915#15073]) [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg1-19/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-tglu-1: NOTRUN -> [SKIP][379] ([i915#15073]) +1 other test skip [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-tglu-1/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@system-suspend-modeset: - shard-glk: NOTRUN -> [INCOMPLETE][380] ([i915#10553]) [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-glk3/igt@kms_pm_rpm@system-suspend-modeset.html * igt@kms_prime@basic-modeset-hybrid: - shard-rkl: NOTRUN -> [SKIP][381] ([i915#6524]) [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-8/igt@kms_prime@basic-modeset-hybrid.html - shard-tglu-1: NOTRUN -> [SKIP][382] ([i915#6524]) [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-tglu-1/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area: - shard-dg2: NOTRUN -> [SKIP][383] ([i915#11520]) +6 other tests skip [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-5/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html - shard-dg1: NOTRUN -> [SKIP][384] ([i915#11520]) +2 other tests skip [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg1-14/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html - shard-snb: NOTRUN -> [SKIP][385] ([i915#11520]) +1 other test skip [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-snb4/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-glk: NOTRUN -> [SKIP][386] ([i915#11520]) +11 other tests skip [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-glk4/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][387] ([i915#9808]) [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-mtlp-8/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-a-edp-1.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][388] ([i915#12316]) +2 other tests skip [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-mtlp-8/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-b-edp-1.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf: - shard-rkl: NOTRUN -> [SKIP][389] ([i915#11520]) +5 other tests skip [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/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-tglu: NOTRUN -> [SKIP][390] ([i915#11520]) +3 other tests skip [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-tglu-10/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf: - shard-glk11: NOTRUN -> [SKIP][391] ([i915#11520]) +1 other test skip [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-glk11/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area: - shard-tglu-1: NOTRUN -> [SKIP][392] ([i915#11520]) +5 other tests skip [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-tglu-1/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_su@page_flip-nv12: - shard-dg2: NOTRUN -> [SKIP][393] ([i915#9683]) [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-4/igt@kms_psr2_su@page_flip-nv12.html - shard-rkl: NOTRUN -> [SKIP][394] ([i915#9683]) [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-7/igt@kms_psr2_su@page_flip-nv12.html - shard-dg1: NOTRUN -> [SKIP][395] ([i915#9683]) [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg1-14/igt@kms_psr2_su@page_flip-nv12.html - shard-tglu: NOTRUN -> [SKIP][396] ([i915#9683]) [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-tglu-10/igt@kms_psr2_su@page_flip-nv12.html - shard-mtlp: NOTRUN -> [SKIP][397] ([i915#4348]) [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-mtlp-2/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-tglu-1: NOTRUN -> [SKIP][398] ([i915#9683]) [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-tglu-1/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-psr-cursor-plane-onoff: - shard-tglu: NOTRUN -> [SKIP][399] ([i915#9732]) +13 other tests skip [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-tglu-3/igt@kms_psr@fbc-psr-cursor-plane-onoff.html * igt@kms_psr@fbc-psr-primary-blt@edp-1: - shard-mtlp: NOTRUN -> [SKIP][400] ([i915#9688]) +4 other tests skip [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-mtlp-2/igt@kms_psr@fbc-psr-primary-blt@edp-1.html * igt@kms_psr@fbc-psr2-basic: - shard-tglu-1: NOTRUN -> [SKIP][401] ([i915#9732]) +14 other tests skip [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-tglu-1/igt@kms_psr@fbc-psr2-basic.html * igt@kms_psr@fbc-psr2-primary-render: - shard-rkl: NOTRUN -> [SKIP][402] ([i915#1072] / [i915#14544] / [i915#9732]) +1 other test skip [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-6/igt@kms_psr@fbc-psr2-primary-render.html * igt@kms_psr@fbc-psr2-sprite-render: - shard-rkl: NOTRUN -> [SKIP][403] ([i915#1072] / [i915#9732]) +17 other tests skip [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-8/igt@kms_psr@fbc-psr2-sprite-render.html * igt@kms_psr@psr2-cursor-blt: - shard-dg2: NOTRUN -> [SKIP][404] ([i915#1072] / [i915#9732]) +11 other tests skip [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-1/igt@kms_psr@psr2-cursor-blt.html * igt@kms_psr@psr2-sprite-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][405] ([i915#1072] / [i915#9732]) +6 other tests skip [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg1-19/igt@kms_psr@psr2-sprite-mmap-gtt.html - shard-mtlp: NOTRUN -> [SKIP][406] ([i915#4077] / [i915#9688]) +1 other test skip [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-mtlp-7/igt@kms_psr@psr2-sprite-mmap-gtt.html * igt@kms_rotation_crc@bad-pixel-format: - shard-snb: NOTRUN -> [SKIP][407] +130 other tests skip [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-snb5/igt@kms_rotation_crc@bad-pixel-format.html - shard-mtlp: NOTRUN -> [SKIP][408] ([i915#12755] / [i915#15867]) +1 other test skip [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-mtlp-6/igt@kms_rotation_crc@bad-pixel-format.html - shard-dg2: NOTRUN -> [SKIP][409] ([i915#12755] / [i915#15867]) [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-8/igt@kms_rotation_crc@bad-pixel-format.html * igt@kms_rotation_crc@multiplane-rotation-cropping-top: - shard-glk10: NOTRUN -> [INCOMPLETE][410] ([i915#15492] / [i915#16184]) [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-glk10/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg2: NOTRUN -> [SKIP][411] ([i915#12755] / [i915#15867] / [i915#5190]) +1 other test skip [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html - shard-rkl: NOTRUN -> [SKIP][412] ([i915#5289]) [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html - shard-dg1: NOTRUN -> [SKIP][413] ([i915#5289]) [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg1-19/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html - shard-tglu: NOTRUN -> [SKIP][414] ([i915#5289]) +1 other test skip [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-tglu-9/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free: - shard-dg2: NOTRUN -> [ABORT][415] ([i915#13179]) +1 other test abort [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-10/igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free.html * igt@kms_setmode@basic@pipe-c-hdmi-a-3: - shard-dg2: [PASS][416] -> [FAIL][417] ([i915#15106]) +1 other test fail [416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-dg2-6/igt@kms_setmode@basic@pipe-c-hdmi-a-3.html [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-7/igt@kms_setmode@basic@pipe-c-hdmi-a-3.html * igt@kms_setmode@invalid-clone-single-crtc: - shard-mtlp: NOTRUN -> [SKIP][418] ([i915#3555] / [i915#8809]) [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-mtlp-4/igt@kms_setmode@invalid-clone-single-crtc.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-tglu: NOTRUN -> [SKIP][419] ([i915#8623]) [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-tglu-4/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vblank@ts-continuation-dpms-suspend: - shard-rkl: [PASS][420] -> [INCOMPLETE][421] ([i915#12276]) +1 other test incomplete [420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-rkl-4/igt@kms_vblank@ts-continuation-dpms-suspend.html [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-4/igt@kms_vblank@ts-continuation-dpms-suspend.html - shard-glk11: NOTRUN -> [INCOMPLETE][422] ([i915#12276]) +1 other test incomplete [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-glk11/igt@kms_vblank@ts-continuation-dpms-suspend.html * igt@kms_vrr@max-min: - shard-tglu: NOTRUN -> [SKIP][423] ([i915#9906]) [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-tglu-10/igt@kms_vrr@max-min.html * igt@perf@gen8-unprivileged-single-ctx-counters: - shard-mtlp: NOTRUN -> [SKIP][424] +7 other tests skip [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-mtlp-6/igt@perf@gen8-unprivileged-single-ctx-counters.html - shard-dg2: NOTRUN -> [SKIP][425] ([i915#2436]) [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-8/igt@perf@gen8-unprivileged-single-ctx-counters.html - shard-rkl: NOTRUN -> [SKIP][426] ([i915#2436]) [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-8/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@perf@per-context-mode-unprivileged: - shard-rkl: NOTRUN -> [SKIP][427] ([i915#2435]) [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-5/igt@perf@per-context-mode-unprivileged.html * igt@perf_pmu@event-wait: - shard-mtlp: NOTRUN -> [SKIP][428] ([i915#8807]) [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-mtlp-2/igt@perf_pmu@event-wait.html * igt@perf_pmu@event-wait@rcs0: - shard-mtlp: NOTRUN -> [SKIP][429] ([i915#3555] / [i915#8807]) [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-mtlp-2/igt@perf_pmu@event-wait@rcs0.html * igt@perf_pmu@module-unload: - shard-rkl: NOTRUN -> [ABORT][430] ([i915#15778]) [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-2/igt@perf_pmu@module-unload.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-tglu-1: NOTRUN -> [SKIP][431] ([i915#8516]) [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-tglu-1/igt@perf_pmu@rc6@other-idle-gt0.html * igt@prime_udl@share-import-addfb: - shard-tglu: NOTRUN -> [SKIP][432] ([i915#16420]) [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-tglu-3/igt@prime_udl@share-import-addfb.html * igt@prime_vgem@basic-read: - shard-rkl: NOTRUN -> [SKIP][433] ([i915#3291] / [i915#3708]) [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-5/igt@prime_vgem@basic-read.html * igt@prime_vgem@coherency-gtt: - shard-dg2: NOTRUN -> [SKIP][434] ([i915#3708] / [i915#4077]) [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-10/igt@prime_vgem@coherency-gtt.html * igt@sriov_basic@enable-vfs-autoprobe-on: - shard-tglu: NOTRUN -> [SKIP][435] ([i915#16066]) +9 other tests skip [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-tglu-2/igt@sriov_basic@enable-vfs-autoprobe-on.html * igt@sriov_basic@enable-vfs-bind-unbind-each: - shard-dg2: NOTRUN -> [SKIP][436] ([i915#9917]) [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-5/igt@sriov_basic@enable-vfs-bind-unbind-each.html * igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-2: - shard-tglu-1: NOTRUN -> [SKIP][437] ([i915#16066]) +8 other tests skip [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-tglu-1/igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-2.html #### Possible fixes #### * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0: - shard-dg2: [INCOMPLETE][438] ([i915#13356] / [i915#16348]) -> [PASS][439] [438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-dg2-7/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html [439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-1/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html * igt@gem_exec_big@single: - shard-mtlp: [FAIL][440] ([i915#15871]) -> [PASS][441] [440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-mtlp-3/igt@gem_exec_big@single.html [441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-mtlp-1/igt@gem_exec_big@single.html * igt@gem_exec_suspend@basic-s3: - shard-glk: [INCOMPLETE][442] ([i915#13196] / [i915#13356]) -> [PASS][443] +1 other test pass [442]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-glk3/igt@gem_exec_suspend@basic-s3.html [443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-glk4/igt@gem_exec_suspend@basic-s3.html - shard-rkl: [INCOMPLETE][444] ([i915#13356]) -> [PASS][445] +1 other test pass [444]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-rkl-4/igt@gem_exec_suspend@basic-s3.html [445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-7/igt@gem_exec_suspend@basic-s3.html * igt@gem_linear_blits@normal: - shard-dg1: [FAIL][446] ([i915#15391]) -> [PASS][447] [446]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-dg1-14/igt@gem_linear_blits@normal.html [447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg1-15/igt@gem_linear_blits@normal.html * igt@gem_mmap_offset@clear@smem0: - shard-tglu: [INCOMPLETE][448] ([i915#16108]) -> [PASS][449] +1 other test pass [448]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-tglu-8/igt@gem_mmap_offset@clear@smem0.html [449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-tglu-10/igt@gem_mmap_offset@clear@smem0.html - shard-mtlp: [INCOMPLETE][450] ([i915#16021] / [i915#16202]) -> [PASS][451] +1 other test pass [450]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-mtlp-3/igt@gem_mmap_offset@clear@smem0.html [451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-mtlp-1/igt@gem_mmap_offset@clear@smem0.html * igt@gem_softpin@noreloc-s3: - shard-dg2: [INCOMPLETE][452] ([i915#13809]) -> [PASS][453] [452]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-dg2-1/igt@gem_softpin@noreloc-s3.html [453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-8/igt@gem_softpin@noreloc-s3.html * igt@kms_async_flips@async-flip-suspend-resume: - shard-rkl: [INCOMPLETE][454] ([i915#12761]) -> [PASS][455] [454]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-rkl-6/igt@kms_async_flips@async-flip-suspend-resume.html [455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-5/igt@kms_async_flips@async-flip-suspend-resume.html * igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1: - shard-tglu: [FAIL][456] ([i915#15662]) -> [PASS][457] +1 other test pass [456]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-tglu-5/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1.html [457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-tglu-8/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc: - shard-rkl: [INCOMPLETE][458] ([i915#14694] / [i915#15582]) -> [PASS][459] [458]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html [459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-8/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html * igt@kms_color@deep-color: - shard-rkl: [SKIP][460] ([i915#12655] / [i915#3555]) -> [PASS][461] [460]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-rkl-4/igt@kms_color@deep-color.html [461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-1/igt@kms_color@deep-color.html * igt@kms_cursor_crc@cursor-onscreen-128x42: - shard-rkl: [FAIL][462] ([i915#13566]) -> [PASS][463] +2 other tests pass [462]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-rkl-7/igt@kms_cursor_crc@cursor-onscreen-128x42.html [463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-8/igt@kms_cursor_crc@cursor-onscreen-128x42.html * igt@kms_cursor_crc@cursor-onscreen-64x21@pipe-a-hdmi-a-1: - shard-tglu: [FAIL][464] ([i915#13566]) -> [PASS][465] +1 other test pass [464]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-tglu-5/igt@kms_cursor_crc@cursor-onscreen-64x21@pipe-a-hdmi-a-1.html [465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-tglu-4/igt@kms_cursor_crc@cursor-onscreen-64x21@pipe-a-hdmi-a-1.html * igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions: - shard-rkl: [FAIL][466] ([i915#15967]) -> [PASS][467] [466]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-rkl-7/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html [467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-2/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html * igt@kms_cursor_legacy@flip-vs-cursor-crc-atomic: - shard-dg1: [FAIL][468] ([i915#15999]) -> [PASS][469] [468]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-dg1-17/igt@kms_cursor_legacy@flip-vs-cursor-crc-atomic.html [469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg1-14/igt@kms_cursor_legacy@flip-vs-cursor-crc-atomic.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt: - shard-dg1: [DMESG-WARN][470] ([i915#4423]) -> [PASS][471] [470]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-dg1-16/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html [471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg1-19/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html * igt@kms_frontbuffer_tracking@hdr-2p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-glk: [SKIP][472] -> [PASS][473] +4 other tests pass [472]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-glk1/igt@kms_frontbuffer_tracking@hdr-2p-primscrn-pri-shrfb-draw-mmap-gtt.html [473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-glk8/igt@kms_frontbuffer_tracking@hdr-2p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@hdr-rgb101010-draw-pwrite: - shard-rkl: [SKIP][474] ([i915#15989]) -> [PASS][475] +10 other tests pass [474]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-rkl-5/igt@kms_frontbuffer_tracking@hdr-rgb101010-draw-pwrite.html [475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-6/igt@kms_frontbuffer_tracking@hdr-rgb101010-draw-pwrite.html * igt@kms_hdmi_inject@inject-4k: - shard-mtlp: [SKIP][476] ([i915#15725]) -> [PASS][477] [476]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-mtlp-1/igt@kms_hdmi_inject@inject-4k.html [477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-mtlp-4/igt@kms_hdmi_inject@inject-4k.html * igt@kms_pm_rpm@dpms-lpsp: - shard-rkl: [SKIP][478] ([i915#15073]) -> [PASS][479] +1 other test pass [478]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-rkl-1/igt@kms_pm_rpm@dpms-lpsp.html [479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-5/igt@kms_pm_rpm@dpms-lpsp.html #### Warnings #### * igt@api_intel_bb@object-reloc-purge-cache: - shard-rkl: [SKIP][480] ([i915#8411]) -> [SKIP][481] ([i915#14544] / [i915#8411]) [480]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-rkl-5/igt@api_intel_bb@object-reloc-purge-cache.html [481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-6/igt@api_intel_bb@object-reloc-purge-cache.html * igt@gem_basic@multigpu-create-close: - shard-rkl: [SKIP][482] ([i915#14544] / [i915#7697]) -> [SKIP][483] ([i915#7697]) [482]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-rkl-6/igt@gem_basic@multigpu-create-close.html [483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-1/igt@gem_basic@multigpu-create-close.html * igt@gem_exec_balancer@parallel-ordering: - shard-rkl: [SKIP][484] ([i915#4525]) -> [SKIP][485] ([i915#14544] / [i915#4525]) [484]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-rkl-2/igt@gem_exec_balancer@parallel-ordering.html [485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-6/igt@gem_exec_balancer@parallel-ordering.html * igt@gem_exec_reloc@basic-gtt-read: - shard-rkl: [SKIP][486] ([i915#14544] / [i915#3281]) -> [SKIP][487] ([i915#3281]) +1 other test skip [486]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-read.html [487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-5/igt@gem_exec_reloc@basic-gtt-read.html * igt@gem_exec_schedule@semaphore-power: - shard-rkl: [SKIP][488] ([i915#7276]) -> [SKIP][489] ([i915#14544] / [i915#7276]) [488]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-rkl-3/igt@gem_exec_schedule@semaphore-power.html [489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-6/igt@gem_exec_schedule@semaphore-power.html * igt@gem_huc_copy@huc-copy: - shard-rkl: [SKIP][490] ([i915#2190]) -> [SKIP][491] ([i915#14544] / [i915#2190]) [490]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-rkl-3/igt@gem_huc_copy@huc-copy.html [491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-6/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@verify-random-ccs: - shard-rkl: [SKIP][492] ([i915#14544] / [i915#4613]) -> [SKIP][493] ([i915#4613]) [492]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-rkl-6/igt@gem_lmem_swapping@verify-random-ccs.html [493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-5/igt@gem_lmem_swapping@verify-random-ccs.html * igt@gem_partial_pwrite_pread@write: - shard-rkl: [SKIP][494] ([i915#3282]) -> [SKIP][495] ([i915#14544] / [i915#3282]) [494]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-rkl-7/igt@gem_partial_pwrite_pread@write.html [495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-6/igt@gem_partial_pwrite_pread@write.html * igt@gem_pwrite@basic-random: - shard-rkl: [SKIP][496] ([i915#14544] / [i915#3282]) -> [SKIP][497] ([i915#3282]) +1 other test skip [496]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-rkl-6/igt@gem_pwrite@basic-random.html [497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-1/igt@gem_pwrite@basic-random.html * igt@gem_set_tiling_vs_blt@untiled-to-tiled: - shard-rkl: [SKIP][498] ([i915#14544] / [i915#8411]) -> [SKIP][499] ([i915#8411]) [498]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-rkl-6/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html [499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-4/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html * igt@gem_userptr_blits@invalid-mmap-offset-unsync: - shard-rkl: [SKIP][500] ([i915#14544] / [i915#3297]) -> [SKIP][501] ([i915#3297]) +1 other test skip [500]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-rkl-6/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html [501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-7/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html * igt@gen9_exec_parse@shadow-peek: - shard-rkl: [SKIP][502] ([i915#2527]) -> [SKIP][503] ([i915#14544] / [i915#2527]) +1 other test skip [502]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-rkl-8/igt@gen9_exec_parse@shadow-peek.html [503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-6/igt@gen9_exec_parse@shadow-peek.html * igt@intel_hwmon@hwmon-read: - shard-rkl: [SKIP][504] ([i915#14544] / [i915#7707]) -> [SKIP][505] ([i915#7707]) [504]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-rkl-6/igt@intel_hwmon@hwmon-read.html [505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-2/igt@intel_hwmon@hwmon-read.html * igt@kms_big_fb@4-tiled-16bpp-rotate-0: - shard-rkl: [SKIP][506] ([i915#14544] / [i915#5286]) -> [SKIP][507] ([i915#5286]) +3 other tests skip [506]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-rkl-6/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html [507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-7/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html * igt@kms_big_fb@linear-16bpp-rotate-270: - shard-rkl: [SKIP][508] ([i915#3638]) -> [SKIP][509] ([i915#14544] / [i915#3638]) [508]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-rkl-5/igt@kms_big_fb@linear-16bpp-rotate-270.html [509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-6/igt@kms_big_fb@linear-16bpp-rotate-270.html * igt@kms_big_fb@linear-64bpp-rotate-90: - shard-rkl: [SKIP][510] ([i915#14544] / [i915#3638]) -> [SKIP][511] ([i915#3638]) +1 other test skip [510]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-rkl-6/igt@kms_big_fb@linear-64bpp-rotate-90.html [511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-7/igt@kms_big_fb@linear-64bpp-rotate-90.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-dg2: [SKIP][512] ([i915#4538] / [i915#5190]) -> [SKIP][513] ([i915#5190]) +7 other tests skip [512]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-dg2-8/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html [513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-10/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-180: - shard-rkl: [SKIP][514] ([i915#14544]) -> [SKIP][515] +39 other tests skip [514]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-rkl-6/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html [515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-1/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs: - shard-rkl: [SKIP][516] ([i915#14098] / [i915#6095]) -> [SKIP][517] ([i915#14098] / [i915#14544] / [i915#6095]) +5 other tests skip [516]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-rkl-7/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs.html [517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-6/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-c-hdmi-a-2: - shard-rkl: [SKIP][518] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][519] ([i915#14098] / [i915#6095]) +5 other tests skip [518]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-rkl-6/igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-c-hdmi-a-2.html [519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-4/igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-b-hdmi-a-2: - shard-rkl: [SKIP][520] ([i915#6095]) -> [SKIP][521] ([i915#14544] / [i915#6095]) +5 other tests skip [520]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-rkl-4/igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-b-hdmi-a-2.html [521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-rkl: [SKIP][522] ([i915#12805]) -> [SKIP][523] ([i915#12805] / [i915#14544]) [522]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-rkl-8/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html [523]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2: - shard-rkl: [SKIP][524] ([i915#14544] / [i915#6095]) -> [SKIP][525] ([i915#6095]) +4 other tests skip [524]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2.html [525]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-rkl: [SKIP][526] ([i915#12313] / [i915#14544]) -> [SKIP][527] ([i915#12313]) +1 other test skip [526]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html [527]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-8/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt@kms_chamelium_color_pipeline@plane-lut1d-pre-ctm3x4: - shard-rkl: [SKIP][528] ([i915#14544] / [i915#16471]) -> [SKIP][529] ([i915#16471]) [528]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-rkl-6/igt@kms_chamelium_color_pipeline@plane-lut1d-pre-ctm3x4.html [529]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-4/igt@kms_chamelium_color_pipeline@plane-lut1d-pre-ctm3x4.html * igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe: - shard-rkl: [SKIP][530] ([i915#11151] / [i915#7828]) -> [SKIP][531] ([i915#11151] / [i915#14544] / [i915#7828]) +1 other test skip [530]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-rkl-3/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html [531]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-6/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html * igt@kms_chamelium_hpd@vga-hpd-fast: - shard-rkl: [SKIP][532] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][533] ([i915#11151] / [i915#7828]) +2 other tests skip [532]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-rkl-6/igt@kms_chamelium_hpd@vga-hpd-fast.html [533]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-3/igt@kms_chamelium_hpd@vga-hpd-fast.html * igt@kms_content_protection@dp-mst-lic-type-0-hdcp14: - shard-rkl: [SKIP][534] ([i915#14544] / [i915#15330]) -> [SKIP][535] ([i915#15330]) [534]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-rkl-6/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html [535]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-8/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html * igt@kms_content_protection@legacy-hdcp14: - shard-rkl: [SKIP][536] ([i915#14544] / [i915#15865]) -> [SKIP][537] ([i915#15865]) [536]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-rkl-6/igt@kms_content_protection@legacy-hdcp14.html [537]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-8/igt@kms_content_protection@legacy-hdcp14.html * igt@kms_content_protection@mei-interface: - shard-dg1: [SKIP][538] ([i915#15865]) -> [SKIP][539] ([i915#9433]) [538]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-dg1-18/igt@kms_content_protection@mei-interface.html [539]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg1-13/igt@kms_content_protection@mei-interface.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-rkl: [SKIP][540] ([i915#13049] / [i915#14544]) -> [SKIP][541] ([i915#13049]) [540]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-rkl-6/igt@kms_cursor_crc@cursor-random-512x170.html [541]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-2/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-dg1: [SKIP][542] ([i915#13049] / [i915#4423]) -> [SKIP][543] ([i915#13049]) [542]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-dg1-12/igt@kms_cursor_crc@cursor-random-512x512.html [543]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg1-12/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-rkl: [SKIP][544] ([i915#13049]) -> [SKIP][545] ([i915#13049] / [i915#14544]) [544]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-rkl-3/igt@kms_cursor_crc@cursor-sliding-512x170.html [545]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2: [SKIP][546] ([i915#4103]) -> [SKIP][547] ([i915#11190]) [546]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-dg2-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html [547]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-10/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-rkl: [SKIP][548] ([i915#4103]) -> [SKIP][549] ([i915#14544] / [i915#4103]) [548]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-rkl-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html [549]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_dp_link_training@uhbr-sst: - shard-rkl: [SKIP][550] ([i915#13748]) -> [SKIP][551] ([i915#13748] / [i915#14544]) [550]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-rkl-5/igt@kms_dp_link_training@uhbr-sst.html [551]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-6/igt@kms_dp_link_training@uhbr-sst.html * igt@kms_dp_linktrain_fallback@dsc-fallback: - shard-rkl: [SKIP][552] ([i915#13707]) -> [SKIP][553] ([i915#13707] / [i915#14544]) [552]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-rkl-7/igt@kms_dp_linktrain_fallback@dsc-fallback.html [553]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-6/igt@kms_dp_linktrain_fallback@dsc-fallback.html * igt@kms_dsc@dsc-basic-bigjoiner: - shard-rkl: [SKIP][554] ([i915#14544] / [i915#16361]) -> [SKIP][555] ([i915#16361]) [554]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-rkl-6/igt@kms_dsc@dsc-basic-bigjoiner.html [555]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-7/igt@kms_dsc@dsc-basic-bigjoiner.html * igt@kms_feature_discovery@chamelium: - shard-rkl: [SKIP][556] ([i915#14544] / [i915#16084]) -> [SKIP][557] ([i915#16084]) [556]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-rkl-6/igt@kms_feature_discovery@chamelium.html [557]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-3/igt@kms_feature_discovery@chamelium.html * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible: - shard-rkl: [SKIP][558] ([i915#14544] / [i915#9934]) -> [SKIP][559] ([i915#9934]) +1 other test skip [558]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-rkl-6/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html [559]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-7/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-glk: [INCOMPLETE][560] ([i915#12314] / [i915#12745] / [i915#4839] / [i915#6113]) -> [INCOMPLETE][561] ([i915#12314] / [i915#12745] / [i915#4839]) [560]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-glk5/igt@kms_flip@flip-vs-suspend-interruptible.html [561]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-glk8/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-rkl: [SKIP][562] ([i915#15643]) -> [SKIP][563] ([i915#14544] / [i915#15643]) [562]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-rkl-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html [563]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling: - shard-rkl: [SKIP][564] ([i915#14544] / [i915#15643]) -> [SKIP][565] ([i915#15643]) [564]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html [565]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-2/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt: - shard-rkl: [SKIP][566] ([i915#1825]) -> [SKIP][567] ([i915#14544] / [i915#1825]) +1 other test skip [566]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html [567]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-pri-indfb-draw-blt: - shard-rkl: [SKIP][568] -> [SKIP][569] ([i915#14544]) +18 other tests skip [568]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-rkl-5/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-pri-indfb-draw-blt.html [569]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-6/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render: - shard-rkl: [SKIP][570] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][571] ([i915#15102] / [i915#3023]) +4 other tests skip [570]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render.html [571]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-dg2: [SKIP][572] ([i915#15990] / [i915#8708]) -> [SKIP][573] ([i915#5354]) +13 other tests skip [572]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html [573]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move: - shard-dg2: [SKIP][574] ([i915#15991] / [i915#5354]) -> [SKIP][575] ([i915#5354]) +23 other tests skip [574]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move.html [575]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite: - shard-dg2: [SKIP][576] ([i915#10433] / [i915#15102]) -> [SKIP][577] ([i915#5354]) [576]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite.html [577]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-indfb-draw-mmap-gtt: - shard-rkl: [SKIP][578] ([i915#15102]) -> [SKIP][579] ([i915#14544] / [i915#15102]) +2 other tests skip [578]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-indfb-draw-mmap-gtt.html [579]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-rkl: [SKIP][580] ([i915#15102] / [i915#3023]) -> [SKIP][581] ([i915#14544] / [i915#15102] / [i915#3023]) +3 other tests skip [580]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html [581]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2: [SKIP][582] ([i915#15102]) -> [SKIP][583] ([i915#5354]) +15 other tests skip [582]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html [583]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-cpu: - shard-dg2: [SKIP][584] ([i915#15102]) -> [SKIP][585] ([i915#10433] / [i915#15102]) [584]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-cpu.html [585]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-rkl: [SKIP][586] ([i915#14544] / [i915#1825]) -> [SKIP][587] ([i915#1825]) +1 other test skip [586]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc.html [587]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary: - shard-dg2: [SKIP][588] ([i915#10433] / [i915#15102]) -> [SKIP][589] ([i915#15102]) +3 other tests skip [588]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html [589]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-shrfb-msflip-blt: - shard-rkl: [SKIP][590] ([i915#14544] / [i915#15102]) -> [SKIP][591] ([i915#15102]) +5 other tests skip [590]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-rkl-6/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-shrfb-msflip-blt.html [591]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-5/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-shrfb-msflip-blt.html * igt@kms_hdr@brightness-with-hdr: - shard-mtlp: [SKIP][592] ([i915#1187] / [i915#12713] / [i915#16490]) -> [SKIP][593] ([i915#12713] / [i915#16490]) [592]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-mtlp-1/igt@kms_hdr@brightness-with-hdr.html [593]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-mtlp-3/igt@kms_hdr@brightness-with-hdr.html - shard-tglu: [SKIP][594] ([i915#12713]) -> [SKIP][595] ([i915#1187] / [i915#12713]) [594]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-tglu-10/igt@kms_hdr@brightness-with-hdr.html [595]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-tglu-2/igt@kms_hdr@brightness-with-hdr.html * igt@kms_joiner@basic-max-non-joiner: - shard-rkl: [SKIP][596] ([i915#13688]) -> [SKIP][597] ([i915#13688] / [i915#14544]) [596]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-rkl-7/igt@kms_joiner@basic-max-non-joiner.html [597]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-6/igt@kms_joiner@basic-max-non-joiner.html * igt@kms_mst@mst-suspend-read-crc: - shard-rkl: [SKIP][598] ([i915#14544] / [i915#16451]) -> [SKIP][599] ([i915#16451]) [598]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-rkl-6/igt@kms_mst@mst-suspend-read-crc.html [599]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-2/igt@kms_mst@mst-suspend-read-crc.html * igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier: - shard-rkl: [SKIP][600] ([i915#14544] / [i915#15709]) -> [SKIP][601] ([i915#15709]) +1 other test skip [600]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier.html [601]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-7/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier.html * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier: - shard-rkl: [SKIP][602] ([i915#15709]) -> [SKIP][603] ([i915#14544] / [i915#15709]) +1 other test skip [602]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-rkl-4/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier.html [603]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier.html * igt@kms_pm_backlight@bad-brightness: - shard-rkl: [SKIP][604] ([i915#12343] / [i915#14544] / [i915#5354]) -> [SKIP][605] ([i915#12343] / [i915#5354]) +1 other test skip [604]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-rkl-6/igt@kms_pm_backlight@bad-brightness.html [605]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-5/igt@kms_pm_backlight@bad-brightness.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf: - shard-rkl: [SKIP][606] ([i915#11520] / [i915#14544]) -> [SKIP][607] ([i915#11520]) +2 other tests skip [606]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html [607]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-5/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf: - shard-rkl: [SKIP][608] ([i915#11520]) -> [SKIP][609] ([i915#11520] / [i915#14544]) +1 other test skip [608]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-rkl-4/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html [609]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-6/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr@pr-primary-mmap-cpu: - shard-rkl: [SKIP][610] ([i915#1072] / [i915#9732]) -> [SKIP][611] ([i915#1072] / [i915#14544] / [i915#9732]) +4 other tests skip [610]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-rkl-2/igt@kms_psr@pr-primary-mmap-cpu.html [611]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-6/igt@kms_psr@pr-primary-mmap-cpu.html * igt@kms_psr@psr2-sprite-mmap-cpu: - shard-rkl: [SKIP][612] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][613] ([i915#1072] / [i915#9732]) +4 other tests skip [612]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-rkl-6/igt@kms_psr@psr2-sprite-mmap-cpu.html [613]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-5/igt@kms_psr@psr2-sprite-mmap-cpu.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-rkl: [SKIP][614] ([i915#14544] / [i915#5289]) -> [SKIP][615] ([i915#5289]) [614]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html [615]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-dg2: [SKIP][616] ([i915#12755] / [i915#15867] / [i915#5190]) -> [SKIP][617] ([i915#5190]) [616]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-dg2-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html [617]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg2-10/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_vrr@lobf: - shard-rkl: [SKIP][618] ([i915#11920]) -> [SKIP][619] ([i915#11920] / [i915#14544]) [618]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-rkl-8/igt@kms_vrr@lobf.html [619]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-rkl-6/igt@kms_vrr@lobf.html * igt@perf_pmu@module-unload: - shard-dg1: [ABORT][620] ([i915#15778]) -> [ABORT][621] ([i915#13029] / [i915#15778]) [620]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18909/shard-dg1-19/igt@perf_pmu@module-unload.html [621]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/shard-dg1-16/igt@perf_pmu@module-unload.html [i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055 [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#10553]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10553 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099 [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078 [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151 [i915#11190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11190 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/118 [i915#11814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11814 [i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187 [i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920 [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#12655]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655 [i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713 [i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745 [i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755 [i915#12761]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12761 [i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805 [i915#13027]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13027 [i915#13029]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029 [i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046 [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049 [i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179 [i915#13196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13196 [i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356 [i915#13390]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13390 [i915#13562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13562 [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566 [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#13783]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13783 [i915#13790]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13790 [i915#13809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13809 [i915#13820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13820 [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#14600]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14600 [i915#14694]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14694 [i915#14702]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14702 [i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712 [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#15106]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15106 [i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243 [i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329 [i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330 [i915#15342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15342 [i915#15391]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15391 [i915#15433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15433 [i915#15454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15454 [i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458 [i915#15459]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459 [i915#15479]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15479 [i915#15492]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15492 [i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582 [i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643 [i915#15662]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15662 [i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709 [i915#15725]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15725 [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#15871]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15871 [i915#15967]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15967 [i915#15989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15989 [i915#15990]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15990 [i915#15991]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15991 [i915#15999]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15999 [i915#16021]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16021 [i915#16066]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16066 [i915#16079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16079 [i915#16080]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16080 [i915#16081]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16081 [i915#16084]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16084 [i915#16108]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16108 [i915#16112]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16112 [i915#16119]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16119 [i915#16166]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16166 [i915#16182]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16182 [i915#16184]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16184 [i915#16202]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16202 [i915#16276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16276 [i915#16348]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16348 [i915#16361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16361 [i915#16386]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16386 [i915#16396]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16396 [i915#16420]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16420 [i915#16436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16436 [i915#16451]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16451 [i915#16466]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16466 [i915#16471]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16471 [i915#16479]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16479 [i915#16490]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16490 [i915#16518]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16518 [i915#16599]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16599 [i915#16600]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16600 [i915#16644]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16644 [i915#16680]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16680 [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#2065]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2065 [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190 [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#2582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2582 [i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658 [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#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#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#3711]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3711 [i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742 [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828 [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#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213 [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4348]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4348 [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#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#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860 [i915#4873]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4873 [i915#4881]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4881 [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#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113 [i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301 [i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335 [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658 [i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953 [i915#7276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7276 [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#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399 [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411 [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428 [i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430 [i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516 [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555 [i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8807]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8807 [i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809 [i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810 [i915#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812 [i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813 [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814 [i915#8825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8825 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423 [i915#9433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9433 [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#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808 [i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809 [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 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_9027 -> IGTPW_15599 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_18909: 28e3f47d47a61b5e28e7566944479e9c9715d41d @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_15599: 15599 IGT_9027: 9027 piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15599/index.html [-- Attachment #2: Type: text/html, Size: 204162 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* ✗ Xe.CI.FULL: failure for tools/xe-perf-recorder: expose some OA stream open properties 2026-07-28 6:36 [PATCH] tools/xe-perf-recorder: expose some OA stream open properties Shekhar Chauhan ` (3 preceding siblings ...) 2026-07-28 10:39 ` ✗ i915.CI.Full: failure " Patchwork @ 2026-07-28 11:08 ` Patchwork 2026-07-30 2:54 ` [PATCH] " Dixit, Ashutosh 5 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2026-07-28 11:08 UTC (permalink / raw) To: Shekhar Chauhan; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 92184 bytes --] == Series Details == Series: tools/xe-perf-recorder: expose some OA stream open properties URL : https://patchwork.freedesktop.org/series/171150/ State : failure == Summary == CI Bug Log - changes from XEIGT_9027_FULL -> XEIGTPW_15599_FULL ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_15599_FULL absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_15599_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (2 -> 2) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_15599_FULL: ### IGT changes ### #### Possible regressions #### * igt@kms_rotation_crc@primary-rotation-180: - shard-bmg: NOTRUN -> [DMESG-WARN][1] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-8/igt@kms_rotation_crc@primary-rotation-180.html Known issues ------------ Here are the changes found in XEIGTPW_15599_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@intel_hwmon@hwmon-read: - shard-lnl: NOTRUN -> [SKIP][2] ([Intel XE#1125] / [Intel XE#7312]) +1 other test skip [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-1/igt@intel_hwmon@hwmon-read.html * igt@kms_3d@basic: - shard-lnl: NOTRUN -> [SKIP][3] ([Intel XE#6011]) [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-7/igt@kms_3d@basic.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-lnl: NOTRUN -> [SKIP][4] ([Intel XE#3157]) [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-5/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing: - shard-lnl: NOTRUN -> [SKIP][5] ([Intel XE#3279]) +1 other test skip [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#2370]) [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-lnl: NOTRUN -> [SKIP][7] ([Intel XE#3658] / [Intel XE#7360]) +2 other tests skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@linear-32bpp-rotate-90: - shard-lnl: NOTRUN -> [SKIP][8] ([Intel XE#1407]) +18 other tests skip [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-6/igt@kms_big_fb@linear-32bpp-rotate-90.html * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip: - shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#7059] / [Intel XE#7085]) +1 other test skip [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-10/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html - shard-lnl: NOTRUN -> [SKIP][10] ([Intel XE#7059] / [Intel XE#7085]) +1 other test skip [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-7/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@x-tiled-32bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#2327]) +11 other tests skip [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-2/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html * igt@kms_big_fb@y-tiled-32bpp-rotate-0: - shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#1124]) +44 other tests skip [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-8/igt@kms_big_fb@y-tiled-32bpp-rotate-0.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180: - shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#1124]) +38 other tests skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-addfb: - shard-lnl: NOTRUN -> [SKIP][14] ([Intel XE#1467] / [Intel XE#7367]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-5/igt@kms_big_fb@yf-tiled-addfb.html - shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2328] / [Intel XE#7367]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-1/igt@kms_big_fb@yf-tiled-addfb.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#1428] / [Intel XE#7387]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-4/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html - shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#610] / [Intel XE#7387]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-1/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_bw@connected-linear-tiling-2-displays-target-2560x1440p: - shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#7679]) +2 other tests skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-6/igt@kms_bw@connected-linear-tiling-2-displays-target-2560x1440p.html * igt@kms_bw@connected-linear-tiling-4-displays-target-2160x1440p: - shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#8365]) +6 other tests skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-2/igt@kms_bw@connected-linear-tiling-4-displays-target-2160x1440p.html * igt@kms_bw@connected-linear-tiling-4-displays-target-3840x2160p: - shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#7679]) +2 other tests skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-7/igt@kms_bw@connected-linear-tiling-4-displays-target-3840x2160p.html * igt@kms_bw@linear-tiling-1-displays-target-2560x1440p: - shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#367]) +12 other tests skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-9/igt@kms_bw@linear-tiling-1-displays-target-2560x1440p.html * igt@kms_bw@linear-tiling-2-displays-target-2560x1440p: - shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#367]) +7 other tests skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-8/igt@kms_bw@linear-tiling-2-displays-target-2560x1440p.html * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#2887]) +58 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-2/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2: - shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#2652]) +8 other tests skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-6/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2.html * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs@pipe-c-edp-1: - shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#2669] / [Intel XE#7389]) +19 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-6/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs@pipe-c-edp-1.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1: - shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#2669] / [Intel XE#3433] / [Intel XE#7389]) +3 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-4/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs: - shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#3432]) +5 other tests skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-9/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs: - shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#3432]) +7 other tests skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-6/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs: - shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#2887]) +52 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-9/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#7008]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-2/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@plane-scaling: - shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#4416] / [Intel XE#7381]) +3 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-2/igt@kms_cdclk@plane-scaling.html - shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2724] / [Intel XE#7449]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-9/igt@kms_cdclk@plane-scaling.html * igt@kms_chamelium_audio@dp-audio-after-suspend: - shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#2252]) +1 other test skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-2/igt@kms_chamelium_audio@dp-audio-after-suspend.html * igt@kms_chamelium_color@ctm-blue-to-red: - shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#306] / [Intel XE#7358]) +7 other tests skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-5/igt@kms_chamelium_color@ctm-blue-to-red.html - shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#2325] / [Intel XE#7358]) +5 other tests skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-1/igt@kms_chamelium_color@ctm-blue-to-red.html * igt@kms_chamelium_color_pipeline@plane-lut1d: - shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#7358]) +6 other tests skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-6/igt@kms_chamelium_color_pipeline@plane-lut1d.html * igt@kms_chamelium_color_pipeline@plane-lut1d-lut1d: - shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#7358]) +5 other tests skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-10/igt@kms_chamelium_color_pipeline@plane-lut1d-lut1d.html * igt@kms_chamelium_frames@hdmi-aspect-ratio: - shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2252]) +25 other tests skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-3/igt@kms_chamelium_frames@hdmi-aspect-ratio.html * igt@kms_chamelium_hpd@dp-hpd: - shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#373]) +27 other tests skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-8/igt@kms_chamelium_hpd@dp-hpd.html * igt@kms_chamelium_sharpness_filter@filter-basic: - shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#6507]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-1/igt@kms_chamelium_sharpness_filter@filter-basic.html - shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#6507]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-4/igt@kms_chamelium_sharpness_filter@filter-basic.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#2390] / [Intel XE#6974]) +3 other tests skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-4/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@dp-mst-type-0-hdcp14: - shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#6974]) +1 other test skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-4/igt@kms_content_protection@dp-mst-type-0-hdcp14.html * igt@kms_content_protection@dp-mst-type-0-suspend-resume: - shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#6974]) +2 other tests skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-1/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html * igt@kms_content_protection@dp-mst-type-1: - shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#307] / [Intel XE#6974]) +3 other tests skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-7/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@lic-type-0-hdcp14@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][46] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +9 other tests fail [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-7/igt@kms_content_protection@lic-type-0-hdcp14@pipe-a-dp-2.html * igt@kms_content_protection@mei-interface: - shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#1468] / [Intel XE#7396]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-1/igt@kms_content_protection@mei-interface.html - shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#7642]) [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-3/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@uevent: - shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#7642]) +8 other tests skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-8/igt@kms_content_protection@uevent.html - shard-bmg: NOTRUN -> [FAIL][50] ([Intel XE#6707] / [Intel XE#7439]) +1 other test fail [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-1/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-offscreen-128x42: - shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#2320]) +15 other tests skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-7/igt@kms_cursor_crc@cursor-offscreen-128x42.html * igt@kms_cursor_crc@cursor-onscreen-128x42: - shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#1424]) +19 other tests skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-8/igt@kms_cursor_crc@cursor-onscreen-128x42.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#2321] / [Intel XE#7355]) +5 other tests skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-3/igt@kms_cursor_crc@cursor-sliding-512x512.html - shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#2321] / [Intel XE#7355]) +5 other tests skip [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-2/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#309] / [Intel XE#7343]) +20 other tests skip [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#323] / [Intel XE#6035]) +2 other tests skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html - shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#2286] / [Intel XE#6035]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#1508]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-6/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl: - shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#4210] / [Intel XE#7467]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-10/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#1508]) +1 other test skip [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-2/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_display_modes@extended-mode-basic: - shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#4302]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-2/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3: - shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#1340] / [Intel XE#7435]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-8/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3.html * igt@kms_dp_link_training@non-uhbr-mst: - shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#4354] / [Intel XE#5882]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-2/igt@kms_dp_link_training@non-uhbr-mst.html - shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#4354] / [Intel XE#5882]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-6/igt@kms_dp_link_training@non-uhbr-mst.html * igt@kms_dp_link_training@non-uhbr-sst: - shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#4354] / [Intel XE#7450]) [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-7/igt@kms_dp_link_training@non-uhbr-sst.html * igt@kms_dp_link_training@uhbr-mst: - shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#4354] / [Intel XE#7386]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-8/igt@kms_dp_link_training@uhbr-mst.html - shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#4354] / [Intel XE#7386]) [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-3/igt@kms_dp_link_training@uhbr-mst.html * igt@kms_dp_link_training@uhbr-sst: - shard-lnl: NOTRUN -> [SKIP][68] ([Intel XE#4354] / [Intel XE#5870]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-4/igt@kms_dp_link_training@uhbr-sst.html - shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#4354] / [Intel XE#5870]) [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-7/igt@kms_dp_link_training@uhbr-sst.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc-bigjoiner: - shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#8265]) +13 other tests skip [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-4/igt@kms_dsc@dsc-fractional-bpp-with-bpc-bigjoiner.html * igt@kms_dsc@dsc-with-output-formats-bigjoiner: - shard-lnl: NOTRUN -> [SKIP][71] ([Intel XE#8265]) +15 other tests skip [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-4/igt@kms_dsc@dsc-with-output-formats-bigjoiner.html * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area: - shard-lnl: NOTRUN -> [SKIP][72] ([Intel XE#4422] / [Intel XE#7442]) [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-8/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area.html - shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#4422] / [Intel XE#7442]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-9/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area.html * igt@kms_fbcon_fbt@fbc: - shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#4156] / [Intel XE#7425]) [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-9/igt@kms_fbcon_fbt@fbc.html * igt@kms_feature_discovery@chamelium: - shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#2372] / [Intel XE#7359]) [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-7/igt@kms_feature_discovery@chamelium.html - shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#701] / [Intel XE#7359]) [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-4/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-2x: - shard-lnl: NOTRUN -> [SKIP][77] ([Intel XE#702] / [Intel XE#7344]) [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-5/igt@kms_feature_discovery@display-2x.html * igt@kms_feature_discovery@display-3x: - shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#703] / [Intel XE#7448]) [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-6/igt@kms_feature_discovery@display-3x.html * igt@kms_feature_discovery@display-4x: - shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#1138] / [Intel XE#7344]) [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-4/igt@kms_feature_discovery@display-4x.html - shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#1138] / [Intel XE#7344]) [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-1/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@dsc: - shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#8586]) +1 other test skip [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-8/igt@kms_feature_discovery@dsc.html - shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#8586]) [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-7/igt@kms_feature_discovery@dsc.html * igt@kms_feature_discovery@psr1: - shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#2374] / [Intel XE#6127]) [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-1/igt@kms_feature_discovery@psr1.html * igt@kms_feature_discovery@psr2: - shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#2374] / [Intel XE#6128]) [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-3/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-plain-flip: - shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#1421]) +30 other tests skip [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-6/igt@kms_flip@2x-plain-flip.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1: - shard-lnl: NOTRUN -> [FAIL][86] ([Intel XE#301]) +1 other test fail [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html * igt@kms_flip_scaled_crc@flip-32bpp-linear-to-32bpp-linear-reflect-x: - shard-lnl: NOTRUN -> [SKIP][87] ([Intel XE#7179]) +1 other test skip [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-1/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-32bpp-linear-reflect-x.html * igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling: - shard-lnl: NOTRUN -> [SKIP][88] ([Intel XE#1397] / [Intel XE#1745] / [Intel XE#7385]) +5 other tests skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-8/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#1397] / [Intel XE#7385]) +5 other tests skip [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-8/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#7178] / [Intel XE#7349]) +1 other test skip [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html - shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#7178] / [Intel XE#7349]) [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling: - shard-lnl: NOTRUN -> [SKIP][92] ([Intel XE#7178] / [Intel XE#7351]) +15 other tests skip [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling: - shard-bmg: NOTRUN -> [SKIP][93] ([Intel XE#7178] / [Intel XE#7351]) +11 other tests skip [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html * igt@kms_flip_scaled_crc@flip-p016-linear-to-p016-linear-reflect-x: - shard-bmg: NOTRUN -> [SKIP][94] ([Intel XE#7179]) +1 other test skip [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-1/igt@kms_flip_scaled_crc@flip-p016-linear-to-p016-linear-reflect-x.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-lnl: NOTRUN -> [SKIP][95] ([Intel XE#352]) +2 other tests skip [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-2/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@drrshdr-abgr161616f-draw-render: - shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#7061]) +21 other tests skip [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-2/igt@kms_frontbuffer_tracking@drrshdr-abgr161616f-draw-render.html * igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#4141]) +48 other tests skip [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-blt: - shard-lnl: NOTRUN -> [SKIP][98] ([Intel XE#6312]) +64 other tests skip [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-2/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render: - shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#2311]) +204 other tests skip [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-abgr161616f-draw-blt: - shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#7061] / [Intel XE#7356]) +20 other tests skip [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-2/igt@kms_frontbuffer_tracking@fbcdrrs-abgr161616f-draw-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-render: - shard-bmg: NOTRUN -> [SKIP][101] ([Intel XE#7061] / [Intel XE#7356]) +15 other tests skip [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt: - shard-lnl: NOTRUN -> [SKIP][102] ([Intel XE#6312] / [Intel XE#651]) +48 other tests skip [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-3/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y: - shard-lnl: NOTRUN -> [SKIP][103] ([Intel XE#1469] / [Intel XE#7399]) +1 other test skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html * igt@kms_frontbuffer_tracking@fbcdrrshdr-2p-scndscrn-cur-indfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#7905]) +197 other tests skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcdrrshdr-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbchdr-tiling-y: - shard-bmg: NOTRUN -> [SKIP][105] ([Intel XE#7399]) [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-7/igt@kms_frontbuffer_tracking@fbchdr-tiling-y.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt: - shard-bmg: NOTRUN -> [SKIP][106] ([Intel XE#2313]) +204 other tests skip [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][107] ([Intel XE#656] / [Intel XE#7905]) +162 other tests skip [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-indfb-plflip-blt: - shard-lnl: NOTRUN -> [SKIP][108] ([Intel XE#7865]) +117 other tests skip [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-4/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psrhdr-abgr161616f-draw-blt: - shard-bmg: NOTRUN -> [SKIP][109] ([Intel XE#7061]) +19 other tests skip [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-3/igt@kms_frontbuffer_tracking@psrhdr-abgr161616f-draw-blt.html * igt@kms_hdmi_inject@inject-4k: - shard-lnl: NOTRUN -> [SKIP][110] ([Intel XE#1470]) [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-6/igt@kms_hdmi_inject@inject-4k.html * igt@kms_hdmi_inject@inject-audio: - shard-lnl: NOTRUN -> [SKIP][111] ([Intel XE#1470] / [Intel XE#2853]) [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-4/igt@kms_hdmi_inject@inject-audio.html - shard-bmg: NOTRUN -> [SKIP][112] ([Intel XE#7308]) [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-1/igt@kms_hdmi_inject@inject-audio.html * igt@kms_hdr@brightness-with-hdr: - shard-lnl: NOTRUN -> [SKIP][113] ([Intel XE#3374] / [Intel XE#3544]) [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-3/igt@kms_hdr@brightness-with-hdr.html - shard-bmg: NOTRUN -> [SKIP][114] ([Intel XE#3374] / [Intel XE#3544]) [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-7/igt@kms_hdr@brightness-with-hdr.html * igt@kms_hdr@invalid-metadata-sizes: - shard-lnl: NOTRUN -> [SKIP][115] ([Intel XE#1503]) +3 other tests skip [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-4/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_joiner@basic-big-joiner: - shard-lnl: NOTRUN -> [SKIP][116] ([Intel XE#6901]) +1 other test skip [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-8/igt@kms_joiner@basic-big-joiner.html - shard-bmg: NOTRUN -> [SKIP][117] ([Intel XE#6901]) +1 other test skip [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-1/igt@kms_joiner@basic-big-joiner.html * igt@kms_joiner@basic-force-big-joiner: - shard-lnl: NOTRUN -> [SKIP][118] ([Intel XE#7086] / [Intel XE#7390]) [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-5/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-bmg: NOTRUN -> [SKIP][119] ([Intel XE#6911] / [Intel XE#7466]) [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-3/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_joiner@basic-max-non-joiner: - shard-lnl: NOTRUN -> [SKIP][120] ([Intel XE#4298] / [Intel XE#5873]) [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-8/igt@kms_joiner@basic-max-non-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-lnl: NOTRUN -> [SKIP][121] ([Intel XE#6900] / [Intel XE#7362]) +1 other test skip [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-1/igt@kms_joiner@invalid-modeset-ultra-joiner.html - shard-bmg: NOTRUN -> [SKIP][122] ([Intel XE#6911] / [Intel XE#7378]) [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-8/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner: - shard-lnl: NOTRUN -> [SKIP][123] ([Intel XE#7173] / [Intel XE#7294]) [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-6/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html * igt@kms_mst@mst-suspend-read-crc: - shard-lnl: NOTRUN -> [SKIP][124] ([Intel XE#8348]) [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-8/igt@kms_mst@mst-suspend-read-crc.html - shard-bmg: NOTRUN -> [SKIP][125] ([Intel XE#8348]) [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-9/igt@kms_mst@mst-suspend-read-crc.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-bmg: NOTRUN -> [SKIP][126] ([Intel XE#7591]) [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html - shard-lnl: NOTRUN -> [SKIP][127] ([Intel XE#7591]) [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_panel_fitting@atomic-fastset: - shard-bmg: NOTRUN -> [SKIP][128] ([Intel XE#2486]) [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-6/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_pipe_stress@stress-xrgb8888-yftiled: - shard-bmg: NOTRUN -> [SKIP][129] ([Intel XE#6912] / [Intel XE#7375]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-8/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html - shard-lnl: NOTRUN -> [SKIP][130] ([Intel XE#6912] / [Intel XE#7375]) [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-7/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html * igt@kms_pipe_stress@stress-xrgb8888-ytiled: - shard-bmg: NOTRUN -> [SKIP][131] ([Intel XE#4329] / [Intel XE#6912] / [Intel XE#7375]) [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-8/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html - shard-lnl: NOTRUN -> [SKIP][132] ([Intel XE#4329] / [Intel XE#6912] / [Intel XE#7375]) [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-7/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html * igt@kms_plane@pixel-format-4-tiled-modifier@pipe-a-plane-5: - shard-lnl: NOTRUN -> [SKIP][133] ([Intel XE#8303]) +5 other tests skip [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-1/igt@kms_plane@pixel-format-4-tiled-modifier@pipe-a-plane-5.html * igt@kms_plane@pixel-format-4-tiled-modifier@pipe-b-plane-5: - shard-bmg: NOTRUN -> [SKIP][134] ([Intel XE#8303]) +3 other tests skip [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-8/igt@kms_plane@pixel-format-4-tiled-modifier@pipe-b-plane-5.html * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier: - shard-lnl: NOTRUN -> [SKIP][135] ([Intel XE#7283]) +15 other tests skip [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-1/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier.html * igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping: - shard-bmg: NOTRUN -> [SKIP][136] ([Intel XE#7283]) +15 other tests skip [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-7/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping.html * igt@kms_plane_lowres@tiling-x@pipe-b-edp-1: - shard-lnl: NOTRUN -> [SKIP][137] ([Intel XE#599] / [Intel XE#7382]) +7 other tests skip [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-8/igt@kms_plane_lowres@tiling-x@pipe-b-edp-1.html * igt@kms_plane_multiple@2x-tiling-y: - shard-lnl: NOTRUN -> [SKIP][138] ([Intel XE#4596] / [Intel XE#5854]) +2 other tests skip [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-2/igt@kms_plane_multiple@2x-tiling-y.html - shard-bmg: NOTRUN -> [SKIP][139] ([Intel XE#5021] / [Intel XE#7377]) [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-9/igt@kms_plane_multiple@2x-tiling-y.html * igt@kms_plane_multiple@tiling-y: - shard-lnl: NOTRUN -> [SKIP][140] ([Intel XE#5020] / [Intel XE#7348]) [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-4/igt@kms_plane_multiple@tiling-y.html - shard-bmg: NOTRUN -> [SKIP][141] ([Intel XE#5020] / [Intel XE#7348]) [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-7/igt@kms_plane_multiple@tiling-y.html * igt@kms_plane_scaling@intel-max-src-size: - shard-lnl: NOTRUN -> [SKIP][142] ([Intel XE#3307]) [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-1/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a: - shard-lnl: NOTRUN -> [SKIP][143] ([Intel XE#2763] / [Intel XE#6886]) +27 other tests skip [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-5/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5: - shard-bmg: NOTRUN -> [SKIP][144] ([Intel XE#2763] / [Intel XE#6886]) +24 other tests skip [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-8/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html * igt@kms_pm_backlight@bad-brightness: - shard-bmg: NOTRUN -> [SKIP][145] ([Intel XE#7376] / [Intel XE#7760] / [Intel XE#870]) +2 other tests skip [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-10/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-bmg: NOTRUN -> [SKIP][146] ([Intel XE#2938] / [Intel XE#7376] / [Intel XE#7760]) [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-10/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_dc@dc3co-framedrop-check@pr-xrgb8888: - shard-bmg: NOTRUN -> [SKIP][147] ([Intel XE#8395] / [Intel XE#8396]) +7 other tests skip [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-8/igt@kms_pm_dc@dc3co-framedrop-check@pr-xrgb8888.html * igt@kms_pm_dc@dc3co-vpb-framegap: - shard-lnl: NOTRUN -> [SKIP][148] ([Intel XE#8395] / [Intel XE#8396]) +7 other tests skip [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-3/igt@kms_pm_dc@dc3co-vpb-framegap.html * igt@kms_pm_dc@dc3co-vpb-framegap@psr2-xrgb8888: - shard-lnl: NOTRUN -> [SKIP][149] ([Intel XE#8396]) +7 other tests skip [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-3/igt@kms_pm_dc@dc3co-vpb-framegap@psr2-xrgb8888.html * igt@kms_pm_dc@dc3co-vpb-simulation@psr2-xrgb8888: - shard-bmg: NOTRUN -> [SKIP][150] ([Intel XE#8396]) +7 other tests skip [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-3/igt@kms_pm_dc@dc3co-vpb-simulation@psr2-xrgb8888.html * igt@kms_pm_dc@dc5-dpms: - shard-lnl: NOTRUN -> [FAIL][151] ([Intel XE#8399]) [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-6/igt@kms_pm_dc@dc5-dpms.html * igt@kms_pm_dc@dc5-dpms-negative: - shard-lnl: NOTRUN -> [SKIP][152] ([Intel XE#1131]) [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-3/igt@kms_pm_dc@dc5-dpms-negative.html * igt@kms_pm_dc@dc5-retention-flops: - shard-lnl: NOTRUN -> [SKIP][153] ([Intel XE#3309] / [Intel XE#7368]) [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-4/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_dc@dc6-dpms: - shard-lnl: [PASS][154] -> [FAIL][155] ([Intel XE#8399]) [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9027/shard-lnl-1/igt@kms_pm_dc@dc6-dpms.html [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-1/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_dc@dc6-psr: - shard-bmg: NOTRUN -> [SKIP][156] ([Intel XE#7794]) [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-8/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_rpm@dpms-mode-unset-lpsp: - shard-bmg: NOTRUN -> [SKIP][157] ([Intel XE#1439] / [Intel XE#7402] / [Intel XE#836]) [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-2/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-bmg: NOTRUN -> [SKIP][158] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#7383] / [Intel XE#836]) +1 other test skip [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-9/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-lnl: NOTRUN -> [SKIP][159] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#7383]) +2 other tests skip [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-2/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-b-edp-1: - shard-lnl: NOTRUN -> [SKIP][160] ([Intel XE#4608] / [Intel XE#7304]) +7 other tests skip [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-2/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-b-edp-1.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area@pipe-a-edp-1: - shard-lnl: NOTRUN -> [SKIP][161] ([Intel XE#4608]) +7 other tests skip [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-5/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area@pipe-a-edp-1.html * igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area: - shard-lnl: NOTRUN -> [SKIP][162] ([Intel XE#2893] / [Intel XE#4608] / [Intel XE#7304]) +7 other tests skip [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-5/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf: - shard-lnl: NOTRUN -> [SKIP][163] ([Intel XE#2893] / [Intel XE#7304]) +16 other tests skip [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-3/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area: - shard-bmg: NOTRUN -> [SKIP][164] ([Intel XE#1489]) +27 other tests skip [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-1/igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-lnl: NOTRUN -> [SKIP][165] ([Intel XE#1128] / [Intel XE#7413]) +2 other tests skip [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-3/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-bmg: NOTRUN -> [SKIP][166] ([Intel XE#2387] / [Intel XE#7429]) +2 other tests skip [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-6/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-psr2-no-drrs@edp-1: - shard-lnl: NOTRUN -> [SKIP][167] ([Intel XE#1406] / [Intel XE#4609]) +7 other tests skip [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-5/igt@kms_psr@fbc-psr2-no-drrs@edp-1.html * igt@kms_psr@fbc-psr2-primary-render: - shard-lnl: NOTRUN -> [SKIP][168] ([Intel XE#1406] / [Intel XE#7345]) +7 other tests skip [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-1/igt@kms_psr@fbc-psr2-primary-render.html * igt@kms_psr@pr-no-drrs: - shard-lnl: NOTRUN -> [SKIP][169] ([Intel XE#1406]) +16 other tests skip [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-5/igt@kms_psr@pr-no-drrs.html * igt@kms_psr@psr2-no-drrs: - shard-bmg: NOTRUN -> [SKIP][170] ([Intel XE#2234] / [Intel XE#2850]) +44 other tests skip [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-5/igt@kms_psr@psr2-no-drrs.html * igt@kms_psr@psr2-primary-render: - shard-bmg: NOTRUN -> [SKIP][171] ([Intel XE#2234]) [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-3/igt@kms_psr@psr2-primary-render.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-bmg: NOTRUN -> [SKIP][172] ([Intel XE#7795]) [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-10/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@primary-rotation-90: - shard-lnl: NOTRUN -> [SKIP][173] ([Intel XE#3414] / [Intel XE#3904] / [Intel XE#7342]) +7 other tests skip [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-2/igt@kms_rotation_crc@primary-rotation-90.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-bmg: NOTRUN -> [SKIP][174] ([Intel XE#2330] / [Intel XE#5813]) +1 other test skip [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-lnl: NOTRUN -> [SKIP][175] ([Intel XE#1127] / [Intel XE#5813]) +1 other test skip [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@sprite-rotation-90: - shard-bmg: NOTRUN -> [SKIP][176] ([Intel XE#3904] / [Intel XE#7342]) +4 other tests skip [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-3/igt@kms_rotation_crc@sprite-rotation-90.html * igt@kms_scaling_modes@scaling-mode-center: - shard-bmg: NOTRUN -> [SKIP][177] ([Intel XE#2413]) +2 other tests skip [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-1/igt@kms_scaling_modes@scaling-mode-center.html * igt@kms_setmode@invalid-clone-exclusive-crtc: - shard-bmg: NOTRUN -> [SKIP][178] ([Intel XE#1435] / [Intel XE#8695]) [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-1/igt@kms_setmode@invalid-clone-exclusive-crtc.html * igt@kms_setmode@invalid-clone-single-crtc: - shard-lnl: NOTRUN -> [SKIP][179] ([Intel XE#1435]) +4 other tests skip [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-6/igt@kms_setmode@invalid-clone-single-crtc.html * igt@kms_sharpness_filter@invalid-filter-with-scaler: - shard-bmg: NOTRUN -> [SKIP][180] ([Intel XE#6503]) +5 other tests skip [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-3/igt@kms_sharpness_filter@invalid-filter-with-scaler.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-lnl: NOTRUN -> [SKIP][181] ([Intel XE#362] / [Intel XE#5848]) [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-2/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html - shard-bmg: NOTRUN -> [SKIP][182] ([Intel XE#2426] / [Intel XE#5848]) [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-6/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_tv_load_detect@load-detect: - shard-lnl: NOTRUN -> [SKIP][183] ([Intel XE#330] / [Intel XE#5857]) [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-2/igt@kms_tv_load_detect@load-detect.html * igt@kms_vrr@flip-basic: - shard-bmg: NOTRUN -> [SKIP][184] ([Intel XE#1499]) +5 other tests skip [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-4/igt@kms_vrr@flip-basic.html * igt@kms_vrr@lobf-dc3co: - shard-bmg: NOTRUN -> [SKIP][185] ([Intel XE#8397]) [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-2/igt@kms_vrr@lobf-dc3co.html - shard-lnl: NOTRUN -> [SKIP][186] ([Intel XE#8397]) [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-3/igt@kms_vrr@lobf-dc3co.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-lnl: NOTRUN -> [SKIP][187] ([Intel XE#1499]) [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-5/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-lnl: NOTRUN -> [SKIP][188] ([Intel XE#1091] / [Intel XE#2849]) +1 other test skip [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-4/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt@xe_ccs@vm-bind-fault-mode-decompress: - shard-lnl: NOTRUN -> [SKIP][189] ([Intel XE#7644]) +1 other test skip [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-4/igt@xe_ccs@vm-bind-fault-mode-decompress.html * igt@xe_compute@ccs-mode-basic: - shard-bmg: NOTRUN -> [SKIP][190] ([Intel XE#6599]) +1 other test skip [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-1/igt@xe_compute@ccs-mode-basic.html - shard-lnl: NOTRUN -> [SKIP][191] ([Intel XE#1447] / [Intel XE#7471]) [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-4/igt@xe_compute@ccs-mode-basic.html * igt@xe_compute@eu-busy-10s: - shard-lnl: NOTRUN -> [SKIP][192] ([Intel XE#6592] / [Intel XE#6645] / [Intel XE#7391]) [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-7/igt@xe_compute@eu-busy-10s.html * igt@xe_compute_preempt@compute-preempt-many-vram-evict: - shard-lnl: NOTRUN -> [SKIP][193] ([Intel XE#5191] / [Intel XE#7316] / [Intel XE#7346]) +1 other test skip [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-1/igt@xe_compute_preempt@compute-preempt-many-vram-evict.html * igt@xe_configfs@survivability-mode: - shard-lnl: NOTRUN -> [SKIP][194] ([Intel XE#8428]) [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-2/igt@xe_configfs@survivability-mode.html * igt@xe_evict@evict-large-multi-vm: - shard-lnl: NOTRUN -> [SKIP][195] ([Intel XE#6540] / [Intel XE#688]) +46 other tests skip [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-2/igt@xe_evict@evict-large-multi-vm.html * igt@xe_evict@evict-mixed-many-threads-small: - shard-bmg: NOTRUN -> [INCOMPLETE][196] ([Intel XE#6321] / [Intel XE#8355]) +1 other test incomplete [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-10/igt@xe_evict@evict-mixed-many-threads-small.html * igt@xe_evict@evict-small-multi-queue-priority: - shard-bmg: NOTRUN -> [SKIP][197] ([Intel XE#8370]) +3 other tests skip [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-6/igt@xe_evict@evict-small-multi-queue-priority.html * igt@xe_exec_balancer@many-parallel-userptr-invalidate-race: - shard-lnl: NOTRUN -> [SKIP][198] ([Intel XE#7482]) +79 other tests skip [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-3/igt@xe_exec_balancer@many-parallel-userptr-invalidate-race.html * igt@xe_exec_basic@multigpu-no-exec-userptr: - shard-lnl: NOTRUN -> [SKIP][199] ([Intel XE#1392]) +35 other tests skip [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-3/igt@xe_exec_basic@multigpu-no-exec-userptr.html * igt@xe_exec_basic@multigpu-once-null-rebind: - shard-bmg: NOTRUN -> [SKIP][200] ([Intel XE#2322] / [Intel XE#7372]) +27 other tests skip [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-10/igt@xe_exec_basic@multigpu-once-null-rebind.html * igt@xe_exec_fault_mode@once-multi-queue-userptr-invalidate-prefetch: - shard-bmg: NOTRUN -> [SKIP][201] ([Intel XE#8374]) +43 other tests skip [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-10/igt@xe_exec_fault_mode@once-multi-queue-userptr-invalidate-prefetch.html * igt@xe_exec_fault_mode@twice-multi-queue-userptr-imm: - shard-lnl: NOTRUN -> [SKIP][202] ([Intel XE#8374]) +52 other tests skip [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-3/igt@xe_exec_fault_mode@twice-multi-queue-userptr-imm.html * igt@xe_exec_multi_queue@many-execs-preempt-mode-fault-userptr-invalidate: - shard-bmg: NOTRUN -> [SKIP][203] ([Intel XE#8364]) +106 other tests skip [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-9/igt@xe_exec_multi_queue@many-execs-preempt-mode-fault-userptr-invalidate.html * igt@xe_exec_multi_queue@many-queues-preempt-mode-userptr: - shard-lnl: NOTRUN -> [SKIP][204] ([Intel XE#8364]) +123 other tests skip [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-4/igt@xe_exec_multi_queue@many-queues-preempt-mode-userptr.html * igt@xe_exec_reset@cm-multi-queue-cat-error: - shard-bmg: NOTRUN -> [SKIP][205] ([Intel XE#8369]) +8 other tests skip [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-2/igt@xe_exec_reset@cm-multi-queue-cat-error.html * igt@xe_exec_reset@multi-queue-gt-reset: - shard-lnl: NOTRUN -> [SKIP][206] ([Intel XE#8369]) +9 other tests skip [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-4/igt@xe_exec_reset@multi-queue-gt-reset.html * igt@xe_exec_system_allocator@many-stride-new-prefetch: - shard-bmg: NOTRUN -> [INCOMPLETE][207] ([Intel XE#7098] / [Intel XE#8159]) [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-7/igt@xe_exec_system_allocator@many-stride-new-prefetch.html * igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-wt-multi-vma: - shard-lnl: NOTRUN -> [SKIP][208] ([Intel XE#6196]) +1 other test skip [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-6/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-wt-multi-vma.html * igt@xe_exec_threads@threads-multi-queue-cm-shared-vm-rebind: - shard-lnl: NOTRUN -> [SKIP][209] ([Intel XE#8378]) +38 other tests skip [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-4/igt@xe_exec_threads@threads-multi-queue-cm-shared-vm-rebind.html * igt@xe_exec_threads@threads-multi-queue-mixed-fd-userptr: - shard-bmg: NOTRUN -> [SKIP][210] ([Intel XE#8378]) +33 other tests skip [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-8/igt@xe_exec_threads@threads-multi-queue-mixed-fd-userptr.html * igt@xe_madvise@atomic-global: - shard-lnl: NOTRUN -> [SKIP][211] ([Intel XE#7980]) +1 other test skip [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-2/igt@xe_madvise@atomic-global.html * igt@xe_media_fill@media-fill: - shard-lnl: NOTRUN -> [SKIP][212] ([Intel XE#560] / [Intel XE#7321] / [Intel XE#7453]) [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-8/igt@xe_media_fill@media-fill.html - shard-bmg: NOTRUN -> [SKIP][213] ([Intel XE#2459] / [Intel XE#2596] / [Intel XE#7321] / [Intel XE#7453]) [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-9/igt@xe_media_fill@media-fill.html * igt@xe_mmap@pci-membarrier: - shard-lnl: NOTRUN -> [SKIP][214] ([Intel XE#5100] / [Intel XE#7322] / [Intel XE#7408]) +2 other tests skip [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-8/igt@xe_mmap@pci-membarrier.html * igt@xe_mmap@vram: - shard-lnl: NOTRUN -> [SKIP][215] ([Intel XE#1416]) [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-7/igt@xe_mmap@vram.html * igt@xe_module_load@reload: - shard-bmg: NOTRUN -> [ABORT][216] ([Intel XE#8007]) +1 other test abort [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-5/igt@xe_module_load@reload.html * igt@xe_multigpu_svm@mgpu-atomic-op-conflict: - shard-lnl: NOTRUN -> [SKIP][217] ([Intel XE#6964]) +10 other tests skip [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-1/igt@xe_multigpu_svm@mgpu-atomic-op-conflict.html * igt@xe_multigpu_svm@mgpu-latency-copy-basic: - shard-bmg: NOTRUN -> [SKIP][218] ([Intel XE#6964]) +8 other tests skip [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-10/igt@xe_multigpu_svm@mgpu-latency-copy-basic.html * igt@xe_noexec_ping_pong@basic: - shard-lnl: NOTRUN -> [SKIP][219] ([Intel XE#6259] / [Intel XE#7324] / [Intel XE#7406]) [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-5/igt@xe_noexec_ping_pong@basic.html * igt@xe_oa@oa-tlb-invalidate: - shard-lnl: NOTRUN -> [SKIP][220] ([Intel XE#2248] / [Intel XE#7325] / [Intel XE#7393]) [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-2/igt@xe_oa@oa-tlb-invalidate.html - shard-bmg: NOTRUN -> [SKIP][221] ([Intel XE#2248] / [Intel XE#7325] / [Intel XE#7393]) [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-6/igt@xe_oa@oa-tlb-invalidate.html * igt@xe_page_reclaim@basic-mixed: - shard-bmg: NOTRUN -> [SKIP][222] ([Intel XE#7793]) +6 other tests skip [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-8/igt@xe_page_reclaim@basic-mixed.html * igt@xe_page_reclaim@binds-null-vma: - shard-lnl: NOTRUN -> [SKIP][223] ([Intel XE#7793]) +10 other tests skip [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-2/igt@xe_page_reclaim@binds-null-vma.html * igt@xe_pat@pat-index-xehpc: - shard-bmg: NOTRUN -> [SKIP][224] ([Intel XE#1420] / [Intel XE#7590]) [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-4/igt@xe_pat@pat-index-xehpc.html * igt@xe_pat@pat-index-xelp: - shard-lnl: NOTRUN -> [SKIP][225] ([Intel XE#7590] / [Intel XE#977]) [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-5/igt@xe_pat@pat-index-xelp.html - shard-bmg: NOTRUN -> [SKIP][226] ([Intel XE#2245] / [Intel XE#7590]) [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-1/igt@xe_pat@pat-index-xelp.html * igt@xe_pat@pat-index-xelpg: - shard-lnl: NOTRUN -> [SKIP][227] ([Intel XE#7590] / [Intel XE#979]) [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-2/igt@xe_pat@pat-index-xelpg.html * igt@xe_pat@pat-sw-hw-reset-compare: - shard-lnl: NOTRUN -> [FAIL][228] ([Intel XE#7695]) +1 other test fail [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-6/igt@xe_pat@pat-sw-hw-reset-compare.html - shard-bmg: NOTRUN -> [FAIL][229] ([Intel XE#7695]) +1 other test fail [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-4/igt@xe_pat@pat-sw-hw-reset-compare.html * igt@xe_pat@xa-app-transient-media-on: - shard-bmg: NOTRUN -> [SKIP][230] ([Intel XE#7590]) [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-7/igt@xe_pat@xa-app-transient-media-on.html - shard-lnl: NOTRUN -> [SKIP][231] ([Intel XE#7590] / [Intel XE#7772]) [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-5/igt@xe_pat@xa-app-transient-media-on.html * igt@xe_peer2peer@write: - shard-bmg: NOTRUN -> [SKIP][232] ([Intel XE#2427] / [Intel XE#6953] / [Intel XE#7326] / [Intel XE#7353]) [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-6/igt@xe_peer2peer@write.html - shard-lnl: NOTRUN -> [SKIP][233] ([Intel XE#1061] / [Intel XE#7326] / [Intel XE#7353]) [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-2/igt@xe_peer2peer@write.html * igt@xe_pm@d3cold-basic: - shard-lnl: NOTRUN -> [SKIP][234] ([Intel XE#2284] / [Intel XE#366] / [Intel XE#7370]) +5 other tests skip [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-4/igt@xe_pm@d3cold-basic.html * igt@xe_pm@d3cold-i2c: - shard-lnl: NOTRUN -> [SKIP][235] ([Intel XE#5694] / [Intel XE#7370]) [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-5/igt@xe_pm@d3cold-i2c.html - shard-bmg: NOTRUN -> [SKIP][236] ([Intel XE#5694] / [Intel XE#7370]) [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-10/igt@xe_pm@d3cold-i2c.html * igt@xe_pm@d3cold-multiple-execs: - shard-bmg: NOTRUN -> [SKIP][237] ([Intel XE#2284] / [Intel XE#7370]) +4 other tests skip [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-1/igt@xe_pm@d3cold-multiple-execs.html * igt@xe_pm@d3hot-i2c: - shard-lnl: NOTRUN -> [SKIP][238] ([Intel XE#5742] / [Intel XE#7328] / [Intel XE#7400]) [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-3/igt@xe_pm@d3hot-i2c.html - shard-bmg: NOTRUN -> [SKIP][239] ([Intel XE#5742] / [Intel XE#7328] / [Intel XE#7400]) [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-6/igt@xe_pm@d3hot-i2c.html * igt@xe_pm@d3hot-mmap-vram: - shard-lnl: NOTRUN -> [SKIP][240] ([Intel XE#1948]) [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-3/igt@xe_pm@d3hot-mmap-vram.html * igt@xe_pm@s3-mocs: - shard-lnl: NOTRUN -> [SKIP][241] ([Intel XE#584] / [Intel XE#7369]) +8 other tests skip [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-2/igt@xe_pm@s3-mocs.html * igt@xe_pm_residency@aspm_link_residency: - shard-lnl: NOTRUN -> [SKIP][242] ([Intel XE#7271]) [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-4/igt@xe_pm_residency@aspm_link_residency.html * igt@xe_pmu@fn-engine-activity-sched-if-idle: - shard-lnl: NOTRUN -> [SKIP][243] ([Intel XE#4650] / [Intel XE#7347]) +2 other tests skip [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-1/igt@xe_pmu@fn-engine-activity-sched-if-idle.html * igt@xe_prefetch_fault@prefetch-fault-svm: - shard-bmg: NOTRUN -> [SKIP][244] ([Intel XE#7599]) [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-2/igt@xe_prefetch_fault@prefetch-fault-svm.html - shard-lnl: NOTRUN -> [SKIP][245] ([Intel XE#7599]) [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-4/igt@xe_prefetch_fault@prefetch-fault-svm.html * igt@xe_pxp@pxp-stale-bo-bind-post-termination-irq: - shard-bmg: NOTRUN -> [SKIP][246] ([Intel XE#4733] / [Intel XE#7417]) +8 other tests skip [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-3/igt@xe_pxp@pxp-stale-bo-bind-post-termination-irq.html * igt@xe_query@multigpu-query-invalid-cs-cycles: - shard-bmg: NOTRUN -> [SKIP][247] ([Intel XE#944]) +9 other tests skip [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-1/igt@xe_query@multigpu-query-invalid-cs-cycles.html * igt@xe_query@multigpu-query-pxp-status: - shard-lnl: NOTRUN -> [SKIP][248] ([Intel XE#944]) +11 other tests skip [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-5/igt@xe_query@multigpu-query-pxp-status.html * igt@xe_sriov_admin@bulk-exec-quantum-vfs-disabled: - shard-lnl: NOTRUN -> [SKIP][249] ([Intel XE#7174]) +4 other tests skip [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-3/igt@xe_sriov_admin@bulk-exec-quantum-vfs-disabled.html * igt@xe_sriov_auto_provisioning@selfconfig-basic: - shard-lnl: NOTRUN -> [SKIP][250] ([Intel XE#4130] / [Intel XE#7366]) +3 other tests skip [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-8/igt@xe_sriov_auto_provisioning@selfconfig-basic.html * igt@xe_sriov_flr@flr-basic: - shard-lnl: NOTRUN -> [SKIP][251] ([Intel XE#7569]) [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-1/igt@xe_sriov_flr@flr-basic.html * igt@xe_sriov_flr@flr-vf1-clear: - shard-lnl: NOTRUN -> [SKIP][252] ([Intel XE#3342]) +1 other test skip [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-2/igt@xe_sriov_flr@flr-vf1-clear.html * igt@xe_sriov_flr@flr-vfs-parallel: - shard-lnl: NOTRUN -> [SKIP][253] ([Intel XE#4273]) [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-3/igt@xe_sriov_flr@flr-vfs-parallel.html * igt@xe_sriov_scheduling@equal-throughput-normal-priority: - shard-lnl: NOTRUN -> [SKIP][254] ([Intel XE#8339]) +2 other tests skip [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-2/igt@xe_sriov_scheduling@equal-throughput-normal-priority.html * igt@xe_sriov_vfio@region-info: - shard-lnl: NOTRUN -> [SKIP][255] ([Intel XE#7724]) +2 other tests skip [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-4/igt@xe_sriov_vfio@region-info.html * igt@xe_sriov_vram@vf-access-provisioned: - shard-lnl: NOTRUN -> [SKIP][256] ([Intel XE#6376] / [Intel XE#7330] / [Intel XE#7422]) +1 other test skip [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-5/igt@xe_sriov_vram@vf-access-provisioned.html * igt@xe_survivability@i2c-functionality: - shard-lnl: NOTRUN -> [SKIP][257] ([Intel XE#8415]) [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-4/igt@xe_survivability@i2c-functionality.html * igt@xe_vm@overcommit-nonfault-vram-lr-defer: - shard-lnl: NOTRUN -> [SKIP][258] ([Intel XE#7892]) +3 other tests skip [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-8/igt@xe_vm@overcommit-nonfault-vram-lr-defer.html #### Possible fixes #### * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-lnl: [FAIL][259] ([Intel XE#1231]) -> [PASS][260] [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9027/shard-lnl-2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_cursor_legacy@flip-vs-cursor-legacy: - shard-bmg: [FAIL][261] ([Intel XE#7809]) -> [PASS][262] [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9027/shard-bmg-4/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-8/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html * igt@kms_flip@2x-flip-vs-expired-vblank@cd-dp2-hdmi-a3: - shard-bmg: [FAIL][263] ([Intel XE#3149] / [Intel XE#3321]) -> [PASS][264] +1 other test pass [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9027/shard-bmg-10/igt@kms_flip@2x-flip-vs-expired-vblank@cd-dp2-hdmi-a3.html [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank@cd-dp2-hdmi-a3.html * igt@kms_flip@flip-vs-expired-vblank@c-edp1: - shard-lnl: [FAIL][265] ([Intel XE#301] / [Intel XE#3149]) -> [PASS][266] [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9027/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html * igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early: - shard-bmg: [ABORT][267] ([Intel XE#8007]) -> [PASS][268] [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9027/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-9/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html #### Warnings #### * igt@kms_flip@flip-vs-expired-vblank: - shard-lnl: [FAIL][269] ([Intel XE#301] / [Intel XE#3149]) -> [FAIL][270] ([Intel XE#301]) [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9027/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank.html [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank.html * igt@kms_tiled_display@basic-test-pattern: - shard-bmg: [FAIL][271] ([Intel XE#1729] / [Intel XE#7424]) -> [SKIP][272] ([Intel XE#2426] / [Intel XE#5848]) [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9027/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern.html [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/shard-bmg-2/igt@kms_tiled_display@basic-test-pattern.html [Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061 [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125 [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127 [Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128 [Intel XE#1131]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1131 [Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1231 [Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1416 [Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1428 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1447 [Intel XE#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467 [Intel XE#1468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1468 [Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469 [Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508 [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729 [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#1948]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1948 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245 [Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248 [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#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328 [Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330 [Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370 [Intel XE#2372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2372 [Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374 [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387 [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427 [Intel XE#2459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459 [Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486 [Intel XE#2596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669 [Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#2853]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2853 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893 [Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149 [Intel XE#3157]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3157 [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323 [Intel XE#3279]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3279 [Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330 [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304 [Intel XE#3307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3307 [Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342 [Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#3433]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3433 [Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352 [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544 [Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362 [Intel XE#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658 [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130 [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141 [Intel XE#4156]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4156 [Intel XE#4210]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4210 [Intel XE#4273]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4273 [Intel XE#4298]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4298 [Intel XE#4302]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302 [Intel XE#4329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4329 [Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354 [Intel XE#4416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4416 [Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422 [Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596 [Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608 [Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609 [Intel XE#4650]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4650 [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733 [Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020 [Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021 [Intel XE#5100]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5100 [Intel XE#5191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5191 [Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560 [Intel XE#5694]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5694 [Intel XE#5742]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5742 [Intel XE#5813]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5813 [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584 [Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848 [Intel XE#5854]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5854 [Intel XE#5857]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5857 [Intel XE#5870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5870 [Intel XE#5873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5873 [Intel XE#5882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5882 [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599 [Intel XE#6011]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6011 [Intel XE#6035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6035 [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610 [Intel XE#6127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6127 [Intel XE#6128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6128 [Intel XE#6196]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6196 [Intel XE#6259]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6259 [Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312 [Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321 [Intel XE#6376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6376 [Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503 [Intel XE#6507]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6507 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#6540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6540 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#6592]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6592 [Intel XE#6599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6599 [Intel XE#6645]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6645 [Intel XE#6707]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6707 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886 [Intel XE#6900]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6900 [Intel XE#6901]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6901 [Intel XE#6911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6911 [Intel XE#6912]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6912 [Intel XE#6953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6953 [Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964 [Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974 [Intel XE#7008]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7008 [Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701 [Intel XE#702]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/702 [Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703 [Intel XE#7059]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7059 [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061 [Intel XE#7085]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7085 [Intel XE#7086]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7086 [Intel XE#7098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7098 [Intel XE#7173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7173 [Intel XE#7174]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7174 [Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178 [Intel XE#7179]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7179 [Intel XE#7271]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7271 [Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283 [Intel XE#7294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7294 [Intel XE#7304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7304 [Intel XE#7308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7308 [Intel XE#7312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7312 [Intel XE#7316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7316 [Intel XE#7321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7321 [Intel XE#7322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7322 [Intel XE#7324]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7324 [Intel XE#7325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7325 [Intel XE#7326]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7326 [Intel XE#7328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7328 [Intel XE#7330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7330 [Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342 [Intel XE#7343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7343 [Intel XE#7344]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7344 [Intel XE#7345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7345 [Intel XE#7346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7346 [Intel XE#7347]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7347 [Intel XE#7348]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7348 [Intel XE#7349]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7349 [Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351 [Intel XE#7353]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7353 [Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355 [Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356 [Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358 [Intel XE#7359]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7359 [Intel XE#7360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7360 [Intel XE#7362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7362 [Intel XE#7366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7366 [Intel XE#7367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7367 [Intel XE#7368]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7368 [Intel XE#7369]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7369 [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#7375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7375 [Intel XE#7376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7376 [Intel XE#7377]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7377 [Intel XE#7378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7378 [Intel XE#7381]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7381 [Intel XE#7382]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7382 [Intel XE#7383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7383 [Intel XE#7385]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7385 [Intel XE#7386]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7386 [Intel XE#7387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7387 [Intel XE#7389]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7389 [Intel XE#7390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7390 [Intel XE#7391]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7391 [Intel XE#7393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7393 [Intel XE#7396]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7396 [Intel XE#7399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7399 [Intel XE#7400]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7400 [Intel XE#7402]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7402 [Intel XE#7406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7406 [Intel XE#7408]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7408 [Intel XE#7413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7413 [Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417 [Intel XE#7422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7422 [Intel XE#7424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7424 [Intel XE#7425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7425 [Intel XE#7429]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7429 [Intel XE#7435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7435 [Intel XE#7439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7439 [Intel XE#7442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7442 [Intel XE#7448]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7448 [Intel XE#7449]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7449 [Intel XE#7450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7450 [Intel XE#7453]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7453 [Intel XE#7466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7466 [Intel XE#7467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7467 [Intel XE#7471]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7471 [Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482 [Intel XE#7569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7569 [Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590 [Intel XE#7591]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7591 [Intel XE#7599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7599 [Intel XE#7642]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7642 [Intel XE#7644]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7644 [Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679 [Intel XE#7695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7695 [Intel XE#7724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7724 [Intel XE#7760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7760 [Intel XE#7772]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7772 [Intel XE#7793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7793 [Intel XE#7794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7794 [Intel XE#7795]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7795 [Intel XE#7809]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7809 [Intel XE#7865]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7865 [Intel XE#7892]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7892 [Intel XE#7905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7905 [Intel XE#7980]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7980 [Intel XE#8007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8007 [Intel XE#8159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8159 [Intel XE#8265]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8265 [Intel XE#8303]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8303 [Intel XE#8339]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8339 [Intel XE#8348]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8348 [Intel XE#8355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8355 [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [Intel XE#8364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8364 [Intel XE#8365]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8365 [Intel XE#8369]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8369 [Intel XE#8370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8370 [Intel XE#8374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8374 [Intel XE#8378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8378 [Intel XE#8395]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8395 [Intel XE#8396]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8396 [Intel XE#8397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8397 [Intel XE#8399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8399 [Intel XE#8415]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8415 [Intel XE#8428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8428 [Intel XE#8586]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8586 [Intel XE#8695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8695 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977 [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979 Build changes ------------- * IGT: IGT_9027 -> IGTPW_15599 * Linux: xe-5484-3cbfb56ee0481aaabc9369045a4b120a20dfccc4 -> xe-5491-28e3f47d47a61b5e28e7566944479e9c9715d41d IGTPW_15599: 15599 IGT_9027: 9027 xe-5484-3cbfb56ee0481aaabc9369045a4b120a20dfccc4: 3cbfb56ee0481aaabc9369045a4b120a20dfccc4 xe-5491-28e3f47d47a61b5e28e7566944479e9c9715d41d: 28e3f47d47a61b5e28e7566944479e9c9715d41d == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15599/index.html [-- Attachment #2: Type: text/html, Size: 106851 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH] tools/xe-perf-recorder: expose some OA stream open properties 2026-07-28 6:36 [PATCH] tools/xe-perf-recorder: expose some OA stream open properties Shekhar Chauhan ` (4 preceding siblings ...) 2026-07-28 11:08 ` ✗ Xe.CI.FULL: " Patchwork @ 2026-07-30 2:54 ` Dixit, Ashutosh 2026-07-30 8:13 ` Shekhar Chauhan 5 siblings, 1 reply; 10+ messages in thread From: Dixit, Ashutosh @ 2026-07-30 2:54 UTC (permalink / raw) To: Shekhar Chauhan; +Cc: igt-dev, Umesh Nerlige Ramappa On Mon, 27 Jul 2026 23:36:06 -0700, Shekhar Chauhan wrote: > > xe-perf-recorder only passes 5 of the OA stream open properties to > DRM_XE_OBSERVATION_OP_STREAM_OPEN, leaving the rest without an open > source consumer. Add few of the remaining ones. > > Signed-off-by: Shekhar Chauhan <shekhar.chauhan@intel.com> > --- > tools/xe-perf/xe_perf_recorder.c | 105 ++++++++++++++++++++++++++++--- > 1 file changed, 98 insertions(+), 7 deletions(-) > > diff --git a/tools/xe-perf/xe_perf_recorder.c b/tools/xe-perf/xe_perf_recorder.c > index c69050b43..06d1016a0 100644 > --- a/tools/xe-perf/xe_perf_recorder.c > +++ b/tools/xe-perf/xe_perf_recorder.c > @@ -26,6 +26,7 @@ > #include <unistd.h> > > #include "igt_core.h" > +#include "igt_sizes.h" Not needed, see below. > #include "intel_batchbuffer.h" > #include "intel_chipset.h" > #include "ioctl_wrappers.h" > @@ -364,6 +365,16 @@ struct recording_context { > struct drm_xe_oa_unit *oa_unit; > struct drm_xe_engine_class_instance *hwe; > > + /* Optional OA stream open properties */ > + bool oa_disabled; > + bool no_preempt; > + bool exec_queue_id_set; > + uint32_t exec_queue_id; > + bool oa_engine_instance_set; > + uint32_t oa_engine_instance; > + uint64_t oa_buffer_size; > + uint64_t wait_num_reports; > + > uint32_t vm; > uint32_t exec_queue; > struct intel_bb *ibb; > @@ -477,7 +488,7 @@ perf_open(struct recording_context *ctx) > { > int stream_fd; > > - uint64_t properties[] = { > + uint64_t properties[32] = { > DRM_XE_OA_PROPERTY_OA_UNIT_ID, ctx->oa_unit->oa_unit_id, > > /* Include OA reports in samples */ > @@ -488,10 +499,39 @@ perf_open(struct recording_context *ctx) > DRM_XE_OA_PROPERTY_OA_FORMAT, __ff(ctx->metric_set->perf_oa_format), > DRM_XE_OA_PROPERTY_OA_PERIOD_EXPONENT, ctx->oa_exponent, > }; > - struct intel_xe_oa_open_prop param = { > - .num_properties = ARRAY_SIZE(properties) / 2, > - .properties_ptr = to_user_pointer(properties), > - }; > + struct intel_xe_oa_open_prop param = { 0 }; > + uint32_t n = 10; /* 5 mandatory properties (10 u64 slots) set above */ > + > + /* Optional properties, only passed when given on the command line */ Let us not do this new business of mandatory and optional properties. Just add the two properties we are adding in this patch (see below) to the properties array above and populate their default values: 64 MB for oa_buffer_size and 1 for wait_num_reports (and override the defaults if commond line input is provided), similar to what is done for the previously existing properties. > + if (ctx->oa_disabled) { > + properties[n++] = DRM_XE_OA_PROPERTY_OA_DISABLED; > + properties[n++] = 1; > + } > + if (ctx->exec_queue_id_set) { > + properties[n++] = DRM_XE_OA_PROPERTY_EXEC_QUEUE_ID; > + properties[n++] = ctx->exec_queue_id; > + } > + if (ctx->oa_engine_instance_set) { > + properties[n++] = DRM_XE_OA_PROPERTY_OA_ENGINE_INSTANCE; > + properties[n++] = ctx->oa_engine_instance; > + } > + if (ctx->no_preempt) { > + properties[n++] = DRM_XE_OA_PROPERTY_NO_PREEMPT; > + properties[n++] = 1; > + } > + if (ctx->oa_buffer_size) { > + properties[n++] = DRM_XE_OA_PROPERTY_OA_BUFFER_SIZE; > + properties[n++] = ctx->oa_buffer_size; > + } > + if (ctx->wait_num_reports) { > + properties[n++] = DRM_XE_OA_PROPERTY_WAIT_NUM_REPORTS; > + properties[n++] = ctx->wait_num_reports; > + } > + > + igt_assert(n <= ARRAY_SIZE(properties)); > + > + param.num_properties = n / 2; > + param.properties_ptr = to_user_pointer(properties); > > stream_fd = intel_xe_perf_ioctl(ctx->drm_fd, DRM_XE_OBSERVATION_OP_STREAM_OPEN, ¶m); > if (stream_fd < 0) { > @@ -924,7 +964,14 @@ usage(const char *name) > " --output, -o <path> Output file (default = xe_perf.record)\n" > " --cpu-clock, -k <path> Cpu clock to use for correlations\n" > " Values: boot, mono, mono_raw (default = mono)\n" > - " --oa-unit-id -u <value> OA unit id for the capture.\n", > + " --oa-unit-id -u <value> OA unit id for the capture.\n" > + " --oa-disabled -D Open the OA stream in the disabled state\n" > + " (the stream is enabled right after open)\n" > + " --exec-queue-id -q <value> Exec queue id for context scoped capture\n" > + " --oa-engine-instance -e <value> Engine instance for context scoped capture\n" > + " --no-preempt -n Disable preemption (requires --exec-queue-id)\n" > + " --oa-buffer-size -b <value> OA buffer size in bytes (pow2, 128K - 128M)\n" > + " --wait-num-reports -w <value> Min reports before poll()/read() unblocks\n", > name); > } > > @@ -1038,6 +1085,12 @@ main(int argc, char *argv[]) > {"command-fifo", required_argument, 0, 'f'}, > {"cpu-clock", required_argument, 0, 'k'}, > {"oa-unit-id", required_argument, 0, 'u'}, > + {"oa-disabled", no_argument, 0, 'D'}, There is no point adding this command line option, if we are just going to re-enable the stream right after. Let us remove this command line option. But then always add the DRM_XE_OA_PROPERTY_OA_DISABLED internally, and re-enable the stream right after opening it. > + {"exec-queue-id", required_argument, 0, 'q'}, > + {"oa-engine-instance", required_argument, 0, 'e'}, > + {"no-preempt", no_argument, 0, 'n'}, I don't think these 3 can be command line options. Because we are not doing anything with them in xe_perf_recorder yet. The issue is: to pass exec-queue-id, the user will have to create an exec_queue, and then pass in the exec-queue-id. But even if the caller does this (say fork the xe_perf_recorder process), the exec-queue-id is created against the drm_fd in the parent process and the xe_perf_recorder will not find the exec_queue. So the command line option is useless. So in this patch I think just drop these 3 command line options. These will need to be implemented internally in xe_perf_recorder later and actually used (by creating a context specific buffer and issuing a MI_REPORT_PERF_COUNT command there and then dumping that report out, similar to what we do for mmio_trigger. So let's drop these 3 args from this patch. I will also confirm this with Umesh. > + {"oa-buffer-size", required_argument, 0, 'b'}, > + {"wait-num-reports", required_argument, 0, 'w'}, These two can be added in this patch. > {0, 0, 0, 0} > }; > const struct { > @@ -1068,7 +1121,7 @@ main(int argc, char *argv[]) > .oa_unit_id = 0, > }; > > - while ((opt = getopt_long(argc, argv, "hc:d:p:m:Co:s:f:k:P:u:", long_options, NULL)) != -1) { > + while ((opt = getopt_long(argc, argv, "hc:d:p:m:Co:s:f:k:P:u:Dq:e:nb:w:", long_options, NULL)) != -1) { > switch (opt) { > case 'h': > usage(argv[0]); > @@ -1119,6 +1172,26 @@ main(int argc, char *argv[]) > case 'u': > ctx.oa_unit_id = atoi(optarg); > break; > + case 'D': > + ctx.oa_disabled = true; > + break; > + case 'q': > + ctx.exec_queue_id = strtoul(optarg, NULL, 0); > + ctx.exec_queue_id_set = true; > + break; > + case 'e': > + ctx.oa_engine_instance = strtoul(optarg, NULL, 0); > + ctx.oa_engine_instance_set = true; > + break; > + case 'n': > + ctx.no_preempt = true; > + break; > + case 'b': > + ctx.oa_buffer_size = strtoull(optarg, NULL, 0); > + break; > + case 'w': > + ctx.wait_num_reports = strtoull(optarg, NULL, 0); > + break; > default: > fprintf(stderr, "Internal error: " > "unexpected getopt value: %d\n", opt); > @@ -1127,6 +1200,17 @@ main(int argc, char *argv[]) > } > } > > + if (ctx.no_preempt && !ctx.exec_queue_id_set) { > + fprintf(stderr, "--no-preempt requires --exec-queue-id\n"); > + return EXIT_FAILURE; > + } > + if (ctx.oa_buffer_size && > + ((ctx.oa_buffer_size & (ctx.oa_buffer_size - 1)) || > + ctx.oa_buffer_size < SZ_128K || ctx.oa_buffer_size > SZ_128M)) { > + fprintf(stderr, "--oa-buffer-size must be a power of 2 in [128K, 128M]\n"); > + return EXIT_FAILURE; > + } No need to do this check here. Kernel will check and fail the OA stream open if a weird size is passed in :-) > + > if (dev_node_id == -2) { > print_intel_devices(); > return EXIT_SUCCESS; > @@ -1291,6 +1375,13 @@ main(int argc, char *argv[]) > goto fail; > } > > + if (ctx.oa_disabled && > + perf_ioctl(ctx.perf_fd, DRM_XE_OBSERVATION_IOCTL_ENABLE, 0) < 0) { > + fprintf(stderr, "Unable to enable xe oa stream: %s\n", > + strerror(errno)); > + goto fail; > + } > + > init_mmio_trigger_ctx(&ctx); > emit_oa_trigger(&ctx, 0xc0ffee01); > > -- > 2.53.0 > ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH] tools/xe-perf-recorder: expose some OA stream open properties 2026-07-30 2:54 ` [PATCH] " Dixit, Ashutosh @ 2026-07-30 8:13 ` Shekhar Chauhan 2026-07-30 16:20 ` Dixit, Ashutosh 0 siblings, 1 reply; 10+ messages in thread From: Shekhar Chauhan @ 2026-07-30 8:13 UTC (permalink / raw) To: Dixit, Ashutosh; +Cc: igt-dev, Umesh Nerlige Ramappa On 7/30/2026 8:24, Dixit, Ashutosh wrote: > On Mon, 27 Jul 2026 23:36:06 -0700, Shekhar Chauhan wrote: >> xe-perf-recorder only passes 5 of the OA stream open properties to >> DRM_XE_OBSERVATION_OP_STREAM_OPEN, leaving the rest without an open >> source consumer. Add few of the remaining ones. >> >> Signed-off-by: Shekhar Chauhan <shekhar.chauhan@intel.com> >> --- >> tools/xe-perf/xe_perf_recorder.c | 105 ++++++++++++++++++++++++++++--- >> 1 file changed, 98 insertions(+), 7 deletions(-) >> >> diff --git a/tools/xe-perf/xe_perf_recorder.c b/tools/xe-perf/xe_perf_recorder.c >> index c69050b43..06d1016a0 100644 >> --- a/tools/xe-perf/xe_perf_recorder.c >> +++ b/tools/xe-perf/xe_perf_recorder.c >> @@ -26,6 +26,7 @@ >> #include <unistd.h> >> >> #include "igt_core.h" >> +#include "igt_sizes.h" > Not needed, see below. > >> #include "intel_batchbuffer.h" >> #include "intel_chipset.h" >> #include "ioctl_wrappers.h" >> @@ -364,6 +365,16 @@ struct recording_context { >> struct drm_xe_oa_unit *oa_unit; >> struct drm_xe_engine_class_instance *hwe; >> >> + /* Optional OA stream open properties */ >> + bool oa_disabled; >> + bool no_preempt; >> + bool exec_queue_id_set; >> + uint32_t exec_queue_id; >> + bool oa_engine_instance_set; >> + uint32_t oa_engine_instance; >> + uint64_t oa_buffer_size; >> + uint64_t wait_num_reports; >> + >> uint32_t vm; >> uint32_t exec_queue; >> struct intel_bb *ibb; >> @@ -477,7 +488,7 @@ perf_open(struct recording_context *ctx) >> { >> int stream_fd; >> >> - uint64_t properties[] = { >> + uint64_t properties[32] = { >> DRM_XE_OA_PROPERTY_OA_UNIT_ID, ctx->oa_unit->oa_unit_id, >> >> /* Include OA reports in samples */ >> @@ -488,10 +499,39 @@ perf_open(struct recording_context *ctx) >> DRM_XE_OA_PROPERTY_OA_FORMAT, __ff(ctx->metric_set->perf_oa_format), >> DRM_XE_OA_PROPERTY_OA_PERIOD_EXPONENT, ctx->oa_exponent, >> }; >> - struct intel_xe_oa_open_prop param = { >> - .num_properties = ARRAY_SIZE(properties) / 2, >> - .properties_ptr = to_user_pointer(properties), >> - }; >> + struct intel_xe_oa_open_prop param = { 0 }; >> + uint32_t n = 10; /* 5 mandatory properties (10 u64 slots) set above */ >> + >> + /* Optional properties, only passed when given on the command line */ > Let us not do this new business of mandatory and optional properties. Just > add the two properties we are adding in this patch (see below) to the > properties array above and populate their default values: 64 MB for > oa_buffer_size and 1 for wait_num_reports (and override the defaults if > commond line input is provided), similar to what is done for the previously > existing properties. > >> + if (ctx->oa_disabled) { >> + properties[n++] = DRM_XE_OA_PROPERTY_OA_DISABLED; >> + properties[n++] = 1; >> + } >> + if (ctx->exec_queue_id_set) { >> + properties[n++] = DRM_XE_OA_PROPERTY_EXEC_QUEUE_ID; >> + properties[n++] = ctx->exec_queue_id; >> + } >> + if (ctx->oa_engine_instance_set) { >> + properties[n++] = DRM_XE_OA_PROPERTY_OA_ENGINE_INSTANCE; >> + properties[n++] = ctx->oa_engine_instance; >> + } >> + if (ctx->no_preempt) { >> + properties[n++] = DRM_XE_OA_PROPERTY_NO_PREEMPT; >> + properties[n++] = 1; >> + } >> + if (ctx->oa_buffer_size) { >> + properties[n++] = DRM_XE_OA_PROPERTY_OA_BUFFER_SIZE; >> + properties[n++] = ctx->oa_buffer_size; >> + } >> + if (ctx->wait_num_reports) { >> + properties[n++] = DRM_XE_OA_PROPERTY_WAIT_NUM_REPORTS; >> + properties[n++] = ctx->wait_num_reports; >> + } >> + >> + igt_assert(n <= ARRAY_SIZE(properties)); >> + >> + param.num_properties = n / 2; >> + param.properties_ptr = to_user_pointer(properties); >> >> stream_fd = intel_xe_perf_ioctl(ctx->drm_fd, DRM_XE_OBSERVATION_OP_STREAM_OPEN, ¶m); >> if (stream_fd < 0) { >> @@ -924,7 +964,14 @@ usage(const char *name) >> " --output, -o <path> Output file (default = xe_perf.record)\n" >> " --cpu-clock, -k <path> Cpu clock to use for correlations\n" >> " Values: boot, mono, mono_raw (default = mono)\n" >> - " --oa-unit-id -u <value> OA unit id for the capture.\n", >> + " --oa-unit-id -u <value> OA unit id for the capture.\n" >> + " --oa-disabled -D Open the OA stream in the disabled state\n" >> + " (the stream is enabled right after open)\n" >> + " --exec-queue-id -q <value> Exec queue id for context scoped capture\n" >> + " --oa-engine-instance -e <value> Engine instance for context scoped capture\n" >> + " --no-preempt -n Disable preemption (requires --exec-queue-id)\n" >> + " --oa-buffer-size -b <value> OA buffer size in bytes (pow2, 128K - 128M)\n" >> + " --wait-num-reports -w <value> Min reports before poll()/read() unblocks\n", >> name); >> } >> >> @@ -1038,6 +1085,12 @@ main(int argc, char *argv[]) >> {"command-fifo", required_argument, 0, 'f'}, >> {"cpu-clock", required_argument, 0, 'k'}, >> {"oa-unit-id", required_argument, 0, 'u'}, >> + {"oa-disabled", no_argument, 0, 'D'}, > There is no point adding this command line option, if we are just going to > re-enable the stream right after. > > Let us remove this command line option. But then always add the > DRM_XE_OA_PROPERTY_OA_DISABLED internally, and re-enable the stream right > after opening it. But then, why do we even have this thing? Having a disabled option but not giving it as a command line param, not allowing the user to disable the stream, and even just add the DISABLED flag and then re-enable the stream again, makes it counter-intuitive. Or is this because we can't touch the kernel code or if that thing is now part of the uAPI and we can't edit it now.? I'll address rest of the changes as you asked. -shekhar > >> + {"exec-queue-id", required_argument, 0, 'q'}, >> + {"oa-engine-instance", required_argument, 0, 'e'}, >> + {"no-preempt", no_argument, 0, 'n'}, > I don't think these 3 can be command line options. Because we are not doing > anything with them in xe_perf_recorder yet. > > The issue is: to pass exec-queue-id, the user will have to create an > exec_queue, and then pass in the exec-queue-id. But even if the caller does > this (say fork the xe_perf_recorder process), the exec-queue-id is created > against the drm_fd in the parent process and the xe_perf_recorder will not > find the exec_queue. So the command line option is useless. > > So in this patch I think just drop these 3 command line options. These will > need to be implemented internally in xe_perf_recorder later and actually > used (by creating a context specific buffer and issuing a > MI_REPORT_PERF_COUNT command there and then dumping that report out, > similar to what we do for mmio_trigger. > > So let's drop these 3 args from this patch. I will also confirm this with > Umesh. > >> + {"oa-buffer-size", required_argument, 0, 'b'}, >> + {"wait-num-reports", required_argument, 0, 'w'}, > These two can be added in this patch. > >> {0, 0, 0, 0} >> }; >> const struct { >> @@ -1068,7 +1121,7 @@ main(int argc, char *argv[]) >> .oa_unit_id = 0, >> }; >> >> - while ((opt = getopt_long(argc, argv, "hc:d:p:m:Co:s:f:k:P:u:", long_options, NULL)) != -1) { >> + while ((opt = getopt_long(argc, argv, "hc:d:p:m:Co:s:f:k:P:u:Dq:e:nb:w:", long_options, NULL)) != -1) { >> switch (opt) { >> case 'h': >> usage(argv[0]); >> @@ -1119,6 +1172,26 @@ main(int argc, char *argv[]) >> case 'u': >> ctx.oa_unit_id = atoi(optarg); >> break; >> + case 'D': >> + ctx.oa_disabled = true; >> + break; >> + case 'q': >> + ctx.exec_queue_id = strtoul(optarg, NULL, 0); >> + ctx.exec_queue_id_set = true; >> + break; >> + case 'e': >> + ctx.oa_engine_instance = strtoul(optarg, NULL, 0); >> + ctx.oa_engine_instance_set = true; >> + break; >> + case 'n': >> + ctx.no_preempt = true; >> + break; >> + case 'b': >> + ctx.oa_buffer_size = strtoull(optarg, NULL, 0); >> + break; >> + case 'w': >> + ctx.wait_num_reports = strtoull(optarg, NULL, 0); >> + break; >> default: >> fprintf(stderr, "Internal error: " >> "unexpected getopt value: %d\n", opt); >> @@ -1127,6 +1200,17 @@ main(int argc, char *argv[]) >> } >> } >> >> + if (ctx.no_preempt && !ctx.exec_queue_id_set) { >> + fprintf(stderr, "--no-preempt requires --exec-queue-id\n"); >> + return EXIT_FAILURE; >> + } >> + if (ctx.oa_buffer_size && >> + ((ctx.oa_buffer_size & (ctx.oa_buffer_size - 1)) || >> + ctx.oa_buffer_size < SZ_128K || ctx.oa_buffer_size > SZ_128M)) { >> + fprintf(stderr, "--oa-buffer-size must be a power of 2 in [128K, 128M]\n"); >> + return EXIT_FAILURE; >> + } > No need to do this check here. Kernel will check and fail the OA stream > open if a weird size is passed in :-) > >> + >> if (dev_node_id == -2) { >> print_intel_devices(); >> return EXIT_SUCCESS; >> @@ -1291,6 +1375,13 @@ main(int argc, char *argv[]) >> goto fail; >> } >> >> + if (ctx.oa_disabled && >> + perf_ioctl(ctx.perf_fd, DRM_XE_OBSERVATION_IOCTL_ENABLE, 0) < 0) { >> + fprintf(stderr, "Unable to enable xe oa stream: %s\n", >> + strerror(errno)); >> + goto fail; >> + } >> + >> init_mmio_trigger_ctx(&ctx); >> emit_oa_trigger(&ctx, 0xc0ffee01); >> >> -- >> 2.53.0 >> -- Shekhar Chauhan Linux Graphics Software Engineer Intel Corporation ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH] tools/xe-perf-recorder: expose some OA stream open properties 2026-07-30 8:13 ` Shekhar Chauhan @ 2026-07-30 16:20 ` Dixit, Ashutosh 0 siblings, 0 replies; 10+ messages in thread From: Dixit, Ashutosh @ 2026-07-30 16:20 UTC (permalink / raw) To: Shekhar Chauhan; +Cc: igt-dev, Umesh Nerlige Ramappa On Thu, 30 Jul 2026 01:13:19 -0700, Shekhar Chauhan wrote: > On 7/30/2026 8:24, Dixit, Ashutosh wrote: > > On Mon, 27 Jul 2026 23:36:06 -0700, Shekhar Chauhan wrote: > >> xe-perf-recorder only passes 5 of the OA stream open properties to > >> DRM_XE_OBSERVATION_OP_STREAM_OPEN, leaving the rest without an open > >> source consumer. Add few of the remaining ones. > >> > >> Signed-off-by: Shekhar Chauhan <shekhar.chauhan@intel.com> > >> --- > >> tools/xe-perf/xe_perf_recorder.c | 105 ++++++++++++++++++++++++++++--- > >> 1 file changed, 98 insertions(+), 7 deletions(-) > >> > >> diff --git a/tools/xe-perf/xe_perf_recorder.c b/tools/xe-perf/xe_perf_recorder.c > >> index c69050b43..06d1016a0 100644 > >> --- a/tools/xe-perf/xe_perf_recorder.c > >> +++ b/tools/xe-perf/xe_perf_recorder.c > >> @@ -26,6 +26,7 @@ > >> #include <unistd.h> > >> > >> #include "igt_core.h" > >> +#include "igt_sizes.h" > > Not needed, see below. > > > >> #include "intel_batchbuffer.h" > >> #include "intel_chipset.h" > >> #include "ioctl_wrappers.h" > >> @@ -364,6 +365,16 @@ struct recording_context { > >> struct drm_xe_oa_unit *oa_unit; > >> struct drm_xe_engine_class_instance *hwe; > >> > >> + /* Optional OA stream open properties */ > >> + bool oa_disabled; > >> + bool no_preempt; > >> + bool exec_queue_id_set; > >> + uint32_t exec_queue_id; > >> + bool oa_engine_instance_set; > >> + uint32_t oa_engine_instance; > >> + uint64_t oa_buffer_size; > >> + uint64_t wait_num_reports; > >> + > >> uint32_t vm; > >> uint32_t exec_queue; > >> struct intel_bb *ibb; > >> @@ -477,7 +488,7 @@ perf_open(struct recording_context *ctx) > >> { > >> int stream_fd; > >> > >> - uint64_t properties[] = { > >> + uint64_t properties[32] = { > >> DRM_XE_OA_PROPERTY_OA_UNIT_ID, ctx->oa_unit->oa_unit_id, > >> > >> /* Include OA reports in samples */ > >> @@ -488,10 +499,39 @@ perf_open(struct recording_context *ctx) > >> DRM_XE_OA_PROPERTY_OA_FORMAT, __ff(ctx->metric_set->perf_oa_format), > >> DRM_XE_OA_PROPERTY_OA_PERIOD_EXPONENT, ctx->oa_exponent, > >> }; > >> - struct intel_xe_oa_open_prop param = { > >> - .num_properties = ARRAY_SIZE(properties) / 2, > >> - .properties_ptr = to_user_pointer(properties), > >> - }; > >> + struct intel_xe_oa_open_prop param = { 0 }; > >> + uint32_t n = 10; /* 5 mandatory properties (10 u64 slots) set above */ > >> + > >> + /* Optional properties, only passed when given on the command line */ > > Let us not do this new business of mandatory and optional properties. Just > > add the two properties we are adding in this patch (see below) to the > > properties array above and populate their default values: 64 MB for > > oa_buffer_size and 1 for wait_num_reports (and override the defaults if > > commond line input is provided), similar to what is done for the previously > > existing properties. > > > >> + if (ctx->oa_disabled) { > >> + properties[n++] = DRM_XE_OA_PROPERTY_OA_DISABLED; > >> + properties[n++] = 1; > >> + } > >> + if (ctx->exec_queue_id_set) { > >> + properties[n++] = DRM_XE_OA_PROPERTY_EXEC_QUEUE_ID; > >> + properties[n++] = ctx->exec_queue_id; > >> + } > >> + if (ctx->oa_engine_instance_set) { > >> + properties[n++] = DRM_XE_OA_PROPERTY_OA_ENGINE_INSTANCE; > >> + properties[n++] = ctx->oa_engine_instance; > >> + } > >> + if (ctx->no_preempt) { > >> + properties[n++] = DRM_XE_OA_PROPERTY_NO_PREEMPT; > >> + properties[n++] = 1; > >> + } > >> + if (ctx->oa_buffer_size) { > >> + properties[n++] = DRM_XE_OA_PROPERTY_OA_BUFFER_SIZE; > >> + properties[n++] = ctx->oa_buffer_size; > >> + } > >> + if (ctx->wait_num_reports) { > >> + properties[n++] = DRM_XE_OA_PROPERTY_WAIT_NUM_REPORTS; > >> + properties[n++] = ctx->wait_num_reports; > >> + } > >> + > >> + igt_assert(n <= ARRAY_SIZE(properties)); > >> + > >> + param.num_properties = n / 2; > >> + param.properties_ptr = to_user_pointer(properties); > >> > >> stream_fd = intel_xe_perf_ioctl(ctx->drm_fd, DRM_XE_OBSERVATION_OP_STREAM_OPEN, ¶m); > >> if (stream_fd < 0) { > >> @@ -924,7 +964,14 @@ usage(const char *name) > >> " --output, -o <path> Output file (default = xe_perf.record)\n" > >> " --cpu-clock, -k <path> Cpu clock to use for correlations\n" > >> " Values: boot, mono, mono_raw (default = mono)\n" > >> - " --oa-unit-id -u <value> OA unit id for the capture.\n", > >> + " --oa-unit-id -u <value> OA unit id for the capture.\n" > >> + " --oa-disabled -D Open the OA stream in the disabled state\n" > >> + " (the stream is enabled right after open)\n" > >> + " --exec-queue-id -q <value> Exec queue id for context scoped capture\n" > >> + " --oa-engine-instance -e <value> Engine instance for context scoped capture\n" > >> + " --no-preempt -n Disable preemption (requires --exec-queue-id)\n" > >> + " --oa-buffer-size -b <value> OA buffer size in bytes (pow2, 128K - 128M)\n" > >> + " --wait-num-reports -w <value> Min reports before poll()/read() unblocks\n", > >> name); > >> } > >> > >> @@ -1038,6 +1085,12 @@ main(int argc, char *argv[]) > >> {"command-fifo", required_argument, 0, 'f'}, > >> {"cpu-clock", required_argument, 0, 'k'}, > >> {"oa-unit-id", required_argument, 0, 'u'}, > >> + {"oa-disabled", no_argument, 0, 'D'}, > > There is no point adding this command line option, if we are just going to > > re-enable the stream right after. > > > > Let us remove this command line option. But then always add the > > DRM_XE_OA_PROPERTY_OA_DISABLED internally, and re-enable the stream right > > after opening it. > But then, why do we even have this thing? Having a disabled option but not > giving it as a command line param, not allowing the user to disable the > stream, and even just add the DISABLED flag and then re-enable the stream > again, makes it counter-intuitive. > > Or is this because we can't touch the kernel code or if that thing is now > part of the uAPI and we can't edit it now.? > > I'll address rest of the changes as you asked. So the issue is not the command line options, the issue is that we want to exercise the kernel uAPI from xe_perf_recorder. So if the command line options also can be exposed, good. But if exposing command line options doesn't make sense, we need to implement things internally in xe_perf_recorder to exercise the kernel uAPI. So in this case we should add DRM_XE_OA_PROPERTY_OA_DISABLED internally and not expose it in the command line options. Thanks. > > > > >> + {"exec-queue-id", required_argument, 0, 'q'}, > >> + {"oa-engine-instance", required_argument, 0, 'e'}, > >> + {"no-preempt", no_argument, 0, 'n'}, > > I don't think these 3 can be command line options. Because we are not doing > > anything with them in xe_perf_recorder yet. > > > > The issue is: to pass exec-queue-id, the user will have to create an > > exec_queue, and then pass in the exec-queue-id. But even if the caller does > > this (say fork the xe_perf_recorder process), the exec-queue-id is created > > against the drm_fd in the parent process and the xe_perf_recorder will not > > find the exec_queue. So the command line option is useless. > > > > So in this patch I think just drop these 3 command line options. These will > > need to be implemented internally in xe_perf_recorder later and actually > > used (by creating a context specific buffer and issuing a > > MI_REPORT_PERF_COUNT command there and then dumping that report out, > > similar to what we do for mmio_trigger. > > > > So let's drop these 3 args from this patch. I will also confirm this with > > Umesh. > > > >> + {"oa-buffer-size", required_argument, 0, 'b'}, > >> + {"wait-num-reports", required_argument, 0, 'w'}, > > These two can be added in this patch. > > > >> {0, 0, 0, 0} > >> }; > >> const struct { > >> @@ -1068,7 +1121,7 @@ main(int argc, char *argv[]) > >> .oa_unit_id = 0, > >> }; > >> > >> - while ((opt = getopt_long(argc, argv, "hc:d:p:m:Co:s:f:k:P:u:", long_options, NULL)) != -1) { > >> + while ((opt = getopt_long(argc, argv, "hc:d:p:m:Co:s:f:k:P:u:Dq:e:nb:w:", long_options, NULL)) != -1) { > >> switch (opt) { > >> case 'h': > >> usage(argv[0]); > >> @@ -1119,6 +1172,26 @@ main(int argc, char *argv[]) > >> case 'u': > >> ctx.oa_unit_id = atoi(optarg); > >> break; > >> + case 'D': > >> + ctx.oa_disabled = true; > >> + break; > >> + case 'q': > >> + ctx.exec_queue_id = strtoul(optarg, NULL, 0); > >> + ctx.exec_queue_id_set = true; > >> + break; > >> + case 'e': > >> + ctx.oa_engine_instance = strtoul(optarg, NULL, 0); > >> + ctx.oa_engine_instance_set = true; > >> + break; > >> + case 'n': > >> + ctx.no_preempt = true; > >> + break; > >> + case 'b': > >> + ctx.oa_buffer_size = strtoull(optarg, NULL, 0); > >> + break; > >> + case 'w': > >> + ctx.wait_num_reports = strtoull(optarg, NULL, 0); > >> + break; > >> default: > >> fprintf(stderr, "Internal error: " > >> "unexpected getopt value: %d\n", opt); > >> @@ -1127,6 +1200,17 @@ main(int argc, char *argv[]) > >> } > >> } > >> > >> + if (ctx.no_preempt && !ctx.exec_queue_id_set) { > >> + fprintf(stderr, "--no-preempt requires --exec-queue-id\n"); > >> + return EXIT_FAILURE; > >> + } > >> + if (ctx.oa_buffer_size && > >> + ((ctx.oa_buffer_size & (ctx.oa_buffer_size - 1)) || > >> + ctx.oa_buffer_size < SZ_128K || ctx.oa_buffer_size > SZ_128M)) { > >> + fprintf(stderr, "--oa-buffer-size must be a power of 2 in [128K, 128M]\n"); > >> + return EXIT_FAILURE; > >> + } > > No need to do this check here. Kernel will check and fail the OA stream > > open if a weird size is passed in :-) > > > >> + > >> if (dev_node_id == -2) { > >> print_intel_devices(); > >> return EXIT_SUCCESS; > >> @@ -1291,6 +1375,13 @@ main(int argc, char *argv[]) > >> goto fail; > >> } > >> > >> + if (ctx.oa_disabled && > >> + perf_ioctl(ctx.perf_fd, DRM_XE_OBSERVATION_IOCTL_ENABLE, 0) < 0) { > >> + fprintf(stderr, "Unable to enable xe oa stream: %s\n", > >> + strerror(errno)); > >> + goto fail; > >> + } > >> + > >> init_mmio_trigger_ctx(&ctx); > >> emit_oa_trigger(&ctx, 0xc0ffee01); > >> > >> -- > >> 2.53.0 > >> > -- > Shekhar Chauhan > Linux Graphics Software Engineer > Intel Corporation > ^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2026-07-30 16:21 UTC | newest] Thread overview: 10+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2026-07-28 6:36 [PATCH] tools/xe-perf-recorder: expose some OA stream open properties Shekhar Chauhan 2026-07-28 6:40 ` Shekhar Chauhan 2026-07-30 2:46 ` Dixit, Ashutosh 2026-07-28 7:56 ` ✓ Xe.CI.BAT: success for " Patchwork 2026-07-28 8:02 ` ✓ i915.CI.BAT: " Patchwork 2026-07-28 10:39 ` ✗ i915.CI.Full: failure " Patchwork 2026-07-28 11:08 ` ✗ Xe.CI.FULL: " Patchwork 2026-07-30 2:54 ` [PATCH] " Dixit, Ashutosh 2026-07-30 8:13 ` Shekhar Chauhan 2026-07-30 16:20 ` Dixit, Ashutosh
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.