* [PATCH i-g-t] Add single engine busyness stats in GPUTOP
@ 2025-01-03 6:53 Soham Purkait
2025-01-03 9:24 ` ✗ Xe.CI.BAT: failure for " Patchwork
` (4 more replies)
0 siblings, 5 replies; 6+ messages in thread
From: Soham Purkait @ 2025-01-03 6:53 UTC (permalink / raw)
To: igt-dev; +Cc: riana.tauro, anshuman.gupta, soham.purkait, vinay.belgaumkar
Add single engine busyness support in GPUTOP. This will use the PMU interface to display the busyness of each engine instances.
ENGINES BUSY
Render/3D/0 | 96.5% ███████████████████████████████████████▍|
Blitter/0 | 91.6% █████████████████████████████████████ |
Video/0 | 56.2% ███████████████████████████ |
VideoEnhance/0| 97.7% ████████████████████████████████████████|
Compute/0 | 48.5% ███████████████████████▍ |
---
tools/gputop.c | 586 +++++++++++++++++++++++++++++++++++++++++++++-
tools/meson.build | 2 +-
2 files changed, 585 insertions(+), 3 deletions(-)
diff --git a/tools/gputop.c b/tools/gputop.c
index 43b01f566..dccd38d66 100644
--- a/tools/gputop.c
+++ b/tools/gputop.c
@@ -2,7 +2,6 @@
/*
* Copyright © 2023 Intel Corporation
*/
-
#include <assert.h>
#include <ctype.h>
#include <dirent.h>
@@ -31,6 +30,88 @@
#include "igt_drm_fdinfo.h"
#include "igt_profiling.h"
#include "drmtest.h"
+#include "xe/xe_query.h"
+#include "igt_perf.h"
+#include "igt_device_scan.h"
+
+struct pmu_pair {
+ uint64_t cur;
+ uint64_t prev;
+};
+
+struct pmu_counter {
+ uint64_t type;
+ uint64_t config;
+ unsigned int idx;
+ struct pmu_pair val;
+ //double scale;
+ //const char *units;
+ bool present;
+};
+
+// struct engine_class {
+// unsigned int engine_class;
+// const char *name;
+// unsigned int num_engines;
+// };
+
+struct engine {
+ const char *name;
+ char *display_name;
+ char *short_name;
+
+ // unsigned int class;
+ // unsigned int instance;
+ struct drm_xe_engine_class_instance xe_engine;
+
+ unsigned int num_counters;
+
+ struct pmu_counter busy;
+ struct pmu_counter total;
+ //struct pmu_counter wait;
+ //struct pmu_counter sema;
+};
+
+#define MAX_GTS 4
+struct engines {
+ unsigned int num_engines;
+ unsigned int num_classes;
+ //struct engine_class *class;
+ unsigned int num_counters;
+ DIR *root;
+ int fd;
+ struct pmu_pair ts;
+
+ // int rapl_fd;
+ // struct pmu_counter r_gpu, r_pkg;
+ // unsigned int num_rapl;
+
+ // int imc_fd;
+ // struct pmu_counter imc_reads;
+ // struct pmu_counter imc_writes;
+ // unsigned int num_imc;
+
+ // struct pmu_counter freq_req;
+ // struct pmu_counter freq_req_gt[MAX_GTS];
+ // struct pmu_counter freq_act;
+ // struct pmu_counter freq_act_gt[MAX_GTS];
+ // struct pmu_counter irq;
+ // struct pmu_counter rc6;
+ // struct pmu_counter rc6_gt[MAX_GTS];
+
+ bool discrete;
+ char *device;
+
+ int num_gts;
+
+ /* Do not edit below this line.
+ * This structure is reallocated every time a new engine is
+ * found and size is increased by sizeof (engine).
+ */
+
+ struct engine engine;
+
+};
enum utilization_type {
UTILIZATION_TYPE_ENGINE_TIME,
@@ -39,9 +120,39 @@ enum utilization_type {
static const char *bars[] = { " ", "▏", "▎", "▍", "▌", "▋", "▊", "▉", "█" };
+static const char *engine_event[] = {"rcs", "bcs", "vcs", "vecs", "ccs"};
+
+#define engine_ptr(engines, n) (&engines->engine + (n))
+
+#define is_igpu(x) (strcmp(x, "xe") == 0)
+
+#define IGPU_PCI "0000:00:02.0"
+#define is_igpu_pci(x) (strcmp(x, IGPU_PCI) == 0)
+
#define ANSI_HEADER "\033[7m"
#define ANSI_RESET "\033[0m"
+#define CLEAN_UP() \
+ do { \
+ free(engines); \
+ return NULL; \
+ } while (0)
+
+#define _open_pmu(type, cnt, pmu, fd) \
+({ \
+ int fd__; \
+\
+ fd__ = igt_perf_open_group((type), (pmu)->config, (fd)); \
+ if (fd__ >= 0) { \
+ if ((fd) == -1) \
+ (fd) = fd__; \
+ (pmu)->present = true; \
+ (pmu)->idx = (cnt)++; \
+ } \
+\
+ fd__; \
+})
+
static void n_spaces(const unsigned int n)
{
unsigned int i;
@@ -403,6 +514,414 @@ static void sigint_handler(int sig)
stop_top = true;
}
+static double pmu_calc_total(struct pmu_pair *p)
+{
+ double v;
+ v = (p->cur - p->prev)/1e9;
+ return v;
+}
+
+static double pmu_calc(struct pmu_pair *p, double total_tick)
+{
+ double bz = (p->cur - p->prev)/1e9;
+ double total;
+ total = (bz*100)/total_tick;
+ return total;
+}
+
+static int
+print_engines_header(struct engines *engines,
+ int lines, int con_w, int con_h)
+{
+ const char *a;
+ for (unsigned int i = 0;
+ i < engines->num_engines && lines < con_h;
+ i++) {
+ struct engine *engine = engine_ptr(engines, i);
+
+ if (!engine->num_counters)
+ continue;
+
+
+ a = " ENGINES BUSY "; //
+
+ printf("\033[7m%s%*s\033[0m\n",
+ a, (int)(con_w - strlen(a)), " ");
+
+ lines++;
+
+
+ break;
+ }
+
+ return lines;
+}
+
+static int
+print_engine(struct engines *engines, unsigned int i,
+ int lines, int con_w, int con_h)
+{
+ struct engine *engine = engine_ptr(engines, i);
+ double total_tick = pmu_calc_total(&(engine->total.val));
+ double percentage = pmu_calc(&(engine->busy.val), total_tick);
+
+ printf("%*s",(int)(strlen(" ENGINES")),engine->display_name);
+ //printf(" %5.1f", percentage);
+ print_percentage_bar(percentage, con_w - strlen(" ENGINES"));
+ printf("\n");
+
+ return ++lines;
+
+}
+
+static int
+print_engines_footer(struct engines *engines,
+ int lines, int con_w, int con_h)
+{
+
+ if (lines++ < con_h)
+ printf("\n");
+
+ return lines;
+}
+
+static int
+print_engines(struct engines *engines, int lines, int w, int h)
+{
+ struct engines *show;
+
+ show = engines;
+
+ lines = print_engines_header(show, lines, w, h);
+
+ for (unsigned int i = 0; i < show->num_engines && lines < h; i++)
+ lines = print_engine(show, i, lines, w, h);
+
+ lines = print_engines_footer(show, lines, w, h);
+
+ return lines;
+}
+
+static uint64_t
+get_pmu_config(int dirfd, const char *name, const char *counter, const unsigned int gt)
+{
+ char buf[128], *p;
+ int fd, ret;
+
+ ret = snprintf(buf, sizeof(buf), "%s%s%u", name, counter, gt);
+ if (ret < 0 || ret == sizeof(buf))
+ return -1;
+
+ fd = openat(dirfd, buf, O_RDONLY);
+ if (fd < 0)
+ return -1;
+
+ ret = read(fd, buf, sizeof(buf));
+ close(fd);
+ if (ret <= 0)
+ return -1;
+
+ p = strchr(buf, '0');
+ if (!p)
+ return -1;
+
+ return strtoul(p, NULL, 0);
+}
+
+
+
+static int engine_cmp(const void *__a, const void *__b)
+{
+ const struct engine *a = (struct engine *)__a;
+ const struct engine *b = (struct engine *)__b;
+
+ if (a->xe_engine.engine_class != b->xe_engine.engine_class)
+ return a->xe_engine.engine_class - b->xe_engine.engine_class;
+ else
+ return a->xe_engine.engine_instance - b->xe_engine.engine_instance;
+}
+
+static void free_engines(struct engines *engines)
+{
+
+ unsigned int i;
+
+ if (!engines)
+ return;
+
+
+
+ for (i = 0; i < engines->num_engines; i++) {
+ struct engine *engine = engine_ptr(engines, i);
+
+ free((char *)engine->name);
+ free((char *)engine->short_name);
+ free((char *)engine->display_name);
+ }
+
+ closedir(engines->root);
+ free(engines);
+}
+
+static const char *class_display_name(unsigned int class)
+{
+ switch (class) {
+ case DRM_XE_ENGINE_CLASS_RENDER:
+ return "Render/3D";
+ case DRM_XE_ENGINE_CLASS_COPY:
+ return "Blitter";
+ case DRM_XE_ENGINE_CLASS_VIDEO_DECODE:
+ return "Video";
+ case DRM_XE_ENGINE_CLASS_VIDEO_ENHANCE:
+ return "VideoEnhance";
+ case DRM_XE_ENGINE_CLASS_COMPUTE:
+ return "Compute";
+ default:
+ return "[unknown]";
+ }
+}
+
+static const char *class_short_name(unsigned int class)
+{
+ switch (class) {
+ case DRM_XE_ENGINE_CLASS_RENDER:
+ return "RCS";
+ case DRM_XE_ENGINE_CLASS_COPY:
+ return "BCS";
+ case DRM_XE_ENGINE_CLASS_VIDEO_DECODE:
+ return "VCS";
+ case DRM_XE_ENGINE_CLASS_VIDEO_ENHANCE:
+ return "VECS";
+ case DRM_XE_ENGINE_CLASS_COMPUTE:
+ return "CCS";
+ default:
+ return "UNKN";
+ }
+}
+
+
+static struct engines *discover_engines(char *device, struct igt_device_card *card)
+{
+ char sysfs_root[PATH_MAX];
+ struct engines *engines;
+ //struct dirent *dent;
+ int ret = 0;
+ DIR *d;
+ struct drm_xe_engine_class_instance *hwe;
+ const char *busy_end = "-busy-ticks-gt";
+ const char *total_end = "-total-ticks-gt";
+ int card_fd;
+
+ if (!card || !strlen(card->card) || !strlen(card->render))
+ {
+ return NULL;
+ }
+
+ if (strlen(card->card))
+ {
+ card_fd = igt_open_card(card); //open(card->card, O_RDWR);
+ }
+ else if (strlen(card->render))
+ {
+ card_fd = igt_open_render(card);
+ }
+ else
+ {
+ fprintf( stderr, "Failed to detect device!\n" );
+ CLEAN_UP() ;
+ }
+
+ xe_device_get(card_fd);
+
+
+ snprintf(sysfs_root, sizeof(sysfs_root),
+ "/sys/devices/%s/events", device);
+
+ engines = malloc(sizeof(struct engines));
+ if (!engines)
+ return NULL;
+
+ memset(engines, 0, sizeof(*engines));
+
+ engines->num_engines = 0;
+ engines->device = device;
+ engines->discrete = !is_igpu(device);
+
+ xe_for_each_engine(card_fd, hwe)
+ {
+ struct engine *engine = engine_ptr(engines, engines->num_engines);
+ engine->xe_engine = *hwe;
+ engines->num_engines++;
+ engines = realloc(engines, sizeof(struct engines) +
+ engines->num_engines * sizeof(struct engine));
+ if (!engines) {
+ ret = errno;
+ break;
+ }
+ }
+
+ d = opendir(sysfs_root);
+ if (!d)
+ CLEAN_UP();
+
+ for (unsigned int i = 0; i < engines->num_engines; i++)
+ {
+ struct engine *engine = engine_ptr(engines, i);
+ asprintf((char**)&(engine->name),"%s%u",engine_event[engine->xe_engine.engine_class],engine->xe_engine.engine_instance);
+
+ memset(&(engine->busy), 0, sizeof(struct pmu_counter));
+ memset(&(engine->total), 0, sizeof(struct pmu_counter));
+
+ engine->busy.config = get_pmu_config(dirfd(d), engine->name, busy_end, engine->xe_engine.gt_id);
+ engine->total.config = get_pmu_config(dirfd(d), engine->name, total_end, engine->xe_engine.gt_id);
+
+ if (engine->busy.config == -1 || engine->total.config == -1)
+ {
+ ret = ENOENT;
+ break;
+ }
+
+ ret = asprintf(&engine->display_name, "%s/%u",
+ class_display_name(engine->xe_engine.engine_class),
+ engine->xe_engine.engine_instance);
+
+ if (ret <= 0) {
+ ret = errno;
+ break;
+ }
+
+ ret = asprintf(&engine->short_name, "%s/%u",
+ class_short_name(engine->xe_engine.engine_class),
+ engine->xe_engine.engine_instance);
+
+ if (ret <= 0) {
+ ret = errno;
+ break;
+ }
+
+ }
+
+
+ if (!ret) {
+ errno = ret;
+ CLEAN_UP();
+ }
+
+ qsort(engine_ptr(engines, 0), engines->num_engines,
+ sizeof(struct engine), engine_cmp);
+
+ engines->root = d;
+
+ return engines;
+}
+
+static int pmu_init(struct engines *engines)
+{
+ unsigned int i;
+ int fd;
+ struct engine *engine;
+ uint64_t type = igt_perf_type_id(engines->device);
+
+ engines->fd = -1;
+ engines->num_counters = 0;
+
+ engine = engine_ptr(engines, 0);
+ fd = _open_pmu(type, engines->num_counters, &(engine->busy), engines->fd);
+ if (fd < 0)
+ return -1;
+ fd = _open_pmu(type, engines->num_counters, &(engine->total), engines->fd);
+ if (fd < 0)
+ return -1;
+
+ for (i = 1; i < engines->num_engines; i++)
+ {
+ engine = engine_ptr(engines, i);
+ fd = _open_pmu(type, engines->num_counters, &(engine->busy), engines->fd);
+ if (fd < 0)
+ return -1;
+ fd = _open_pmu(type, engines->num_counters, &(engine->total), engines->fd);
+ if (fd < 0)
+ return -1;
+
+ }
+
+ return 0;
+}
+
+static uint64_t pmu_read_multi(int fd, unsigned int num, uint64_t *val)
+{
+ uint64_t buf[2 + num];
+ unsigned int i;
+ ssize_t len;
+
+ memset(buf, 0, sizeof(buf));
+
+ len = read(fd, buf, sizeof(buf));
+ assert(len == sizeof(buf));
+
+ for (i = 0; i < num; i++)
+ val[i] = buf[2 + i];
+
+ return buf[1];
+}
+
+static void __update_sample(struct pmu_counter *counter, uint64_t val)
+{
+ counter->val.prev = counter->val.cur;
+ counter->val.cur = val;
+}
+
+static void update_sample(struct pmu_counter *counter, uint64_t *val)
+{
+ if (counter->present)
+ __update_sample(counter, val[counter->idx]);
+}
+
+static void pmu_sample(struct engines *engines)
+{
+ const int num_val = engines->num_counters;
+ uint64_t val[2 + num_val];
+ unsigned int i;
+
+ engines->ts.prev = engines->ts.cur;
+ engines->ts.cur = pmu_read_multi(engines->fd, num_val, val);
+
+ for (i = 0; i < engines->num_engines; i++) {
+ struct engine *engine = engine_ptr(engines, i);
+
+ update_sample(&(engine->busy), val);
+ update_sample(&(engine->total), val);
+ }
+
+}
+
+/* tr_pmu_name()
+ *
+ * Transliterate pci_slot_id to sysfs device name entry for discrete GPU.
+ * Discrete GPU PCI ID ("xxxx:yy:zz.z") device = "xe_xxxx_yy_zz.z".
+ */
+static char *tr_pmu_name(struct igt_device_card *card)
+{
+ int ret;
+ const int bufsize = 16;
+ char *buf, *device = NULL;
+
+ assert(card->pci_slot_name[0]);
+
+ device = malloc(bufsize);
+ assert(device);
+
+ ret = snprintf(device, bufsize, "xe_%s", card->pci_slot_name);
+ assert(ret == (bufsize-1));
+
+ buf = device;
+ for (; *buf; buf++)
+ if (*buf == ':')
+ *buf = '_';
+
+ return device;
+}
+
int main(int argc, char **argv)
{
struct gputop_args args;
@@ -412,6 +931,9 @@ int main(int argc, char **argv)
int con_w = -1, con_h = -1;
int ret;
long n;
+ struct igt_device_card card;
+ char *pmu_device ;
+ struct engines *engines;
ret = parse_args(argc, argv, &args);
if (ret < 0)
@@ -422,6 +944,62 @@ int main(int argc, char **argv)
n = args.n_iter;
period_us = args.delay_usec;
+ igt_devices_scan(false);
+
+ //Yet to implement the device filter
+
+ ret = igt_device_find_first_xe_discrete_card(&card);
+ if (!ret)
+ ret = igt_device_find_xe_integrated_card(&card);
+ if (!ret)
+ fprintf(stderr, "No discrete/integrated xe devices found\n");
+
+ if (!ret) {
+ ret = EXIT_FAILURE;
+ igt_devices_free();
+ return ret;
+ }
+
+ if (card.pci_slot_name[0] ) //&& !is_igpu_pci(card.pci_slot_name)
+ pmu_device = tr_pmu_name(&card);
+ else
+ pmu_device = strdup("xe");
+
+
+ engines = discover_engines(pmu_device, &card);
+
+ if (!engines) {
+ fprintf(stderr,
+ "Failed to discover engines! (%s)\n",
+ strerror(errno));
+ return EXIT_FAILURE;
+ }
+
+ ret = pmu_init(engines);
+
+ if (ret) {
+ fprintf(stderr,
+ "Failed to initialize PMU! (%s)\n", strerror(errno));
+ if (errno == EACCES && geteuid())
+ fprintf(stderr,
+"\n"
+"When running as a normal user CAP_PERFMON is required to access performance\n"
+"monitoring. See \"man 7 capabilities\", \"man 8 setcap\", or contact your\n"
+"distribution vendor for assistance.\n"
+"\n"
+"More information can be found at 'Perf events and tool security' document:\n"
+"https://www.kernel.org/doc/html/latest/admin-guide/perf-security.html\n");
+
+ free_engines(engines);
+ free(pmu_device);
+ igt_devices_free();
+ return EXIT_FAILURE;
+ }
+
+ ret = EXIT_SUCCESS;
+
+ pmu_sample(engines);
+
clients = igt_drm_clients_init(NULL);
if (!clients)
exit(1);
@@ -450,6 +1028,10 @@ int main(int argc, char **argv)
update_console_size(&con_w, &con_h);
clrscr();
+ pmu_sample(engines);
+ lines = print_engines(engines, lines, con_w, con_h);
+
+
if (!clients->num_clients) {
const char *msg = " (No GPU clients yet. Start workload to see stats)";
@@ -488,4 +1070,4 @@ int main(int argc, char **argv)
}
return 0;
-}
+}
\ No newline at end of file
diff --git a/tools/meson.build b/tools/meson.build
index 511aec69e..8a3290d39 100644
--- a/tools/meson.build
+++ b/tools/meson.build
@@ -71,7 +71,7 @@ endif
executable('gputop', 'gputop.c',
install : true,
install_rpath : bindir_rpathdir,
- dependencies : [lib_igt_drm_clients,lib_igt_drm_fdinfo,lib_igt_profiling,math])
+ dependencies : [igt_deps,lib_igt_perf,lib_igt_drm_clients,lib_igt_drm_fdinfo,lib_igt_profiling,math])
intel_l3_parity_src = [ 'intel_l3_parity.c', 'intel_l3_udev_listener.c' ]
executable('intel_l3_parity', sources : intel_l3_parity_src,
--
2.34.1
^ permalink raw reply related [flat|nested] 6+ messages in thread
* ✗ Xe.CI.BAT: failure for Add single engine busyness stats in GPUTOP
2025-01-03 6:53 [PATCH i-g-t] Add single engine busyness stats in GPUTOP Soham Purkait
@ 2025-01-03 9:24 ` Patchwork
2025-01-03 9:28 ` ✓ i915.CI.BAT: success " Patchwork
` (3 subsequent siblings)
4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2025-01-03 9:24 UTC (permalink / raw)
To: Soham Purkait; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 2960 bytes --]
== Series Details ==
Series: Add single engine busyness stats in GPUTOP
URL : https://patchwork.freedesktop.org/series/143086/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8174_BAT -> XEIGTPW_12378_BAT
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_12378_BAT absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12378_BAT, 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 (9 -> 8)
------------------------------
Missing (1): bat-adlp-7
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_12378_BAT:
### IGT changes ###
#### Possible regressions ####
* igt@xe_exec_balancer@twice-virtual-rebind:
- bat-adlp-vf: [PASS][1] -> [DMESG-WARN][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/bat-adlp-vf/igt@xe_exec_balancer@twice-virtual-rebind.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/bat-adlp-vf/igt@xe_exec_balancer@twice-virtual-rebind.html
Known issues
------------
Here are the changes found in XEIGTPW_12378_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@xe_live_ktest@xe_migrate:
- bat-adlp-vf: [PASS][3] -> [SKIP][4] ([Intel XE#1192]) +1 other test skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/bat-adlp-vf/igt@xe_live_ktest@xe_migrate.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/bat-adlp-vf/igt@xe_live_ktest@xe_migrate.html
#### Warnings ####
* igt@xe_live_ktest@xe_bo:
- bat-adlp-vf: [SKIP][5] ([Intel XE#2229] / [Intel XE#455]) -> [SKIP][6] ([Intel XE#1192])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/bat-adlp-vf/igt@xe_live_ktest@xe_bo.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/bat-adlp-vf/igt@xe_live_ktest@xe_bo.html
[Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
Build changes
-------------
* IGT: IGT_8174 -> IGTPW_12378
* Linux: xe-2424-08bd590935a5258ffd79355c59adffd72fb2c642 -> xe-2428-048d83e7f9dae81c058d31c371634c1c317b3013
IGTPW_12378: 12378
IGT_8174: d2004b0623dbccd08502525849b4eef881aa199e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2424-08bd590935a5258ffd79355c59adffd72fb2c642: 08bd590935a5258ffd79355c59adffd72fb2c642
xe-2428-048d83e7f9dae81c058d31c371634c1c317b3013: 048d83e7f9dae81c058d31c371634c1c317b3013
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/index.html
[-- Attachment #2: Type: text/html, Size: 3662 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* ✓ i915.CI.BAT: success for Add single engine busyness stats in GPUTOP
2025-01-03 6:53 [PATCH i-g-t] Add single engine busyness stats in GPUTOP Soham Purkait
2025-01-03 9:24 ` ✗ Xe.CI.BAT: failure for " Patchwork
@ 2025-01-03 9:28 ` Patchwork
2025-01-03 11:08 ` ✗ Xe.CI.Full: failure " Patchwork
` (2 subsequent siblings)
4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2025-01-03 9:28 UTC (permalink / raw)
To: Soham Purkait; +Cc: igt-dev
== Series Details ==
Series: Add single engine busyness stats in GPUTOP
URL : https://patchwork.freedesktop.org/series/143086/
State : success
== Summary ==
CI Bug Log - changes from IGT_8174 -> IGTPW_12378
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/index.html
Participating hosts (40 -> 38)
------------------------------
Missing (2): fi-snb-2520m fi-elk-e7500
Known issues
------------
Here are the changes found in IGTPW_12378 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live:
- bat-mtlp-8: [PASS][1] -> [DMESG-FAIL][2] ([i915#13393]) +1 other test dmesg-fail
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8174/bat-mtlp-8/igt@i915_selftest@live.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/bat-mtlp-8/igt@i915_selftest@live.html
#### Possible fixes ####
* igt@i915_selftest@live@workarounds:
- bat-arlh-2: [DMESG-FAIL][3] ([i915#13393]) -> [PASS][4] +1 other test pass
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8174/bat-arlh-2/igt@i915_selftest@live@workarounds.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/bat-arlh-2/igt@i915_selftest@live@workarounds.html
- bat-mtlp-6: [DMESG-FAIL][5] ([i915#13393]) -> [PASS][6] +1 other test pass
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8174/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
[i915#13393]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13393
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8174 -> IGTPW_12378
* Linux: CI_DRM_15892 -> CI_DRM_15896
CI-20190529: 20190529
CI_DRM_15892: 08bd590935a5258ffd79355c59adffd72fb2c642 @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_15896: 048d83e7f9dae81c058d31c371634c1c317b3013 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_12378: 12378
IGT_8174: d2004b0623dbccd08502525849b4eef881aa199e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/index.html
^ permalink raw reply [flat|nested] 6+ messages in thread
* ✗ Xe.CI.Full: failure for Add single engine busyness stats in GPUTOP
2025-01-03 6:53 [PATCH i-g-t] Add single engine busyness stats in GPUTOP Soham Purkait
2025-01-03 9:24 ` ✗ Xe.CI.BAT: failure for " Patchwork
2025-01-03 9:28 ` ✓ i915.CI.BAT: success " Patchwork
@ 2025-01-03 11:08 ` Patchwork
2025-01-03 11:40 ` ✗ i915.CI.Full: " Patchwork
2025-01-06 16:38 ` [PATCH i-g-t] " Riana Tauro
4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2025-01-03 11:08 UTC (permalink / raw)
To: Soham Purkait; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 73281 bytes --]
== Series Details ==
Series: Add single engine busyness stats in GPUTOP
URL : https://patchwork.freedesktop.org/series/143086/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8174_full -> XEIGTPW_12378_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_12378_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12378_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 (4 -> 4)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_12378_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-d-hdmi-a-6:
- shard-dg2-set2: [PASS][1] -> [FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-d-hdmi-a-6.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-dg2-435/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-d-hdmi-a-6.html
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-6-x:
- shard-dg2-set2: [PASS][3] -> [INCOMPLETE][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-6-x.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-dg2-466/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-6-x.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-dp-5:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][5] +1 other test incomplete
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-dp-5.html
* igt@kms_flip@2x-flip-vs-suspend@ad-dp2-hdmi-a3:
- shard-bmg: NOTRUN -> [INCOMPLETE][6] +1 other test incomplete
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-8/igt@kms_flip@2x-flip-vs-suspend@ad-dp2-hdmi-a3.html
* igt@kms_flip@modeset-vs-vblank-race@a-edp1:
- shard-lnl: [PASS][7] -> [FAIL][8]
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-4/igt@kms_flip@modeset-vs-vblank-race@a-edp1.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-6/igt@kms_flip@modeset-vs-vblank-race@a-edp1.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-3:
- shard-bmg: NOTRUN -> [FAIL][9] +2 other tests fail
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-1/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-3.html
* igt@kms_psr@fbc-psr2-dpms:
- shard-lnl: NOTRUN -> [FAIL][10] +1 other test fail
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-2/igt@kms_psr@fbc-psr2-dpms.html
* igt@kms_vblank@ts-continuation-suspend:
- shard-bmg: [PASS][11] -> [FAIL][12] +3 other tests fail
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt@kms_vblank@ts-continuation-suspend.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-5/igt@kms_vblank@ts-continuation-suspend.html
* igt@xe_evict@evict-large-multi-vm:
- shard-bmg: [PASS][13] -> [INCOMPLETE][14] +1 other test incomplete
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt@xe_evict@evict-large-multi-vm.html
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-5/igt@xe_evict@evict-large-multi-vm.html
Known issues
------------
Here are the changes found in XEIGTPW_12378_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#3157])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-6/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_async_flips@alternate-sync-async-flip-atomic:
- shard-dg2-set2: [PASS][16] -> [FAIL][17] ([Intel XE#827])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-dg2-435/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic:
- shard-dg2-set2: [PASS][18] -> [INCOMPLETE][19] ([Intel XE#3948])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt@kms_async_flips@async-flip-with-page-flip-events-atomic.html
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-dg2-466/igt@kms_async_flips@async-flip-with-page-flip-events-atomic.html
- shard-lnl: [PASS][20] -> [FAIL][21] ([Intel XE#3719]) +3 other tests fail
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/igt@kms_async_flips@async-flip-with-page-flip-events-atomic.html
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-6/igt@kms_async_flips@async-flip-with-page-flip-events-atomic.html
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-dp-5-4-mc-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#3767]) +2 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-dg2-466/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-dp-5-4-mc-ccs.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-dp-5-4-mc-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#2550]) +11 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-dg2-466/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-dp-5-4-mc-ccs.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#3279])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-270:
- shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#316])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-dg2-436/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0:
- shard-bmg: [PASS][26] -> [SKIP][27] ([Intel XE#2136] / [Intel XE#2231])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#3658])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-5/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@linear-32bpp-rotate-270:
- shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#1407]) +1 other test skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-5/igt@kms_big_fb@linear-32bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#1428])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-7/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#1124]) +8 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-4/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-3/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#1124]) +5 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-4/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html
- shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#1124]) +1 other test skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-dg2-434/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#2314] / [Intel XE#2894])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-5/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-1-displays-1920x1080p:
- shard-dg2-set2: NOTRUN -> [SKIP][36] ([Intel XE#367])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-dg2-436/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-1-displays-3840x2160p:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#367]) +1 other test skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-3/igt@kms_bw@linear-tiling-1-displays-3840x2160p.html
* igt@kms_bw@linear-tiling-2-displays-2160x1440p:
- shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#367])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-6/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#2887]) +8 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-2/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-hdmi-a-3:
- shard-bmg: [PASS][40] -> [INCOMPLETE][41] ([Intel XE#3862])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-hdmi-a-3.html
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-hdmi-a-3.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#3432]) +1 other test skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][43] ([Intel XE#455] / [Intel XE#787]) +30 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-dg2-435/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4.html
* igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][44] ([Intel XE#787]) +95 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-dg2-436/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
- shard-dg2-set2: [PASS][45] -> [INCOMPLETE][46] ([Intel XE#1727]) +2 other tests incomplete
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-d-dp-4:
- shard-dg2-set2: [PASS][47] -> [INCOMPLETE][48] ([Intel XE#3124])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-d-dp-4.html
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-d-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-d-hdmi-a-6:
- shard-dg2-set2: [PASS][49] -> [DMESG-WARN][50] ([Intel XE#1727] / [Intel XE#3113])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-d-hdmi-a-6.html
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-d-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-d-hdmi-a-6:
- shard-dg2-set2: [PASS][51] -> [DMESG-WARN][52] ([Intel XE#1727])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-d-hdmi-a-6.html
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-d-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#2887]) +7 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-4/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_chamelium_audio@dp-audio:
- shard-dg2-set2: NOTRUN -> [SKIP][54] ([Intel XE#373]) +3 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-dg2-435/igt@kms_chamelium_audio@dp-audio.html
* igt@kms_chamelium_color@ctm-0-25:
- shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#306])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-2/igt@kms_chamelium_color@ctm-0-25.html
* igt@kms_chamelium_hpd@common-hpd-after-suspend:
- shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#2252]) +6 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-4/igt@kms_chamelium_hpd@common-hpd-after-suspend.html
* igt@kms_chamelium_hpd@hdmi-hpd:
- shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#373]) +4 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-3/igt@kms_chamelium_hpd@hdmi-hpd.html
* igt@kms_content_protection@atomic-dpms@pipe-a-dp-5:
- shard-dg2-set2: NOTRUN -> [FAIL][58] ([Intel XE#1178]) +1 other test fail
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-dg2-466/igt@kms_content_protection@atomic-dpms@pipe-a-dp-5.html
* igt@kms_content_protection@mei-interface:
- shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#2341]) +1 other test skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-8/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@uevent:
- shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#3278]) +1 other test skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-3/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#2321]) +2 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-2/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#2321])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-3/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-128x42:
- shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#1424]) +3 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-4/igt@kms_cursor_crc@cursor-random-128x42.html
* igt@kms_cursor_crc@cursor-random-max-size:
- shard-dg2-set2: NOTRUN -> [SKIP][64] ([Intel XE#455]) +5 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-dg2-466/igt@kms_cursor_crc@cursor-random-max-size.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
- shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#2320]) +3 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-3/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
* igt@kms_cursor_edge_walk@256x256-top-bottom:
- shard-bmg: [PASS][66] -> [SKIP][67] ([Intel XE#3007]) +3 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt@kms_cursor_edge_walk@256x256-top-bottom.html
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-3/igt@kms_cursor_edge_walk@256x256-top-bottom.html
* igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic:
- shard-lnl: NOTRUN -> [SKIP][68] ([Intel XE#309]) +2 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-6/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html
* igt@kms_cursor_legacy@flip-vs-cursor-varying-size:
- shard-lnl: [PASS][69] -> [FAIL][70] ([Intel XE#1475])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-8/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#2286])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl:
- shard-bmg: NOTRUN -> [FAIL][72] ([Intel XE#2141]) +2 other tests fail
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-1/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html
* igt@kms_display_modes@extended-mode-basic:
- shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#3383])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-2/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#2244])
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-7/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3:
- shard-bmg: [PASS][75] -> [FAIL][76] ([Intel XE#2882])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3.html
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a6-dp5:
- shard-dg2-set2: NOTRUN -> [FAIL][77] ([Intel XE#3321]) +3 other tests fail
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-dg2-466/igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a6-dp5.html
* igt@kms_flip@2x-flip-vs-expired-vblank@cd-hdmi-a6-dp5:
- shard-dg2-set2: NOTRUN -> [FAIL][78] ([Intel XE#3149])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-dg2-466/igt@kms_flip@2x-flip-vs-expired-vblank@cd-hdmi-a6-dp5.html
* igt@kms_flip@2x-flip-vs-rmfb-interruptible:
- shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#1421]) +3 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-4/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-dp2-hdmi-a3:
- shard-bmg: [PASS][80] -> [FAIL][81] ([Intel XE#3879]) +5 other tests fail
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-dp2-hdmi-a3.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-4/igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-dp2-hdmi-a3.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a6:
- shard-dg2-set2: [PASS][82] -> [FAIL][83] ([Intel XE#301]) +1 other test fail
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a6.html
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a6.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@d-dp4:
- shard-dg2-set2: NOTRUN -> [FAIL][84] ([Intel XE#301]) +1 other test fail
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-dp4.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a3:
- shard-bmg: [PASS][85] -> [FAIL][86] ([Intel XE#2882] / [Intel XE#3288]) +1 other test fail
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a3.html
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-8/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a3.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-bmg: NOTRUN -> [INCOMPLETE][87] ([Intel XE#2597]) +1 other test incomplete
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-7/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible@d-dp4:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][88] ([Intel XE#2049])
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-dg2-434/igt@kms_flip@flip-vs-suspend-interruptible@d-dp4.html
* igt@kms_flip@modeset-vs-vblank-race:
- shard-lnl: [PASS][89] -> [FAIL][90] ([Intel XE#3098])
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-4/igt@kms_flip@modeset-vs-vblank-race.html
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-6/igt@kms_flip@modeset-vs-vblank-race.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#2293]) +3 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-5/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling:
- shard-lnl: NOTRUN -> [SKIP][92] ([Intel XE#1401] / [Intel XE#1745])
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#1401])
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#1397] / [Intel XE#1745]) +1 other test skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-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-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][95] ([Intel XE#1397]) +1 other test skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
- shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#2293] / [Intel XE#2380]) +3 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
* igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#2311]) +18 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt:
- shard-lnl: NOTRUN -> [SKIP][98] ([Intel XE#651]) +6 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-3/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-move:
- shard-dg2-set2: NOTRUN -> [SKIP][99] ([Intel XE#651]) +8 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-onoff:
- shard-bmg: NOTRUN -> [FAIL][100] ([Intel XE#2333]) +6 other tests fail
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][101] ([Intel XE#656]) +21 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
- shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#2352]) +1 other test skip
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][103] ([Intel XE#2313]) +28 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#1469])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-fullscreen:
- shard-dg2-set2: NOTRUN -> [SKIP][105] ([Intel XE#653]) +8 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-fullscreen.html
* igt@kms_hdr@static-toggle:
- shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#1503])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-2/igt@kms_hdr@static-toggle.html
* igt@kms_histogram@global-basic:
- shard-bmg: NOTRUN -> [SKIP][107] ([Intel XE#3898]) +1 other test skip
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-1/igt@kms_histogram@global-basic.html
* igt@kms_joiner@basic-big-joiner:
- shard-lnl: NOTRUN -> [SKIP][108] ([Intel XE#346])
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-8/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-lnl: NOTRUN -> [SKIP][109] ([Intel XE#2927])
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-6/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c:
- shard-lnl: NOTRUN -> [SKIP][110] ([Intel XE#2763]) +3 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-8/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d:
- shard-bmg: NOTRUN -> [SKIP][111] ([Intel XE#2763]) +14 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d.html
- shard-dg2-set2: NOTRUN -> [SKIP][112] ([Intel XE#2763] / [Intel XE#455]) +5 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-dg2-435/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b:
- shard-dg2-set2: NOTRUN -> [SKIP][113] ([Intel XE#2763]) +8 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-dg2-436/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b.html
* igt@kms_pm_dc@dc6-dpms:
- shard-dg2-set2: NOTRUN -> [SKIP][114] ([Intel XE#908])
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-dg2-466/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-bmg: NOTRUN -> [SKIP][115] ([Intel XE#2499])
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-8/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@cursor:
- shard-bmg: [PASS][116] -> [SKIP][117] ([Intel XE#2446])
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt@kms_pm_rpm@cursor.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-3/igt@kms_pm_rpm@cursor.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf:
- shard-lnl: NOTRUN -> [SKIP][118] ([Intel XE#2893])
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-8/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][119] ([Intel XE#1489])
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-dg2-434/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area:
- shard-bmg: NOTRUN -> [SKIP][120] ([Intel XE#1489]) +5 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-7/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr@pr-cursor-render:
- shard-lnl: NOTRUN -> [SKIP][121] ([Intel XE#1406])
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-3/igt@kms_psr@pr-cursor-render.html
* igt@kms_psr@psr-primary-page-flip:
- shard-bmg: NOTRUN -> [SKIP][122] ([Intel XE#2234] / [Intel XE#2850]) +6 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-7/igt@kms_psr@psr-primary-page-flip.html
* igt@kms_psr@psr2-basic:
- shard-dg2-set2: NOTRUN -> [SKIP][123] ([Intel XE#2850] / [Intel XE#929]) +2 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-dg2-436/igt@kms_psr@psr2-basic.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-0:
- shard-lnl: NOTRUN -> [SKIP][124] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-2/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-bmg: NOTRUN -> [SKIP][125] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-dg2-set2: NOTRUN -> [SKIP][126] ([Intel XE#3414])
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-dg2-434/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_scaling_modes@scaling-mode-full:
- shard-bmg: NOTRUN -> [SKIP][127] ([Intel XE#2413])
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-4/igt@kms_scaling_modes@scaling-mode-full.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-bmg: NOTRUN -> [SKIP][128] ([Intel XE#1435])
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-3/igt@kms_setmode@basic-clone-single-crtc.html
* igt@kms_vrr@cmrr@pipe-a-edp-1:
- shard-lnl: [PASS][129] -> [FAIL][130] ([Intel XE#2159]) +1 other test fail
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-3/igt@kms_vrr@cmrr@pipe-a-edp-1.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-4/igt@kms_vrr@cmrr@pipe-a-edp-1.html
* igt@kms_vrr@flipline:
- shard-bmg: NOTRUN -> [SKIP][131] ([Intel XE#1499])
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-8/igt@kms_vrr@flipline.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-lnl: NOTRUN -> [SKIP][132] ([Intel XE#1499])
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-4/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-bmg: NOTRUN -> [SKIP][133] ([Intel XE#756])
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-8/igt@kms_writeback@writeback-pixel-formats.html
- shard-dg2-set2: NOTRUN -> [SKIP][134] ([Intel XE#756]) +1 other test skip
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-dg2-436/igt@kms_writeback@writeback-pixel-formats.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-dg2-set2: NOTRUN -> [SKIP][135] ([Intel XE#1091] / [Intel XE#2849])
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-dg2-436/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@xe_drm_fdinfo@utilization-others-full-load:
- shard-lnl: NOTRUN -> [FAIL][136] ([Intel XE#3869])
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-8/igt@xe_drm_fdinfo@utilization-others-full-load.html
* igt@xe_eudebug@basic-exec-queues:
- shard-dg2-set2: NOTRUN -> [SKIP][137] ([Intel XE#2905]) +4 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-dg2-435/igt@xe_eudebug@basic-exec-queues.html
* igt@xe_eudebug@basic-vm-access:
- shard-bmg: NOTRUN -> [SKIP][138] ([Intel XE#2905]) +4 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-1/igt@xe_eudebug@basic-vm-access.html
* igt@xe_eudebug@basic-vm-access-parameters-userptr:
- shard-lnl: NOTRUN -> [SKIP][139] ([Intel XE#3889])
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-7/igt@xe_eudebug@basic-vm-access-parameters-userptr.html
* igt@xe_eudebug_online@single-step:
- shard-lnl: NOTRUN -> [SKIP][140] ([Intel XE#2905]) +1 other test skip
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-7/igt@xe_eudebug_online@single-step.html
* igt@xe_evict@evict-cm-threads-small-multi-vm:
- shard-lnl: NOTRUN -> [SKIP][141] ([Intel XE#688]) +7 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-3/igt@xe_evict@evict-cm-threads-small-multi-vm.html
* igt@xe_evict@evict-large-multi-vm-cm:
- shard-bmg: NOTRUN -> [FAIL][142] ([Intel XE#2364])
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-3/igt@xe_evict@evict-large-multi-vm-cm.html
- shard-dg2-set2: NOTRUN -> [FAIL][143] ([Intel XE#1600])
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-dg2-466/igt@xe_evict@evict-large-multi-vm-cm.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race:
- shard-lnl: NOTRUN -> [SKIP][144] ([Intel XE#1392]) +1 other test skip
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-3/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race.html
* igt@xe_exec_basic@multigpu-no-exec-null:
- shard-bmg: NOTRUN -> [SKIP][145] ([Intel XE#1130]) +1 other test skip
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-3/igt@xe_exec_basic@multigpu-no-exec-null.html
* igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate:
- shard-bmg: NOTRUN -> [SKIP][146] ([Intel XE#2322]) +4 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-1/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html
* igt@xe_exec_fault_mode@twice-userptr-prefetch:
- shard-dg2-set2: NOTRUN -> [SKIP][147] ([Intel XE#288]) +7 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-dg2-436/igt@xe_exec_fault_mode@twice-userptr-prefetch.html
* igt@xe_live_ktest@xe_bo:
- shard-lnl: NOTRUN -> [SKIP][148] ([Intel XE#1192])
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-6/igt@xe_live_ktest@xe_bo.html
* igt@xe_mmap@system:
- shard-bmg: [PASS][149] -> [SKIP][150] ([Intel XE#1130]) +23 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt@xe_mmap@system.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-3/igt@xe_mmap@system.html
* igt@xe_module_load@force-load:
- shard-lnl: NOTRUN -> [SKIP][151] ([Intel XE#378])
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-7/igt@xe_module_load@force-load.html
* igt@xe_oa@closed-fd-and-unmapped-access:
- shard-dg2-set2: NOTRUN -> [SKIP][152] ([Intel XE#2541] / [Intel XE#3573]) +2 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-dg2-436/igt@xe_oa@closed-fd-and-unmapped-access.html
* igt@xe_pat@pat-index-xehpc:
- shard-lnl: NOTRUN -> [SKIP][153] ([Intel XE#1420] / [Intel XE#2838])
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-3/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pm@d3cold-mmap-system:
- shard-bmg: NOTRUN -> [SKIP][154] ([Intel XE#2284])
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-3/igt@xe_pm@d3cold-mmap-system.html
* igt@xe_pm@s3-basic-exec:
- shard-lnl: NOTRUN -> [SKIP][155] ([Intel XE#584])
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-8/igt@xe_pm@s3-basic-exec.html
* igt@xe_pm@s4-d3cold-basic-exec:
- shard-lnl: NOTRUN -> [SKIP][156] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-8/igt@xe_pm@s4-d3cold-basic-exec.html
* igt@xe_pm@vram-d3cold-threshold:
- shard-dg2-set2: NOTRUN -> [SKIP][157] ([Intel XE#579])
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-dg2-466/igt@xe_pm@vram-d3cold-threshold.html
* igt@xe_query@multigpu-query-engines:
- shard-bmg: NOTRUN -> [SKIP][158] ([Intel XE#944])
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-8/igt@xe_query@multigpu-query-engines.html
* igt@xe_query@multigpu-query-invalid-extension:
- shard-lnl: NOTRUN -> [SKIP][159] ([Intel XE#944])
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-5/igt@xe_query@multigpu-query-invalid-extension.html
* igt@xe_query@multigpu-query-topology:
- shard-dg2-set2: NOTRUN -> [SKIP][160] ([Intel XE#944])
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-dg2-435/igt@xe_query@multigpu-query-topology.html
* igt@xe_sriov_flr@flr-vf1-clear:
- shard-lnl: NOTRUN -> [SKIP][161] ([Intel XE#3342])
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-2/igt@xe_sriov_flr@flr-vf1-clear.html
#### Possible fixes ####
* igt@kms_cursor_legacy@cursorb-vs-flipa-toggle:
- shard-bmg: [DMESG-WARN][162] ([Intel XE#877]) -> [PASS][163]
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-3/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
* igt@kms_flip@2x-flip-vs-expired-vblank@ad-dp2-hdmi-a3:
- shard-bmg: [FAIL][164] ([Intel XE#3321]) -> [PASS][165]
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank@ad-dp2-hdmi-a3.html
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank@ad-dp2-hdmi-a3.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a6:
- shard-dg2-set2: [FAIL][166] ([Intel XE#301]) -> [PASS][167] +1 other test pass
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a6.html
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a6.html
* igt@kms_flip@flip-vs-suspend-interruptible@c-dp4:
- shard-dg2-set2: [INCOMPLETE][168] ([Intel XE#2597]) -> [PASS][169]
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt@kms_flip@flip-vs-suspend-interruptible@c-dp4.html
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-dg2-434/igt@kms_flip@flip-vs-suspend-interruptible@c-dp4.html
* igt@kms_flip@flip-vs-suspend@d-hdmi-a3:
- shard-bmg: [INCOMPLETE][170] ([Intel XE#2597] / [Intel XE#2635]) -> [PASS][171]
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt@kms_flip@flip-vs-suspend@d-hdmi-a3.html
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-5/igt@kms_flip@flip-vs-suspend@d-hdmi-a3.html
* igt@kms_flip@plain-flip-fb-recreate-interruptible@a-dp2:
- shard-bmg: [FAIL][172] ([Intel XE#2882]) -> [PASS][173] +1 other test pass
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-dp2.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-3/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-dp2.html
* igt@kms_hdr@bpc-switch:
- shard-dg2-set2: [INCOMPLETE][174] -> [PASS][175]
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-434/igt@kms_hdr@bpc-switch.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-dg2-436/igt@kms_hdr@bpc-switch.html
* igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-3:
- shard-bmg: [FAIL][176] -> [PASS][177] +1 other test pass
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-3.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-7/igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-3.html
* igt@kms_plane@plane-panning-bottom-right-suspend:
- shard-bmg: [INCOMPLETE][178] ([Intel XE#1035]) -> [PASS][179] +1 other test pass
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt@kms_plane@plane-panning-bottom-right-suspend.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-4/igt@kms_plane@plane-panning-bottom-right-suspend.html
* igt@kms_sequence@get-forked-busy:
- shard-bmg: [INCOMPLETE][180] ([Intel XE#3313]) -> [PASS][181]
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt@kms_sequence@get-forked-busy.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-1/igt@kms_sequence@get-forked-busy.html
* igt@kms_setmode@basic@pipe-a-edp-1:
- shard-lnl: [FAIL][182] -> [PASS][183]
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/igt@kms_setmode@basic@pipe-a-edp-1.html
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-3/igt@kms_setmode@basic@pipe-a-edp-1.html
* igt@kms_setmode@basic@pipe-b-edp-1:
- shard-lnl: [FAIL][184] ([Intel XE#2883]) -> [PASS][185] +1 other test pass
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/igt@kms_setmode@basic@pipe-b-edp-1.html
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-3/igt@kms_setmode@basic@pipe-b-edp-1.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1:
- shard-lnl: [FAIL][186] ([Intel XE#899]) -> [PASS][187] +1 other test pass
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-8/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
* igt@xe_evict@evict-beng-mixed-many-threads-small:
- shard-dg2-set2: [TIMEOUT][188] ([Intel XE#1473] / [Intel XE#402]) -> [PASS][189]
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt@xe_evict@evict-beng-mixed-many-threads-small.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-dg2-434/igt@xe_evict@evict-beng-mixed-many-threads-small.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-dg2-set2: [TIMEOUT][190] ([Intel XE#1473]) -> [PASS][191]
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt@xe_evict@evict-mixed-many-threads-small.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-dg2-434/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_gt_freq@freq_suspend:
- shard-bmg: [INCOMPLETE][192] ([Intel XE#3865]) -> [PASS][193]
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt@xe_gt_freq@freq_suspend.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-1/igt@xe_gt_freq@freq_suspend.html
* igt@xe_module_load@load:
- shard-lnl: ([PASS][194], [PASS][195], [PASS][196], [PASS][197], [PASS][198], [PASS][199], [PASS][200], [PASS][201], [PASS][202], [PASS][203], [PASS][204], [PASS][205], [PASS][206], [PASS][207], [PASS][208], [PASS][209], [PASS][210], [PASS][211], [PASS][212], [PASS][213], [PASS][214], [PASS][215], [SKIP][216], [PASS][217], [PASS][218], [PASS][219]) ([Intel XE#378]) -> ([PASS][220], [PASS][221], [PASS][222], [PASS][223], [PASS][224], [PASS][225], [PASS][226], [PASS][227], [PASS][228], [PASS][229], [PASS][230], [PASS][231], [PASS][232], [PASS][233], [PASS][234], [PASS][235], [PASS][236], [PASS][237], [PASS][238], [PASS][239], [PASS][240], [PASS][241], [PASS][242], [PASS][243], [PASS][244])
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-1/igt@xe_module_load@load.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-7/igt@xe_module_load@load.html
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-1/igt@xe_module_load@load.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/igt@xe_module_load@load.html
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-8/igt@xe_module_load@load.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-2/igt@xe_module_load@load.html
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-7/igt@xe_module_load@load.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-8/igt@xe_module_load@load.html
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-8/igt@xe_module_load@load.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-3/igt@xe_module_load@load.html
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-3/igt@xe_module_load@load.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-3/igt@xe_module_load@load.html
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-2/igt@xe_module_load@load.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-2/igt@xe_module_load@load.html
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-4/igt@xe_module_load@load.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-6/igt@xe_module_load@load.html
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-1/igt@xe_module_load@load.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-4/igt@xe_module_load@load.html
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-4/igt@xe_module_load@load.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-7/igt@xe_module_load@load.html
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/igt@xe_module_load@load.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-5/igt@xe_module_load@load.html
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-1/igt@xe_module_load@load.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-6/igt@xe_module_load@load.html
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-6/igt@xe_module_load@load.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-1/igt@xe_module_load@load.html
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-3/igt@xe_module_load@load.html
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-4/igt@xe_module_load@load.html
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-7/igt@xe_module_load@load.html
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-4/igt@xe_module_load@load.html
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-4/igt@xe_module_load@load.html
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-1/igt@xe_module_load@load.html
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-3/igt@xe_module_load@load.html
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-3/igt@xe_module_load@load.html
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-5/igt@xe_module_load@load.html
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-8/igt@xe_module_load@load.html
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-7/igt@xe_module_load@load.html
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-2/igt@xe_module_load@load.html
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-1/igt@xe_module_load@load.html
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-1/igt@xe_module_load@load.html
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-6/igt@xe_module_load@load.html
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-6/igt@xe_module_load@load.html
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-6/igt@xe_module_load@load.html
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-8/igt@xe_module_load@load.html
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-6/igt@xe_module_load@load.html
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-8/igt@xe_module_load@load.html
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-2/igt@xe_module_load@load.html
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-2/igt@xe_module_load@load.html
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-7/igt@xe_module_load@load.html
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-5/igt@xe_module_load@load.html
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-5/igt@xe_module_load@load.html
* igt@xe_pm@s4-vm-bind-unbind-all:
- shard-lnl: [ABORT][245] ([Intel XE#1607] / [Intel XE#1794]) -> [PASS][246]
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-2/igt@xe_pm@s4-vm-bind-unbind-all.html
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-4/igt@xe_pm@s4-vm-bind-unbind-all.html
* igt@xe_pm_residency@gt-c6-freeze@gt1:
- shard-bmg: [INCOMPLETE][247] -> [PASS][248] +2 other tests pass
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt@xe_pm_residency@gt-c6-freeze@gt1.html
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-1/igt@xe_pm_residency@gt-c6-freeze@gt1.html
* igt@xe_pm_residency@toggle-gt-c6:
- shard-lnl: [FAIL][249] ([Intel XE#958]) -> [PASS][250]
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-lnl-8/igt@xe_pm_residency@toggle-gt-c6.html
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-lnl-5/igt@xe_pm_residency@toggle-gt-c6.html
#### Warnings ####
* igt@kms_async_flips@crc:
- shard-bmg: [INCOMPLETE][251] ([Intel XE#3781]) -> [INCOMPLETE][252] ([Intel XE#3781] / [Intel XE#3946]) +1 other test incomplete
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt@kms_async_flips@crc.html
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-3/igt@kms_async_flips@crc.html
* igt@kms_async_flips@crc-atomic:
- shard-dg2-set2: [INCOMPLETE][253] ([Intel XE#3781]) -> [INCOMPLETE][254] ([Intel XE#3781] / [Intel XE#3946]) +1 other test incomplete
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-435/igt@kms_async_flips@crc-atomic.html
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-dg2-435/igt@kms_async_flips@crc-atomic.html
* igt@kms_big_fb@linear-32bpp-rotate-270:
- shard-bmg: [SKIP][255] ([Intel XE#2327]) -> [SKIP][256] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt@kms_big_fb@linear-32bpp-rotate-270.html
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-3/igt@kms_big_fb@linear-32bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-bmg: [SKIP][257] ([Intel XE#1124]) -> [SKIP][258] ([Intel XE#2136] / [Intel XE#2231])
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-3/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs:
- shard-bmg: [SKIP][259] ([Intel XE#2887]) -> [SKIP][260] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs.html
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-3/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs.html
* igt@kms_chamelium_hpd@common-hpd-after-hibernate:
- shard-bmg: [SKIP][261] ([Intel XE#2252]) -> [SKIP][262] ([Intel XE#3007])
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt@kms_chamelium_hpd@common-hpd-after-hibernate.html
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-3/igt@kms_chamelium_hpd@common-hpd-after-hibernate.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-bmg: [SKIP][263] ([Intel XE#2244]) -> [SKIP][264] ([Intel XE#2136] / [Intel XE#2231])
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-3/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_flip@flip-vs-suspend:
- shard-bmg: [INCOMPLETE][265] ([Intel XE#2597]) -> [FAIL][266] ([Intel XE#3879])
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt@kms_flip@flip-vs-suspend.html
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-5/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling:
- shard-bmg: [SKIP][267] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][268] ([Intel XE#2136] / [Intel XE#2231])
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render:
- shard-bmg: [DMESG-FAIL][269] ([Intel XE#877]) -> [FAIL][270] ([Intel XE#2333])
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render.html
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move:
- shard-bmg: [FAIL][271] ([Intel XE#2333]) -> [SKIP][272] ([Intel XE#2136] / [Intel XE#2231])
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move.html
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][273] ([Intel XE#2311]) -> [SKIP][274] ([Intel XE#2136] / [Intel XE#2231]) +3 other tests skip
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move:
- shard-bmg: [SKIP][275] ([Intel XE#2313]) -> [SKIP][276] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move.html
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move.html
* igt@kms_plane_multiple@tiling-y:
- shard-bmg: [SKIP][277] ([Intel XE#2493]) -> [SKIP][278] ([Intel XE#3007])
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt@kms_plane_multiple@tiling-y.html
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-3/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format:
- shard-bmg: [SKIP][279] ([Intel XE#2763]) -> [SKIP][280] ([Intel XE#3007])
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-3/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html
* igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area:
- shard-bmg: [SKIP][281] ([Intel XE#1489]) -> [SKIP][282] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-3/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr@psr2-suspend:
- shard-bmg: [SKIP][283] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][284] ([Intel XE#2136] / [Intel XE#2231])
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-1/igt@kms_psr@psr2-suspend.html
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-3/igt@kms_psr@psr2-suspend.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: [SKIP][285] ([Intel XE#2426]) -> [FAIL][286] ([Intel XE#1729])
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-5/igt@kms_tiled_display@basic-test-pattern.html
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern.html
- shard-dg2-set2: [SKIP][287] ([Intel XE#362]) -> [FAIL][288] ([Intel XE#1729])
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-dg2-466/igt@kms_tiled_display@basic-test-pattern.html
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-dg2-435/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vrr@max-min:
- shard-bmg: [SKIP][289] ([Intel XE#1499]) -> [SKIP][290] ([Intel XE#3007])
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-7/igt@kms_vrr@max-min.html
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-3/igt@kms_vrr@max-min.html
* igt@xe_eudebug_online@set-breakpoint:
- shard-bmg: [SKIP][291] ([Intel XE#2905]) -> [SKIP][292] ([Intel XE#1130])
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt@xe_eudebug_online@set-breakpoint.html
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-3/igt@xe_eudebug_online@set-breakpoint.html
* igt@xe_exec_basic@multigpu-no-exec-null-rebind:
- shard-bmg: [SKIP][293] ([Intel XE#2322]) -> [SKIP][294] ([Intel XE#1130])
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt@xe_exec_basic@multigpu-no-exec-null-rebind.html
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-3/igt@xe_exec_basic@multigpu-no-exec-null-rebind.html
* igt@xe_pat@pat-index-xelp:
- shard-bmg: [SKIP][295] ([Intel XE#2245]) -> [SKIP][296] ([Intel XE#1130])
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-8/igt@xe_pat@pat-index-xelp.html
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-3/igt@xe_pat@pat-index-xelp.html
* igt@xe_query@multigpu-query-invalid-extension:
- shard-bmg: [SKIP][297] ([Intel XE#944]) -> [SKIP][298] ([Intel XE#1130])
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8174/shard-bmg-4/igt@xe_query@multigpu-query-invalid-extension.html
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/shard-bmg-3/igt@xe_query@multigpu-query-invalid-extension.html
[Intel XE#1035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1035
[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#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[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#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#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469
[Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
[Intel XE#1475]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1475
[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#1600]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600
[Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[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#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136
[Intel XE#2141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2141
[Intel XE#2159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2159
[Intel XE#2231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245
[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#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[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#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
[Intel XE#2364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2364
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[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#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446
[Intel XE#2493]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493
[Intel XE#2499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2499
[Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
[Intel XE#2550]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2550
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#2635]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2635
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838
[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#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882
[Intel XE#2883]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883
[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#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905
[Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927
[Intel XE#3007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007
[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#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3098
[Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
[Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124
[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#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278
[Intel XE#3279]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3279
[Intel XE#3288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3288
[Intel XE#3313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3313
[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#3383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3383
[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#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[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#3719]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3719
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#3767]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3767
[Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
[Intel XE#3781]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3781
[Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862
[Intel XE#3865]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3865
[Intel XE#3869]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3869
[Intel XE#3879]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3879
[Intel XE#3889]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889
[Intel XE#3898]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3898
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#3946]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3946
[Intel XE#3948]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3948
[Intel XE#402]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/402
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#827]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/827
[Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877
[Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899
[Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[Intel XE#958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/958
Build changes
-------------
* IGT: IGT_8174 -> IGTPW_12378
* Linux: xe-2424-08bd590935a5258ffd79355c59adffd72fb2c642 -> xe-2428-048d83e7f9dae81c058d31c371634c1c317b3013
IGTPW_12378: 12378
IGT_8174: d2004b0623dbccd08502525849b4eef881aa199e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2424-08bd590935a5258ffd79355c59adffd72fb2c642: 08bd590935a5258ffd79355c59adffd72fb2c642
xe-2428-048d83e7f9dae81c058d31c371634c1c317b3013: 048d83e7f9dae81c058d31c371634c1c317b3013
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12378/index.html
[-- Attachment #2: Type: text/html, Size: 85471 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* ✗ i915.CI.Full: failure for Add single engine busyness stats in GPUTOP
2025-01-03 6:53 [PATCH i-g-t] Add single engine busyness stats in GPUTOP Soham Purkait
` (2 preceding siblings ...)
2025-01-03 11:08 ` ✗ Xe.CI.Full: failure " Patchwork
@ 2025-01-03 11:40 ` Patchwork
2025-01-06 16:38 ` [PATCH i-g-t] " Riana Tauro
4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2025-01-03 11:40 UTC (permalink / raw)
To: Soham Purkait; +Cc: igt-dev
== Series Details ==
Series: Add single engine busyness stats in GPUTOP
URL : https://patchwork.freedesktop.org/series/143086/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_15896_full -> IGTPW_12378_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_12378_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_12378_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_12378/index.html
Participating hosts (10 -> 11)
------------------------------
Additional (1): shard-glk-0
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_12378_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_tiled_swapping@non-threaded:
- shard-snb: NOTRUN -> [ABORT][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-snb5/igt@gem_tiled_swapping@non-threaded.html
* igt@kms_atomic@plane-immutable-zpos:
- shard-dg1: [PASS][2] -> [ABORT][3] +1 other test abort
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15896/shard-dg1-18/igt@kms_atomic@plane-immutable-zpos.html
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-17/igt@kms_atomic@plane-immutable-zpos.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [INCOMPLETE][4]
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-glk3/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html
New tests
---------
New tests have been introduced between CI_DRM_15896_full and IGTPW_12378_full:
### New IGT tests (2) ###
* igt@gem_render_copy@linear-to-vebox-y-tiled@lmem0:
- Statuses : 1 pass(s)
- Exec time: [0.76] s
* igt@gem_render_copy@yf-tiled-to-vebox-linear@lmem0:
- Statuses : 1 pass(s)
- Exec time: [0.12] s
Known issues
------------
Here are the changes found in IGTPW_12378_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-rkl: NOTRUN -> [SKIP][5] ([i915#8411])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-2/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@api_intel_bb@crc32:
- shard-dg1: NOTRUN -> [SKIP][6] ([i915#6230])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-12/igt@api_intel_bb@crc32.html
* igt@api_intel_bb@object-reloc-keep-cache:
- shard-dg2: NOTRUN -> [SKIP][7] ([i915#8411])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-10/igt@api_intel_bb@object-reloc-keep-cache.html
* igt@debugfs_test@basic-hwmon:
- shard-rkl: NOTRUN -> [SKIP][8] ([i915#9318])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-2/igt@debugfs_test@basic-hwmon.html
* igt@drm_fdinfo@busy-check-all@bcs0:
- shard-dg1: NOTRUN -> [SKIP][9] ([i915#8414]) +12 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-12/igt@drm_fdinfo@busy-check-all@bcs0.html
* igt@drm_fdinfo@most-busy-idle-check-all@vecs1:
- shard-dg2: NOTRUN -> [SKIP][10] ([i915#8414]) +9 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-1/igt@drm_fdinfo@most-busy-idle-check-all@vecs1.html
* igt@gem_basic@multigpu-create-close:
- shard-dg1: NOTRUN -> [SKIP][11] ([i915#7697])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-13/igt@gem_basic@multigpu-create-close.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-tglu: NOTRUN -> [SKIP][12] ([i915#9323])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-10/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
- shard-rkl: NOTRUN -> [SKIP][13] ([i915#9323])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-3/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
- shard-dg1: NOTRUN -> [SKIP][14] ([i915#9323])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-18/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
* igt@gem_ccs@suspend-resume:
- shard-dg2: [PASS][15] -> [INCOMPLETE][16] ([i915#7297])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15896/shard-dg2-11/igt@gem_ccs@suspend-resume.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-1/igt@gem_ccs@suspend-resume.html
* igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0:
- shard-dg2: [PASS][17] -> [INCOMPLETE][18] ([i915#12392] / [i915#7297])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15896/shard-dg2-11/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-1/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-rkl: NOTRUN -> [SKIP][19] ([i915#7697])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-2/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-tglu: NOTRUN -> [SKIP][20] ([i915#6335])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-10/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_create@create-ext-set-pat:
- shard-tglu-1: NOTRUN -> [SKIP][21] ([i915#8562])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-1/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_freq@sysfs:
- shard-dg2: [PASS][22] -> [FAIL][23] ([i915#9561]) +1 other test fail
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15896/shard-dg2-3/igt@gem_ctx_freq@sysfs.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-4/igt@gem_ctx_freq@sysfs.html
* igt@gem_ctx_isolation@preservation-s3@rcs0:
- shard-glk: [PASS][24] -> [INCOMPLETE][25] ([i915#12353])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15896/shard-glk1/igt@gem_ctx_isolation@preservation-s3@rcs0.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-glk1/igt@gem_ctx_isolation@preservation-s3@rcs0.html
* igt@gem_ctx_param@set-priority-not-supported:
- shard-dg1: NOTRUN -> [SKIP][26] +42 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-12/igt@gem_ctx_param@set-priority-not-supported.html
* igt@gem_ctx_persistence@engines-queued:
- shard-snb: NOTRUN -> [SKIP][27] ([i915#1099]) +5 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-snb7/igt@gem_ctx_persistence@engines-queued.html
* igt@gem_ctx_persistence@saturated-hostile-nopreempt:
- shard-dg2: NOTRUN -> [SKIP][28] ([i915#5882]) +7 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-7/igt@gem_ctx_persistence@saturated-hostile-nopreempt.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-dg2: NOTRUN -> [SKIP][29] ([i915#280])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-7/igt@gem_ctx_sseu@invalid-sseu.html
- shard-rkl: NOTRUN -> [SKIP][30] ([i915#280]) +1 other test skip
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-7/igt@gem_ctx_sseu@invalid-sseu.html
- shard-dg1: NOTRUN -> [SKIP][31] ([i915#280])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-14/igt@gem_ctx_sseu@invalid-sseu.html
- shard-tglu: NOTRUN -> [SKIP][32] ([i915#280])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-8/igt@gem_ctx_sseu@invalid-sseu.html
- shard-mtlp: NOTRUN -> [SKIP][33] ([i915#280])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-mtlp-6/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_ctx_sseu@mmap-args:
- shard-tglu-1: NOTRUN -> [SKIP][34] ([i915#280])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-1/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_eio@hibernate:
- shard-rkl: NOTRUN -> [ABORT][35] ([i915#7975] / [i915#8213])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-2/igt@gem_eio@hibernate.html
* igt@gem_eio@kms:
- shard-dg1: [PASS][36] -> [FAIL][37] ([i915#5784])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15896/shard-dg1-13/igt@gem_eio@kms.html
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-17/igt@gem_eio@kms.html
* igt@gem_exec_balancer@bonded-pair:
- shard-dg1: NOTRUN -> [SKIP][38] ([i915#4771])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-12/igt@gem_exec_balancer@bonded-pair.html
* igt@gem_exec_balancer@bonded-true-hang:
- shard-dg2: NOTRUN -> [SKIP][39] ([i915#4812]) +1 other test skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-7/igt@gem_exec_balancer@bonded-true-hang.html
* igt@gem_exec_balancer@invalid-bonds:
- shard-dg1: NOTRUN -> [SKIP][40] ([i915#4036])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-14/igt@gem_exec_balancer@invalid-bonds.html
* igt@gem_exec_balancer@parallel-bb-first:
- shard-tglu: NOTRUN -> [SKIP][41] ([i915#4525])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-4/igt@gem_exec_balancer@parallel-bb-first.html
* igt@gem_exec_balancer@parallel-contexts:
- shard-rkl: NOTRUN -> [SKIP][42] ([i915#4525])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-7/igt@gem_exec_balancer@parallel-contexts.html
* igt@gem_exec_capture@capture@vecs0-lmem0:
- shard-dg1: NOTRUN -> [FAIL][43] ([i915#11965]) +2 other tests fail
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-17/igt@gem_exec_capture@capture@vecs0-lmem0.html
* igt@gem_exec_endless@dispatch:
- shard-dg2: [PASS][44] -> [TIMEOUT][45] ([i915#3778] / [i915#7016])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15896/shard-dg2-8/igt@gem_exec_endless@dispatch.html
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-4/igt@gem_exec_endless@dispatch.html
* igt@gem_exec_endless@dispatch@vecs1:
- shard-dg2: [PASS][46] -> [TIMEOUT][47] ([i915#7016])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15896/shard-dg2-8/igt@gem_exec_endless@dispatch@vecs1.html
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-4/igt@gem_exec_endless@dispatch@vecs1.html
* igt@gem_exec_fence@concurrent:
- shard-dg1: NOTRUN -> [SKIP][48] ([i915#4812])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-12/igt@gem_exec_fence@concurrent.html
* igt@gem_exec_flush@basic-batch-kernel-default-wb:
- shard-dg1: NOTRUN -> [SKIP][49] ([i915#3539] / [i915#4852]) +1 other test skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-14/igt@gem_exec_flush@basic-batch-kernel-default-wb.html
* igt@gem_exec_flush@basic-uc-set-default:
- shard-dg2: NOTRUN -> [SKIP][50] ([i915#3539])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-7/igt@gem_exec_flush@basic-uc-set-default.html
- shard-dg1: NOTRUN -> [SKIP][51] ([i915#3539])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-13/igt@gem_exec_flush@basic-uc-set-default.html
* igt@gem_exec_flush@basic-wb-rw-default:
- shard-dg2: NOTRUN -> [SKIP][52] ([i915#3539] / [i915#4852]) +3 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-11/igt@gem_exec_flush@basic-wb-rw-default.html
* igt@gem_exec_params@rsvd2-dirt:
- shard-dg2: NOTRUN -> [SKIP][53] ([i915#5107])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-6/igt@gem_exec_params@rsvd2-dirt.html
* igt@gem_exec_reloc@basic-gtt-read:
- shard-dg2: NOTRUN -> [SKIP][54] ([i915#3281]) +8 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-3/igt@gem_exec_reloc@basic-gtt-read.html
* igt@gem_exec_reloc@basic-scanout:
- shard-rkl: NOTRUN -> [SKIP][55] ([i915#3281]) +10 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-3/igt@gem_exec_reloc@basic-scanout.html
- shard-mtlp: NOTRUN -> [SKIP][56] ([i915#3281]) +2 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-mtlp-3/igt@gem_exec_reloc@basic-scanout.html
* igt@gem_exec_reloc@basic-wc-cpu-noreloc:
- shard-dg1: NOTRUN -> [SKIP][57] ([i915#3281]) +11 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-14/igt@gem_exec_reloc@basic-wc-cpu-noreloc.html
* igt@gem_exec_schedule@preempt-queue-contexts-chain:
- shard-dg2: NOTRUN -> [SKIP][58] ([i915#4537] / [i915#4812])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-7/igt@gem_exec_schedule@preempt-queue-contexts-chain.html
* igt@gem_exec_schedule@semaphore-power:
- shard-rkl: NOTRUN -> [SKIP][59] ([i915#7276])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-5/igt@gem_exec_schedule@semaphore-power.html
* igt@gem_exec_schedule@thriceslice:
- shard-snb: NOTRUN -> [SKIP][60] +433 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-snb7/igt@gem_exec_schedule@thriceslice.html
* igt@gem_exec_schedule@wide:
- shard-tglu: NOTRUN -> [INCOMPLETE][61] ([i915#13391]) +1 other test incomplete
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-9/igt@gem_exec_schedule@wide.html
* igt@gem_fenced_exec_thrash@no-spare-fences:
- shard-dg1: NOTRUN -> [SKIP][62] ([i915#4860]) +1 other test skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-13/igt@gem_fenced_exec_thrash@no-spare-fences.html
- shard-mtlp: NOTRUN -> [SKIP][63] ([i915#4860]) +1 other test skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-mtlp-4/igt@gem_fenced_exec_thrash@no-spare-fences.html
- shard-dg2: NOTRUN -> [SKIP][64] ([i915#4860]) +1 other test skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-4/igt@gem_fenced_exec_thrash@no-spare-fences.html
* igt@gem_huc_copy@huc-copy:
- shard-rkl: NOTRUN -> [SKIP][65] ([i915#2190])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-2/igt@gem_huc_copy@huc-copy.html
- shard-tglu: NOTRUN -> [SKIP][66] ([i915#2190])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-4/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs:
- shard-rkl: NOTRUN -> [SKIP][67] ([i915#4613]) +3 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-1/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
* igt@gem_lmem_swapping@massive-random:
- shard-tglu-1: NOTRUN -> [SKIP][68] ([i915#4613])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-1/igt@gem_lmem_swapping@massive-random.html
* igt@gem_lmem_swapping@random-engines:
- shard-glk: NOTRUN -> [SKIP][69] ([i915#4613]) +4 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-glk4/igt@gem_lmem_swapping@random-engines.html
* igt@gem_lmem_swapping@verify-random-ccs:
- shard-tglu: NOTRUN -> [SKIP][70] ([i915#4613]) +2 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-7/igt@gem_lmem_swapping@verify-random-ccs.html
* igt@gem_media_vme:
- shard-dg1: NOTRUN -> [SKIP][71] ([i915#284])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-14/igt@gem_media_vme.html
* igt@gem_mmap@short-mmap:
- shard-mtlp: NOTRUN -> [SKIP][72] ([i915#4083]) +1 other test skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-mtlp-8/igt@gem_mmap@short-mmap.html
* igt@gem_mmap_gtt@basic-small-bo:
- shard-dg2: NOTRUN -> [SKIP][73] ([i915#4077]) +8 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-2/igt@gem_mmap_gtt@basic-small-bo.html
* igt@gem_mmap_gtt@big-bo-tiledy:
- shard-mtlp: NOTRUN -> [SKIP][74] ([i915#4077])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-mtlp-3/igt@gem_mmap_gtt@big-bo-tiledy.html
* igt@gem_mmap_gtt@cpuset-basic-small-copy-xy:
- shard-dg1: NOTRUN -> [SKIP][75] ([i915#4077]) +8 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-14/igt@gem_mmap_gtt@cpuset-basic-small-copy-xy.html
* igt@gem_mmap_wc@write-cpu-read-wc-unflushed:
- shard-dg1: NOTRUN -> [SKIP][76] ([i915#4083]) +4 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-14/igt@gem_mmap_wc@write-cpu-read-wc-unflushed.html
* igt@gem_mmap_wc@write-prefaulted:
- shard-dg2: NOTRUN -> [SKIP][77] ([i915#4083]) +6 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-3/igt@gem_mmap_wc@write-prefaulted.html
* igt@gem_partial_pwrite_pread@writes-after-reads:
- shard-rkl: NOTRUN -> [SKIP][78] ([i915#3282]) +5 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-7/igt@gem_partial_pwrite_pread@writes-after-reads.html
* igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
- shard-dg1: NOTRUN -> [SKIP][79] ([i915#3282]) +4 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-13/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
* igt@gem_pread@exhaustion:
- shard-glk: NOTRUN -> [WARN][80] ([i915#2658])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-glk1/igt@gem_pread@exhaustion.html
- shard-mtlp: NOTRUN -> [SKIP][81] ([i915#3282])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-mtlp-7/igt@gem_pread@exhaustion.html
* igt@gem_pread@snoop:
- shard-dg2: NOTRUN -> [SKIP][82] ([i915#3282]) +5 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-10/igt@gem_pread@snoop.html
* igt@gem_pwrite@basic-exhaustion:
- shard-tglu: NOTRUN -> [WARN][83] ([i915#2658])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-2/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pxp@create-valid-protected-context:
- shard-rkl: NOTRUN -> [TIMEOUT][84] ([i915#12964]) +1 other test timeout
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-4/igt@gem_pxp@create-valid-protected-context.html
* igt@gem_pxp@display-protected-crc:
- shard-dg1: NOTRUN -> [SKIP][85] ([i915#4270]) +2 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-12/igt@gem_pxp@display-protected-crc.html
* igt@gem_pxp@hw-rejects-pxp-buffer:
- shard-tglu: NOTRUN -> [SKIP][86] ([i915#13398])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-5/igt@gem_pxp@hw-rejects-pxp-buffer.html
* igt@gem_pxp@regular-baseline-src-copy-readible:
- shard-dg2: NOTRUN -> [SKIP][87] ([i915#4270]) +3 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-2/igt@gem_pxp@regular-baseline-src-copy-readible.html
* igt@gem_pxp@verify-pxp-execution-after-suspend-resume:
- shard-rkl: NOTRUN -> [SKIP][88] ([i915#4270])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-2/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html
* igt@gem_pxp@verify-pxp-stale-ctx-execution:
- shard-rkl: NOTRUN -> [TIMEOUT][89] ([i915#12917] / [i915#12964])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-7/igt@gem_pxp@verify-pxp-stale-ctx-execution.html
* igt@gem_render_copy@y-tiled-to-vebox-yf-tiled:
- shard-dg2: NOTRUN -> [SKIP][90] ([i915#5190] / [i915#8428]) +5 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-2/igt@gem_render_copy@y-tiled-to-vebox-yf-tiled.html
* igt@gem_render_copy@yf-tiled-to-vebox-linear:
- shard-mtlp: NOTRUN -> [SKIP][91] ([i915#8428])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-mtlp-7/igt@gem_render_copy@yf-tiled-to-vebox-linear.html
* igt@gem_set_tiling_vs_gtt:
- shard-mtlp: NOTRUN -> [SKIP][92] ([i915#4079])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-mtlp-5/igt@gem_set_tiling_vs_gtt.html
- shard-dg2: NOTRUN -> [SKIP][93] ([i915#4079])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-5/igt@gem_set_tiling_vs_gtt.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-tglu: NOTRUN -> [SKIP][94] ([i915#3297] / [i915#3323])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-10/igt@gem_userptr_blits@dmabuf-sync.html
- shard-glk: NOTRUN -> [SKIP][95] ([i915#3323])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-glk8/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-dg1: NOTRUN -> [SKIP][96] ([i915#3297]) +1 other test skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-12/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gem_userptr_blits@readonly-pwrite-unsync:
- shard-tglu: NOTRUN -> [SKIP][97] ([i915#3297]) +2 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-10/igt@gem_userptr_blits@readonly-pwrite-unsync.html
* igt@gem_userptr_blits@unsync-unmap-after-close:
- shard-rkl: NOTRUN -> [SKIP][98] ([i915#3297]) +1 other test skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-1/igt@gem_userptr_blits@unsync-unmap-after-close.html
* igt@gem_workarounds@suspend-resume-fd:
- shard-glk: [PASS][99] -> [INCOMPLETE][100] ([i915#13356])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15896/shard-glk5/igt@gem_workarounds@suspend-resume-fd.html
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-glk6/igt@gem_workarounds@suspend-resume-fd.html
* igt@gen9_exec_parse@bb-start-cmd:
- shard-dg1: NOTRUN -> [SKIP][101] ([i915#2527]) +2 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-12/igt@gen9_exec_parse@bb-start-cmd.html
- shard-tglu: NOTRUN -> [SKIP][102] ([i915#2527] / [i915#2856]) +4 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-3/igt@gen9_exec_parse@bb-start-cmd.html
* igt@gen9_exec_parse@bb-start-param:
- shard-dg2: NOTRUN -> [SKIP][103] ([i915#2856]) +3 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-3/igt@gen9_exec_parse@bb-start-param.html
- shard-tglu-1: NOTRUN -> [SKIP][104] ([i915#2527] / [i915#2856]) +1 other test skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-1/igt@gen9_exec_parse@bb-start-param.html
* igt@gen9_exec_parse@secure-batches:
- shard-mtlp: NOTRUN -> [SKIP][105] ([i915#2856]) +1 other test skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-mtlp-1/igt@gen9_exec_parse@secure-batches.html
* igt@gen9_exec_parse@unaligned-access:
- shard-rkl: NOTRUN -> [SKIP][106] ([i915#2527]) +4 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-4/igt@gen9_exec_parse@unaligned-access.html
* igt@i915_pm_freq_api@freq-suspend:
- shard-tglu: NOTRUN -> [SKIP][107] ([i915#8399])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-4/igt@i915_pm_freq_api@freq-suspend.html
* igt@i915_pm_rpm@system-suspend:
- shard-glk: [PASS][108] -> [INCOMPLETE][109] ([i915#12797])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15896/shard-glk2/igt@i915_pm_rpm@system-suspend.html
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-glk2/igt@i915_pm_rpm@system-suspend.html
* igt@i915_pm_rps@basic-api:
- shard-dg1: NOTRUN -> [SKIP][110] ([i915#11681] / [i915#6621]) +2 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-14/igt@i915_pm_rps@basic-api.html
* igt@i915_pm_rps@min-max-config-loaded:
- shard-dg2: NOTRUN -> [SKIP][111] ([i915#11681] / [i915#6621])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-2/igt@i915_pm_rps@min-max-config-loaded.html
* igt@i915_pm_rps@thresholds-idle-park:
- shard-dg2: NOTRUN -> [SKIP][112] ([i915#11681]) +1 other test skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-5/igt@i915_pm_rps@thresholds-idle-park.html
* igt@i915_pm_sseu@full-enable:
- shard-tglu: NOTRUN -> [SKIP][113] ([i915#4387])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-4/igt@i915_pm_sseu@full-enable.html
* igt@i915_selftest@live@workarounds:
- shard-mtlp: [PASS][114] -> [DMESG-FAIL][115] ([i915#13393]) +1 other test dmesg-fail
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15896/shard-mtlp-1/igt@i915_selftest@live@workarounds.html
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-mtlp-2/igt@i915_selftest@live@workarounds.html
* igt@i915_selftest@mock@memory_region:
- shard-dg1: NOTRUN -> [DMESG-WARN][116] ([i915#9311]) +1 other test dmesg-warn
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-12/igt@i915_selftest@mock@memory_region.html
- shard-tglu: NOTRUN -> [DMESG-WARN][117] ([i915#9311])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-5/igt@i915_selftest@mock@memory_region.html
* igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy:
- shard-dg2: NOTRUN -> [SKIP][118] ([i915#4212])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-10/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-dg2: NOTRUN -> [SKIP][119] ([i915#5190]) +3 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-6/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@bo-too-small-due-to-tiling:
- shard-dg1: NOTRUN -> [SKIP][120] ([i915#4212]) +3 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-12/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-rkl: NOTRUN -> [SKIP][121] ([i915#12454] / [i915#12712])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-4/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc:
- shard-rkl: NOTRUN -> [SKIP][122] ([i915#8709]) +3 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-1/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-dp-4-4-rc-ccs-cc:
- shard-dg2: NOTRUN -> [SKIP][123] ([i915#8709]) +23 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-10/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-dp-4-4-rc-ccs-cc.html
* igt@kms_async_flips@crc:
- shard-tglu-1: NOTRUN -> [INCOMPLETE][124] ([i915#13287] / [i915#9878])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-1/igt@kms_async_flips@crc.html
- shard-dg2: NOTRUN -> [WARN][125] ([i915#13287])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-3/igt@kms_async_flips@crc.html
* igt@kms_async_flips@crc-atomic:
- shard-dg1: NOTRUN -> [WARN][126] ([i915#13287])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-12/igt@kms_async_flips@crc-atomic.html
* igt@kms_async_flips@crc-atomic@pipe-c-hdmi-a-3:
- shard-dg1: NOTRUN -> [CRASH][127] ([i915#13287]) +3 other tests crash
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-12/igt@kms_async_flips@crc-atomic@pipe-c-hdmi-a-3.html
* igt@kms_async_flips@crc@pipe-a-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [INCOMPLETE][128] ([i915#13287])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-1/igt@kms_async_flips@crc@pipe-a-hdmi-a-1.html
* igt@kms_async_flips@crc@pipe-a-hdmi-a-2:
- shard-glk: NOTRUN -> [INCOMPLETE][129] ([i915#13287] / [i915#13423])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-glk8/igt@kms_async_flips@crc@pipe-a-hdmi-a-2.html
- shard-rkl: NOTRUN -> [INCOMPLETE][130] ([i915#13287])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-5/igt@kms_async_flips@crc@pipe-a-hdmi-a-2.html
* igt@kms_async_flips@crc@pipe-c-hdmi-a-3:
- shard-dg2: NOTRUN -> [CRASH][131] ([i915#13287]) +3 other tests crash
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-3/igt@kms_async_flips@crc@pipe-c-hdmi-a-3.html
* igt@kms_async_flips@test-cursor-atomic:
- shard-mtlp: NOTRUN -> [SKIP][132] ([i915#10333])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-mtlp-8/igt@kms_async_flips@test-cursor-atomic.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-rkl: NOTRUN -> [SKIP][133] ([i915#9531])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-4/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
- shard-tglu-1: NOTRUN -> [SKIP][134] ([i915#9531])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-tglu-1: NOTRUN -> [SKIP][135] ([i915#1769] / [i915#3555])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-1/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-180:
- shard-rkl: NOTRUN -> [SKIP][136] ([i915#5286]) +3 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-1/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-dg1: NOTRUN -> [SKIP][137] ([i915#5286])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-12/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-tglu-1: NOTRUN -> [SKIP][138] ([i915#5286]) +1 other test skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-dg1: NOTRUN -> [SKIP][139] ([i915#4538] / [i915#5286]) +6 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-14/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
- shard-tglu: NOTRUN -> [SKIP][140] ([i915#5286]) +5 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-mtlp: [PASS][141] -> [FAIL][142] ([i915#5138])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15896/shard-mtlp-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-dg1: NOTRUN -> [SKIP][143] ([i915#3638]) +1 other test skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-18/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][144] ([i915#3638]) +2 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-7/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-addfb:
- shard-mtlp: NOTRUN -> [SKIP][145] ([i915#6187])
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-mtlp-6/igt@kms_big_fb@y-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-0:
- shard-dg2: NOTRUN -> [SKIP][146] ([i915#4538] / [i915#5190]) +11 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-5/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0:
- shard-dg1: NOTRUN -> [SKIP][147] ([i915#4538]) +3 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-12/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][148] ([i915#6095]) +24 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-1/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-1.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][149] ([i915#6095]) +69 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-4/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs:
- shard-dg1: NOTRUN -> [SKIP][150] ([i915#6095]) +151 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-13/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
- shard-rkl: NOTRUN -> [SKIP][151] ([i915#12805])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-7/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-b-dp-4:
- shard-dg2: NOTRUN -> [SKIP][152] ([i915#6095]) +17 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-10/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-b-dp-4.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs:
- shard-glk: NOTRUN -> [INCOMPLETE][153] ([i915#12796])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-glk3/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
- shard-dg1: NOTRUN -> [SKIP][154] ([i915#12313]) +2 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-18/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
- shard-rkl: NOTRUN -> [SKIP][155] ([i915#12313]) +1 other test skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][156] ([i915#6095]) +74 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1.html
* igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][157] ([i915#6095]) +19 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-mtlp-4/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-a-edp-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
- shard-dg2: NOTRUN -> [SKIP][158] ([i915#12313]) +1 other test skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-6/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
- shard-tglu: NOTRUN -> [SKIP][159] ([i915#12313])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-10/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][160] ([i915#10307] / [i915#6095]) +150 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-4/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][161] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-4/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_cdclk@mode-transition:
- shard-tglu: NOTRUN -> [SKIP][162] ([i915#3742])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-3/igt@kms_cdclk@mode-transition.html
* igt@kms_cdclk@mode-transition@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [SKIP][163] ([i915#11616] / [i915#7213]) +3 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-10/igt@kms_cdclk@mode-transition@pipe-a-dp-4.html
* igt@kms_cdclk@plane-scaling:
- shard-dg1: NOTRUN -> [SKIP][164] ([i915#3742])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-18/igt@kms_cdclk@plane-scaling.html
* igt@kms_chamelium_audio@hdmi-audio-edid:
- shard-tglu: NOTRUN -> [SKIP][165] ([i915#7828]) +8 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-2/igt@kms_chamelium_audio@hdmi-audio-edid.html
* igt@kms_chamelium_edid@hdmi-edid-read:
- shard-dg1: NOTRUN -> [SKIP][166] ([i915#7828]) +7 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-14/igt@kms_chamelium_edid@hdmi-edid-read.html
* igt@kms_chamelium_frames@vga-frame-dump:
- shard-tglu-1: NOTRUN -> [SKIP][167] ([i915#7828]) +3 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-1/igt@kms_chamelium_frames@vga-frame-dump.html
* igt@kms_chamelium_hpd@hdmi-hpd-after-suspend:
- shard-mtlp: NOTRUN -> [SKIP][168] ([i915#7828])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-mtlp-4/igt@kms_chamelium_hpd@hdmi-hpd-after-suspend.html
* igt@kms_chamelium_hpd@vga-hpd-after-suspend:
- shard-dg2: NOTRUN -> [SKIP][169] ([i915#7828]) +10 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-8/igt@kms_chamelium_hpd@vga-hpd-after-suspend.html
* igt@kms_chamelium_hpd@vga-hpd-fast:
- shard-rkl: NOTRUN -> [SKIP][170] ([i915#7828]) +11 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-4/igt@kms_chamelium_hpd@vga-hpd-fast.html
* igt@kms_content_protection@atomic-dpms:
- shard-tglu: NOTRUN -> [SKIP][171] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) +3 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-7/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@content-type-change:
- shard-tglu: NOTRUN -> [SKIP][172] ([i915#6944] / [i915#9424])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-4/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-dg1: NOTRUN -> [SKIP][173] ([i915#3299]) +1 other test skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-18/igt@kms_content_protection@dp-mst-type-0.html
- shard-tglu: NOTRUN -> [SKIP][174] ([i915#3116] / [i915#3299])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-5/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@legacy:
- shard-dg2: NOTRUN -> [SKIP][175] ([i915#7118] / [i915#9424])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-2/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@lic-type-0:
- shard-dg2: NOTRUN -> [SKIP][176] ([i915#9424])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-1/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@lic-type-1:
- shard-rkl: NOTRUN -> [SKIP][177] ([i915#9424])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-1/igt@kms_content_protection@lic-type-1.html
* igt@kms_content_protection@uevent:
- shard-mtlp: NOTRUN -> [SKIP][178] ([i915#6944] / [i915#9424])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-mtlp-4/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-dg1: NOTRUN -> [SKIP][179] ([i915#13049]) +1 other test skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-17/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-32x10:
- shard-tglu-1: NOTRUN -> [SKIP][180] ([i915#3555]) +3 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-32x10.html
* igt@kms_cursor_crc@cursor-random-32x10:
- shard-tglu: NOTRUN -> [SKIP][181] ([i915#3555]) +3 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-5/igt@kms_cursor_crc@cursor-random-32x10.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-rkl: NOTRUN -> [SKIP][182] ([i915#13049]) +4 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-5/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-256x85:
- shard-mtlp: NOTRUN -> [SKIP][183] ([i915#8814])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-mtlp-8/igt@kms_cursor_crc@cursor-rapid-movement-256x85.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-tglu: NOTRUN -> [SKIP][184] ([i915#13049]) +2 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-2/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-dg2: NOTRUN -> [SKIP][185] ([i915#13049])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-4/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-max-size:
- shard-rkl: NOTRUN -> [SKIP][186] ([i915#3555]) +6 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-3/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
* igt@kms_cursor_crc@cursor-sliding-max-size:
- shard-mtlp: NOTRUN -> [SKIP][187] ([i915#3555] / [i915#8814])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-mtlp-7/igt@kms_cursor_crc@cursor-sliding-max-size.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic:
- shard-snb: [PASS][188] -> [SKIP][189]
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15896/shard-snb5/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-snb7/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-tglu-1: NOTRUN -> [SKIP][190] ([i915#4103])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
- shard-dg1: NOTRUN -> [SKIP][191] ([i915#4103] / [i915#4213]) +1 other test skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-13/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size:
- shard-dg2: NOTRUN -> [SKIP][192] ([i915#13046] / [i915#5354]) +2 other tests skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-10/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-glk: NOTRUN -> [FAIL][193] ([i915#2346])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-dg2: NOTRUN -> [SKIP][194] ([i915#9067])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-10/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
- shard-tglu: NOTRUN -> [SKIP][195] ([i915#9067])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-2/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-tglu: NOTRUN -> [SKIP][196] ([i915#4103])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-rkl: NOTRUN -> [SKIP][197] ([i915#4103])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-dg2: NOTRUN -> [SKIP][198] ([i915#9833])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-8/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
- shard-dg1: NOTRUN -> [SKIP][199] ([i915#9723])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-18/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
- shard-tglu: NOTRUN -> [SKIP][200] ([i915#9723])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-6/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
- shard-mtlp: NOTRUN -> [SKIP][201] ([i915#9833])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-mtlp-1/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-dg2: NOTRUN -> [SKIP][202] ([i915#8588])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-7/igt@kms_display_modes@mst-extended-mode-negative.html
- shard-tglu: NOTRUN -> [SKIP][203] ([i915#8588])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-10/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_dp_aux_dev:
- shard-rkl: NOTRUN -> [SKIP][204] ([i915#1257])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-4/igt@kms_dp_aux_dev.html
- shard-tglu-1: NOTRUN -> [SKIP][205] ([i915#1257])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-1/igt@kms_dp_aux_dev.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-tglu: NOTRUN -> [SKIP][206] ([i915#12402])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-2/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_draw_crc@draw-method-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][207] ([i915#8812])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-12/igt@kms_draw_crc@draw-method-mmap-gtt.html
* igt@kms_dsc@dsc-basic:
- shard-tglu-1: NOTRUN -> [SKIP][208] ([i915#3555] / [i915#3840])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-1/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-dg1: NOTRUN -> [SKIP][209] ([i915#3555] / [i915#3840])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-12/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_dsc@dsc-with-formats:
- shard-rkl: NOTRUN -> [SKIP][210] ([i915#3555] / [i915#3840]) +1 other test skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-3/igt@kms_dsc@dsc-with-formats.html
* igt@kms_feature_discovery@chamelium:
- shard-dg2: NOTRUN -> [SKIP][211] ([i915#4854])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-4/igt@kms_feature_discovery@chamelium.html
- shard-rkl: NOTRUN -> [SKIP][212] ([i915#4854])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-4/igt@kms_feature_discovery@chamelium.html
- shard-tglu-1: NOTRUN -> [SKIP][213] ([i915#2065] / [i915#4854])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-1/igt@kms_feature_discovery@chamelium.html
- shard-dg1: NOTRUN -> [SKIP][214] ([i915#4854])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-13/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-2x:
- shard-tglu-1: NOTRUN -> [SKIP][215] ([i915#1839])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-1/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@dp-mst:
- shard-dg1: NOTRUN -> [SKIP][216] ([i915#9337])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-17/igt@kms_feature_discovery@dp-mst.html
- shard-tglu: NOTRUN -> [SKIP][217] ([i915#9337])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-4/igt@kms_feature_discovery@dp-mst.html
* igt@kms_feature_discovery@psr1:
- shard-tglu: NOTRUN -> [SKIP][218] ([i915#658])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-10/igt@kms_feature_discovery@psr1.html
- shard-dg2: NOTRUN -> [SKIP][219] ([i915#658]) +1 other test skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-11/igt@kms_feature_discovery@psr1.html
- shard-dg1: NOTRUN -> [SKIP][220] ([i915#658])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-12/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@2x-flip-vs-blocking-wf-vblank:
- shard-tglu-1: NOTRUN -> [SKIP][221] ([i915#3637]) +2 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-1/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html
* igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible:
- shard-dg1: NOTRUN -> [SKIP][222] ([i915#9934]) +2 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-18/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
* igt@kms_flip@2x-flip-vs-fences:
- shard-dg2: NOTRUN -> [SKIP][223] ([i915#8381])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-11/igt@kms_flip@2x-flip-vs-fences.html
* igt@kms_flip@2x-flip-vs-modeset:
- shard-tglu: NOTRUN -> [SKIP][224] ([i915#3637]) +5 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-8/igt@kms_flip@2x-flip-vs-modeset.html
* igt@kms_flip@2x-flip-vs-rmfb-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][225] ([i915#3637])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-mtlp-2/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
* igt@kms_flip@2x-plain-flip-interruptible:
- shard-rkl: NOTRUN -> [SKIP][226] ([i915#9934]) +8 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-4/igt@kms_flip@2x-plain-flip-interruptible.html
* igt@kms_flip@2x-wf_vblank-ts-check:
- shard-dg2: NOTRUN -> [SKIP][227] ([i915#9934]) +6 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-11/igt@kms_flip@2x-wf_vblank-ts-check.html
* igt@kms_flip@blocking-wf_vblank@a-hdmi-a1:
- shard-tglu: NOTRUN -> [FAIL][228] ([i915#11989]) +1 other test fail
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-9/igt@kms_flip@blocking-wf_vblank@a-hdmi-a1.html
* igt@kms_flip@plain-flip-fb-recreate-interruptible:
- shard-tglu: [PASS][229] -> [FAIL][230] ([i915#11989]) +1 other test fail
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15896/shard-tglu-7/igt@kms_flip@plain-flip-fb-recreate-interruptible.html
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-5/igt@kms_flip@plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@wf_vblank-ts-check@b-hdmi-a1:
- shard-glk: NOTRUN -> [DMESG-WARN][231] ([i915#118]) +1 other test dmesg-warn
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-glk8/igt@kms_flip@wf_vblank-ts-check@b-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling:
- shard-tglu: NOTRUN -> [SKIP][232] ([i915#2672] / [i915#3555]) +3 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-7/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html
- shard-dg2: NOTRUN -> [SKIP][233] ([i915#2672] / [i915#3555]) +1 other test skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-6/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
- shard-tglu: NOTRUN -> [SKIP][234] ([i915#2587] / [i915#2672] / [i915#3555])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling:
- shard-dg1: NOTRUN -> [SKIP][235] ([i915#2587] / [i915#2672] / [i915#3555])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-12/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][236] ([i915#2587] / [i915#2672]) +4 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][237] ([i915#2672] / [i915#3555] / [i915#8813])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][238] ([i915#2672] / [i915#8813])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
- shard-rkl: NOTRUN -> [SKIP][239] ([i915#2672] / [i915#3555]) +3 other tests skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
- shard-dg1: NOTRUN -> [SKIP][240] ([i915#2672] / [i915#3555]) +3 other tests skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-12/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][241] ([i915#2672]) +3 other tests skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html
- shard-dg1: NOTRUN -> [SKIP][242] ([i915#2587] / [i915#2672]) +4 other tests skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-12/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling:
- shard-dg2: NOTRUN -> [SKIP][243] ([i915#2672] / [i915#3555] / [i915#5190]) +2 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][244] ([i915#2672]) +4 other tests skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite:
- shard-rkl: [PASS][245] -> [DMESG-WARN][246] ([i915#12964]) +19 other tests dmesg-warn
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15896/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][247] ([i915#8708]) +2 other tests skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary:
- shard-dg2: NOTRUN -> [FAIL][248] ([i915#6880])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-tglu-1: NOTRUN -> [SKIP][249] ([i915#5439])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-dg2: NOTRUN -> [SKIP][250] ([i915#10055])
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][251] +27 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][252] ([i915#8708]) +21 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt:
- shard-dg2: NOTRUN -> [SKIP][253] ([i915#5354]) +23 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-cpu:
- shard-mtlp: NOTRUN -> [SKIP][254] ([i915#1825]) +8 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen:
- shard-tglu: NOTRUN -> [SKIP][255] +102 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-dg2: NOTRUN -> [SKIP][256] ([i915#10433] / [i915#3458])
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
- shard-rkl: NOTRUN -> [SKIP][257] ([i915#5439])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-rkl: NOTRUN -> [SKIP][258] ([i915#9766])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-1/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
- shard-tglu: NOTRUN -> [SKIP][259] ([i915#9766])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-4/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
- shard-dg2: NOTRUN -> [SKIP][260] ([i915#9766])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-5/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite:
- shard-rkl: NOTRUN -> [SKIP][261] ([i915#3023]) +26 other tests skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
- shard-rkl: NOTRUN -> [SKIP][262] ([i915#1825]) +41 other tests skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu:
- shard-tglu-1: NOTRUN -> [SKIP][263] +33 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu.html
- shard-dg1: NOTRUN -> [SKIP][264] ([i915#3458]) +12 other tests skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][265] ([i915#8708]) +18 other tests skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render:
- shard-dg2: NOTRUN -> [SKIP][266] ([i915#3458]) +17 other tests skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render.html
* igt@kms_hdr@bpc-switch:
- shard-tglu-1: NOTRUN -> [SKIP][267] ([i915#3555] / [i915#8228])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-1/igt@kms_hdr@bpc-switch.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-dg1: NOTRUN -> [SKIP][268] ([i915#3555] / [i915#8228]) +3 other tests skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-18/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_hdr@invalid-hdr:
- shard-tglu: NOTRUN -> [SKIP][269] ([i915#3555] / [i915#8228]) +1 other test skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-4/igt@kms_hdr@invalid-hdr.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-rkl: NOTRUN -> [SKIP][270] ([i915#3555] / [i915#8228])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-3/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_histogram@algo-basic:
- shard-dg1: NOTRUN -> [SKIP][271] ([i915#13389])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-17/igt@kms_histogram@algo-basic.html
* igt@kms_histogram@global-basic:
- shard-dg2: NOTRUN -> [SKIP][272] ([i915#13388])
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-10/igt@kms_histogram@global-basic.html
* igt@kms_joiner@basic-big-joiner:
- shard-dg2: NOTRUN -> [SKIP][273] ([i915#10656])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-11/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-dg1: NOTRUN -> [SKIP][274] ([i915#12388])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-12/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-tglu: NOTRUN -> [SKIP][275] ([i915#12339])
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-10/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-rkl: NOTRUN -> [SKIP][276] ([i915#12388])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-4/igt@kms_joiner@invalid-modeset-force-big-joiner.html
- shard-tglu-1: NOTRUN -> [SKIP][277] ([i915#12388])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-1/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-tglu: NOTRUN -> [SKIP][278] ([i915#12394])
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-2/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-rkl: NOTRUN -> [SKIP][279] ([i915#12339])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-5/igt@kms_joiner@invalid-modeset-ultra-joiner.html
- shard-tglu-1: NOTRUN -> [SKIP][280] ([i915#12339])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-1/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-tglu: NOTRUN -> [SKIP][281] ([i915#1839])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-dg2: NOTRUN -> [SKIP][282] ([i915#6301]) +1 other test skip
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-10/igt@kms_panel_fitting@atomic-fastset.html
- shard-rkl: NOTRUN -> [SKIP][283] ([i915#6301])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-3/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_plane@pixel-format-source-clamping@pipe-b-plane-0:
- shard-rkl: NOTRUN -> [DMESG-WARN][284] ([i915#12964]) +22 other tests dmesg-warn
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-3/igt@kms_plane@pixel-format-source-clamping@pipe-b-plane-0.html
* igt@kms_plane_alpha_blend@alpha-opaque-fb:
- shard-glk: NOTRUN -> [FAIL][285] ([i915#10647] / [i915#12169])
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-glk3/igt@kms_plane_alpha_blend@alpha-opaque-fb.html
* igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][286] ([i915#10647]) +3 other tests fail
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-glk3/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1.html
* igt@kms_plane_alpha_blend@alpha-transparent-fb:
- shard-glk: NOTRUN -> [FAIL][287] ([i915#10647] / [i915#12177])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-glk8/igt@kms_plane_alpha_blend@alpha-transparent-fb.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation:
- shard-rkl: NOTRUN -> [SKIP][288] ([i915#12247]) +4 other tests skip
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-4/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c:
- shard-tglu: NOTRUN -> [SKIP][289] ([i915#12247]) +4 other tests skip
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-3/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d:
- shard-dg1: NOTRUN -> [SKIP][290] ([i915#12247]) +8 other tests skip
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-17/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25:
- shard-dg1: NOTRUN -> [SKIP][291] ([i915#12247] / [i915#6953])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-14/igt@kms_plane_scaling@planes-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5:
- shard-mtlp: NOTRUN -> [SKIP][292] ([i915#12247] / [i915#6953])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-mtlp-5/igt@kms_plane_scaling@planes-downscale-factor-0-5.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-b:
- shard-mtlp: NOTRUN -> [SKIP][293] ([i915#12247]) +3 other tests skip
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-mtlp-5/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-b.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25:
- shard-rkl: NOTRUN -> [SKIP][294] ([i915#12247] / [i915#6953])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html
- shard-tglu-1: NOTRUN -> [SKIP][295] ([i915#12247] / [i915#6953])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-c:
- shard-tglu-1: NOTRUN -> [SKIP][296] ([i915#12247]) +3 other tests skip
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-c.html
* igt@kms_pm_backlight@basic-brightness:
- shard-tglu: NOTRUN -> [SKIP][297] ([i915#9812])
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-4/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_dc@dc5-psr:
- shard-rkl: NOTRUN -> [SKIP][298] ([i915#9685]) +1 other test skip
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-2/igt@kms_pm_dc@dc5-psr.html
- shard-dg1: NOTRUN -> [SKIP][299] ([i915#9685])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-12/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-tglu: NOTRUN -> [SKIP][300] ([i915#3828])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-2/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@dc6-dpms:
- shard-mtlp: NOTRUN -> [FAIL][301] ([i915#12913])
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-mtlp-1/igt@kms_pm_dc@dc6-dpms.html
- shard-dg2: NOTRUN -> [SKIP][302] ([i915#5978])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-1/igt@kms_pm_dc@dc6-dpms.html
- shard-tglu: NOTRUN -> [FAIL][303] ([i915#9295])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-9/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc9-dpms:
- shard-rkl: NOTRUN -> [SKIP][304] ([i915#3361])
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-3/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-dg1: NOTRUN -> [SKIP][305] ([i915#9340])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-18/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-rkl: NOTRUN -> [SKIP][306] ([i915#8430])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-2/igt@kms_pm_lpsp@screens-disabled.html
- shard-dg1: NOTRUN -> [SKIP][307] ([i915#8430])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-14/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-dg2: NOTRUN -> [SKIP][308] ([i915#9519])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-1/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-rkl: [PASS][309] -> [SKIP][310] ([i915#9519])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15896/shard-rkl-6/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-7/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-dg1: NOTRUN -> [SKIP][311] ([i915#9519])
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-13/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-dg2: [PASS][312] -> [SKIP][313] ([i915#9519])
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15896/shard-dg2-3/igt@kms_pm_rpm@modeset-non-lpsp.html
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_prime@basic-crc-hybrid:
- shard-tglu-1: NOTRUN -> [SKIP][314] ([i915#6524])
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-1/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-dg1: NOTRUN -> [SKIP][315] ([i915#6524]) +1 other test skip
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-17/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf:
- shard-tglu: NOTRUN -> [SKIP][316] ([i915#11520]) +7 other tests skip
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-10/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@pr-plane-move-sf-dmg-area:
- shard-glk: NOTRUN -> [SKIP][317] ([i915#11520]) +12 other tests skip
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-glk8/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb:
- shard-mtlp: NOTRUN -> [SKIP][318] ([i915#12316])
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-mtlp-1/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf:
- shard-dg2: NOTRUN -> [SKIP][319] ([i915#11520]) +8 other tests skip
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-6/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf:
- shard-dg1: NOTRUN -> [SKIP][320] ([i915#11520]) +9 other tests skip
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-12/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@psr2-cursor-plane-update-sf:
- shard-rkl: NOTRUN -> [SKIP][321] ([i915#11520]) +6 other tests skip
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-2/igt@kms_psr2_sf@psr2-cursor-plane-update-sf.html
* igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb:
- shard-snb: NOTRUN -> [SKIP][322] ([i915#11520]) +14 other tests skip
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-snb4/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html
- shard-tglu-1: NOTRUN -> [SKIP][323] ([i915#11520]) +1 other test skip
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-1/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-tglu-1: NOTRUN -> [SKIP][324] ([i915#9683])
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-1/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr2_su@page_flip-p010:
- shard-dg2: NOTRUN -> [SKIP][325] ([i915#9683])
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-10/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-rkl: NOTRUN -> [SKIP][326] ([i915#9683])
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-1/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-pr-no-drrs:
- shard-tglu-1: NOTRUN -> [SKIP][327] ([i915#9732]) +8 other tests skip
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-1/igt@kms_psr@fbc-pr-no-drrs.html
* igt@kms_psr@fbc-pr-suspend:
- shard-mtlp: NOTRUN -> [SKIP][328] ([i915#9688]) +2 other tests skip
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-mtlp-1/igt@kms_psr@fbc-pr-suspend.html
* igt@kms_psr@fbc-psr2-no-drrs:
- shard-tglu: NOTRUN -> [SKIP][329] ([i915#9732]) +22 other tests skip
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-4/igt@kms_psr@fbc-psr2-no-drrs.html
* igt@kms_psr@fbc-psr2-sprite-render:
- shard-rkl: NOTRUN -> [SKIP][330] ([i915#1072] / [i915#9732]) +24 other tests skip
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-1/igt@kms_psr@fbc-psr2-sprite-render.html
* igt@kms_psr@psr-cursor-render:
- shard-dg2: NOTRUN -> [SKIP][331] ([i915#1072] / [i915#9732]) +23 other tests skip
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-2/igt@kms_psr@psr-cursor-render.html
* igt@kms_psr@psr2-sprite-plane-onoff:
- shard-glk: NOTRUN -> [SKIP][332] +402 other tests skip
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-glk3/igt@kms_psr@psr2-sprite-plane-onoff.html
* igt@kms_psr@psr2-suspend:
- shard-dg1: NOTRUN -> [SKIP][333] ([i915#1072] / [i915#9732]) +18 other tests skip
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-14/igt@kms_psr@psr2-suspend.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-tglu-1: NOTRUN -> [SKIP][334] ([i915#9685]) +1 other test skip
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-1/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-tglu: NOTRUN -> [SKIP][335] ([i915#9685])
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-3/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@exhaust-fences:
- shard-dg1: NOTRUN -> [SKIP][336] ([i915#4884])
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-13/igt@kms_rotation_crc@exhaust-fences.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-dg1: NOTRUN -> [SKIP][337] ([i915#5289])
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-17/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-rkl: NOTRUN -> [SKIP][338] ([i915#5289])
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
- shard-tglu: NOTRUN -> [SKIP][339] ([i915#5289]) +1 other test skip
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
- shard-mtlp: NOTRUN -> [SKIP][340] ([i915#5289])
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-mtlp-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-dg2: NOTRUN -> [SKIP][341] ([i915#12755] / [i915#5190])
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_rotation_crc@sprite-rotation-270:
- shard-mtlp: NOTRUN -> [SKIP][342] ([i915#12755])
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-mtlp-1/igt@kms_rotation_crc@sprite-rotation-270.html
* igt@kms_rotation_crc@sprite-rotation-90:
- shard-dg2: NOTRUN -> [SKIP][343] ([i915#12755]) +2 other tests skip
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-1/igt@kms_rotation_crc@sprite-rotation-90.html
* igt@kms_scaling_modes@scaling-mode-none:
- shard-dg2: NOTRUN -> [SKIP][344] ([i915#3555]) +7 other tests skip
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-7/igt@kms_scaling_modes@scaling-mode-none.html
* igt@kms_selftest@drm_framebuffer:
- shard-snb: NOTRUN -> [ABORT][345] ([i915#13179]) +1 other test abort
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-snb7/igt@kms_selftest@drm_framebuffer.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-dg1: NOTRUN -> [SKIP][346] ([i915#3555]) +6 other tests skip
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-18/igt@kms_setmode@clone-exclusive-crtc.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-glk: NOTRUN -> [FAIL][347] ([i915#10959])
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-glk6/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tv_load_detect@load-detect:
- shard-mtlp: NOTRUN -> [SKIP][348] +3 other tests skip
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-mtlp-7/igt@kms_tv_load_detect@load-detect.html
* igt@kms_universal_plane@cursor-fb-leak:
- shard-mtlp: [PASS][349] -> [FAIL][350] ([i915#9196]) +1 other test fail
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15896/shard-mtlp-1/igt@kms_universal_plane@cursor-fb-leak.html
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-mtlp-5/igt@kms_universal_plane@cursor-fb-leak.html
* igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [INCOMPLETE][351] ([i915#12276]) +3 other tests incomplete
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-glk5/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1.html
* igt@kms_vrr@flip-basic-fastset:
- shard-dg2: NOTRUN -> [SKIP][352] ([i915#9906])
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-7/igt@kms_vrr@flip-basic-fastset.html
- shard-dg1: NOTRUN -> [SKIP][353] ([i915#9906])
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-13/igt@kms_vrr@flip-basic-fastset.html
* igt@kms_vrr@max-min:
- shard-tglu: NOTRUN -> [SKIP][354] ([i915#9906])
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-7/igt@kms_vrr@max-min.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-rkl: NOTRUN -> [SKIP][355] ([i915#9906])
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-7/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-tglu-1: NOTRUN -> [SKIP][356] ([i915#9906])
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-1/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@kms_writeback@writeback-fb-id:
- shard-dg1: NOTRUN -> [SKIP][357] ([i915#2437])
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-12/igt@kms_writeback@writeback-fb-id.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-rkl: NOTRUN -> [SKIP][358] ([i915#2437] / [i915#9412]) +1 other test skip
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-7/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
- shard-dg1: NOTRUN -> [SKIP][359] ([i915#2437] / [i915#9412])
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-14/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-glk: NOTRUN -> [SKIP][360] ([i915#2437]) +1 other test skip
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-glk7/igt@kms_writeback@writeback-invalid-parameters.html
- shard-dg2: NOTRUN -> [SKIP][361] ([i915#2437])
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-5/igt@kms_writeback@writeback-invalid-parameters.html
* igt@perf@mi-rpc:
- shard-dg1: NOTRUN -> [SKIP][362] ([i915#2434])
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-12/igt@perf@mi-rpc.html
* igt@perf_pmu@busy-idle-check-all@bcs0:
- shard-mtlp: [PASS][363] -> [FAIL][364] ([i915#4349]) +5 other tests fail
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15896/shard-mtlp-7/igt@perf_pmu@busy-idle-check-all@bcs0.html
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-mtlp-6/igt@perf_pmu@busy-idle-check-all@bcs0.html
* igt@perf_pmu@busy-idle-check-all@vcs0:
- shard-dg2: NOTRUN -> [FAIL][365] ([i915#4349]) +5 other tests fail
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-7/igt@perf_pmu@busy-idle-check-all@vcs0.html
* igt@perf_pmu@busy-idle-check-all@vecs0:
- shard-dg1: [PASS][366] -> [FAIL][367] ([i915#4349]) +3 other tests fail
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15896/shard-dg1-13/igt@perf_pmu@busy-idle-check-all@vecs0.html
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-14/igt@perf_pmu@busy-idle-check-all@vecs0.html
* igt@perf_pmu@cpu-hotplug:
- shard-dg2: NOTRUN -> [SKIP][368] ([i915#8850])
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-1/igt@perf_pmu@cpu-hotplug.html
* igt@perf_pmu@event-wait@rcs0:
- shard-dg2: NOTRUN -> [SKIP][369] +8 other tests skip
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-2/igt@perf_pmu@event-wait@rcs0.html
* igt@perf_pmu@most-busy-check-all:
- shard-rkl: NOTRUN -> [DMESG-FAIL][370] ([i915#12964]) +2 other tests dmesg-fail
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-5/igt@perf_pmu@most-busy-check-all.html
* igt@perf_pmu@most-busy-check-all@rcs0:
- shard-rkl: NOTRUN -> [FAIL][371] ([i915#4349])
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-5/igt@perf_pmu@most-busy-check-all@rcs0.html
* igt@perf_pmu@rc6@other-idle-gt0:
- shard-rkl: NOTRUN -> [SKIP][372] ([i915#8516]) +1 other test skip
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-5/igt@perf_pmu@rc6@other-idle-gt0.html
* igt@prime_vgem@basic-write:
- shard-dg2: NOTRUN -> [SKIP][373] ([i915#3291] / [i915#3708]) +1 other test skip
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-2/igt@prime_vgem@basic-write.html
* igt@prime_vgem@coherency-gtt:
- shard-dg1: NOTRUN -> [SKIP][374] ([i915#3708] / [i915#4077])
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-13/igt@prime_vgem@coherency-gtt.html
* igt@prime_vgem@fence-flip-hang:
- shard-dg1: NOTRUN -> [SKIP][375] ([i915#3708]) +1 other test skip
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-14/igt@prime_vgem@fence-flip-hang.html
* igt@prime_vgem@fence-read-hang:
- shard-rkl: NOTRUN -> [SKIP][376] ([i915#3708])
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-2/igt@prime_vgem@fence-read-hang.html
* igt@sriov_basic@bind-unbind-vf:
- shard-dg2: NOTRUN -> [SKIP][377] ([i915#9917]) +2 other tests skip
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-11/igt@sriov_basic@bind-unbind-vf.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-rkl: NOTRUN -> [SKIP][378] ([i915#9917]) +1 other test skip
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-4/igt@sriov_basic@enable-vfs-autoprobe-off.html
- shard-dg1: NOTRUN -> [SKIP][379] ([i915#9917])
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-13/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-6:
- shard-mtlp: NOTRUN -> [FAIL][380] ([i915#12910]) +9 other tests fail
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-mtlp-4/igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-6.html
* igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-all:
- shard-tglu-1: NOTRUN -> [FAIL][381] ([i915#12910]) +9 other tests fail
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-1/igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-all.html
* igt@tools_test@sysfs_l3_parity:
- shard-mtlp: NOTRUN -> [SKIP][382] ([i915#4818])
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-mtlp-4/igt@tools_test@sysfs_l3_parity.html
#### Possible fixes ####
* igt@gem_create@create-ext-cpu-access-big:
- shard-dg2: [ABORT][383] ([i915#13427]) -> [PASS][384]
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15896/shard-dg2-2/igt@gem_create@create-ext-cpu-access-big.html
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-7/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_ctx_shared@exec-single-timeline@vcs0:
- shard-rkl: [DMESG-WARN][385] ([i915#12964]) -> [PASS][386] +24 other tests pass
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15896/shard-rkl-1/igt@gem_ctx_shared@exec-single-timeline@vcs0.html
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-4/igt@gem_ctx_shared@exec-single-timeline@vcs0.html
* igt@gem_exec_suspend@basic-s4-devices@lmem0:
- shard-dg1: [ABORT][387] ([i915#7975] / [i915#8213]) -> [PASS][388] +1 other test pass
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15896/shard-dg1-14/igt@gem_exec_suspend@basic-s4-devices@lmem0.html
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-17/igt@gem_exec_suspend@basic-s4-devices@lmem0.html
* igt@gem_pxp@reject-modify-context-protection-off-2:
- shard-tglu: [SKIP][389] ([i915#4270]) -> [PASS][390]
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15896/shard-tglu-6/igt@gem_pxp@reject-modify-context-protection-off-2.html
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-10/igt@gem_pxp@reject-modify-context-protection-off-2.html
* igt@gem_tiled_swapping@non-threaded:
- shard-rkl: [FAIL][391] -> [PASS][392]
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15896/shard-rkl-4/igt@gem_tiled_swapping@non-threaded.html
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-2/igt@gem_tiled_swapping@non-threaded.html
* igt@gem_workarounds@suspend-resume-fd:
- shard-rkl: [INCOMPLETE][393] ([i915#13356]) -> [PASS][394] +1 other test pass
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15896/shard-rkl-5/igt@gem_workarounds@suspend-resume-fd.html
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-3/igt@gem_workarounds@suspend-resume-fd.html
* igt@i915_selftest@mock@sanitycheck:
- shard-tglu: [ABORT][395] ([i915#13010]) -> [PASS][396]
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15896/shard-tglu-10/igt@i915_selftest@mock@sanitycheck.html
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-5/igt@i915_selftest@mock@sanitycheck.html
* igt@kms_async_flips@crc@pipe-a-hdmi-a-1:
- shard-glk: [INCOMPLETE][397] ([i915#13287] / [i915#13423]) -> [PASS][398]
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15896/shard-glk6/igt@kms_async_flips@crc@pipe-a-hdmi-a-1.html
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-glk8/igt@kms_async_flips@crc@pipe-a-hdmi-a-1.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-dg2: [SKIP][399] ([i915#12402]) -> [PASS][400]
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15896/shard-dg2-8/igt@kms_dp_linktrain_fallback@dp-fallback.html
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-10/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_flip@2x-wf_vblank-ts-check:
- shard-snb: [FAIL][401] ([i915#11989]) -> [PASS][402] +1 other test pass
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15896/shard-snb2/igt@kms_flip@2x-wf_vblank-ts-check.html
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-snb2/igt@kms_flip@2x-wf_vblank-ts-check.html
* igt@kms_plane_cursor@viewport@pipe-a-hdmi-a-2-size-128:
- shard-rkl: [DMESG-WARN][403] ([i915#12917] / [i915#12964]) -> [PASS][404] +3 other tests pass
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15896/shard-rkl-3/igt@kms_plane_cursor@viewport@pipe-a-hdmi-a-2-size-128.html
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-3/igt@kms_plane_cursor@viewport@pipe-a-hdmi-a-2-size-128.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-dg2: [SKIP][405] ([i915#9340]) -> [PASS][406]
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15896/shard-dg2-6/igt@kms_pm_lpsp@kms-lpsp.html
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-8/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-rkl: [SKIP][407] ([i915#9519]) -> [PASS][408]
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15896/shard-rkl-1/igt@kms_pm_rpm@modeset-lpsp-stress.html
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_vrr@negative-basic:
- shard-mtlp: [FAIL][409] ([i915#10393]) -> [PASS][410] +1 other test pass
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15896/shard-mtlp-5/igt@kms_vrr@negative-basic.html
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-mtlp-4/igt@kms_vrr@negative-basic.html
* igt@perf_pmu@busy-accuracy-2:
- shard-dg1: [FAIL][411] -> [PASS][412] +1 other test pass
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15896/shard-dg1-13/igt@perf_pmu@busy-accuracy-2.html
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg1-12/igt@perf_pmu@busy-accuracy-2.html
* igt@perf_pmu@busy-accuracy-2@vcs1:
- shard-mtlp: [FAIL][413] -> [PASS][414] +1 other test pass
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15896/shard-mtlp-5/igt@perf_pmu@busy-accuracy-2@vcs1.html
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-mtlp-4/igt@perf_pmu@busy-accuracy-2@vcs1.html
* igt@perf_pmu@render-node-busy-idle@vcs1:
- shard-mtlp: [FAIL][415] ([i915#4349]) -> [PASS][416] +3 other tests pass
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15896/shard-mtlp-2/igt@perf_pmu@render-node-busy-idle@vcs1.html
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-mtlp-8/igt@perf_pmu@render-node-busy-idle@vcs1.html
#### Warnings ####
* igt@gem_eio@in-flight-suspend:
- shard-glk: [INCOMPLETE][417] ([i915#13197] / [i915#13390]) -> [INCOMPLETE][418] ([i915#13390])
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15896/shard-glk6/igt@gem_eio@in-flight-suspend.html
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-glk9/igt@gem_eio@in-flight-suspend.html
* igt@gem_pxp@reject-modify-context-protection-off-1:
- shard-rkl: [SKIP][419] ([i915#4270]) -> [TIMEOUT][420] ([i915#12917] / [i915#12964])
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15896/shard-rkl-7/igt@gem_pxp@reject-modify-context-protection-off-1.html
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-rkl-5/igt@gem_pxp@reject-modify-context-protection-off-1.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-tglu: [ABORT][421] ([i915#12817] / [i915#9820]) -> [ABORT][422] ([i915#10887] / [i915#12817] / [i915#9820])
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15896/shard-tglu-4/igt@i915_module_load@reload-with-fault-injection.html
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-8/igt@i915_module_load@reload-with-fault-injection.html
- shard-mtlp: [ABORT][423] ([i915#10131] / [i915#9820]) -> [ABORT][424] ([i915#10131] / [i915#10887] / [i915#9820])
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15896/shard-mtlp-5/igt@i915_module_load@reload-with-fault-injection.html
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-mtlp-1/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_selftest@mock:
- shard-tglu: [ABORT][425] ([i915#13010]) -> [DMESG-WARN][426] ([i915#9311])
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15896/shard-tglu-10/igt@i915_selftest@mock.html
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-tglu-5/igt@i915_selftest@mock.html
* igt@kms_async_flips@crc-atomic:
- shard-glk: [INCOMPLETE][427] ([i915#13287]) -> [INCOMPLETE][428] ([i915#13287] / [i915#13423]) +1 other test incomplete
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15896/shard-glk3/igt@kms_async_flips@crc-atomic.html
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-glk4/igt@kms_async_flips@crc-atomic.html
* igt@kms_content_protection@srm:
- shard-dg2: [TIMEOUT][429] ([i915#7173]) -> [SKIP][430] ([i915#7118])
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15896/shard-dg2-10/igt@kms_content_protection@srm.html
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-dg2-4/igt@kms_content_protection@srm.html
* igt@kms_flip@flip-vs-suspend:
- shard-glk: [INCOMPLETE][431] ([i915#12745] / [i915#4839]) -> [INCOMPLETE][432] ([i915#12745] / [i915#1982] / [i915#4839])
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15896/shard-glk5/igt@kms_flip@flip-vs-suspend.html
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-glk2/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@flip-vs-suspend@a-hdmi-a1:
- shard-glk: [INCOMPLETE][433] ([i915#12745]) -> [INCOMPLETE][434] ([i915#12745] / [i915#1982])
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15896/shard-glk5/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/shard-glk2/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu:
- shard-dg2: [SKIP][435] ([i915#3
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12378/index.html
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH i-g-t] Add single engine busyness stats in GPUTOP
2025-01-03 6:53 [PATCH i-g-t] Add single engine busyness stats in GPUTOP Soham Purkait
` (3 preceding siblings ...)
2025-01-03 11:40 ` ✗ i915.CI.Full: " Patchwork
@ 2025-01-06 16:38 ` Riana Tauro
4 siblings, 0 replies; 6+ messages in thread
From: Riana Tauro @ 2025-01-06 16:38 UTC (permalink / raw)
To: Soham Purkait, igt-dev; +Cc: anshuman.gupta, vinay.belgaumkar
Hi Soham
On 1/3/2025 12:23 PM, Soham Purkait wrote:
> Add single engine busyness support in GPUTOP. This will use the PMU interface to display the busyness of each engine instances.
The approach has changed in rev3
https://patchwork.freedesktop.org/series/143138/
Please check if it works with the latest version.
>
> ENGINES BUSY
> Render/3D/0 | 96.5% ███████████████████████████████████████▍|
> Blitter/0 | 91.6% █████████████████████████████████████ |
> Video/0 | 56.2% ███████████████████████████ |
> VideoEnhance/0| 97.7% ████████████████████████████████████████|
> Compute/0 | 48.5% ███████████████████████▍ |
>
>
> ---
> tools/gputop.c | 586 +++++++++++++++++++++++++++++++++++++++++++++-
> tools/meson.build | 2 +-
> 2 files changed, 585 insertions(+), 3 deletions(-)
>
> diff --git a/tools/gputop.c b/tools/gputop.c
> index 43b01f566..dccd38d66 100644
> --- a/tools/gputop.c
> +++ b/tools/gputop.c
> @@ -2,7 +2,6 @@
> /*
> * Copyright © 2023 Intel Corporation
> */
> -
> #include <assert.h>
> #include <ctype.h>
> #include <dirent.h>
> @@ -31,6 +30,88 @@
> #include "igt_drm_fdinfo.h"
> #include "igt_profiling.h"
> #include "drmtest.h"
> +#include "xe/xe_query.h"
> +#include "igt_perf.h"
> +#include "igt_device_scan.h"
Alphabetical
> +
> +struct pmu_pair {
> + uint64_t cur;
> + uint64_t prev;
> +};
> +
> +struct pmu_counter {
> + uint64_t type;
> + uint64_t config;
> + unsigned int idx;
> + struct pmu_pair val;
> + //double scale;
> + //const char *units;
> + bool present;
> +};
> +
> +// struct engine_class {
> +// unsigned int engine_class;
> +// const char *name;
> +// unsigned int num_engines;
> +// };
Please remove comment if not required
Also we don't use //. Comments should be enclosed in /* */
> +
> +struct engine {
> + const char *name;
> + char *display_name;
> + char *short_name;
> +
> + // unsigned int class;
> + // unsigned int instance;
> + struct drm_xe_engine_class_instance xe_engine;
> +
> + unsigned int num_counters;
> +
> + struct pmu_counter busy;
> + struct pmu_counter total;
> + //struct pmu_counter wait;
> + //struct pmu_counter sema;
> +};
> +
> +#define MAX_GTS 4
> +struct engines {
> + unsigned int num_engines;
> + unsigned int num_classes;
> + //struct engine_class *class;
> + unsigned int num_counters;
> + DIR *root;
> + int fd;
> + struct pmu_pair ts;
> +
> + // int rapl_fd;
> + // struct pmu_counter r_gpu, r_pkg;
> + // unsigned int num_rapl;
> +
> + // int imc_fd;
> + // struct pmu_counter imc_reads;
> + // struct pmu_counter imc_writes;
> + // unsigned int num_imc;
> +
> + // struct pmu_counter freq_req;
> + // struct pmu_counter freq_req_gt[MAX_GTS];
> + // struct pmu_counter freq_act;
> + // struct pmu_counter freq_act_gt[MAX_GTS];
> + // struct pmu_counter irq;
> + // struct pmu_counter rc6;
> + // struct pmu_counter rc6_gt[MAX_GTS];
> +
> + bool discrete;
> + char *device;
> +
> + int num_gts;
> +
> + /* Do not edit below this line.
> + * This structure is reallocated every time a new engine is
> + * found and size is increased by sizeof (engine).
> + */
> +
> + struct engine engine;
> +
> +};
>
> enum utilization_type {
> UTILIZATION_TYPE_ENGINE_TIME,
> @@ -39,9 +120,39 @@ enum utilization_type {
>
> static const char *bars[] = { " ", "▏", "▎", "▍", "▌", "▋", "▊", "▉", "█" };
>
> +static const char *engine_event[] = {"rcs", "bcs", "vcs", "vecs", "ccs"};
> +
> +#define engine_ptr(engines, n) (&engines->engine + (n))
> +
> +#define is_igpu(x) (strcmp(x, "xe") == 0)
> +
> +#define IGPU_PCI "0000:00:02.0"
> +#define is_igpu_pci(x) (strcmp(x, IGPU_PCI) == 0)
> +
> #define ANSI_HEADER "\033[7m"
> #define ANSI_RESET "\033[0m"
>
> +#define CLEAN_UP() \
> + do { \
> + free(engines); \
> + return NULL; \
> + } while (0)
> +
> +#define _open_pmu(type, cnt, pmu, fd) \
> +({ \
> + int fd__; \
> +\
> + fd__ = igt_perf_open_group((type), (pmu)->config, (fd)); \
> + if (fd__ >= 0) { \
> + if ((fd) == -1) \
> + (fd) = fd__; \
> + (pmu)->present = true; \
> + (pmu)->idx = (cnt)++; \
> + } \
> +\
> + fd__; \
> +})
> +
> static void n_spaces(const unsigned int n)
> {
> unsigned int i;
> @@ -403,6 +514,414 @@ static void sigint_handler(int sig)
> stop_top = true;
> }
>
> +static double pmu_calc_total(struct pmu_pair *p)
> +{
> + double v;
> + v = (p->cur - p->prev)/1e9;
> + return v;
> +}
> +
> +static double pmu_calc(struct pmu_pair *p, double total_tick)
> +{
> + double bz = (p->cur - p->prev)/1e9;
> + double total;
> + total = (bz*100)/total_tick;
> + return total;
> +}
> +
> +static int
> +print_engines_header(struct engines *engines,
> + int lines, int con_w, int con_h)
> +{
> + const char *a;
> + for (unsigned int i = 0;
> + i < engines->num_engines && lines < con_h;
> + i++) {
> + struct engine *engine = engine_ptr(engines, i);
> +
> + if (!engine->num_counters)
> + continue;
> +
> +
extra lines
> + a = " ENGINES BUSY "; //
> +
> + printf("\033[7m%s%*s\033[0m\n",
> + a, (int)(con_w - strlen(a)), " ");
> +
> + lines++;
> +
> +
> + break;
> + }
> +
> + return lines;
> +}
> +
> +static int
> +print_engine(struct engines *engines, unsigned int i,
> + int lines, int con_w, int con_h)
indentation. should match open paranthesis
Same for all functions
> +{
> + struct engine *engine = engine_ptr(engines, i);
> + double total_tick = pmu_calc_total(&(engine->total.val));
> + double percentage = pmu_calc(&(engine->busy.val), total_tick);
> +
> + printf("%*s",(int)(strlen(" ENGINES")),engine->display_name);
> + //printf(" %5.1f", percentage);
> + print_percentage_bar(percentage, con_w - strlen(" ENGINES"));
> + printf("\n");
> +
> + return ++lines;
> +
> +}
> +
> +static int
> +print_engines_footer(struct engines *engines,
> + int lines, int con_w, int con_h)
indentation
> +{
> +
> + if (lines++ < con_h)
> + printf("\n");
> +
> + return lines;
> +}
> +
> +static int
> +print_engines(struct engines *engines, int lines, int w, int h)
> +{
> + struct engines *show;
> +
> + show = engines;
> +
> + lines = print_engines_header(show, lines, w, h);
> +
> + for (unsigned int i = 0; i < show->num_engines && lines < h; i++)
> + lines = print_engine(show, i, lines, w, h);
> +
> + lines = print_engines_footer(show, lines, w, h);
> +
> + return lines;
> +}
> +
> +static uint64_t
> +get_pmu_config(int dirfd, const char *name, const char *counter, const unsigned int gt)
> +{
> + char buf[128], *p;
> + int fd, ret;
> +
> + ret = snprintf(buf, sizeof(buf), "%s%s%u", name, counter, gt);
> + if (ret < 0 || ret == sizeof(buf))
> + return -1;
> +
> + fd = openat(dirfd, buf, O_RDONLY);
> + if (fd < 0)
> + return -1;
> +
> + ret = read(fd, buf, sizeof(buf));
> + close(fd);
> + if (ret <= 0)
> + return -1;
> +
> + p = strchr(buf, '0');
> + if (!p)
> + return -1;
> +
> + return strtoul(p, NULL, 0);
> +}
> +
> +
> +
> +static int engine_cmp(const void *__a, const void *__b)
> +{
> + const struct engine *a = (struct engine *)__a;
> + const struct engine *b = (struct engine *)__b;
> +
> + if (a->xe_engine.engine_class != b->xe_engine.engine_class)
> + return a->xe_engine.engine_class - b->xe_engine.engine_class;
> + else
> + return a->xe_engine.engine_instance - b->xe_engine.engine_instance;
> +}
> +
> +static void free_engines(struct engines *engines)
> +{
> +
> + unsigned int i;
> +
> + if (!engines)
> + return;
> +
> +
> +
Extra lines
> + for (i = 0; i < engines->num_engines; i++) {
> + struct engine *engine = engine_ptr(engines, i);
> +
> + free((char *)engine->name);
> + free((char *)engine->short_name);
> + free((char *)engine->display_name);
> + }
> +
> + closedir(engines->root);
> + free(engines);
> +}
> +
> +static const char *class_display_name(unsigned int class)
> +{
> + switch (class) {
> + case DRM_XE_ENGINE_CLASS_RENDER:
> + return "Render/3D";
> + case DRM_XE_ENGINE_CLASS_COPY:
> + return "Blitter";
> + case DRM_XE_ENGINE_CLASS_VIDEO_DECODE:
> + return "Video";
> + case DRM_XE_ENGINE_CLASS_VIDEO_ENHANCE:
> + return "VideoEnhance";
> + case DRM_XE_ENGINE_CLASS_COMPUTE:
> + return "Compute";
> + default:
> + return "[unknown]";
> + }
> +}
> +
> +static const char *class_short_name(unsigned int class)
> +{
> + switch (class) {
> + case DRM_XE_ENGINE_CLASS_RENDER:
> + return "RCS";
> + case DRM_XE_ENGINE_CLASS_COPY:
> + return "BCS";
> + case DRM_XE_ENGINE_CLASS_VIDEO_DECODE:
> + return "VCS";
> + case DRM_XE_ENGINE_CLASS_VIDEO_ENHANCE:
> + return "VECS";
> + case DRM_XE_ENGINE_CLASS_COMPUTE:
> + return "CCS";
> + default:
> + return "UNKN";
> + }
> +}
why caps?
> +
> +
> +static struct engines *discover_engines(char *device, struct igt_device_card *card)
> +{
> + char sysfs_root[PATH_MAX];
> + struct engines *engines;
> + //struct dirent *dent;
> + int ret = 0;
> + DIR *d;
> + struct drm_xe_engine_class_instance *hwe;
> + const char *busy_end = "-busy-ticks-gt";
> + const char *total_end = "-total-ticks-gt";
> + int card_fd;
> +
Follow
https://www.kernel.org/doc/html/v4.10/process/coding-style.html#placing-braces-and-spaces
> + if (!card || !strlen(card->card) || !strlen(card->render))
> + {
> + return NULL;
> + }
> +
> + if (strlen(card->card))
> + {
> + card_fd = igt_open_card(card); //open(card->card, O_RDWR);
> + }
> + else if (strlen(card->render))
> + {
> + card_fd = igt_open_render(card);
> + }
> + else
> + {
> + fprintf( stderr, "Failed to detect device!\n" );
> + CLEAN_UP() ;
> + }
> +
> + xe_device_get(card_fd);
> +
> +
> + snprintf(sysfs_root, sizeof(sysfs_root),
> + "/sys/devices/%s/events", device);
> +
> + engines = malloc(sizeof(struct engines));
> + if (!engines)
> + return NULL;
> +
> + memset(engines, 0, sizeof(*engines));
> +
> + engines->num_engines = 0;
> + engines->device = device;
> + engines->discrete = !is_igpu(device);
> +
> + xe_for_each_engine(card_fd, hwe)
> + {
> + struct engine *engine = engine_ptr(engines, engines->num_engines);
> + engine->xe_engine = *hwe;
> + engines->num_engines++;
> + engines = realloc(engines, sizeof(struct engines) +
> + engines->num_engines * sizeof(struct engine));
> + if (!engines) {
> + ret = errno;
> + break;
> + }
> + }
> +
> + d = opendir(sysfs_root);
> + if (!d)
> + CLEAN_UP();
> +
> + for (unsigned int i = 0; i < engines->num_engines; i++)
> + {
> + struct engine *engine = engine_ptr(engines, i);
> + asprintf((char**)&(engine->name),"%s%u",engine_event[engine->xe_engine.engine_class],engine->xe_engine.engine_instance);
space after comma
> +
> + memset(&(engine->busy), 0, sizeof(struct pmu_counter));
> + memset(&(engine->total), 0, sizeof(struct pmu_counter));
> +
> + engine->busy.config = get_pmu_config(dirfd(d), engine->name, busy_end, engine->xe_engine.gt_id);
> + engine->total.config = get_pmu_config(dirfd(d), engine->name, total_end, engine->xe_engine.gt_id);
> +
> + if (engine->busy.config == -1 || engine->total.config == -1)
> + {
> + ret = ENOENT;
> + break;
> + }
> +
> + ret = asprintf(&engine->display_name, "%s/%u",
> + class_display_name(engine->xe_engine.engine_class),
> + engine->xe_engine.engine_instance);
> +
> + if (ret <= 0) {
> + ret = errno;
> + break;
> + }
> +
> + ret = asprintf(&engine->short_name, "%s/%u",
> + class_short_name(engine->xe_engine.engine_class),
> + engine->xe_engine.engine_instance);
> +
> + if (ret <= 0) {
> + ret = errno;
> + break;
> + }
> +
> + }
> +
> +
> + if (!ret) {
> + errno = ret;
> + CLEAN_UP();
> + }
> +
> + qsort(engine_ptr(engines, 0), engines->num_engines,
> + sizeof(struct engine), engine_cmp);
> +
> + engines->root = d;
> +
> + return engines;
> +}
> +
> +static int pmu_init(struct engines *engines)
> +{
> + unsigned int i;
> + int fd;
> + struct engine *engine;
> + uint64_t type = igt_perf_type_id(engines->device);
> +
> + engines->fd = -1;
> + engines->num_counters = 0;
> +
> + engine = engine_ptr(engines, 0);
> + fd = _open_pmu(type, engines->num_counters, &(engine->busy), engines->fd);
> + if (fd < 0)
> + return -1;
> + fd = _open_pmu(type, engines->num_counters, &(engine->total), engines->fd);
> + if (fd < 0)
> + return -1;
> +
> + for (i = 1; i < engines->num_engines; i++)
> + {
> + engine = engine_ptr(engines, i);
> + fd = _open_pmu(type, engines->num_counters, &(engine->busy), engines->fd);
> + if (fd < 0)
> + return -1;
> + fd = _open_pmu(type, engines->num_counters, &(engine->total), engines->fd);
> + if (fd < 0)
> + return -1;
> +
> + }
> +
> + return 0;
> +}
> +
> +static uint64_t pmu_read_multi(int fd, unsigned int num, uint64_t *val)
> +{
> + uint64_t buf[2 + num];
> + unsigned int i;
> + ssize_t len;
> +
> + memset(buf, 0, sizeof(buf));
> +
> + len = read(fd, buf, sizeof(buf));
> + assert(len == sizeof(buf));
> +
> + for (i = 0; i < num; i++)
> + val[i] = buf[2 + i];
> +
> + return buf[1];
> +}
> +
> +static void __update_sample(struct pmu_counter *counter, uint64_t val)
> +{
> + counter->val.prev = counter->val.cur;
> + counter->val.cur = val;
> +}
> +
> +static void update_sample(struct pmu_counter *counter, uint64_t *val)
> +{
> + if (counter->present)
> + __update_sample(counter, val[counter->idx]);
> +}
> +
> +static void pmu_sample(struct engines *engines)
> +{
> + const int num_val = engines->num_counters;
> + uint64_t val[2 + num_val];
> + unsigned int i;
> +
> + engines->ts.prev = engines->ts.cur;
> + engines->ts.cur = pmu_read_multi(engines->fd, num_val, val);
> +
> + for (i = 0; i < engines->num_engines; i++) {
> + struct engine *engine = engine_ptr(engines, i);
> +
> + update_sample(&(engine->busy), val);
> + update_sample(&(engine->total), val);
> + }
> +
> +}
> +
> +/* tr_pmu_name()
> + *
> + * Transliterate pci_slot_id to sysfs device name entry for discrete GPU.
> + * Discrete GPU PCI ID ("xxxx:yy:zz.z") device = "xe_xxxx_yy_zz.z".
> + */
> +static char *tr_pmu_name(struct igt_device_card *card)
> +{
> + int ret;
> + const int bufsize = 16;
> + char *buf, *device = NULL;
> +
> + assert(card->pci_slot_name[0]);
> +
> + device = malloc(bufsize);
> + assert(device);
> +
> + ret = snprintf(device, bufsize, "xe_%s", card->pci_slot_name);
> + assert(ret == (bufsize-1));
> +
> + buf = device;
> + for (; *buf; buf++)
> + if (*buf == ':')
> + *buf = '_';
> +
> + return device;
> +}
> +
> int main(int argc, char **argv)
> {
> struct gputop_args args;
> @@ -412,6 +931,9 @@ int main(int argc, char **argv)
> int con_w = -1, con_h = -1;
> int ret;
> long n;
> + struct igt_device_card card;
> + char *pmu_device ;
> + struct engines *engines;
>
> ret = parse_args(argc, argv, &args);
> if (ret < 0)
> @@ -422,6 +944,62 @@ int main(int argc, char **argv)
> n = args.n_iter;
> period_us = args.delay_usec;
>
> + igt_devices_scan(false);
> +
> + //Yet to implement the device filter
> +
> + ret = igt_device_find_first_xe_discrete_card(&card);
> + if (!ret)
> + ret = igt_device_find_xe_integrated_card(&card);
> + if (!ret)
> + fprintf(stderr, "No discrete/integrated xe devices found\n");
> +
> + if (!ret) {
> + ret = EXIT_FAILURE;
> + igt_devices_free();
> + return ret;
> + }
> +
> + if (card.pci_slot_name[0] ) //&& !is_igpu_pci(card.pci_slot_name)
Remove comment and extra space
> + pmu_device = tr_pmu_name(&card);
> + else
> + pmu_device = strdup("xe");
> +
> +
> + engines = discover_engines(pmu_device, &card);
> +
> + if (!engines) {
> + fprintf(stderr,
> + "Failed to discover engines! (%s)\n",
> + strerror(errno));
> + return EXIT_FAILURE;
> + }
> +
> + ret = pmu_init(engines);
> +
> + if (ret) {
> + fprintf(stderr,
> + "Failed to initialize PMU! (%s)\n", strerror(errno));
> + if (errno == EACCES && geteuid())
> + fprintf(stderr,
> +"\n"
> +"When running as a normal user CAP_PERFMON is required to access performance\n"
> +"monitoring. See \"man 7 capabilities\", \"man 8 setcap\", or contact your\n"
> +"distribution vendor for assistance.\n"
> +"\n"
> +"More information can be found at 'Perf events and tool security' document:\n"
> +"https://www.kernel.org/doc/html/latest/admin-guide/perf-security.html\n");
> +
> + free_engines(engines);
> + free(pmu_device);
> + igt_devices_free();
> + return EXIT_FAILURE;
> + }
> +
> + ret = EXIT_SUCCESS;
> +
> + pmu_sample(engines);
> +
> clients = igt_drm_clients_init(NULL);
> if (!clients)
> exit(1);
> @@ -450,6 +1028,10 @@ int main(int argc, char **argv)
> update_console_size(&con_w, &con_h);
> clrscr();
>
> + pmu_sample(engines);
> + lines = print_engines(engines, lines, con_w, con_h);
> +
> +
Extra line
> if (!clients->num_clients) {
> const char *msg = " (No GPU clients yet. Start workload to see stats)";
>
> @@ -488,4 +1070,4 @@ int main(int argc, char **argv)
> }
>
> return 0;
Remove all comments, extra lines and indentation across file.
Thanks
Riana Tauro
> -}
> +}
> \ No newline at end of file
> diff --git a/tools/meson.build b/tools/meson.build
> index 511aec69e..8a3290d39 100644
> --- a/tools/meson.build
> +++ b/tools/meson.build
> @@ -71,7 +71,7 @@ endif
> executable('gputop', 'gputop.c',
> install : true,
> install_rpath : bindir_rpathdir,
> - dependencies : [lib_igt_drm_clients,lib_igt_drm_fdinfo,lib_igt_profiling,math])
> + dependencies : [igt_deps,lib_igt_perf,lib_igt_drm_clients,lib_igt_drm_fdinfo,lib_igt_profiling,math])
>
> intel_l3_parity_src = [ 'intel_l3_parity.c', 'intel_l3_udev_listener.c' ]
> executable('intel_l3_parity', sources : intel_l3_parity_src,
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2025-01-06 16:38 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-01-03 6:53 [PATCH i-g-t] Add single engine busyness stats in GPUTOP Soham Purkait
2025-01-03 9:24 ` ✗ Xe.CI.BAT: failure for " Patchwork
2025-01-03 9:28 ` ✓ i915.CI.BAT: success " Patchwork
2025-01-03 11:08 ` ✗ Xe.CI.Full: failure " Patchwork
2025-01-03 11:40 ` ✗ i915.CI.Full: " Patchwork
2025-01-06 16:38 ` [PATCH i-g-t] " Riana Tauro
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox